Author: bugman
Date: Fri Nov  7 18:48:31 2014
New Revision: 26454

URL: http://svn.gna.org/viewcvs/relax?rev=26454&view=rev
Log:
The frame order auto-analysis summary functions are now more robust.

If the data pipe already exists for some reason, it is deleted prior to the new 
one being created.


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=26454&r1=26453&r2=26454&view=diff
==============================================================================
--- branches/frame_order_cleanup/auto_analyses/frame_order.py   (original)
+++ branches/frame_order_cleanup/auto_analyses/frame_order.py   Fri Nov  7 
18:48:31 2014
@@ -137,6 +137,8 @@
 
         # Create a data pipe.
         pipe_name = 'temp %s' % models[i]
+        if pipes.has_pipe(pipe_name):
+            pipes.delete(pipe_name)
         pipes.create(pipe_name, 'frame order')
 
         # Load the data.
@@ -282,6 +284,8 @@
 
         # Create a data pipe.
         pipe_name = 'temp %s' % models[i]
+        if pipes.has_pipe(pipe_name):
+            pipes.delete(pipe_name)
         pipes.create(pipe_name, 'frame order')
 
         # Load the data.


_______________________________________________
relax (http://www.nmr-relax.com)

This is the relax-commits mailing list
[email protected]

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits

Reply via email to