mailr7201 - /branches/rdc_analysis/prompt/rdc.py


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

Header


Content

Posted by edward on August 15, 2008 - 18:14:
Author: bugman
Date: Fri Aug 15 10:09:17 2008
New Revision: 7201

URL: http://svn.gna.org/viewcvs/relax?rev=7201&view=rev
Log:
Allowed the data column to be None in the rdc.read() user function.

This allows a file containing only errors to be read.


Modified:
    branches/rdc_analysis/prompt/rdc.py

Modified: branches/rdc_analysis/prompt/rdc.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/rdc_analysis/prompt/rdc.py?rev=7201&r1=7200&r2=7201&view=diff
==============================================================================
--- branches/rdc_analysis/prompt/rdc.py (original)
+++ branches/rdc_analysis/prompt/rdc.py Fri Aug 15 10:09:17 2008
@@ -230,6 +230,13 @@
         separated by the symbol ',', and store the RDCs under the identifier 
'Tb'.
 
         relax> rdc.read('Tb', 'Tb.txt', sep=',')
+
+
+        If the individual spin RDC errors are located in the file 
'rdc_err.txt' in column number 5,
+        then to read these values into relax, type one of:
+
+        relax> rdc.read('phage', 'rdc_err.txt', error_col=4)
+        relax> rdc.read(id='phage', file='rdc_err.txt', error_col=4)
         """
 
         # Function intro text.
@@ -281,8 +288,8 @@
             raise RelaxNoneIntError, ('spin name column', spin_name_col)
 
         # The data column.
-        if type(data_col) != int:
-            raise RelaxIntError, ('data column', data_col)
+        if data_col != None and type(data_col) != int:
+            raise RelaxNoneIntError, ('data column', data_col)
 
         # The error column.
         if error_col != None and type(error_col) != int:




Related Messages


Powered by MHonArc, Updated Sat Aug 16 15:00:10 2008