annotate merge_top.py @ 0:f261fded9631 draft default tip

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