Skip to content

Commit

Permalink
Merge pull request #385 from rachelse/master
Browse files Browse the repository at this point in the history
interface lddt threshold can be used when chaintmthr=0 in multimercluster
  • Loading branch information
sooyoung-cha authored Nov 26, 2024
2 parents 214886b + 7a3a9db commit 8c3e393
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/strucclustutils/filtermultimer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -650,10 +650,10 @@ localThreads = std::max(std::min((size_t)par.threads, alnDbr.getSize()), (size_t

unsigned int alnLen = cigarToAlignedLength(res.backtrace);
cmplfiltcrit.fillChainAlignment(qChainKey, tChainKey, alnLen, qdata, tdata, res.backtrace, res.qStartPos, res.dbStartPos, res.qLen, res.dbLen);
if (par.filtChainTmThr > 0.0f) {
double chainTm = computeChainTmScore(cmplfiltcrit.qAlnChains.back(), cmplfiltcrit.tAlnChains.back(), t, u, res.dbLen);
cmplfiltcrit.updateChainTmScore(chainTm / res.qLen, chainTm / res.dbLen);
}
// if (par.filtChainTmThr > 0.0f) {
double chainTm = computeChainTmScore(cmplfiltcrit.qAlnChains.back(), cmplfiltcrit.tAlnChains.back(), t, u, res.dbLen);
cmplfiltcrit.updateChainTmScore(chainTm / res.qLen, chainTm / res.dbLen);
// }
}
} // while end
}
Expand Down

0 comments on commit 8c3e393

Please sign in to comment.