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:


_______________________________________________
relax (http://www.nmr-relax.com)

This is the relax-commits mailing list
[email protected]

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits

Reply via email to