mailr3308 - /1.3/specific_fns/model_free/model_free.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:13:
Author: bugman
Date: Sun Jun 24 17:13:00 2007
New Revision: 3308

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

The command used was:
svn merge -r3293:3294 
svn+ssh://bugman@xxxxxxxxxxx/svn/relax/1.2/specific_fns/model_free.py 
specific_fns/model_free/model_free.py

.....
 r3294 | bugman | 2007-05-09 00:59:45 +0200 (Wed, 09 May 2007) | 7 lines
 Changed paths:
    M /1.2/specific_fns/model_free.py

 Bug fix.

 The setting up of Monte Carlo simulations was failing because of the 
existance of the empty
 parameter vector [].  This situation occurs after model selection when the 
residue is deselected
 (after the reading of a model-free results file).
.....


Modified:
    1.3/specific_fns/model_free/model_free.py

Modified: 1.3/specific_fns/model_free/model_free.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/specific_fns/model_free/model_free.py?rev=3308&r1=3307&r2=3308&view=diff
==============================================================================
--- 1.3/specific_fns/model_free/model_free.py (original)
+++ 1.3/specific_fns/model_free/model_free.py Sun Jun 24 17:13:00 2007
@@ -1032,7 +1032,7 @@
             #    continue
 
             # No params.
-            if not hasattr(relax_data_store.res[self.run][i], 'params'):
+            if not hasattr(relax_data_store.res[self.run][i], 'params') or 
not relax_data_store.res[self.run][i].params:
                 continue
 
             # Local tm.




Related Messages


Powered by MHonArc, Updated Sun Jun 24 17:40:05 2007