mailr13624 - /branches/gui_testing/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 July 14, 2011 - 16:42:
Author: bugman
Date: Thu Jul 14 16:42:28 2011
New Revision: 13624

URL: http://svn.gna.org/viewcvs/relax?rev=13624&view=rev
Log:
Added the noe.spectrum_type user function page to the NOE peak intensity 
reading wizard.


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

Modified: branches/gui_testing/gui/analyses/auto_noe.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/analyses/auto_noe.py?rev=13624&r1=13623&r2=13624&view=diff
==============================================================================
--- branches/gui_testing/gui/analyses/auto_noe.py (original)
+++ branches/gui_testing/gui/analyses/auto_noe.py Thu Jul 14 16:42:28 2011
@@ -52,6 +52,7 @@
 from gui import paths
 from gui.settings import load_sequence
 from gui.user_functions.base import UF_page
+from gui.user_functions.noe import Spectrum_type_page
 from gui.user_functions.spectrum import Baseplane_rmsd_page, 
Integration_points_page, Read_intensities_page, Replicated_page
 from gui.wizard import Wiz_window
 
@@ -337,8 +338,8 @@
 
         # Error type selection page.
         self.page_error_type = Error_type_page(self.wizard, self.gui)
-        self.page_indices['type'] = 
self.wizard.add_page(self.page_error_type, apply_button=False)
-        self.wizard.set_seq_next_fn(self.page_indices['type'], 
self.wizard_page_after_error_type)
+        self.page_indices['err_type'] = 
self.wizard.add_page(self.page_error_type, apply_button=False)
+        self.wizard.set_seq_next_fn(self.page_indices['err_type'], 
self.wizard_page_after_error_type)
 
         # The spectrum.replicated page.
         page = Replicated_page(self.wizard, self.gui)
@@ -353,6 +354,10 @@
         # The spectrum.integration_points page.
         page = Integration_points_page(self.wizard, self.gui)
         self.page_indices['pts'] = self.wizard.add_page(page)
+
+        # The noe.spectrum_type page.
+        page = Spectrum_type_page(self.wizard, self.gui)
+        self.page_indices['spectrum_type'] = self.wizard.add_page(page)
 
         # Run the wizard.
         self.wizard.run()




Related Messages


Powered by MHonArc, Updated Thu Jul 14 17:00:02 2011