Project

General

Profile

Refine Refactor documentation » History » Version 23

Amber Herold, 09/13/2012 02:35 PM

1 11 Amber Herold
h1. Refinement Web User Interface documentation
2 2 Amber Herold
3 6 Amber Herold
h2. Steps to add a new refinement method to the pipeline
4
5 14 Amber Herold
# Add an entry to selectRefinementType.php for the new method.
6 16 Amber Herold
## Add a logo image to the myamiweb/processing/img file if it does not already exist.
7 14 Amber Herold
## In myamiweb/processing, open selectRefinementType.php and copy and existing methods code block.
8
## Replace the logo image file with the appropriate file name
9
## Replace the method key with an appropriate short name that indicates the type of method you are adding. This key will be used in other files to identify the type of refinement to launch. For example, in the following line of code *method=eman* should be replaced with an appropriate method name.<pre><h3><a href='selectStackForm.php?expId=$expId&method=eman'>EMAN1 projection-matching refinement</a></h3></pre>
10 15 Amber Herold
## Edit the description of the method to be informative to a novice user.
11 19 Amber Herold
&nbsp;
12 18 Amber Herold
# Add a reference paper related to the method. 
13
## Open myamiweb/processing/inc/publicationList.inc and copy a $PUBLICATIONS array entry code block.
14
## Modify the fields for the publication that should be referenced for the method you are adding.
15
## Modify the $PUBLICATIONS array key to match the method key that you defined in selectRefinementType.php.
16 19 Amber Herold
&nbsp;
17 20 Amber Herold
# Create a python class to run the preprefine step. 
18
## You must name the file prepRefineMethod.py where _Method_ is the same method key that you used in the previous step, except the first leter of the method is capitalized. This file should be located in myami/appion/bin and can be created by copying a similar existing methods prepRefine file.
19 19 Amber Herold
&nbsp;
20 6 Amber Herold
# Create a new class which extends BasicRefineForm
21 22 Amber Herold
## You can copy an existing methods form, such as xmippRefineForm.inc in myamiweb/processing/inc/forms.
22
## Name the file methodRefineForm.inc where _method_ is the same as the method key used in the above steps.
23
&nbsp;
24 6 Amber Herold
# Create a new class which extends RefineFormParameters. This is optional, but recommended.
25
# Decide what information you need to collect from the user and add a form parameter for each item.
26
## example: adding parameters to a new parameter class
27
### note that the parent constuctor is called first, passing any default values along. The RefineFormParameters base class defines parameters that are common to most refinement methods. You only need to add parameters that are not already defined in the base class.
28
### use the addParam(name, value, label) method to add parameters specific to your refine method to your form.
29
### if you find that the base class includes a parameter that your method does not need, you can remove the parameter from the form with the hideParam(name) method.
30
<pre>
31
class XmippParams extends RefineFormParameters
32
{
33
	function __construct( $id='', $label='', $outerMaskRadius='', $innerMaskRadius='', $outerAlignRadius='', 
34
							$innerAlignRadius='', $symmetry='', $numIters='', $angSampRate='', $percentDiscard='',  
35
							$filterEstimated='', $filterResolution='', $filterComputed='', $filterConstant='',
36
							$mask='', $maxAngularChange='', $maxChangeOffset='', $search5DShift='', $search5DStep='',
37
							$reconMethod='', $ARTLambda='', $doComputeResolution='', $fourierMaxFrequencyOfInterest='' ) 
38
	{
39
		parent::__construct($id, $label, $outerMaskRadius, $innerMaskRadius, $outerAlignRadius, 
40
							$innerAlignRadius, $symmetry, $numIters, $angSampRate, $percentDiscard,  
41
							$filterEstimated, $filterResolution, $filterComputed, $filterConstant );
42
									
43
		$this->addParam( "mask", $mask, "Mask filename" );
44
		$this->addParam( "maxAngularChange", $maxAngularChange, "Max. Angular change " );		
45
		$this->addParam( "maxChangeOffset", $maxChangeOffset, "Maximum change offset " );
46
		$this->addParam( "search5DShift", $search5DShift, "Search range for 5D translational search " );
47
		$this->addParam( "search5DStep", $search5DStep, "Step size for 5D translational search " );
48
		$this->addParam( "reconMethod", $reconMethod, "Reconstruction method " );
49
		$this->addParam( "ARTLambda", $ARTLambda, "Values of lambda for ART " );
50
		$this->addParam( "doComputeResolution", $doComputeResolution, "Compute resolution? " );
51
		$this->addParam( "fourierMaxFrequencyOfInterest", $fourierMaxFrequencyOfInterest, "Initial maximum frequency used by reconstruct fourier " );
52
		
53
		// disable any general params that do not apply to this method
54
		$this->hideParam("innerMaskRadius");		
55
	}
56
	
57
	function validate() 
58
	{
59
		$msg = parent::validate();
60
61
		if ( !empty($this->params["mask"]["value"]) && !empty($this->params["outerMaskRadius"]["value"]) )
62
			$msg .= "<b>Error:</b> You may not define both the outer mask raduis and a mask file.";
63
				
64
		return $msg;
65
	}
66
}
67
</pre>
68 7 Amber Herold
## example: adding parameters to the form constructor method
69
# define any restrictions that should be applied to the parameters.
70 9 Amber Herold
# Override the advancedParamForm() function to add a user input field for each one.
71
# Override the buildCommand() function. There is a default implementation available which adds all form parameters as --<name>=<value>.
72 23 Amber Herold
&nbsp;
73 12 Amber Herold
# create your new form type in selectPreparedRecon.php
74 23 Amber Herold
## Add a require_once statement to the top of the file to include your new inc/forms/methodRefineForm.inc
75
## Edit the createSelectedRefineForm() function to include your new method in the switch statement and create a new instance of your form.
76 12 Amber Herold
<pre>
77
// based on the type of refinement the user has selected,
78
// create the proper form type here. If a new type is added to
79
// Appion, it's form class should be included in this file
80
// and it should be added to this function. No other modifications
81
// to this file should be necessary.
82
function createSelectedRefineForm( $method, $stacks='', $models='' )
83
{
84
	switch ( $method ) {
85
		case emanrecon:
86
			$selectedRefineForm = new EmanRefineForm( $method, $stacks, $models );
87
			break;
88 1 Amber Herold
		case frealignrecon:
89
			$selectedRefineForm = new FrealignRefineForm( $method, $stacks, $models );
90
			break;
91
		case xmipprecon:
92
			$selectedRefineForm = new XmippRefineForm( $method, $stacks, $models );
93
			break;
94
		case xmippml3drecon:
95
			$selectedRefineForm = new XmippML3DRefineForm( $method, $stacks, $models );
96
			break;
97
		default:
98
			Throw new Exception("Error: Not Implemented - There is no RefineForm class avaialable for method: $method"); 
99
	}		
100
	
101
	return $selectedRefineForm;
102
}
103 12 Amber Herold
</pre>
104 21 Amber Herold
105
h2. Class Diagram
106
107
The following class diagram shows the BasicForm class with it's extended classes as well as the FormParameter class and it's extended classes.
108
It also shows associations among the classes.
109
Notice that the specific refine parameter classes use polymorphism to override the validate() function. This allows the extended classes to provide more complex validations than a typical form requires.
110
Other forms, such as RunParameters and stack prep, just use the base FormParameters class that their parent, BasicForm, uses.
111
112
!refineClassDiagram.png!
113
114
h2. Sequence Diagram
115
116
The following sequence diagram shows how the Form and Parameter classes work together to display a form, validate the user input, and create a command string.
117
118
!refine_sequence_diagram.png!