Skip to content

Commit

Permalink
Correctly print out bad quality threshold (Closes: mourisl#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
moskalenko committed Jun 19, 2018
1 parent 12e9371 commit 5018ef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ int main( int argc, char *argv[] )
// Get the bad quality screo
reads.Rewind() ;
badQualityThreshold = GetBadQuality( reads ) ;
fprintf( stderr, "Bad quality threshold is %c\n", badQualityThreshold ) ;
fprintf( stderr, "Bad quality threshold is %d\n", badQualityThreshold ) ;

// Scan the reads to get the information of the kmers.
reads.Rewind() ;
Expand Down

0 comments on commit 5018ef9

Please sign in to comment.