mailr6771 - /1.3/sample_scripts/full_analysis.py


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

Header


Content

Posted by edward on July 05, 2008 - 23:36:
Author: bugman
Date: Sat Jul  5 23:36:16 2008
New Revision: 6771

URL: http://svn.gna.org/viewcvs/relax?rev=6771&view=rev
Log:
Fix for the full_analysis.py script.  The references to the diffusion tensor 
object were incorrect.


Modified:
    1.3/sample_scripts/full_analysis.py

Modified: 1.3/sample_scripts/full_analysis.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/sample_scripts/full_analysis.py?rev=6771&r1=6770&r2=6771&view=diff
==============================================================================
--- 1.3/sample_scripts/full_analysis.py (original)
+++ 1.3/sample_scripts/full_analysis.py Sat Jul  5 23:36:16 2008
@@ -433,8 +433,8 @@
             # Tests.
             for param in params:
                 # Get the parameter values.
-                prev_val = getattr(prev_pipe.diff, param)
-                curr_val = getattr(cdp.diff, param)
+                prev_val = getattr(prev_pipe.diff_tensor, param)
+                curr_val = getattr(cdp.diff_tensor, param)
 
                 # Test if not identical.
                 if prev_val != curr_val:




Related Messages


Powered by MHonArc, Updated Sun Jul 06 00:00:24 2008