Skip to content

Commit

Permalink
Merge pull request #182 from huhlim/master
Browse files Browse the repository at this point in the history
Avoid filtering non overlapping sequences (HHfilter)
  • Loading branch information
martin-steinegger committed Jan 16, 2020
2 parents 8ba1bc8 + d0cebda commit 318cbc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hhalignment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1916,7 +1916,7 @@ int Alignment::Filter2(char keep[], int coverage, int qid, float qsc,
}

//dissimilarity < acceptace threshold? Reject!
if (diff < diff_suff && float(diff) <= diff_min_frac * cov_kj)
if (diff < diff_suff && float(diff) < diff_min_frac * cov_kj)
break;
}

Expand Down

0 comments on commit 318cbc1

Please sign in to comment.