Skip to content

Commit

Permalink
added v1.0 to print statement. prints NA->N for ref allele
Browse files Browse the repository at this point in the history
  • Loading branch information
jewmanchue committed Oct 22, 2014
1 parent a95b38a commit 9d32c6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/bin/multi-wham-testing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ string join(vector<string> strings){
}

void printVersion(void){
cerr << "Version 0.0.1 ; Zev Kronenberg; [email protected] " << endl;
cerr << "Version 1.0.0 ; Zev Kronenberg; [email protected] " << endl;
cerr << "Github version: " << VERSION << endl;
cerr << endl;
}
Expand Down Expand Up @@ -1177,7 +1177,7 @@ bool score(string seqid,
tmpOutput << seqid << "\t" ; // CHROM
tmpOutput << (*pos) << "\t" ; // POS
tmpOutput << "." << "\t" ; // ID
tmpOutput << "NA" << "\t" ; // REF
tmpOutput << "N" << "\t" ; // REF
tmpOutput << altSeq << "\t" ; // ALT
tmpOutput << "." << "\t" ; // QUAL
tmpOutput << "." << "\t" ; // FILTER
Expand Down
1 change: 0 additions & 1 deletion src/lib/readPileUp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ void readPileUp::purgePast(void){

std::list<BamAlignment> readPileUp::pileup(void){
readPileUp::purgePast();
// BamTools::BamAlignment last_read_in_pile = currentData.back();
return currentData;
}

Expand Down

0 comments on commit 9d32c6e

Please sign in to comment.