mailr13306 - /branches/gui_testing/gui/analyses/auto_rx_base.py


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

Header


Content

Posted by edward on June 29, 2011 - 16:00:
Author: bugman
Date: Wed Jun 29 16:00:19 2011
New Revision: 13306

URL: http://svn.gna.org/viewcvs/relax?rev=13306&view=rev
Log:
The assemble_data() method no longer returns the 'complete' flag.

This is obvious from the missing data list.


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

Modified: branches/gui_testing/gui/analyses/auto_rx_base.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/analyses/auto_rx_base.py?rev=13306&r1=13305&r2=13306&view=diff
==============================================================================
--- branches/gui_testing/gui/analyses/auto_rx_base.py (original)
+++ branches/gui_testing/gui/analyses/auto_rx_base.py Wed Jun 29 16:00:19 2011
@@ -117,13 +117,12 @@
 
         See the docstring for auto_analyses.relax_fit for details.  All data 
is taken from the relax data store, so data upload from the GUI to there must 
have been previously performed.
 
-        @return:    A container with all the data required for the 
auto-analysis, i.e. its keyword arguments seq_args, file_names, relax_times, 
int_method, mc_num.  Also a flag stating if the data is complete and a list 
of missing data types.
-        @rtype:     class instance, bool, list of str
+        @return:    A container with all the data required for the 
auto-analysis, i.e. its keyword arguments seq_args, file_names, relax_times, 
int_method, mc_num.  Also a list of missing data types.
+        @rtype:     class instance, list of str
         """
 
         # The data container.
         data = Container()
-        complete = True
         missing = []
 
         # The pipe name.
@@ -194,11 +193,10 @@
 
         # No sequence data.
         if not data.seq_args and not data.structure_file:
-            complete = False
             missing.append('Sequence data files (text or PDB)')
 
         # Return the container, flag, and list of missing data.
-        return data, complete, missing
+        return data, missing
 
 
     def build_right_box(self):




Related Messages


Powered by MHonArc, Updated Wed Jun 29 16:20:02 2011