Skip to content

Commit

Permalink
Update TMaligner initialisation
Browse files Browse the repository at this point in the history
  • Loading branch information
gamcil committed Mar 4, 2024
1 parent 57a69be commit ad85251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/strucclustutils/structuremsa.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ Matcher::result_t pairwiseTMAlign(
char *target_aa_seq = seqDbrAA.getData(tCaId, 0);

float TMscore = 0.0;
TMaligner tmaln(std::max(qLen, tLen)+VECSIZE_FLOAT, 1, 0);
TMaligner tmaln(std::max(qLen, tLen)+VECSIZE_FLOAT, 1, 0, false);
tmaln.initQuery(qCaData, &qCaData[qLen], &qCaData[qLen * 2], merged_aa_seq, qLen);
Matcher::result_t res = tmaln.align(targetId, tCaData, &tCaData[tLen], &tCaData[tLen * 2], target_aa_seq, tLen, TMscore);
res.backtrace = Matcher::uncompressAlignment(res.backtrace);
Expand Down

0 comments on commit ad85251

Please sign in to comment.