mailr27296 - /trunk/pipe_control/relax_data.py


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

Header


Content

Posted by edward on January 26, 2015 - 11:06:
Author: bugman
Date: Mon Jan 26 11:06:30 2015
New Revision: 27296

URL: http://svn.gna.org/viewcvs/relax?rev=27296&view=rev
Log:
Bug fix for the printouts from the relax_data.read user function.

This problem was introduced in the last relax release (at r26588).  The 
problem is that the spin ID
in the loaded relaxation data printout is the same for all data, being the 
spin ID of the first
spin.  This has no effect on how relax runs, it is only incorrect feedback.


Modified:
    trunk/pipe_control/relax_data.py

Modified: trunk/pipe_control/relax_data.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/pipe_control/relax_data.py?rev=27296&r1=27295&r2=27296&view=diff
==============================================================================
--- trunk/pipe_control/relax_data.py    (original)
+++ trunk/pipe_control/relax_data.py    Mon Jan 26 11:06:30 2015
@@ -788,7 +788,7 @@
             spins[j].ri_data_err[ri_id] = errors[i]
 
             # Append the data for printing out.
-            data.append([spin_ids[j], repr(values[i]), repr(errors[i])])
+            data.append([spin_ids[i], repr(values[i]), repr(errors[i])])
 
     # Print out.
     if verbose:




Related Messages


Powered by MHonArc, Updated Mon Jan 26 11:40:02 2015