mailr8938 - /branches/bmrb/bmrblib/kinetics/heteronucl_T1_relaxation.py


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

Header


Content

Posted by edward on March 08, 2009 - 23:56:
Author: bugman
Date: Sun Mar  8 23:56:24 2009
New Revision: 8938

URL: http://svn.gna.org/viewcvs/relax?rev=8938&view=rev
Log:
Bug fix for the T1.read() method.

The values and errors were being set to the residue number!


Modified:
    branches/bmrb/bmrblib/kinetics/heteronucl_T1_relaxation.py

Modified: branches/bmrb/bmrblib/kinetics/heteronucl_T1_relaxation.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bmrb/bmrblib/kinetics/heteronucl_T1_relaxation.py?rev=8938&r1=8937&r2=8938&view=diff
==============================================================================
--- branches/bmrb/bmrblib/kinetics/heteronucl_T1_relaxation.py (original)
+++ branches/bmrb/bmrblib/kinetics/heteronucl_T1_relaxation.py Sun Mar  8 
23:56:24 2009
@@ -298,8 +298,8 @@
         # Convert the residue numbers to ints and the values and errors to 
floats.
         for i in range(len(res_nums)):
             res_nums[i] = int(res_nums[i])
-            values[i] = float(res_nums[i])
-            errors[i] = float(res_nums[i])
+            values[i] = float(values[i])
+            errors[i] = float(errors[i])
 
         # Return the data.
         return res_nums, res_names, atom_names, values, errors




Related Messages


Powered by MHonArc, Updated Mon Mar 09 12:00:08 2009