Skip to content

Commit

Permalink
this allows for proper concatenatation of a collection of these outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
thepineapplepirate committed Sep 4, 2024
1 parent 0dd3b89 commit ef4bed5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ def __main__():

# Save RMSD into an output file:
with open(args.rmsd, 'w') as rmsd_out:
rmsd_out.write(str(super_imposer.rms))
rmsd_out.write("{}\n".format(super_imposer.rms))


# Save aligned coordinates of the model:
io = Bio.PDB.PDBIO()
Expand Down

0 comments on commit ef4bed5

Please sign in to comment.