mailr10911 - /branches/bieri_gui/gui_bieri/analyses/auto_noe.py


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

Header


Content

Posted by michael . bieri on February 25, 2010 - 01:40:
Author: michaelbieri
Date: Thu Feb 25 01:40:41 2010
New Revision: 10911

URL: http://svn.gna.org/viewcvs/relax?rev=10911&view=rev
Log:
Datastore objets for structure file and unresolved residues in NOE 
calculation is generated.


Modified:
    branches/bieri_gui/gui_bieri/analyses/auto_noe.py

Modified: branches/bieri_gui/gui_bieri/analyses/auto_noe.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/analyses/auto_noe.py?rev=10911&r1=10910&r2=10911&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/analyses/auto_noe.py (original)
+++ branches/bieri_gui/gui_bieri/analyses/auto_noe.py Thu Feb 25 01:40:41 2010
@@ -519,9 +519,6 @@
         # Re-alias.
         self.data = data
 
-        # Re-alias in the peak intensity object as well.
-        self.peak_intensity.data = data
-
 
     def peak_list_header(self, box):
         """Add header for peak list section
@@ -636,21 +633,17 @@
         else:
             self.field_results_dir.SetValue(str(self.data.save_dir))
 
-
-
-        # THESE INFORMATIONS HAVE TO BE SAVED!!!!!!!!!!!!!
-
         # The structure file.
-        #if upload:
-        #    self.data.structure_file = str(self.field_structure.GetValue())
-        #else:
-        #    self.field_structure.SetValue(str(self.data.structure_file))
+        if upload:
+            self.data.structure_file = str(self.field_structure.GetValue())
+        else:
+            self.field_structure.SetValue(str(self.data.structure_file))
 
         # Unresolved residues.
-        #if upload:
-        #    self.data.unresolved = str(self.field_unresolved.GetValue())
-        #else:
-        #    self.field_unresolved.SetValue(str(self.data.unresolved))
+        if upload:
+            self.data.unresolved = str(self.field_unresolved.GetValue())
+        else:
+            self.field_unresolved.SetValue(str(self.data.unresolved))
 
         # Reference peak file.
         if upload:




Related Messages


Powered by MHonArc, Updated Thu Feb 25 03:40:03 2010