Skip to content

Commit e9345f7

Browse files
authored
Merge pull request #179 from thepineapplepirate/master
need this in order to vertically concatenate collections of these outputs
2 parents 891dd7d + f93ae93 commit e9345f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/buildtools/protein_structure_rebuilders/BioPDB/BioPDB_align_and_rmsd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def __main__():
9595

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

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

tools/buildtools/protein_structure_rebuilders/BioPDB/BioPDB_align_and_rmsd.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<description>using Biopython</description>
33
<macros>
44
<token name="@TOOL_VERSION@">1.79</token>
5-
<token name="@GALAXY_VERSION@">0</token>
5+
<token name="@GALAXY_VERSION@">1</token>
66
</macros>
77
<requirements>
88
<requirement type="package" version="1.79">biopython</requirement>

0 commit comments

Comments
 (0)