Skip to content
Snippets Groups Projects
Commit e595f1d5 authored by Pascal Benkert's avatar Pascal Benkert Committed by Marco Biasini
Browse files

bug fix: variables "aln_length and tm_score" have been flipped

parent ef2dc0f8
Branches
Tags
No related merge requests found
......@@ -68,7 +68,7 @@ def _ParseTmAlign(lines):
alignment = seq.CreateAlignment()
alignment.AddSequence(seq2)
alignment.AddSequence(seq1)
return TMAlignResult(rmsd, aln_length, tm_score, tf, seq2, alignment)
return TMAlignResult(rmsd, tm_score, aln_length, tf, seq2, alignment)
def _RunTmAlign(tmalign, tmp_dir):
model1_filename=os.path.join(tmp_dir, 'model01.pdb')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment