mailr2462 - /1.2/specific_fns/model_free.py


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

Header


Content

Posted by edward on April 11, 2006 - 09:09:
Author: bugman
Date: Tue Apr 11 09:09:02 2006
New Revision: 2462

URL: http://svn.gna.org/viewcvs/relax?rev=2462&view=rev
Log:
Fix to bug #5746.

The bug report submitted by Chris MacRaild "c.a.macraild at leeds.ac.uk" is 
located at
https://gna.org/bugs/?func=detailitem&item_id=5746.

The issue was simply an incorrect test in the 'self.model_statistics()' 
function of the model-free
specific code.  An 'and' should have been an 'or'.


Modified:
    1.2/specific_fns/model_free.py

Modified: 1.2/specific_fns/model_free.py
URL: 
http://svn.gna.org/viewcvs/relax/1.2/specific_fns/model_free.py?rev=2462&r1=2461&r2=2462&view=diff
==============================================================================
--- 1.2/specific_fns/model_free.py (original)
+++ 1.2/specific_fns/model_free.py Tue Apr 11 09:09:02 2006
@@ -2515,7 +2515,7 @@
 
         # Sequence specific data.
         # Statistics for a single residue.
-        if not global_stats and not combine:
+        if not global_stats or not combine:
             # Skip unselected residues.
             if not self.relax.data.res[self.run][instance].select:
                 return None, None, None




Related Messages


Powered by MHonArc, Updated Tue Apr 11 09:40:04 2006