mailr5281 - /1.3/prompt/relax_fit.py


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

Header


Content

Posted by sebastien . morin . 1 on April 03, 2008 - 23:15:
Author: semor
Date: Thu Apr  3 23:00:27 2008
New Revision: 5281

URL: http://svn.gna.org/viewcvs/relax?rev=5281&view=rev
Log:
More removal of the run argument as part of the moving to the new design.


Modified:
    1.3/prompt/relax_fit.py

Modified: 1.3/prompt/relax_fit.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/prompt/relax_fit.py?rev=5281&r1=5280&r2=5281&view=diff
==============================================================================
--- 1.3/prompt/relax_fit.py (original)
+++ 1.3/prompt/relax_fit.py Thu Apr  3 23:00:27 2008
@@ -41,13 +41,8 @@
         self.__relax__ = relax
 
 
-    def mean_and_error(self, run=None):
+    def mean_and_error(self):
         """Function for calculating the average intensity and standard 
deviation of all spectra.
-
-        Keyword Arguments
-        ~~~~~~~~~~~~~~~~~
-
-        run:  The name of the run.
 
 
         Errors of individual residues at a single time point
@@ -93,25 +88,18 @@
 
         # Function intro text.
         if self.__relax__.interpreter.intro:
-            text = sys.ps3 + "relax_fit.mean_and_error("
-            text = text + "run=" + `run` + ")"
+            text = sys.ps3 + "relax_fit.mean_and_error()"
             print text
 
-        # The run argument.
-        if type(run) != str:
-            raise RelaxStrError, ('run', run)
-
         # Execute the functional code.
-        self.__relax__.specific.relax_fit.mean_and_error(run=run)
-
-
-    def read(self, run=None, file=None, dir=None, relax_time=0.0, 
format='sparky', heteronuc='N', proton='HN', int_col=None):
+        relax_fit_obj.mean_and_error()
+
+
+    def read(self, file=None, dir=None, relax_time=0.0, format='sparky', 
heteronuc='N', proton='HN', int_col=None):
         """Function for reading peak intensities from a file.
 
         Keyword Arguments
         ~~~~~~~~~~~~~~~~~
-
-        run:  The name of the run.
 
         file:  The name of the file containing the sequence data.
 
@@ -163,8 +151,7 @@
         # Function intro text.
         if self.__relax__.interpreter.intro:
             text = sys.ps3 + "relax_fit.read("
-            text = text + "run=" + `run`
-            text = text + ", file=" + `file`
+            text = text + "file=" + `file`
             text = text + ", dir=" + `dir`
             text = text + ", relax_time=" + `relax_time`
             text = text + ", format=" + `format`
@@ -173,10 +160,6 @@
             text = text + ", int_col=" + `int_col` + ")"
             print text
 
-        # The run argument.
-        if type(run) != str:
-            raise RelaxStrError, ('run', run)
-
         # The file name.
         if type(file) != str:
             raise RelaxStrError, ('file name', file)
@@ -206,16 +189,14 @@
             raise RelaxNoneIntError, ('intensity column', int_col)
 
         # Execute the functional code.
-        self.__relax__.specific.relax_fit.read(run=run, file=file, dir=dir, 
relax_time=relax_time, format=format, heteronuc=heteronuc, proton=proton, 
int_col=int_col)
-
-
-    def select_model(self, run=None, model='exp'):
+        relax_fit_obj.read(file=file, dir=dir, relax_time=relax_time, 
format=format, heteronuc=heteronuc, proton=proton, int_col=int_col)
+
+
+    def select_model(self, model='exp'):
         """Function for the selection of the relaxation curve type.
 
         Keyword Arguments
         ~~~~~~~~~~~~~~~~~
-
-        run:  The name of the run.
 
         model:  The type of relaxation curve to fit.
 
@@ -236,17 +217,12 @@
         # Function intro text.
         if self.__relax__.interpreter.intro:
             text = sys.ps3 + "relax_fit.select_model("
-            text = text + "run=" + `run`
-            text = text + ", model=" + `model` + ")"
+            text = text + "model=" + `model` + ")"
             print text
-
-        # The run argument.
-        if type(run) != str:
-            raise RelaxStrError, ('run', run)
 
         # The model argument.
         if type(model) != str:
             raise RelaxStrError, ('model', model)
 
         # Execute the functional code.
-        self.__relax__.specific.relax_fit.select_model(run=run, model=model)
+        relax_fit_obj.select_model(model=model)




Related Messages


Powered by MHonArc, Updated Fri Apr 04 11:00:24 2008