mailr16444 - /branches/uf_redesign/generic_fns/sequence.py


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

Header


Content

Posted by edward on May 24, 2012 - 15:12:
Author: bugman
Date: Thu May 24 15:12:01 2012
New Revision: 16444

URL: http://svn.gna.org/viewcvs/relax?rev=16444&view=rev
Log:
The sequence.write uf back end now also defaults to True for all sequence 
columns.


Modified:
    branches/uf_redesign/generic_fns/sequence.py

Modified: branches/uf_redesign/generic_fns/sequence.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/uf_redesign/generic_fns/sequence.py?rev=16444&r1=16443&r2=16444&view=diff
==============================================================================
--- branches/uf_redesign/generic_fns/sequence.py (original)
+++ branches/uf_redesign/generic_fns/sequence.py Thu May 24 15:12:01 2012
@@ -389,7 +389,7 @@
             raise RelaxInvalidSeqError(data, "the error data is missing")
 
 
-def write(file, dir=None, sep=None, mol_name_flag=False, res_num_flag=False, 
res_name_flag=False, spin_num_flag=False, spin_name_flag=False, force=False):
+def write(file, dir=None, sep=None, mol_name_flag=True, res_num_flag=True, 
res_name_flag=True, spin_num_flag=True, spin_name_flag=True, force=False):
     """Write the molecule, residue, and/or sequence data.
 
     This calls the relax_io.write_spin_data() function to do most of the 
work.
@@ -397,24 +397,19 @@
 
     @param file:                The name of the file to write the data to.
     @type file:                 str
-    @keyword dir:               The directory to contain the file (defaults 
to the current directory
-                                if None).
+    @keyword dir:               The directory to contain the file (defaults 
to the current directory if None).
     @type dir:                  str or None
     @keyword sep:               The column seperator which, if None, 
defaults to whitespace.
     @type sep:                  str or None
-    @keyword mol_name_flag:     A flag which if True will cause the molecule 
name column to be
-                                written.
+    @keyword mol_name_flag:     A flag which if True will cause the molecule 
name column to be written.
     @type mol_name_flag:        bool
-    @keyword res_num_flag:      A flag which if True will cause the residue 
number column to be
-                                written.
+    @keyword res_num_flag:      A flag which if True will cause the residue 
number column to be written.
     @type res_num_flag:         bool
-    @keyword res_name_flag:     A flag which if True will cause the residue 
name column to be
-                                written.
+    @keyword res_name_flag:     A flag which if True will cause the residue 
name column to be written.
     @type res_name_flag:        bool
     @keyword spin_name_flag:    A flag which if True will cause the spin 
name column to be written.
     @type spin_name_flag:       bool
-    @keyword spin_num_flag:     A flag which if True will cause the spin 
number column to be
-                                written.
+    @keyword spin_num_flag:     A flag which if True will cause the spin 
number column to be written.
     @keyword force:             A flag which if True will cause an existing 
file to be overwritten.
     @type force:                bin
     """




Related Messages


Powered by MHonArc, Updated Thu May 24 15:20:02 2012