mailr11617 - /branches/bieri_gui/gui_bieri/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 September 29, 2010 - 15:21:
Author: bugman
Date: Wed Sep 29 15:21:15 2010
New Revision: 11617

URL: http://svn.gna.org/viewcvs/relax?rev=11617&view=rev
Log:
Fix for the relaxation curve fitting analysis in the GUI.

The heteronucleus name needs a '@' character at the start to be a spin ID.


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

Modified: branches/bieri_gui/gui_bieri/analyses/auto_rx_base.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/analyses/auto_rx_base.py?rev=11617&r1=11616&r2=11617&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/analyses/auto_rx_base.py (original)
+++ branches/bieri_gui/gui_bieri/analyses/auto_rx_base.py Wed Sep 29 15:21:15 
2010
@@ -311,8 +311,8 @@
         # Hetero nucleus name.
         data.heteronuc = global_settings[2]
 
-        # Spin id og hetero nucleus
-        data.load_spin_ids = global_settings[2]
+        # Spin id of the heteronucleus.
+        data.load_spin_ids = '@' + global_settings[2]
 
         # Proton name.
         data.proton = global_settings[3]
@@ -463,7 +463,7 @@
 
         # Execute.
         Relax_fit(file_root=self.filename, 
pipe_name='rx'+'_'+str(time.asctime(time.localtime())), 
seq_args=data.seq_args, results_directory=data.save_dir, 
file_names=data.file_names, relax_times=data.relax_times, 
int_method=data.int_method, mc_num=data.mc_num, pdb_file=data.structure_file, 
unresolved=data.unresolved, view_plots = False, heteronuc=data.heteronuc, 
proton=data.proton, load_spin_ids=data.load_spin_ids, inc=data.inc)
-        
+
         # Feedback about success.
         if not __main__.debug:
             wx.CallAfter(self.gui.controller.log_panel.AppendText, 
'\n\n__________________________________________________________\n\nSuccessfully
 calculated Rx 
values\n__________________________________________________________')




Related Messages


Powered by MHonArc, Updated Wed Sep 29 15:40:02 2010