mailr3306 - /1.3/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 June 24, 2007 - 17:03:
Author: bugman
Date: Sun Jun 24 17:03:23 2007
New Revision: 3306

URL: http://svn.gna.org/viewcvs/relax?rev=3306&view=rev
Log:
Ported r3292 from the 1.2 line.

.....
 r3292 | bugman | 2007-05-09 00:52:48 +0200 (Wed, 09 May 2007) | 5 lines
 Changed paths:
    M /1.2/sample_scripts/full_analysis.py

 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.3/sample_scripts/full_analysis.py

Modified: 1.3/sample_scripts/full_analysis.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/sample_scripts/full_analysis.py?rev=3306&r1=3305&r2=3306&view=diff
==============================================================================
--- 1.3/sample_scripts/full_analysis.py (original)
+++ 1.3/sample_scripts/full_analysis.py Sun Jun 24 17:03:23 2007
@@ -515,14 +515,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 Sun Jun 24 17:20:05 2007