mailr14066 - /branches/gui_testing/gui/analyses/auto_noe.py


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

Header


Content

Posted by edward on August 02, 2011 - 15:48:
Author: bugman
Date: Tue Aug  2 15:48:48 2011
New Revision: 14066

URL: http://svn.gna.org/viewcvs/relax?rev=14066&view=rev
Log:
Fix for the assemble_data() method of the NOE auto-analysis - the number of 
spectra can be less than 3.


Modified:
    branches/gui_testing/gui/analyses/auto_noe.py

Modified: branches/gui_testing/gui/analyses/auto_noe.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/analyses/auto_noe.py?rev=14066&r1=14065&r2=14066&view=diff
==============================================================================
--- branches/gui_testing/gui/analyses/auto_noe.py (original)
+++ branches/gui_testing/gui/analyses/auto_noe.py Tue Aug  2 15:48:48 2011
@@ -152,7 +152,7 @@
             missing.append("Sequence data")
 
         # Spectral data.
-        if not hasattr(cdp, 'spectrum_ids') or len(cdp.spectrum_ids) < 3:
+        if not hasattr(cdp, 'spectrum_ids') or len(cdp.spectrum_ids) < 2:
             missing.append("Spectral data")
 
         # Return the container and list of missing data.




Related Messages


Powered by MHonArc, Updated Tue Aug 02 16:20:01 2011