Skip to content

Commit

Permalink
Fix PPOS
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-steinegger committed Jul 26, 2024
1 parent fb38b7d commit 816c5c9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/util/convertalignments.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,6 @@ int convertalignments(int argc, const char **argv, const Command &command) {
case 'M': {
char qRes = queryProfile ? queryProfData[qPos] : querySeqData[qPos];
char tRes = targetProfile ? targetProfData[tPos] : targetSeqData[tPos];
std::cout << qRes << " " << tRes << std::endl;
pPositive += (subMat->subMatrix[subMat->aa2num[(int)qRes]][subMat->aa2num[(int)tRes]] > 0);
matchCount += 1;
qPos++;
Expand All @@ -666,7 +665,6 @@ int convertalignments(int argc, const char **argv, const Command &command) {
break;
}
}
std::cout << res.backtrace << " " << pPositive << " " << matchCount << std::endl;
pPositive /= static_cast<float>(matchCount);
}
result.append(SSTR(pPositive));
Expand Down

0 comments on commit 816c5c9

Please sign in to comment.