Mercurial > repos > chemteam > mdanalysis_rdf
diff dihedrals.py @ 3:49dac57d004a draft
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit 3ff06e3182c3a1546ea0a3b29e0d4383e12169e1
author | chemteam |
---|---|
date | Wed, 03 Apr 2019 15:47:16 -0400 |
parents | 0315b541c74d |
children | 36babbdd7818 |
line wrap: on
line diff
--- a/dihedrals.py Sun Jan 13 03:23:20 2019 -0500 +++ b/dihedrals.py Wed Apr 03 15:47:16 2019 -0400 @@ -59,12 +59,13 @@ u = mda.Universe(args.ipdb, args.idcd, topology_format="PDB", format="DCD") data = np.array([(u.trajectory.frame, psi(u)) for ts in u.trajectory]) frame, psi = data.T +PSI = np.concatenate(psi, axis=0) -zip(frame, psi) +zip(frame, PSI) with open(args.output, 'w') as f: writer = csv.writer(f, delimiter='\t') - writer.writerows(zip(frame, psi)) + writer.writerows(zip(frame, PSI)) with open(args.output) as f: g = [xtmp.strip() for xtmp in f]