Skip to content

Commit

Permalink
Fix #586 summarizeresult should not reject hits that match the covera…
Browse files Browse the repository at this point in the history
…ge threshold
  • Loading branch information
milot-mirdita committed Aug 9, 2022
1 parent 3d4840b commit 67949d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/summarizeresult.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ int summarizeresult(int argc, const char **argv, const Command &command) {
Debug(Debug::WARNING) << "Query alignment start or end is greater than query length! Skipping line.\n";
continue;
}
if (domain.dbcov <= par.covThr) {
if (domain.dbcov < par.covThr) {
continue;
}

Expand Down

0 comments on commit 67949d7

Please sign in to comment.