mailr16336 - /branches/uf_redesign/gui/analyses/auto_noe.py


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

Header


Content

Posted by edward on May 18, 2012 - 14:58:
Author: bugman
Date: Fri May 18 14:58:10 2012
New Revision: 16336

URL: http://svn.gna.org/viewcvs/relax?rev=16336&view=rev
Log:
The NOE auto-analysis peak loading wizard has been converted to the new 
auto-generated uf design.


Modified:
    branches/uf_redesign/gui/analyses/auto_noe.py

Modified: branches/uf_redesign/gui/analyses/auto_noe.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/uf_redesign/gui/analyses/auto_noe.py?rev=16336&r1=16335&r2=16336&view=diff
==============================================================================
--- branches/uf_redesign/gui/analyses/auto_noe.py (original)
+++ branches/uf_redesign/gui/analyses/auto_noe.py Fri May 18 14:58:10 2012
@@ -424,7 +424,7 @@
         """
 
         # Go to the spectrum.integration_points page.
-        int_method = gui_to_str(self.page_intensity.int_method.GetValue())
+        int_method = 
gui_to_str(self.page_intensity.uf_args['int_method'].GetValue())
         if int_method != 'height':
             return self.page_indices['pts']
 
@@ -441,7 +441,7 @@
         """
 
         # Go to the spectrum.integration_points page.
-        int_method = gui_to_str(self.page_intensity.int_method.GetValue())
+        int_method = 
gui_to_str(self.page_intensity.uf_args['int_method'].GetValue())
         if int_method != 'height':
             return self.page_indices['pts']
 
@@ -457,11 +457,11 @@
         page = self.wizard.get_page(self.page_indices['read'])
 
         # Set the spectrum ID.
-        id = page.spectrum_id.GetValue()
+        id = page.uf_args['spectrum_id'].GetValue()
 
         # Set the ID in the spectrum.replicated page.
         page = self.wizard.get_page(self.page_indices['pts'])
-        page.spectrum_id.SetStringSelection(str_to_gui(id))
+        page.uf_args['spectrum_id'].SetValue(id)
 
 
     def wizard_update_repl(self):
@@ -471,11 +471,11 @@
         page = self.wizard.get_page(self.page_indices['read'])
 
         # Set the spectrum ID.
-        id = page.spectrum_id.GetValue()
+        id = page.uf_args['spectrum_id'].GetValue()
 
         # Set the ID in the spectrum.replicated page.
         page = self.wizard.get_page(self.page_indices['repl'])
-        page.spectrum_id_boxes[0].SetStringSelection(str_to_gui(id))
+        page.uf_args['spectrum_ids'].SetValue(value=id, index=0)
 
 
     def wizard_update_rmsd(self):
@@ -485,11 +485,11 @@
         page = self.wizard.get_page(self.page_indices['read'])
 
         # Set the spectrum ID.
-        id = page.spectrum_id.GetValue()
+        id = page.uf_args['spectrum_id'].GetValue()
 
         # Set the ID in the spectrum.baseplane_rmsd page.
         page = self.wizard.get_page(self.page_indices['rmsd'])
-        page.spectrum_id.SetStringSelection(str_to_gui(id))
+        page.uf_args['spectrum_id'].SetValue(id)
 
 
     def wizard_update_spectrum_type(self):
@@ -499,11 +499,11 @@
         page = self.wizard.get_page(self.page_indices['read'])
 
         # Set the spectrum ID.
-        id = page.spectrum_id.GetValue()
+        id = page.uf_args['spectrum_id'].GetValue()
 
         # Set the ID in the noe.spectrum_type page.
         page = self.wizard.get_page(self.page_indices['spectrum_type'])
-        page.spectrum_id.SetStringSelection(str_to_gui(id))
+        page.uf_args['spectrum_id'].SetValue(id)
 
 
 




Related Messages


Powered by MHonArc, Updated Fri May 18 15:00:02 2012