mailr10470 - /branches/bieri_gui/gui_bieri/analyses/auto_model_free.py


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

Header


Content

Posted by edward on January 28, 2010 - 10:24:
Author: bugman
Date: Thu Jan 28 10:24:46 2010
New Revision: 10470

URL: http://svn.gna.org/viewcvs/relax?rev=10470&view=rev
Log:
Changed the calls to gui_bieri.execution.calc_modelfree.start_modelfree().

The 'self' arg has been removed (this should never be passed into functions). 
 The args have also
been converted to keyword args.


Modified:
    branches/bieri_gui/gui_bieri/analyses/auto_model_free.py

Modified: branches/bieri_gui/gui_bieri/analyses/auto_model_free.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/analyses/auto_model_free.py?rev=10470&r1=10469&r2=10470&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/analyses/auto_model_free.py (original)
+++ branches/bieri_gui/gui_bieri/analyses/auto_model_free.py Thu Jan 28 
10:24:46 2010
@@ -670,7 +670,7 @@
 
             # Loop over the global models solving for each, one after the 
other.
             for global_model in global_models:
-                status = start_modelfree(self, global_model, True, 
global_setting, file_setting, sequencefile)
+                status = start_modelfree(global_model=global_model, 
automatic=True)
 
                 # A problem was encountered, so do not continue (a dialog 
should probably appear here).
                 if not status:
@@ -682,12 +682,12 @@
             # All models, excluding the final run.
             if which_model != 'final':
                 # Solve for the local_tm, sphere, prolate, oblate, or 
ellipsoid global models.
-                enable_models = start_modelfree(self, which_model, False, 
global_setting, file_setting, sequencefile)
+                enable_models = start_modelfree(global_model=which_model, 
automatic=False)
 
             # The final run.
             else:
                 # Execute the final run.
-                results_for_table = startmodelfree(self, which_model, False, 
global_setting, file_setting, sequencefile)
+                results_for_table = 
start_modelfree(global_model=which_model, automatic=False)
 
                 # set global results variables
                 ds.relax_gui.table_residue = results_for_table[0]




Related Messages


Powered by MHonArc, Updated Thu Jan 28 10:40:02 2010