mailr11598 - in /branches/bieri_gui: ./ auto_analyses/noe.py


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

Header


Content

Posted by edward on September 17, 2010 - 10:31:
Author: bugman
Date: Fri Sep 17 10:31:39 2010
New Revision: 11598

URL: http://svn.gna.org/viewcvs/relax?rev=11598&view=rev
Log:
Merged revisions 11597 via svnmerge from 
svn+ssh://bugman@xxxxxxxxxxx/svn/relax/1.3

........
  r11597 | bugman | 2010-09-17 10:30:22 +0200 (Fri, 17 Sep 2010) | 3 lines
  
  Some fixes for the NOE auto-analysis.
........

Modified:
    branches/bieri_gui/   (props changed)
    branches/bieri_gui/auto_analyses/noe.py

Propchange: branches/bieri_gui/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Fri Sep 17 10:31:39 2010
@@ -1,1 +1,1 @@
-/1.3:1-11594
+/1.3:1-11597

Modified: branches/bieri_gui/auto_analyses/noe.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/auto_analyses/noe.py?rev=11598&r1=11597&r2=11598&view=diff
==============================================================================
--- branches/bieri_gui/auto_analyses/noe.py (original)
+++ branches/bieri_gui/auto_analyses/noe.py Fri Sep 17 10:31:39 2010
@@ -35,11 +35,9 @@
 
 
 class NOE_calc:
-    def __init__(self, seq_args=None, pipe_name='noe', noe_ref=None, 
noe_ref_rmsd=None, noe_sat=None, noe_sat_rmsd=None, unresolved=None, 
pdb_file=None, output_file='noe.out', results_dir=None, int_method='height', 
heteronuc='N', proton='H', heteronuc_pdb='N'):
+    def __init__(self, pipe_name='noe', noe_ref=None, noe_ref_rmsd=None, 
noe_sat=None, noe_sat_rmsd=None, seq_args=None, unresolved=None, 
pdb_file=None, output_file='noe.out', results_dir=None, int_method='height', 
heteronuc='N', proton='H', heteronuc_pdb='N'):
         """Perform relaxation curve fitting.
 
-        @keyword seq_args:      The sequence data (file name, dir, 
mol_name_col, res_num_col, res_name_col, spin_num_col, spin_name_col, sep).  
These are the arguments to the  sequence.read() user function, for more 
information please see the documentation for that function.
-        @type seq_args:         list of lists of [str, None or str, None or 
int, None or int, None or int, None or int, None or int, None or int, None or 
int, None or str]
         @keyword pipe_name:     The name of the data pipe to create.
         @type pipe_name:        str
         @keyword noe_ref:       The NOE reference peak file.
@@ -50,6 +48,8 @@
         @type sat_ref:          file
         @keyword noe_sat_rmsd:  Background RMSD of saturated NOE spectrum.
         @type noe_sat_rmsd:     int
+        @keyword seq_args:      The sequence data (file name, dir, 
mol_name_col, res_num_col, res_name_col, spin_num_col, spin_name_col, sep).  
These are the arguments to the  sequence.read() user function, for more 
information please see the documentation for that function.
+        @type seq_args:         list of lists of [str, None or str, None or 
int, None or int, None or int, None or int, None or int, None or int, None or 
int, None or str]
         @keyword unresolved:    Residues to exclude.
         @type unresolved:       str
         @keyword pdb_file:      Structure file in pdb format.
@@ -73,13 +73,14 @@
         self.noe_sat = noe_sat
         self.noe_sat_rmsd = noe_sat_rmsd
         self.noe_ref = noe_ref
-        self.noe_ref_rmsd =noe_ref_rmsd
+        self.noe_ref_rmsd = noe_ref_rmsd
+        self.seq_args = seq_args
         self.unresolved = unresolved
         self.pdb_file = pdb_file
         self.output_file = output_file
         self.results_dir = results_dir
         if results_dir:
-            self.grace_dir = results_dir+sep+'grace'
+            self.grace_dir = results_dir + sep + 'grace'
         else:
             self.grace_dir = None
         self.int_method = int_method




Related Messages


Powered by MHonArc, Updated Fri Sep 17 11:20:01 2010