Skip to content

Commit 816c5c9

Browse files
Fix PPOS
1 parent fb38b7d commit 816c5c9

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/util/convertalignments.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,6 @@ int convertalignments(int argc, const char **argv, const Command &command) {
651651
case 'M': {
652652
char qRes = queryProfile ? queryProfData[qPos] : querySeqData[qPos];
653653
char tRes = targetProfile ? targetProfData[tPos] : targetSeqData[tPos];
654-
std::cout << qRes << " " << tRes << std::endl;
655654
pPositive += (subMat->subMatrix[subMat->aa2num[(int)qRes]][subMat->aa2num[(int)tRes]] > 0);
656655
matchCount += 1;
657656
qPos++;
@@ -666,7 +665,6 @@ int convertalignments(int argc, const char **argv, const Command &command) {
666665
break;
667666
}
668667
}
669-
std::cout << res.backtrace << " " << pPositive << " " << matchCount << std::endl;
670668
pPositive /= static_cast<float>(matchCount);
671669
}
672670
result.append(SSTR(pPositive));

0 commit comments

Comments
 (0)