mailr26031 - /branches/frame_order_cleanup/auto_analyses/frame_order.py


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

Header


Content

Posted by edward on September 25, 2014 - 10:40:
Author: bugman
Date: Thu Sep 25 10:40:46 2014
New Revision: 26031

URL: http://svn.gna.org/viewcvs/relax?rev=26031&view=rev
Log:
The summarise() function call is now after saving the final state in the 
frame order auto-analysis.

This is needed because the summarise() function will create a new set of data 
pipes, loading the
results which already exist under a different pipe name in the relax data 
store.  Otherwise the
final state file is twice as big as it should be.


Modified:
    branches/frame_order_cleanup/auto_analyses/frame_order.py

Modified: branches/frame_order_cleanup/auto_analyses/frame_order.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/frame_order_cleanup/auto_analyses/frame_order.py?rev=26031&r1=26030&r2=26031&view=diff
==============================================================================
--- branches/frame_order_cleanup/auto_analyses/frame_order.py   (original)
+++ branches/frame_order_cleanup/auto_analyses/frame_order.py   Thu Sep 25 
10:40:46 2014
@@ -354,12 +354,12 @@
             # Visualisation of the final results.
             self.visualisation(model='final')
 
-            # Create a summary file.
-            summarise(dir=self.results_dir, force=True)
-
             # Save the final program state.
             if self._final_state:
                 self.interpreter.state.save('final_state', 
dir=self.results_dir, force=True)
+
+            # Create a summary file.
+            summarise(dir=self.results_dir, force=True)
 
         # Clean up.
         finally:




Related Messages


Powered by MHonArc, Updated Thu Sep 25 11:20:03 2014