mailr7807 - /1.3/generic_fns/intensity.py


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

Header


Content

Posted by sebastien . morin . 1 on October 18, 2008 - 17:40:
Author: semor
Date: Sat Oct 18 17:40:46 2008
New Revision: 7807

URL: http://svn.gna.org/viewcvs/relax?rev=7807&view=rev
Log:
Added missing arguments.


Modified:
    1.3/generic_fns/intensity.py

Modified: 1.3/generic_fns/intensity.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/generic_fns/intensity.py?rev=7807&r1=7806&r2=7807&view=diff
==============================================================================
--- 1.3/generic_fns/intensity.py (original)
+++ 1.3/generic_fns/intensity.py Sat Oct 18 17:40:46 2008
@@ -39,7 +39,7 @@
 from relax_warnings import RelaxWarning, RelaxNoSpinWarning
 
 
-def det_dimensions(file_data, proton, heteronuc):
+def det_dimensions(file_data, proton, heteronuc, int_col):
     """Determine which are the proton and heteronuclei dimensions of the 
XEasy text file.
 
     @return:    None
@@ -48,7 +48,7 @@
     # Loop over the lines of the file until the proton and heteronucleus is 
reached.
     for i in xrange(len(file_data)):
         # Extract the data.
-        res_num, w1_name, w2_name, intensity = intensity_xeasy(file_data[i])
+        res_num, w1_name, w2_name, intensity = intensity_xeasy(file_data[i], 
int_col)
 
         # Proton in w1, heteronucleus in w2.
         if w1_name == proton and w2_name == heteronuc:
@@ -393,7 +393,7 @@
 
     # Determine the proton and heteronucleus dimensions in the XEasy text 
file.
     if format == 'xeasy':
-        det_dimensions(file_data=file_data, proton=proton, 
heteronuc=heteronuc)
+        det_dimensions(file_data=file_data, proton=proton, 
heteronuc=heteronuc, int_col=int_col)
 
     # Loop over the peak intensity data.
     for i in xrange(len(file_data)):




Related Messages


Powered by MHonArc, Updated Sat Oct 18 18:00:04 2008