Difference between revisions of "Analysis method development"
Tagir Valeev (Talk | contribs) |
Tagir Valeev (Talk | contribs) (+referenceType selector - →Registering complex parameters) |
||
| Line 124: | Line 124: | ||
** Use {{Method|ru.biosoft.access.repository.DataElementPathEditor.registerInputMulti}} methods to register set of input elements (user will be able to select several elemens using Ctrl or Shift buttons). | ** Use {{Method|ru.biosoft.access.repository.DataElementPathEditor.registerInputMulti}} methods to register set of input elements (user will be able to select several elemens using Ctrl or Shift buttons). | ||
** Use {{Method|ru.biosoft.access.repository.DataElementPathEditor.registerOutput}} methods to register output element (user will be asked for confirmation to overwrite an existing item). | ** Use {{Method|ru.biosoft.access.repository.DataElementPathEditor.registerOutput}} methods to register output element (user will be asked for confirmation to overwrite an existing item). | ||
| − | * Table column name selector should be registered via static methods defined in {{Class|ru.biosoft.table.columnbeans.ColumnNameSelector}}: | + | * {{Type link|table|Table}} column name selector should be registered via static methods defined in {{Class|ru.biosoft.table.columnbeans.ColumnNameSelector}}: |
** Use {{Method|ru.biosoft.table.columnbeans.ColumnNameSelector.registerSelector}} methods to allow selection of any column. | ** Use {{Method|ru.biosoft.table.columnbeans.ColumnNameSelector.registerSelector}} methods to allow selection of any column. | ||
** Use {{Method|ru.biosoft.table.columnbeans.ColumnNameSelector.registerNumericSelector}} methods to allow selection of numerical column only. | ** Use {{Method|ru.biosoft.table.columnbeans.ColumnNameSelector.registerNumericSelector}} methods to allow selection of numerical column only. | ||
*: <b>Note</b>: column name must be defined as {{Class|java.lang.String}} in parameters class and its default value must be either {{Constant|ru.biosoft.table.columnbeans.ColumnNameSelector.NONE_COLUMN}} or any existing column (not null). | *: <b>Note</b>: column name must be defined as {{Class|java.lang.String}} in parameters class and its default value must be either {{Constant|ru.biosoft.table.columnbeans.ColumnNameSelector.NONE_COLUMN}} or any existing column (not null). | ||
| − | * Set of table column names should be registered via static methods defined in {{Class|ru.biosoft.table.columnbeans.ColumnNamesSelector}}: | + | * Set of {{Type link|table}} column names should be registered via static methods defined in {{Class|ru.biosoft.table.columnbeans.ColumnNamesSelector}}: |
** Use {{Method|ru.biosoft.table.columnbeans.ColumnNameSelector.registerSelector}} methods to allow selection of any columns. | ** Use {{Method|ru.biosoft.table.columnbeans.ColumnNameSelector.registerSelector}} methods to allow selection of any columns. | ||
** Use {{Method|ru.biosoft.table.columnbeans.ColumnNameSelector.registerNumericSelector}} methods to allow selection of numerical columns only. | ** Use {{Method|ru.biosoft.table.columnbeans.ColumnNameSelector.registerNumericSelector}} methods to allow selection of numerical columns only. | ||
*: <b>Note</b>: column names must be defined as {{Class|java.lang.String[]}} in parameters class. | *: <b>Note</b>: column names must be defined as {{Class|java.lang.String[]}} in parameters class. | ||
| − | * Selector for predefined species can be registered using {{ | + | * Selector for predefined species can be registered using {{Method|ru.biosoft.workbench.editors.DataElementComboBoxSelector.registerSelector}} method with {{Constant|biouml.standard.type.Species.SPECIES_PATH}} as collectionPath parameter. |
| + | * Selector for [[reference type]] should be registered via {{Method|ru.biosoft.workbench.editors.ReferenceTypeSelector.registerSelector}} methods. | ||
* For {{Class|java.awt.Color}} parameter type set {{Class|com.beanexplorer.editors.ColorEditor}} property editor class. | * For {{Class|java.awt.Color}} parameter type set {{Class|com.beanexplorer.editors.ColorEditor}} property editor class. | ||
Revision as of 16:00, 12 September 2013
BioUML analysis method is a function which takes some user-defined parameters, processes them somehow (probably using repository elements and databases) and produces some results, storing them in the repository. This page describes implementation details on how to create your own analysis method.
If you want to create your analysis method in new plugin, please read plugin development page first.
Contents |
Classes
To create analysis method, you should create at least three classes:
- Analysis class: class implementing
AnalysisMethodinterface. It's strongly recommended to extendAnalysisMethodSupportclass parameterizing it via parameters class. - Parameters class: bean class for analysis parameters, which must implement
AnalysisParametersinterface. It's strongly recommended to extendAbstractAnalysisParametersclass. - Bean info for parameters class: class implementing
BeanInfointerface which describes parameters class. Must have the same name as parameters class withBeanInfosuffix. It's strongly recommended to extendBeanInfoEx2class.
The following naming conventions are used. Consider, you want to create some analysis to "process data". Then analysis class should be named as ProcessData or ProcessDataAnalysis, parameters class should be named as ProcessDataParameters and bean info for parameters class should be named as ProcessDataParametersBeanInfo.
If your analysis has not very much code, you may consider putting parameters class and its bean info as nested static classes into analysis class in the following manner:
public class ProcessDataAnalysis extends AnalysisMethodSupport<ProcessDataAnalysis.ProcessDataParameters>
{
...
public static class ProcessDataParameters extends AbstractAnalysisParameters
{
...
}
public static class ProcessDataParametersBeanInfo extends BeanInfoEx2
{
...
}
}
Extension
To make your analysis available in the tree, you must register it as extension for ru.biosoft.analysis.method extension point. Consider also creating method description HTML file and JavaScript host object (or use existing one).
Implementing parameters
Parameters class must have default constructor and getter and setter methods for all parameters used in analysis method. Setters must call Option.firePropertyChange superclass method. Getters can be annotated using @PropertyName and @PropertyDescription annotations. Usual implementation look like this:
public class ProcessDataParameters extends AbstractAnalysisParameters
{
private DataElementPath inputPath, outputPath;
private String myStringParameter;
private boolean myBooleanParameter;
@PropertyName("Input table")
@PropertyDescription("Table to process")
public DataElementPath getInputPath()
{
return inputPath;
}
public void setInputPath(DataElementPath inputPath)
{
Object oldValue = this.inputPath;
this.inputPath = inputPath;
firePropertyChange("inputPath", oldValue, this.inputPath);
}
@PropertyName("String parameter")
@PropertyDescription("String which will be used during processing")
public String getMyStringParameter()
{
return myStringParameter;
}
public void setMyStringParameter(String myStringParameter)
{
Object oldValue = this.myStringParameter;
this.myStringParameter = myStringParameter;
firePropertyChange("myStringParameter", oldValue, myStringParameter);
}
@PropertyName("Verbose output")
@PropertyDescription("Whether to print additional messages during processing")
public boolean isMyBooleanParameter()
{
return myBooleanParameter;
}
public void setMyBooleanParameter(boolean myBooleanParameter)
{
Object oldValue = this.myBooleanParameter;
this.myBooleanParameter = myBooleanParameter;
firePropertyChange("myBooleanParameter", oldValue, myBooleanParameter);
}
}
Parameter types
Many parameter types are supported, including (but not limited to) the following:
- Primitive types (boolean, short, int, long, float, double);
-
Stringfor textual parameters; -
DataElementPathfor paths to the repository elements (both for inputs and outputs); -
DataElementPathSetfor sets of input repository elements; -
Speciesfor selection of species from preinstalled list; -
BasicGenomeSelectorandGenomeSelectorfor convenient selection of the genome (either in preinstalled database or user-uploaded); -
Colorfor color selection; - Java arrays of any supported types (array elements can be added or deleted by user).
You may use your own bean as complex parameter type, but the following requirements should be met:
- Your bean should extend
Optionclass. - Your bean should be serializable via
TextUtil.fromString/TextUtil.toStringmethods. See text serialization for details.
Writing bean info class for parameters
Bean info class must have the same name as parameters class with BeanInfo suffix. It must have default constructor which calls superclass constructor passing parameters class name:
public class ProcessDataParametersBeanInfo extends BeanInfoEx2
{
public ProcessDataParametersBeanInfo()
{
super(ProcessDataParameters.class);
}
}
To register parameters override BeanInfoEx.initProperties() superclass method. For each parameter you should create PropertyDescriptor and add it via BeanInfoEx2.add(PropertyDescriptor) superclass method. There are also some helper methods defined in BeanInfoEx2 which make things easier:
-
add(String name)- createPropertyDescriptorwith default getter/setter names and add it. -
add(String name, Class<?> editor)- the same as above, but also sets custom property editor class. -
addHidden(String name, String hiddenMethodName)- create conditionally hidden option. The hiddenMethodName is name of parameters class method which takes no parameters and returns boolean value (true if parameter must be hidden) -
addHidden(String name, Class<?> editor, String hiddenMethodName)- the same as above, but also sets custom property editor class.
and so on.
Parameters will appear in the form in the registration order. By convention first should be input repository elements, then other parameters and finally output repository elements. If parameter X depends on parameter Y, then X must be registered after Y.
Registering complex parameters
For simple data types like primitives or String calling add(parameterName) is enough to register the parameter. In case of more complex parameters special editor must be set as well as some additional PropertyDescriptor parameters. Usually this can be done using special convenience methods.
- Repository elements should be registered via static methods defined in
DataElementPathEditor:- Use
DataElementPathEditor.registerInputmethods to register input element (user will be forced to select existing element of given type). - Use
DataElementPathEditor.registerInputMultimethods to register set of input elements (user will be able to select several elemens using Ctrl or Shift buttons). - Use
DataElementPathEditor.registerOutputmethods to register output element (user will be asked for confirmation to overwrite an existing item).
- Use
-
Table column name selector should be registered via static methods defined in ColumnNameSelector:- Use
ColumnNameSelector.registerSelectormethods to allow selection of any column. - Use
ColumnNameSelector.registerNumericSelectormethods to allow selection of numerical column only.
- Note: column name must be defined as
Stringin parameters class and its default value must be eitherNONE_COLUMNor any existing column (not null).
- Use
- Set of
table column names should be registered via static methods defined in ColumnNamesSelector:- Use
ColumnNameSelector.registerSelectormethods to allow selection of any columns. - Use
ColumnNameSelector.registerNumericSelectormethods to allow selection of numerical columns only.
- Note: column names must be defined as
String[]in parameters class.
- Use
- Selector for predefined species can be registered using
DataElementComboBoxSelector.registerSelectormethod withSPECIES_PATHas collectionPath parameter. - Selector for reference type should be registered via
ReferenceTypeSelector.registerSelectormethods. - For
Colorparameter type setColorEditorproperty editor class.
| This page or section is a stub. Please add more information here! |
Implementing analysis
| This page or section is a stub. Please add more information here! |
Logging
To log messages during analysis execution, use AnalysisMethodSupport.log logger instance. This instance is connected with analysis or workflow log. In case of unrecoverable error, it's better to throw BioUML exception out of justAnalyzeAndPut method than to log it by yourself.