Mercurial > repos > chemteam > mdanalysis_distance
annotate distance.py @ 1:2b1434ec8c7e draft
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit 9b44a37fc1a0c338693f54eaf52b582439ca9f0c
author | chemteam |
---|---|
date | Thu, 20 Dec 2018 06:48:23 -0500 |
parents | c33b972fe040 |
children | 312f912de69d |
rev | line source |
---|---|
0
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
1 #!/usr/bin/env python |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
2 |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
3 import argparse |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
4 import sys |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
5 |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
6 import MDAnalysis as mda |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
7 |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
8 import matplotlib |
1
2b1434ec8c7e
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit 9b44a37fc1a0c338693f54eaf52b582439ca9f0c
chemteam
parents:
0
diff
changeset
|
9 matplotlib.use('Agg') # noqa |
0
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
10 import matplotlib.pyplot as plt |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
11 |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
12 import numpy as np |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
13 |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
14 |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
15 def parse_command_line(argv): |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
16 parser = argparse.ArgumentParser() |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
17 parser.add_argument('--idcd', help='input dcd') |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
18 parser.add_argument('--ipdb', help='input pdb') |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
19 parser.add_argument('--isegid1', help='segid 1') |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
20 parser.add_argument('--iresid1', help='resid 1') |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
21 parser.add_argument('--iname1', help='name 1') |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
22 parser.add_argument('--isegid2', help='segid 2') |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
23 parser.add_argument('--iresid2', help='resid 2') |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
24 parser.add_argument('--iname2', help='name 2') |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
25 parser.add_argument('--output', help='output') |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
26 parser.add_argument('--odistance_plot', help='odistance plot') |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
27 return parser.parse_args() |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
28 |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
29 |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
30 args = parse_command_line(sys.argv) |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
31 |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
32 atom1 = "(segid %s and resid %s and name %s)" % \ |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
33 (args.isegid1, args.iresid1, args.iname1) |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
34 atom2 = "(segid %s and resid %s and name %s)" % \ |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
35 (args.isegid2, args.iresid2, args.iname2) |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
36 |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
37 u = mda.Universe(args.ipdb, args.idcd, topology_format="PDB", format="DCD") |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
38 x = u.select_atoms(atom1) |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
39 y = u.select_atoms(atom2) |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
40 |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
41 with open(args.output, 'w') as f: |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
42 for t in u.trajectory: |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
43 r = x.positions - y.positions |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
44 d = np.linalg.norm(r) |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
45 f.write(str(t.frame) + '\t ') |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
46 f.write(str(d) + '\n') |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
47 |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
48 with open(args.output) as f: |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
49 g = [xtmp.strip() for xtmp in f] |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
50 data = [tuple(map(float, xtmp.split())) for xtmp in g[0:]] |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
51 time = [xtmp[0] for xtmp in data] |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
52 distance = [xtmp[1] for xtmp in data] |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
53 plt.plot(time, distance) |
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
54 plt.xlabel('Frame No.') |
1
2b1434ec8c7e
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit 9b44a37fc1a0c338693f54eaf52b582439ca9f0c
chemteam
parents:
0
diff
changeset
|
55 plt.ylabel(r'Distance ($\AA$)') |
0
c33b972fe040
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit c32fe331f438df7760084b27bafad9f78f01edde
chemteam
parents:
diff
changeset
|
56 plt.savefig(args.odistance_plot, format='png') |