mailr5565 - /1.3/prompt/relax_data.py


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

Header


Content

Posted by edward on April 10, 2008 - 17:20:
Author: bugman
Date: Thu Apr 10 17:14:15 2008
New Revision: 5565

URL: http://svn.gna.org/viewcvs/relax?rev=5565&view=rev
Log:
Converted the relax_data.write() force arg to a bool.


Modified:
    1.3/prompt/relax_data.py

Modified: 1.3/prompt/relax_data.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/prompt/relax_data.py?rev=5565&r1=5564&r2=5565&view=diff
==============================================================================
--- 1.3/prompt/relax_data.py (original)
+++ 1.3/prompt/relax_data.py Thu Apr 10 17:14:15 2008
@@ -387,7 +387,7 @@
         relax_data.read(ri_label=ri_label, frq_label=frq_label, frq=frq, 
file=file, dir=dir, mol_name_col=mol_name_col, res_num_col=res_num_col, 
res_name_col=res_name_col, spin_num_col=spin_num_col, 
spin_name_col=spin_name_col, data_col=data_col, error_col=error_col, sep=sep)
 
 
-    def write(self, run=None, ri_label=None, frq_label=None, file=None, 
dir=None, force=0):
+    def write(self, run=None, ri_label=None, frq_label=None, file=None, 
dir=None, force=False):
         """Function for writing R1, R2, or NOE relaxation data to a file.
 
         Keyword Arguments
@@ -403,7 +403,7 @@
 
         dir:  The directory name.
 
-        force:  A flag which, if set to 1, will cause the file to be 
overwritten.
+        force:  A flag which if True will cause the file to be overwritten.
 
 
         Description
@@ -446,8 +446,8 @@
             raise RelaxNoneStrError, ('directory name', dir)
 
         # The force flag.
-        if type(force) != int or (force != 0 and force != 1):
-            raise RelaxBinError, ('force flag', force)
+        if type(force) != bool:
+            raise RelaxBoolError, ('force flag', force)
 
         # Execute the functional code.
         self.__relax__.specific.relax_data.write(run=run, ri_label=ri_label, 
frq_label=frq_label, file=file, dir=dir, force=force)




Related Messages


Powered by MHonArc, Updated Thu Apr 10 17:40:12 2008