Skip to content
Snippets Groups Projects
Commit e3b63b5b authored by BIOPZ-Bertoni Martino's avatar BIOPZ-Bertoni Martino
Browse files

corrected _ParseMmAlign. was initializing MMAlignResult in with misordered params

parent d3bfb360
No related branches found
No related tags found
No related merge requests found
...@@ -153,7 +153,7 @@ def _ParseMmAlign(lines): ...@@ -153,7 +153,7 @@ def _ParseMmAlign(lines):
alignment = seq.CreateAlignment() alignment = seq.CreateAlignment()
alignment.AddSequence(seq2) alignment.AddSequence(seq2)
alignment.AddSequence(seq1) alignment.AddSequence(seq1)
return MMAlignResult(rmsd, aln_length, tm_score, tf, seq2, alignment) return MMAlignResult(rmsd, tm_score, aln_length, tf, seq2, alignment)
def _RunMmAlign(mmalign, tmp_dir): def _RunMmAlign(mmalign, 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