mailr13643 - /branches/gui_testing/gui/user_functions/spectrum.py


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

Header


Content

Posted by edward on July 15, 2011 - 12:58:
Author: bugman
Date: Fri Jul 15 12:58:29 2011
New Revision: 13643

URL: http://svn.gna.org/viewcvs/relax?rev=13643&view=rev
Log:
A number of bug fixes for the spectrum.read_intensities() user function.


Modified:
    branches/gui_testing/gui/user_functions/spectrum.py

Modified: branches/gui_testing/gui/user_functions/spectrum.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/user_functions/spectrum.py?rev=13643&r1=13642&r2=13643&view=diff
==============================================================================
--- branches/gui_testing/gui/user_functions/spectrum.py (original)
+++ branches/gui_testing/gui/user_functions/spectrum.py Fri Jul 15 12:58:29 
2011
@@ -28,7 +28,7 @@
 
 # GUI module imports.
 from base import UF_base, UF_page
-from gui.misc import gui_to_str, str_to_gui
+from gui.misc import gui_to_int, gui_to_str, str_to_gui
 from gui.paths import WIZARD_IMAGE_PATH
 from gui.wizard import Wiz_window
 
@@ -280,10 +280,6 @@
 
         # The file name.
         file = gui_to_str(self.file.GetValue())
-
-        # No file.
-        if not file:
-            return
 
         # The values.
         spectrum_id = gui_to_str(self.spectrum_id.GetValue())
@@ -300,8 +296,6 @@
         res_name_col =  gui_to_int(self.res_name_col.GetValue())
         spin_num_col =  gui_to_int(self.spin_num_col.GetValue())
         spin_name_col = gui_to_int(self.spin_name_col.GetValue())
-        data_col =      gui_to_int(self.data_col.GetValue())
-        err_col =       gui_to_int(self.err_col.GetValue())
 
         # The column separator.
         sep = str(self.sep.GetValue())
@@ -312,7 +306,7 @@
         spin_id = gui_to_str(self.spin_id.GetValue())
 
         # Read the peak intensities.
-        self.gui.interpreter.spectrum.read(file=file, 
spectrum_id=spectrum_id, heteronuc=heteronuc, proton=proton, int_col=int_col, 
int_method=int_method, spin_id_col=spin_id_col, mol_name_col=mol_name_col, 
res_num_col=res_num_col, res_name_col=res_name_col, 
spin_num_col=spin_num_col, spin_name_col=spin_name_col, sep=sep, 
spin_id=spin_id, ncproc=ncproc)
+        self.gui.interpreter.spectrum.read_intensities(file=file, 
spectrum_id=spectrum_id, heteronuc=heteronuc, proton=proton, int_col=int_col, 
int_method=int_method, spin_id_col=spin_id_col, mol_name_col=mol_name_col, 
res_num_col=res_num_col, res_name_col=res_name_col, 
spin_num_col=spin_num_col, spin_name_col=spin_name_col, sep=sep, 
spin_id=spin_id, ncproc=ncproc)
 
 
 




Related Messages


Powered by MHonArc, Updated Fri Jul 15 13:40:02 2011