Skip to content

Commit

Permalink
Merge pull request #86 from ktrns/master
Browse files Browse the repository at this point in the history
ktrins:src/Algorithm/ErrorCorrectProcess.cpp: Kmer-correction bugfix. A ...
  • Loading branch information
jts committed Nov 27, 2014
2 parents fabc28a + cf5f149 commit b234b56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Algorithm/ErrorCorrectProcess.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ bool ErrorCorrectProcess::attemptKmerCorrection(size_t i, size_t k_idx, size_t m
#if KMER_TESTING
printf("%c %zu\n", currBase, count);
#endif
if(count > bestCount && count >= minCount)
if(count >= minCount)
{
// Multiple corrections exist, do not correct
if(bestBase != '$')
Expand Down

0 comments on commit b234b56

Please sign in to comment.