Skip to content

Commit

Permalink
Fix convertalis for FS multimer
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-steinegger authored Nov 7, 2024
1 parent d2d09b5 commit d605632
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/strucclustutils/MultimerUtil.h
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,8 @@ static ComplexDataHandler parseScoreComplexResult(const char *data, Matcher::res
float qCov = SmithWaterman::computeCov(qStartPos==-1 ? 0 : qStartPos, qEndPos, qLen);
float dbCov = SmithWaterman::computeCov(dbStartPos==-1 ? 0 : dbStartPos, dbEndPos, dbLen);
size_t alnLength = Matcher::computeAlnLength(qStartPos==-1 ? 0 : qStartPos, qEndPos, dbStartPos==-1 ? 0 : dbStartPos, dbEndPos);
double qTmScore = std::stod(entry[11]);
double tTmScore = std::stod(entry[12]);
double qTmScore = strtod(entry[11], NULL);
double tTmScore = strtod(entry[12], NULL);
std::string uString = std::string(entry[13], entry[14] - entry[13]-1);
std::string tString = std::string(entry[14], entry[15] - entry[14]-1);
auto assId = Util::fast_atoi<unsigned int>(entry[15]);
Expand Down

0 comments on commit d605632

Please sign in to comment.