Loop spin grace write

From relax wiki
Revision as of 15:07, 15 October 2015 by Bugman (talk | contribs) (Added the {{stub}} template at the start.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
This article is a stub. Please help to improve the relax wiki by expanding the article.

Loop over spins, write a grace intensity file

Open the results.bz2 file.

state.load(state='results.bz2')

from pipe_control.mol_res_spin import return_spin, spin_loop

for spin, spin_id in spin_loop(return_id=True):
    nr = spin_id.split("@")[0].split(":")[1]
    grace.write(x_data_type='relax_times', y_data_type='intensities', spin_id=spin_id, plot_data='value', file='%s.agr'%(nr), dir=None, force=True, norm=False)