mailr14036 - in /branches/gui_testing/auto_analyses: noe.py relax_fit.py stereochem_analysis.py


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

Header


Content

Posted by edward on August 01, 2011 - 16:59:
Author: bugman
Date: Mon Aug  1 16:59:04 2011
New Revision: 14036

URL: http://svn.gna.org/viewcvs/relax?rev=14036&view=rev
Log:
The auto-analysis status objects are now set up for all auto-analyses.


Modified:
    branches/gui_testing/auto_analyses/noe.py
    branches/gui_testing/auto_analyses/relax_fit.py
    branches/gui_testing/auto_analyses/stereochem_analysis.py

Modified: branches/gui_testing/auto_analyses/noe.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/auto_analyses/noe.py?rev=14036&r1=14035&r2=14036&view=diff
==============================================================================
--- branches/gui_testing/auto_analyses/noe.py (original)
+++ branches/gui_testing/auto_analyses/noe.py Mon Aug  1 16:59:04 2011
@@ -56,13 +56,14 @@
         @type save_state:       bool
         """
 
-        # Store the args.
-        self.save_state = save_state
-
         # Execution lock.
         status.exec_lock.acquire('auto noe')
 
+        # Set up the analysis status object.
+        status.init_auto_analysis(pipe_name, type='noe')
+
         # Store the args.
+        self.save_state = save_state
         self.pipe_name = pipe_name
         self.file_root = file_root
         self.results_dir = results_dir

Modified: branches/gui_testing/auto_analyses/relax_fit.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/auto_analyses/relax_fit.py?rev=14036&r1=14035&r2=14036&view=diff
==============================================================================
--- branches/gui_testing/auto_analyses/relax_fit.py (original)
+++ branches/gui_testing/auto_analyses/relax_fit.py Mon Aug  1 16:59:04 2011
@@ -61,6 +61,9 @@
 
         # Execution lock.
         status.exec_lock.acquire('auto relax fit')
+
+        # Set up the analysis status object.
+        status.init_auto_analysis(pipe_name, type='relax_fit')
 
         # Store the args.
         self.pipe_name = pipe_name

Modified: branches/gui_testing/auto_analyses/stereochem_analysis.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/auto_analyses/stereochem_analysis.py?rev=14036&r1=14035&r2=14036&view=diff
==============================================================================
--- branches/gui_testing/auto_analyses/stereochem_analysis.py (original)
+++ branches/gui_testing/auto_analyses/stereochem_analysis.py Mon Aug  1 
16:59:04 2011
@@ -1,6 +1,6 @@
 
###############################################################################
 #                                                                            
 #
-# Copyright (C) 2010 Edward d'Auvergne                                       
 #
+# Copyright (C) 2010-2011 Edward d'Auvergne                                  
 #
 #                                                                            
 #
 # This file is part of the program relax.                                    
 #
 #                                                                            
 #
@@ -143,6 +143,9 @@
         # Execution lock.
         status.exec_lock.acquire('auto stereochem analysis')
 
+        # Set up the analysis status object.
+        status.init_auto_analysis('stereochem', type='stereochem')
+
         # Store all the args.
         self.stage = stage
         self.results_dir = results_dir




Related Messages


Powered by MHonArc, Updated Mon Aug 01 17:20:02 2011