mailr8860 - in /branches/bmrb/bmrblib/kinetics: heteronucl_NOEs.py heteronucl_T2_relaxation.py


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

Header


Content

Posted by edward on February 22, 2009 - 19:48:
Author: bugman
Date: Sun Feb 22 19:48:45 2009
New Revision: 8860

URL: http://svn.gna.org/viewcvs/relax?rev=8860&view=rev
Log:
The R2 and NOE data is now translated as well.


Modified:
    branches/bmrb/bmrblib/kinetics/heteronucl_NOEs.py
    branches/bmrb/bmrblib/kinetics/heteronucl_T2_relaxation.py

Modified: branches/bmrb/bmrblib/kinetics/heteronucl_NOEs.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bmrb/bmrblib/kinetics/heteronucl_NOEs.py?rev=8860&r1=8859&r2=8860&view=diff
==============================================================================
--- branches/bmrb/bmrblib/kinetics/heteronucl_NOEs.py (original)
+++ branches/bmrb/bmrblib/kinetics/heteronucl_NOEs.py Sun Feb 22 19:48:45 2009
@@ -27,6 +27,7 @@
 """
 
 # relax module imports.
+from bmrblib.misc import translate
 from bmrblib.tag_category import TagCategory
 from pystarlib.SaveFrame import SaveFrame
 from pystarlib.TagTable import TagTable
@@ -75,11 +76,11 @@
 
         # Place the args into the namespace.
         self.frq = frq
-        self.res_nums = res_nums
-        self.res_names = res_names
-        self.atom_names = atom_names
-        self.data = data
-        self.errors = errors
+        self.res_nums = translate(res_nums)
+        self.res_names = translate(res_names)
+        self.atom_names = translate(atom_names)
+        self.data = translate(data)
+        self.errors = translate(errors)
 
         # Set up the R1 specific variables.
         self.r1_inc = self.r1_inc + 1

Modified: branches/bmrb/bmrblib/kinetics/heteronucl_T2_relaxation.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bmrb/bmrblib/kinetics/heteronucl_T2_relaxation.py?rev=8860&r1=8859&r2=8860&view=diff
==============================================================================
--- branches/bmrb/bmrblib/kinetics/heteronucl_T2_relaxation.py (original)
+++ branches/bmrb/bmrblib/kinetics/heteronucl_T2_relaxation.py Sun Feb 22 
19:48:45 2009
@@ -27,6 +27,7 @@
 """
 
 # relax module imports.
+from bmrblib.misc import translate
 from bmrblib.tag_category import TagCategory
 from pystarlib.SaveFrame import SaveFrame
 from pystarlib.TagTable import TagTable
@@ -75,11 +76,11 @@
 
         # Place the args into the namespace.
         self.frq = frq
-        self.res_nums = res_nums
-        self.res_names = res_names
-        self.atom_names = atom_names
-        self.data = data
-        self.errors = errors
+        self.res_nums = translate(res_nums)
+        self.res_names = translate(res_names)
+        self.atom_names = translate(atom_names)
+        self.data = translate(data)
+        self.errors = translate(errors)
 
         # Set up the R1 specific variables.
         self.r1_inc = self.r1_inc + 1




Related Messages


Powered by MHonArc, Updated Sun Feb 22 23:20:05 2009