Rosetta
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
global_variables.py
Go to the documentation of this file.
1 #!/usr/bin/python
2 
3 # (c) Copyright Rosetta Commons Member Institutions.
4 # (c) This file is part of the Rosetta software suite and is made available under license.
5 # (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
6 # (c) For more information, see http://www.rosettacommons.org. Questions about this can be
7 # (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
8 
9 ## @file /GUIs/window_main/global_variables.py
10 ## @brief Global variables for PyRosetta Toolkit
11 ## @author Jared Adolf-Bryfogle (jadolfbr@gmail.com)
12 
13 
14 #Globals that will change regularly by many functions and classes accross the GUI should go here.
15 
16 
17 #This gets set to the toolkit directory by pyrosetta_toolkit.py.
18 current_directory=""
19 
20 
21 #NOTE: To use these global variables import the file into your module. Use 'from window_main import global_variables' as the main toolkit directory is added to PythonPath at launch of the GUI
22 #These variables are truly global and just by importing the module, the instance of the variable can be accessed and manipulated.