8
|
1 <tool id="ontologizer" name="ontologizer" version="0.0.14">
|
|
2 <description>from http://compbio.charite.de/contao/</description>
|
|
3 <requirements>
|
13
|
4 <requirement type="set_environment">ONTOLOGIZER_JAR_PATH</requirement>
|
9
|
5 <requirement type="package" version="0.0.1">ontologizer-jar</requirement>
|
8
|
6 </requirements>
|
|
7 <command>java -Xmx2G -jar $ONTOLOGIZER_JAR --go $go --association $gaf --population $pop --studyset $study --dot 0.05 > $output</command>
|
|
8 <inputs>
|
10
|
9 <param name="go" type="text" label="Gene ontology" />
|
|
10 <param name="gaf" type="text" label="Gene association file" />
|
|
11 <param name="pop" type="text" label="population gene set" />
|
|
12 <param name="study" type="text" label="study gene set" />
|
8
|
13 </inputs>
|
|
14 <outputs>
|
|
15 <!-- need to figure out how to handle multiple outputs -->
|
9
|
16 <data type="text" name="output" />
|
8
|
17 </outputs>
|
|
18 <tests>
|
|
19 <!-- see http://wiki.galaxyproject.org/Admin/Tools/Writing%20Tests -->
|
|
20 <test>
|
|
21 <param name="go" file="ontologizer/test.obo" />
|
|
22 <param name="gaf" file="ontologizer/test.gaf" />
|
|
23 <param name="pop" file="ontologizer/test.gs" />
|
|
24 <param name="study" file="ontologizer/test.gs" />
|
|
25 <output name="output" file="test.output"/>
|
|
26 </test>
|
|
27 </tests>
|
|
28
|
|
29
|
|
30 <help>
|
|
31 see http://compbio.charite.de/contao/index.php/ontologizer2.html
|
|
32 </help>
|
|
33
|
|
34 </tool>
|
|
35
|
|
36
|