Project

General

Profile

Refine Refactor documentation » History » Version 16

Amber Herold, 09/13/2012 12:05 PM

1 11 Amber Herold
h1. Refinement Web User Interface documentation
2 2 Amber Herold
3 5 Amber Herold
4
h2. Class Diagram
5
6
The following class diagram shows the BasicForm class with it's extended classes as well as the FormParameter class and it's extended classes.
7 1 Amber Herold
It also shows associations among the classes.
8
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.
9
Other forms, such as RunParameters and stack prep, just use the base FormParameters class that their parent, BasicForm, uses.
10
11
!refineClassDiagram.png!
12 10 Amber Herold
13
h2. Sequence Diagram
14
15
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.
16
17
!refine_sequence_diagram.png!
18 6 Amber Herold
19
h2. Steps to add a new refinement method to the pipeline
20
21 14 Amber Herold
# Add an entry to selectRefinementType.php for the new method.
22 16 Amber Herold
## Add a logo image to the myamiweb/processing/img file if it does not already exist.
23 14 Amber Herold
## In myamiweb/processing, open selectRefinementType.php and copy and existing methods code block.
24
## Replace the logo image file with the appropriate file name
25
## 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>
26 15 Amber Herold
## Edit the description of the method to be informative to a novice user.
27 6 Amber Herold
# Create a new class which extends BasicRefineForm
28
# Create a new class which extends RefineFormParameters. This is optional, but recommended.
29
# Decide what information you need to collect from the user and add a form parameter for each item.
30
## example: adding parameters to a new parameter class
31
### 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.
32
### use the addParam(name, value, label) method to add parameters specific to your refine method to your form.
33
### 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.
34
<pre>
35
class XmippParams extends RefineFormParameters
36
{
37
	function __construct( $id='', $label='', $outerMaskRadius='', $innerMaskRadius='', $outerAlignRadius='', 
38
							$innerAlignRadius='', $symmetry='', $numIters='', $angSampRate='', $percentDiscard='',  
39
							$filterEstimated='', $filterResolution='', $filterComputed='', $filterConstant='',
40
							$mask='', $maxAngularChange='', $maxChangeOffset='', $search5DShift='', $search5DStep='',
41
							$reconMethod='', $ARTLambda='', $doComputeResolution='', $fourierMaxFrequencyOfInterest='' ) 
42
	{
43
		parent::__construct($id, $label, $outerMaskRadius, $innerMaskRadius, $outerAlignRadius, 
44
							$innerAlignRadius, $symmetry, $numIters, $angSampRate, $percentDiscard,  
45
							$filterEstimated, $filterResolution, $filterComputed, $filterConstant );
46
									
47
		$this->addParam( "mask", $mask, "Mask filename" );
48
		$this->addParam( "maxAngularChange", $maxAngularChange, "Max. Angular change " );		
49
		$this->addParam( "maxChangeOffset", $maxChangeOffset, "Maximum change offset " );
50
		$this->addParam( "search5DShift", $search5DShift, "Search range for 5D translational search " );
51
		$this->addParam( "search5DStep", $search5DStep, "Step size for 5D translational search " );
52
		$this->addParam( "reconMethod", $reconMethod, "Reconstruction method " );
53
		$this->addParam( "ARTLambda", $ARTLambda, "Values of lambda for ART " );
54
		$this->addParam( "doComputeResolution", $doComputeResolution, "Compute resolution? " );
55
		$this->addParam( "fourierMaxFrequencyOfInterest", $fourierMaxFrequencyOfInterest, "Initial maximum frequency used by reconstruct fourier " );
56
		
57
		// disable any general params that do not apply to this method
58
		$this->hideParam("innerMaskRadius");		
59
	}
60
	
61
	function validate() 
62
	{
63
		$msg = parent::validate();
64
65
		if ( !empty($this->params["mask"]["value"]) && !empty($this->params["outerMaskRadius"]["value"]) )
66
			$msg .= "<b>Error:</b> You may not define both the outer mask raduis and a mask file.";
67
				
68
		return $msg;
69
	}
70
}
71
</pre>
72 7 Amber Herold
## example: adding parameters to the form constructor method
73
# define any restrictions that should be applied to the parameters.
74 9 Amber Herold
# Override the advancedParamForm() function to add a user input field for each one.
75
# Override the buildCommand() function. There is a default implementation available which adds all form parameters as --<name>=<value>.
76 12 Amber Herold
# create your new form type in selectPreparedRecon.php
77
<pre>
78
// based on the type of refinement the user has selected,
79
// create the proper form type here. If a new type is added to
80
// Appion, it's form class should be included in this file
81
// and it should be added to this function. No other modifications
82
// to this file should be necessary.
83
function createSelectedRefineForm( $method, $stacks='', $models='' )
84
{
85
	switch ( $method ) {
86
		case emanrecon:
87
			$selectedRefineForm = new EmanRefineForm( $method, $stacks, $models );
88
			break;
89
		case frealignrecon:
90
			$selectedRefineForm = new FrealignRefineForm( $method, $stacks, $models );
91
			break;
92
		case xmipprecon:
93
			$selectedRefineForm = new XmippRefineForm( $method, $stacks, $models );
94
			break;
95
		case xmippml3drecon:
96
			$selectedRefineForm = new XmippML3DRefineForm( $method, $stacks, $models );
97
			break;
98
		default:
99
			Throw new Exception("Error: Not Implemented - There is no RefineForm class avaialable for method: $method"); 
100
	}		
101
	
102
	return $selectedRefineForm;
103
}
104 13 Amber Herold
</pre>