Project

General

Profile

How to add an AppionLoop GUI page » History » Version 31

Amber Herold, 07/21/2014 04:08 PM

1 1 Amber Herold
h1. How to add an AppionLoop GUI page
2
3
See feature #2634 for more information on the code that supports these directions.
4
5
# *Add a wiki page to the [[Appion_Processing|Appion User Guide]] describing how to use this feature*
6 9 Amber Herold
 
7 10 Amber Herold
** You can just add a shell and a description of what it does to start. You can add screen shots and parameter details after adding the GUI completely. You just need to have the URL available for subsequent steps in this guide. If you are at a total loss, just link to the main table of contents: [[Appion Processing]]
8
 
9 1 Amber Herold
# *Add a publication reference for the package you are using*
10
 
11 15 Amber Herold
## Edit source:/trunk/myamiweb/processing/inc/publicationList.inc to include an entry for any references you need to add to your launch page.
12 1 Amber Herold
 
13
# *Create a new form class for your feature*
14 2 Amber Herold
 
15 1 Amber Herold
** Create a new file in myami/myamiweb/processing/inc/forms. Call it coolFeatureForm.inc.
16 22 Amber Herold
** Decide which Basic Form class you will be using as a base class. 
17
### If you are adding a GUI to launch a python script that is based on the appionLoop class that is found in appionLoop2.py, you will base your GUI class on the BasicLoopForm.
18
**** Create a class in this file that extends the BasicLoopForm class like this:
19 1 Amber Herold
<pre>
20
require_once "basicLoopForm.inc";
21
22 11 Amber Herold
class CoolFeatureForm extends BasicLoopForm
23 1 Amber Herold
{
24
...
25
</pre>
26 22 Amber Herold
**** Examples are available in source:/trunk/myamiweb/processing/inc/forms/autoMaskForm.inc and source:trunk/myamiweb/processing/inc/forms/makeDDStackForm.inc
27
&nbsp;
28
--OR--
29
### If you are not using the appionLoop python script, base your new GUI form on the basicLayoutForm class (source:trunk/myamiweb/processing/inc/forms/basicLayoutForm.inc)
30
**** Create a class in this file that extends the BasicLayoutForm class like this:
31 20 Amber Herold
<pre>
32 1 Amber Herold
require_once "basicLayoutForm.inc";
33 20 Amber Herold
34
class CoolFeatureForm extends BasicLayoutForm
35
{
36
...
37
</pre>
38 22 Amber Herold
**** Example: source:trunk/myamiweb/processing/inc/forms/uploadExternalRefine.inc
39 12 Amber Herold
** Use the following class diagram as reference
40
!guiclassdiagram.jpg!
41 2 Amber Herold
&nbsp;
42 25 Amber Herold
# *Set parameters needed by the Basic Form classes in the constructor*
43 1 Amber Herold
&nbsp;
44
<pre>
45 27 Amber Herold
class CoolFeatureForm extends BasicLayoutForm
46
{
47
48 28 Amber Herold
  // This is the constructor function. It is called as soon as this class is 
49
  // instantiated with a line like: $form = new CoolFeatureForm($expId, $extraHTML).
50
  // The first 2 parameters are needed for the BasicLayoutForm class that this class extends from.  
51
  // The rest of the parameters are specific to this form.
52
53
  function __construct( $expId, $extraHTML='', $stackid='', $modelid='', $uploadIterations='', $mass='', $apix='', $box='') 
54 27 Amber Herold
  {
55
    // You must first call the parent class(BasicLayoutForm) constructor. 
56
    // Pass it the $expId and $extraHTML variables. Errors and test results are passed through $extraHTML.
57 28 Amber Herold
58 27 Amber Herold
    parent::__construct($expId, $extraHTML);
59
60
    //------ Set Parameters for the parent class, BasicLoopForm or BasicLayoutForm (general Appion params) -----//
61 1 Amber Herold
		
62 27 Amber Herold
    // Set the publications to be references on the web pages
63
    $pubList = array('appion'); // The publication reference key that you added to publicationList.inc
64
    $this->setPublications( $pubList );
65 1 Amber Herold
66 27 Amber Herold
    // Job Type should be unique to Appion. Used in the database to determine the type of job being run.
67
    $this->setJobType( 'maskmaker' ); 
68 1 Amber Herold
69 27 Amber Herold
    // The name of the folder that all runs of this job type will be stored in.
70
    $this->setOutputDirectory( 'mask' );  
71 1 Amber Herold
72 27 Amber Herold
    // A portion of the run name that will be common (by default) to all runs of this job type. A unique number is appended to individual run names.
73
    $this->setBaseRunName( 'maskrun' ); 
74 2 Amber Herold
75 27 Amber Herold
    // The title on the web page for this feature.
76
    $this->setTitle( 'Auto Masking Launcher' ); 
77 2 Amber Herold
78 27 Amber Herold
    // The Heading on the web page for this feature.
79
    $this->setHeading( 'Automated Masking with EM Hole Finder' ); 
80 26 Amber Herold
81 27 Amber Herold
    // The name of the python executable file that this GUI corresponds to. It should be based on the AppionLoop class and located in the myami/appion/bin folder.
82
    $this->setExeFile( 'automasker.py' );
83 26 Amber Herold
84 27 Amber Herold
    // A URL corresponding to a wiki page in the Appion User Guide with information on running this feature.  
85
    $this->setGuideURL( "http://emg.nysbc.org/projects/appion/wiki/Appion_Processing" );
86 3 Amber Herold
87 27 Amber Herold
    // True to activate "test single image" field of Appion Loop parameters.
88
    $this->setTestable( True ); 
89 3 Amber Herold
90 27 Amber Herold
    // The output directory will be created in the Appion run directory rather than Leginon.
91
    $this->setUseLegOutDir( False );
92 3 Amber Herold
93 27 Amber Herold
    // Flag to hide the description field of the run parameters. True enables the description field.
94
    $this->setShowDesc( False ); 
95 3 Amber Herold
96 27 Amber Herold
    // Flag to use the cluster parameter form rather than the run parameter form.
97
    // Reconstructions and remote jobs use the cluster parameters, generic single processor jobs use run parameters.
98
    // Set to True to use Cluster Parameters
99
    $this->setUseCluster( False );
100 3 Amber Herold
</pre>
101 5 Amber Herold
&nbsp;
102 3 Amber Herold
# *Take an inventory of the parameters that are specific to your new feature and are passed into your python executable file*
103
** Make a list of all the parameters that your GUI needs to expose to the user. For each parameter decide on:
104
### *id* I might also call it a parameter key or name. This should match the name of the parameter as it appears on the command line. So a flag in a command that looks like "--mycoolflag" should be named "mycoolflag" in this class.
105
### *default value*
106
### *label* This is the text that is actually shown to the user in the GUI next to the GUI element associated with it (check box, selection, text, etc)
107
### *help text* A longer description of the parameter and tips for what a user should set it to.
108
### *validations* Decide what should be considered valid values for this parameter. Is it required? Does it have to be a number or greater than zero? 
109
&nbsp;
110
# *Add your parameters help text to myami/myamiweb/processing/js/help.js*
111
&nbsp;
112 5 Amber Herold
** Open source:/trunk/myamiweb/processing/js/help.js
113 3 Amber Herold
** Add a new namespace for your form, you can copy the 'simple' section. Don't forget any commas.
114
** add a help string for each of the parameter keys in your form
115 1 Amber Herold
&nbsp;
116
# *Add your parameters to your form class constructor*
117 5 Amber Herold
&nbsp;
118 29 Amber Herold
** Back in the constructor function of the class that you created to extend BasicLoopForm or BasicLayoutForm, add your parameters.
119 5 Amber Herold
** First set the help section using the namespace that you just added to help.js.
120
<pre>
121
// Get an instance of the form parameters associated with this class
122
$params = $this->getFormParams();
123
		
124
// The help section corresponds to the array key for these parameters found in help.js for popup help.
125
$params->setHelpSection( "em_hole_finder" );
126
</pre>
127
** Add a line for each of the parameters in your form. The first parameter of the addParam() function is the id of the param, followed by the default value (passed into the constructor), followed by the label (what is shown to the user in the GUI).
128
<pre>
129
$params->addParam( "downsample", $downsample, "Downsample" );
130 1 Amber Herold
$params->addParam( "compsizethresh", $compsizethresh, "Component size thresholding" );
131 5 Amber Herold
</pre>
132
** Add any validation requirements that are needed for your parameters. Use the addValidation() function of the FormParameter class. The first field is the parameter id. The second field is a key word that corresponds to the type of validation needed. 
133
<pre>
134
$params->addValidation( "numpart", "req" );
135
</pre>
136
** Avaialble validation types are as follows, and updates can be found in myami/myamiweb/inc/formValidator.php
137
<pre>
138
// available validations, check formValidator.php for changes:
139
/*
140
	 * required : 					addValidation("variableName", "req");
141
	 * MaxLengh : 					addValidation("variableName", "maxlen=10");
142 7 Amber Herold
	 * MinLengh : 					addValidation("variableName", "mixlen=3");
143
	 * Email	: 					addValidation("variableName", "email");
144 6 Amber Herold
	 * Numeric	: 					addValidation("variableName", "num");
145
	 * Alphabetic : 				addValidation("variableName", "alpha");
146
	 * Alphabetic and spaces : 		addValidation("variableName", "alpha_s");
147
	 * Alpha-numeric and spaces: 	addValidation("variableName", "alnum_s");
148
	 * Float: 						addValidation("variableName", "float");
149
	 * absolute path: path_exist: 	addValidation("variableName", "abs_path");
150
	 * path existence : 			addValidation("variableName", "path_exist");
151
	 * folder permission : 			addValidation("variableName", "folder_permission");
152
	 * file existence : 			addValidation("variableName", "file_exist");
153
	 * Float w/fixed decimal space: addValidation("variableName", "float_d=2");
154
*/
155
</pre>
156
&nbsp;
157
# *Generate a form for the parameters that are specific to this program (not AppionLoop params)*
158
&nbsp;
159 29 Amber Herold
** There are 2 places available for adding your own parameters to the GUI page. The most common place is to the Right Hand side of the Appion Loop parameters. To add your parameters to this section of the screen, override the function called *generateAdditionalFormRight()* in your form class extending BasicLoopForm. You may also add parameters to the space on the left directly below the Appion Loop parameters by overriding the function called *generateAdditionalFormLeft()*. If you are extending your class from BasicLayoutForm, anything added to generateAdditionalFormLeft() will show up directly below the Run or Cluster parameters at the top of your form.
160
** These functions return the HTML code required to display your parameter GUI elements to the user. You may add HTML here directly. To add an input element for your parameter, use one of the functions available in the FormParameters (source:trunk/myamiweb/inc/formParameters.inc) class. The first field of these functions is always the parameter id.
161 30 Amber Herold
Current functions available include:
162 31 Amber Herold
### insertTextArea( $name, $rows=3, $cols=65, $note='', $helpkey='' )
163
### insertTextField( $name, $size=20, $note='', $helpkey='' )
164
### insertTextFieldInRow( $name, $size=20, $note='', $helpkey='' )
165
### insertStackedTextField( $name, $size=20, $note='', $helpkey='' )
166
### insertCheckboxField( $name, $note='', $helpkey='' )
167
### insertRadioField( $name, $value, $label, $note='', $helpkey='' )
168
### insertSelectField( $name, $options, $note='', $helpkey='' )
169 30 Amber Herold
** Options MUST be a dictionary, to allow a more descriptive string to be shown to the user for each option, if desired. If the option value and description should be the same, then that value should be both the key and the value. <pre>$options = array( "first" => "first description", "second" => "second description"...)</pre> The key is what gets kept in the POST array.
170 31 Amber Herold
### insertStackedSelectField( $name, $options, $note='', $helpkey='' )
171 6 Amber Herold
<pre>
172
	public function generateAdditionalFormRight()
173
	{
174 1 Amber Herold
                // Calling updateFormParams() will check the php $_POST array for any values that were previously set for the parameters in this form. 
175 7 Amber Herold
		$this->updateFormParams();
176
		$params = $this->getFormParams();
177
		
178
		$fieldSize = 3;
179
		
180
		$html .= "<b>Make DD stack params:</b><br />\n";
181
		
182
		$html.= $params->insertCheckboxField( "align" );
183
		$html.= $params->insertCheckboxField( "defergpu" );
184 1 Amber Herold
		$html.= $params->insertCheckboxField( "no_keepstack" );
185
		$html.= $params->insertTextFieldInRow( "bin", $fieldSize );
186 7 Amber Herold
		
187 29 Amber Herold
                // It is important to return the $html variable. This contains all the 
188
                // html code needed to display your parameters.
189
		return $html; 
190 1 Amber Herold
	}	
191 7 Amber Herold
</pre>
192
&nbsp;
193 8 Amber Herold
# *If you have implemented "test single image" on the python side, add code to display the test results in your class extending BasicLoopForm*
194 7 Amber Herold
&nbsp;
195 29 Amber Herold
** You can use the getTestResults() function in autoMaskForm.inc (source:trunk/myamiweb/processing/inc/forms/autoMaskForm.inc) as an example.
196 7 Amber Herold
<pre>
197
	// getTestResults() should return the HTML code needed to display test results any way this method
198
	// prefers to have them displayed. The results will be placed below a printout of the test command and 
199
	// above the launch form. Note that an instance of this class is not required to use this function.
200
	static public function getTestResults( $outdir, $runname, $testfilename )
201 1 Amber Herold
	{
202 8 Amber Herold
...
203 1 Amber Herold
</pre>
204 10 Amber Herold
&nbsp;
205
# *Add a link to your page in the menuprocessing.php file or from another page*
206
&nbsp;
207 7 Amber Herold
** The menuprocessing file is a bit tricky to work with.If you do not link to your page from there, look for the appropriate php page where your feature should launch from.
208 1 Amber Herold
** You will add a link to runAppionLoop.php and pass the experiment ID and the name of your new form class in the URL. Here are a couple of examples with the MakeDDStackForm class and the AutoMaskForm Class:
209
<pre>
210
$ddStackform = "MakeDDStackForm";
211
'name'=>"<a href='runAppionLoop.php?expId=$sessionId&form=$ddStackform'>Create frame stack</a>",
212
</pre>
213
<pre>
214
$form = "AutoMaskForm";
215
echo "  <h3><a href='runAppionLoop.php?expId=$expId&form=$form'>Auto Masking</a></h3>\n";
216
</pre>
217
** Note that the name of the class MUST match the name of the PHP file that the class is defined in. So if you extended the BasicLoopForm to a class named CoolFeatureForm, the file where that class lives must be at myami/myamiweb/processing/inc/forms/coolFeatureForm.inc.
218
&nbsp;
219
# *Add installation instructions for any new 3rd party software required*
220
&nbsp;
221
** If this feature requires 3rd party software on the python side on the processing host, add directions for installing this software now. It should have a new wiki page under the [[Processing Server Installation]] instructions.
222
&nbsp;