Skip to content
Snippets Groups Projects
Commit b27f0038 authored by Pascal Benkert's avatar Pascal Benkert
Browse files

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

parent 06d979b3
Branches
Tags
No related merge requests found
...@@ -68,7 +68,7 @@ def _ParseTmAlign(lines): ...@@ -68,7 +68,7 @@ def _ParseTmAlign(lines):
alignment = seq.CreateAlignment() alignment = seq.CreateAlignment()
alignment.AddSequence(seq2) alignment.AddSequence(seq2)
alignment.AddSequence(seq1) 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): def _RunTmAlign(tmalign, tmp_dir):
model1_filename=os.path.join(tmp_dir, 'model01.pdb') 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