annotate merge_top.py @ 2:b2acdbff8dfb draft

"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
author chemteam
date Wed, 15 Apr 2020 14:14:07 -0400
parents bb0053c4e4f2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
1 import argparse
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
2
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
3 import parmed as pmd
0
bb0053c4e4f2 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 03127e495a0a1a022928c1a03527974c9e81b5a1"
chemteam
parents:
diff changeset
4
bb0053c4e4f2 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 03127e495a0a1a022928c1a03527974c9e81b5a1"
chemteam
parents:
diff changeset
5
2
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
6 def merge_gro_files(prot_gro, lig_gro, cmplx_gro):
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
7 prot = pmd.load_file(prot_gro)
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
8 lig = pmd.load_file(lig_gro)
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
9 cmplx = prot + lig
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
10 cmplx.save(cmplx_gro)
0
bb0053c4e4f2 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 03127e495a0a1a022928c1a03527974c9e81b5a1"
chemteam
parents:
diff changeset
11
bb0053c4e4f2 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 03127e495a0a1a022928c1a03527974c9e81b5a1"
chemteam
parents:
diff changeset
12
2
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
13 def merge_top_files(prot_top, lig_top, cmplx_top):
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
14 with open(lig_top, 'r') as f:
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
15 lig_top_sections = f.read().split('\n[')
0
bb0053c4e4f2 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 03127e495a0a1a022928c1a03527974c9e81b5a1"
chemteam
parents:
diff changeset
16
2
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
17 # open ligand topology
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
18 for n in range(len(lig_top_sections)):
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
19 if 'atomtypes' in lig_top_sections[n][:10]:
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
20 lig_atomtypes = lig_top_sections[n]
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
21 del lig_top_sections[n]
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
22 break
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
23 else:
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
24 lig_atomtypes = None
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
25 lig_top_updated = '\n['.join(lig_top_sections)
0
bb0053c4e4f2 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 03127e495a0a1a022928c1a03527974c9e81b5a1"
chemteam
parents:
diff changeset
26
2
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
27 # open protein topology
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
28 with open(prot_top, 'r') as f:
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
29 prot_top_combined = f.read()
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
30 if lig_atomtypes:
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
31 prot_top_sections = prot_top_combined.split('[ moleculetype ]\n')
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
32 prot_top_combined = (prot_top_sections[0] +
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
33 '; Include ligand atomtypes\n[' +
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
34 lig_atomtypes +
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
35 '\n[ moleculetype ]\n' +
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
36 prot_top_sections[1])
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
37 prot_top_sections = prot_top_combined.split('; Include water topology')
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
38 prot_top_combined = (prot_top_sections[0] +
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
39 '; Include ligand topology\n' +
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
40 lig_top_updated +
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
41 '\n; Include water topology' +
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
42 prot_top_sections[1])
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
43 prot_top_combined += 'base 1\n'
0
bb0053c4e4f2 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 03127e495a0a1a022928c1a03527974c9e81b5a1"
chemteam
parents:
diff changeset
44
2
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
45 # save complex topology
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
46 with open(cmplx_top, 'w') as f:
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
47 f.write(prot_top_combined)
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
48
0
bb0053c4e4f2 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 03127e495a0a1a022928c1a03527974c9e81b5a1"
chemteam
parents:
diff changeset
49
2
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
50 def main():
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
51 parser = argparse.ArgumentParser(
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
52 description='Perform SMD runs for dynamic undocking')
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
53 parser.add_argument('--lig-top', help='Ligand TOP file.')
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
54 parser.add_argument('--prot-top', help='Protein TOP file.')
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
55 parser.add_argument('--lig-gro', help='Ligand GRO file.')
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
56 parser.add_argument('--prot-gro', help='Protein GRO file.')
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
57 parser.add_argument('--complex-top', help='Complex TOP file.')
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
58 parser.add_argument('--complex-gro', help='Complex GRO file.')
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
59 args = parser.parse_args()
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
60 merge_gro_files(args.prot_gro, args.lig_gro, args.complex_gro)
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
61 merge_top_files(args.prot_top, args.lig_top, args.complex_top)
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
62
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
63
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
64 if __name__ == "__main__":
b2acdbff8dfb "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 71a3084d6e402b31563b1662bb629d5a959ce7b7"
chemteam
parents: 0
diff changeset
65 main()