mailr12623 - /1.3/generic_fns/pdc.py


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

Header


Content

Posted by edward on February 24, 2011 - 12:53:
Author: bugman
Date: Thu Feb 24 12:53:17 2011
New Revision: 12623

URL: http://svn.gna.org/viewcvs/relax?rev=12623&view=rev
Log:
The R1 value and error are now being read directly from the PDC file.


Modified:
    1.3/generic_fns/pdc.py

Modified: 1.3/generic_fns/pdc.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/generic_fns/pdc.py?rev=12623&r1=12622&r2=12623&view=diff
==============================================================================
--- 1.3/generic_fns/pdc.py (original)
+++ 1.3/generic_fns/pdc.py Thu Feb 24 12:53:17 2011
@@ -161,7 +161,9 @@
 
             # Get the relaxation data.
             if ri_label != 'NOE':
-                rx, rx_err = convert_relax_data(row[3:])
+                #rx, rx_err = convert_relax_data(row[3:])
+                rx = float(row[-2])
+                rx_err = float(row[-1])
             else:
                 rx = float(row[-3])
                 rx_err = float(row[-2])




Related Messages


Powered by MHonArc, Updated Thu Feb 24 13:00:02 2011