mailr13359 - /1.3/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 July 01, 2011 - 13:36:
Author: bugman
Date: Fri Jul  1 13:36:36 2011
New Revision: 13359

URL: http://svn.gna.org/viewcvs/relax?rev=13359&view=rev
Log:
Another fix for the bug of sr #2764 (https://gna.org/support/?2764).

The sequence file variable is in self.data!!!


Modified:
    1.3/gui/analyses/auto_rx_base.py

Modified: 1.3/gui/analyses/auto_rx_base.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/gui/analyses/auto_rx_base.py?rev=13359&r1=13358&r2=13359&view=diff
==============================================================================
--- 1.3/gui/analyses/auto_rx_base.py (original)
+++ 1.3/gui/analyses/auto_rx_base.py Fri Jul  1 13:36:36 2011
@@ -107,7 +107,7 @@
 
         # The sequence data (file name, dir, mol_name_col, res_num_col, 
res_name_col, spin_num_col, spin_name_col, sep).  These are the arguments to 
the  sequence.read() user function, for more information please see the 
documentation for that function.
         if hasattr(self.data, 'sequence_file'):
-            data.seq_args = [ds.relax_gui.sequence_file, None, None, 1, 
None, None, None, None]
+            data.seq_args = [self.data.sequence_file, None, None, 1, None, 
None, None, None]
         else:
             data.seq_args = None
 




Related Messages


Powered by MHonArc, Updated Fri Jul 01 14:40:01 2011