mailr20613 - /branches/peak_intensities/pipe_control/spectrum.py


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

Header


Content

Posted by edward on August 16, 2013 - 19:16:
Author: bugman
Date: Fri Aug 16 19:16:39 2013
New Revision: 20613

URL: http://svn.gna.org/viewcvs/relax?rev=20613&view=rev
Log:
Fixes for the pipe_control.spectrum.read() function.

An error was referencing a now non-existent variable and the docstring has 
been fixed.


Modified:
    branches/peak_intensities/pipe_control/spectrum.py

Modified: branches/peak_intensities/pipe_control/spectrum.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/peak_intensities/pipe_control/spectrum.py?rev=20613&r1=20612&r2=20613&view=diff
==============================================================================
--- branches/peak_intensities/pipe_control/spectrum.py (original)
+++ branches/peak_intensities/pipe_control/spectrum.py Fri Aug 16 19:16:39 
2013
@@ -464,7 +464,7 @@
     @keyword dim:           The dimension of the peak list to associate the 
data with.
     @type dim:              int
     @keyword int_col:       The column containing the peak intensity data 
(used by the generic intensity file format).
-    @type int_col:          int
+    @type int_col:          int or list of int
     @keyword int_method:    The integration method, one of 'height', 'point 
sum' or 'other'.
     @type int_method:       str
     @keyword spin_id_col:   The column containing the spin ID strings (used 
by the generic intensity file format).  If supplied, the mol_name_col, 
res_name_col, res_num_col, spin_name_col, and spin_num_col arguments must be 
none.
@@ -538,7 +538,7 @@
 
         # Checks for matching length of spectrum IDs and intensities columns.
         if len(spectrum_id) != len(intensity):
-            raise RelaxError("The spectrum ID list %s has a different number 
of elements to the intensity column list %s." % (spectrum_id, nr_int_col))
+            raise RelaxError("The spectrum ID list %s has a different number 
of elements to the intensity column list %s." % (spectrum_id, len(intensity)))
 
         # Loop over the intensity data.
         for i in range(len(intensity)):




Related Messages


Powered by MHonArc, Updated Fri Aug 16 19:20:01 2013