mailr24846 - /branches/r1rho_plotting/auto_analyses/relax_disp.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by tlinnet on July 30, 2014 - 18:07:
Author: tlinnet
Date: Wed Jul 30 18:07:38 2014
New Revision: 24846

URL: http://svn.gna.org/viewcvs/relax?rev=24846&view=rev
Log:
Extended relax_disp auto_analyses to plot special R1rho graphs.

sr #3124(https://gna.org/support/?3124): Grace graphs production for R1rho 
analysis with R2_eff as function of Omega_eff.
sr #3138(https://gna.org/support/?3138): Interpolating theta through 
spin-lock offset [Omega], rather than spin-lock field strength [w1].

Modified:
    branches/r1rho_plotting/auto_analyses/relax_disp.py

Modified: branches/r1rho_plotting/auto_analyses/relax_disp.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/r1rho_plotting/auto_analyses/relax_disp.py?rev=24846&r1=24845&r2=24846&view=diff
==============================================================================
--- branches/r1rho_plotting/auto_analyses/relax_disp.py (original)
+++ branches/r1rho_plotting/auto_analyses/relax_disp.py Wed Jul 30 18:07:38 
2014
@@ -36,6 +36,7 @@
 from pipe_control.pipes import has_pipe
 from prompt.interpreter import Interpreter
 from specific_analyses.relax_disp.data import has_exponential_exp_type, 
has_cpmg_exp_type, has_fixed_time_exp_type, has_r1rho_exp_type, loop_frq
+from specific_analyses.relax_disp.data import INTERPOLATE_DISP, 
INTERPOLATE_OFFSET, X_AXIS_DISP, X_AXIS_W_EFF, X_AXIS_THETA, Y_AXIS_R2_R1RHO, 
Y_AXIS_R2_EFF
 from specific_analyses.relax_disp.variables import MODEL_B14, 
MODEL_B14_FULL, MODEL_CR72, MODEL_CR72_FULL, MODEL_DPL94, MODEL_IT99, 
MODEL_LIST_ANALYTIC, MODEL_LIST_R1RHO, MODEL_LIST_R1RHO_FULL, MODEL_LM63, 
MODEL_LM63_3SITE, MODEL_M61, MODEL_M61B, MODEL_MP05, MODEL_MMQ_CR72, 
MODEL_NS_CPMG_2SITE_3D, MODEL_NS_CPMG_2SITE_3D_FULL, 
MODEL_NS_CPMG_2SITE_EXPANDED, MODEL_NS_CPMG_2SITE_STAR, 
MODEL_NS_CPMG_2SITE_STAR_FULL, MODEL_NS_MMQ_2SITE, MODEL_NS_MMQ_3SITE, 
MODEL_NS_MMQ_3SITE_LINEAR, MODEL_NS_R1RHO_2SITE, MODEL_NS_R1RHO_3SITE, 
MODEL_NS_R1RHO_3SITE_LINEAR, MODEL_PARAMS, MODEL_R2EFF, MODEL_TAP03, 
MODEL_TP02, MODEL_TSMFK01
 from status import Status; status = Status()
 
@@ -541,6 +542,12 @@
         self.interpreter.relax_disp.plot_disp_curves(dir=path, force=True)
         self.interpreter.relax_disp.write_disp_curves(dir=path, force=True)
 
+        # Plot specific R1rho graphs.
+        if has_r1rho_exp_type() and model in [None] + MODEL_LIST_R1RHO_FULL:
+            self.interpreter.relax_disp.plot_disp_curves(dir=path, 
x_axis=X_AXIS_THETA, force=False)
+            self.interpreter.relax_disp.plot_disp_curves(dir=path, 
y_axis=Y_AXIS_R2_R1RHO, x_axis=X_AXIS_W_EFF, force=False)
+            self.interpreter.relax_disp.plot_disp_curves(dir=path, 
y_axis=Y_AXIS_R2_EFF, x_axis=X_AXIS_THETA, interpolate=INTERPOLATE_OFFSET, 
force=False)
+
         # The selected models for the final run.
         if model == None:
             self.interpreter.value.write(param='model', file='model.out', 
dir=path, force=True)




Related Messages


Powered by MHonArc, Updated Wed Jul 30 18:20:03 2014