mailr3292 - /1.2/sample_scripts/full_analysis.py


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

Header


Content

Posted by edward on May 09, 2007 - 00:53:
Author: bugman
Date: Wed May  9 00:52:48 2007
New Revision: 3292

URL: http://svn.gna.org/viewcvs/relax?rev=3292&view=rev
Log:
Bug fix for the full_analysis.py script.

The list of model-free models needed to be placed into 'self.runs' for model 
selection to work.


Modified:
    1.2/sample_scripts/full_analysis.py

Modified: 1.2/sample_scripts/full_analysis.py
URL: 
http://svn.gna.org/viewcvs/relax/1.2/sample_scripts/full_analysis.py?rev=3292&r1=3291&r2=3292&view=diff
==============================================================================
--- 1.2/sample_scripts/full_analysis.py (original)
+++ 1.2/sample_scripts/full_analysis.py Wed May  9 00:52:48 2007
@@ -510,14 +510,14 @@
 
         # Set the run names (also the names of preset model-free models).
         if local_tm:
-            models = LOCAL_TM_MODELS
-        else:
-            models = MF_MODELS
+            self.runs = LOCAL_TM_MODELS
+        else:
+            self.runs = MF_MODELS
 
         # Nuclei type
         nuclei(HETNUC)
 
-        for name in models:
+        for name in self.runs:
             # Create the run.
             run.create(name, 'mf')
 




Related Messages


Powered by MHonArc, Updated Wed May 09 01:00:06 2007