mailr21309 - /branches/relax_disp/auto_analyses/relax_disp.py


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

Header


Content

Posted by edward on October 29, 2013 - 13:43:
Author: bugman
Date: Tue Oct 29 13:43:46 2013
New Revision: 21309

URL: http://svn.gna.org/viewcvs/relax?rev=21309&view=rev
Log:
The error analysis is now skipped in the dispersion auto-analysis if the 
'R2eff' model is not given.

It is then assumed that R2eff/R1rho data has already been loaded into the 
base data pipe and hence
the error analysis is not needed.  This avoids fatal errors.


Modified:
    branches/relax_disp/auto_analyses/relax_disp.py

Modified: branches/relax_disp/auto_analyses/relax_disp.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/relax_disp/auto_analyses/relax_disp.py?rev=21309&r1=21308&r2=21309&view=diff
==============================================================================
--- branches/relax_disp/auto_analyses/relax_disp.py (original)
+++ branches/relax_disp/auto_analyses/relax_disp.py Tue Oct 29 13:43:46 2013
@@ -331,7 +331,8 @@
         """Execute the auto-analysis."""
 
         # Peak intensity error analysis.
-        self.error_analysis()
+        if MODEL_R2EFF in self.models:
+            self.error_analysis()
 
         # Loop over the models.
         self.model_pipes = []




Related Messages


Powered by MHonArc, Updated Tue Oct 29 14:00:02 2013