From 67949d702dbfc6e5d54fdd0f14a9ab6740f11c32 Mon Sep 17 00:00:00 2001 From: Milot Mirdita Date: Tue, 9 Aug 2022 15:19:23 +0900 Subject: [PATCH] Fix #586 summarizeresult should not reject hits that match the coverage threshold --- src/util/summarizeresult.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/summarizeresult.cpp b/src/util/summarizeresult.cpp index 2a4eb28cd..412bf5978 100644 --- a/src/util/summarizeresult.cpp +++ b/src/util/summarizeresult.cpp @@ -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; }