Skip to content

Commit 4a3bb34

Browse files
2 parents 9a0df0d + fa44760 commit 4a3bb34

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/prefiltering/Prefiltering.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -987,10 +987,10 @@ int Prefiltering::getKmerThreshold(const float sensitivity, const bool isProfile
987987
if (kmerScore == INT_MAX) {
988988
if(isProfile && hasContextPseudoCnts == true){
989989
if (kmerSize == 5) {
990-
float base = 127.75;
990+
float base = 97.75;
991991
kmerThrBest = base - (sensitivity * 8.75);
992992
} else if (kmerSize == 6) {
993-
float base = 142.75;
993+
float base = 132.75;
994994
kmerThrBest = base - (sensitivity * 8.75);
995995
} else if (kmerSize == 7) {
996996
float base = 158.75;
@@ -999,7 +999,7 @@ int Prefiltering::getKmerThreshold(const float sensitivity, const bool isProfile
999999
Debug(Debug::ERROR) << "The k-mer size " << kmerSize << " is not valid.\n";
10001000
EXIT(EXIT_FAILURE);
10011001
}
1002-
} if(isProfile && hasContextPseudoCnts == false) {
1002+
} else if(isProfile && hasContextPseudoCnts == false) {
10031003
if (kmerSize == 5) {
10041004
float base = 117.35;
10051005
kmerThrBest = base - (sensitivity * 5.85);

0 commit comments

Comments
 (0)