mailr10343 - /branches/bieri_gui/gui_bieri/analyses/auto_model_free.py


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

Header


Content

Posted by edward on January 26, 2010 - 09:12:
Author: bugman
Date: Tue Jan 26 09:12:52 2010
New Revision: 10343

URL: http://svn.gna.org/viewcvs/relax?rev=10343&view=rev
Log:
Changed the scope of the model-free variables.

These were shifted from the relax_gui module namespace into the model-free 
class namespace.  These
will eventually be shifted into the relax data store if any of these are not 
hardcoded.


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

Modified: branches/bieri_gui/gui_bieri/analyses/auto_model_free.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/analyses/auto_model_free.py?rev=10343&r1=10342&r2=10343&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/analyses/auto_model_free.py (original)
+++ branches/bieri_gui/gui_bieri/analyses/auto_model_free.py Tue Jan 26 
09:12:52 2010
@@ -25,7 +25,7 @@
 """Main module for the relax graphical user interface."""
 
 # Python module imports.
-from os import sep
+from os import getcwd, sep
 import wx
 
 # relax GUI module imports.
@@ -46,6 +46,19 @@
 
         # Store the main class.
         self.gui = gui
+
+        # Model-free variables.
+        self.model_source = getcwd()
+        self.model_save = getcwd()
+        self.selection = "AIC"
+        self.models = ["m0", "m1", "m2", "m3", "m4", "m5", "m6", "m7", "m8", 
"m9"]
+        self.nmrfreq1 = 600
+        self.nmrfreq2 = 800
+        self.nmrfreq3 = 900
+        self.paramfiles1 = ["", "", ""]
+        self.paramfiles2 = ["", "", ""]
+        self.paramfiles3 = ["", "", ""]
+        self.results_dir_model = getcwd()
 
         # Create the panel.
         self.panel_4_copy_1 = wx.Panel(self.gui.modelfree, -1)
@@ -102,13 +115,13 @@
         self.aic = wx.RadioButton(self.gui.modelfree, -1, "AIC")
         self.bic = wx.RadioButton(self.gui.modelfree, -1, "BIC")
         self.structure_file_copy_copy_1_copy = 
wx.StaticText(self.gui.modelfree, -1, "Structure file (.pdb)", 
style=wx.ALIGN_RIGHT)
-        self.structure_r21_copy_1_copy = wx.TextCtrl(self.gui.modelfree, -1, 
structure_file_pdb)
+        self.structure_r21_copy_1_copy = wx.TextCtrl(self.gui.modelfree, -1, 
self.gui.structure_file_pdb_msg)
         self.structure_r21_copy_1_copy.SetEditable(False)
         self.chan_struc_r21_copy_1_copy = wx.Button(self.gui.modelfree, -1, 
"Change")
         self.label_2_copy_copy_copy_2_copy_copy_copy_copy_1_copy = 
wx.StaticText(self.gui.modelfree, -1, "Unresolved residues:", 
style=wx.ALIGN_RIGHT)
         self.unresolved_r21_copy_1_copy = wx.TextCtrl(self.gui.modelfree, 
-1, "")
         self.label_2_copy_copy_3_copy_copy_copy_copy_2 = 
wx.StaticText(self.gui.modelfree, -1, "Results directory", 
style=wx.ALIGN_RIGHT)
-        self.resultsdir_r21_copy_2 = wx.TextCtrl(self.gui.modelfree, -1, 
results_dir_model)
+        self.resultsdir_r21_copy_2 = wx.TextCtrl(self.gui.modelfree, -1, 
self.results_dir_model)
         self.results_directory_r21_copy_2 = wx.Button(self.gui.modelfree, 
-1, "Change")
         self.label_5_copy_1_copy_3 = wx.StaticText(self.gui.modelfree, -1, 
"Execute relax        ", style=wx.ALIGN_RIGHT)
         self.relax_start_modelfree = wx.BitmapButton(self.gui.modelfree, -1, 
wx.Bitmap(IMAGE_PATH+'relax_start.gif', wx.BITMAP_TYPE_ANY))
@@ -1347,10 +1360,10 @@
 
     def resdir_modelfree(self, event):
         backup = self.resultsdir_r21_copy_2.GetValue()
-        results_dir_model = opendir('Select results directory', backup)
-        if results_dir_model == None:
-            results_dir_model = backup
-        self.resultsdir_r21_copy_2.SetValue(results_dir_model)
+        self.results_dir_model = opendir('Select results directory', backup)
+        if self.results_dir_model == None:
+            self.results_dir_model = backup
+        self.resultsdir_r21_copy_2.SetValue(self.results_dir_model)
         event.Skip()
 
 




Related Messages


Powered by MHonArc, Updated Tue Jan 26 09:20:02 2010