Difference between revisions of "Analyses (extension point)"
From BioUML platform
Tagir Valeev (Talk | contribs) (Created page with "{{Extension point|analyses|ru.biosoft.galaxy|since=0.9.3|registry=ru.biosoft.galaxy.AnalysesOverridesRegistry}} === Description === This extension point currently allows to hi...") |
Latest revision as of 16:24, 3 June 2013
- Identifier
- ru.biosoft.galaxy.analyses
- Plugin
- ru.biosoft.galaxy
- Since
- 0.9.3
- Registry
AnalysesOverridesRegistry
[edit] Description
This extension point currently allows to hide some Galaxy analyses.
[edit] Configuration Markup
<!ELEMENT analysis> <!ATTLIST analysis path CDATA #REQUIRED visible CDATA #IMPLIED >
- path
- path to Galaxy analysis XML relative to the tools directory.
- visible
- if specified and equals to "false", this analysis will not be displayed into BioUML.
[edit] Example
<extension id="analysesOverrides" point="ru.biosoft.galaxy.analyses"> <analysis path="data_source/upload.xml" visible="false"/> <analysis path="fastx_toolkit/fasta_formatter.xml" visible="false"/> </extension>
This extension hides two Galaxy analyses: data_source/upload.xml
and fastx_toolkit/fasta_formatter.xml
.