-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoslimmer.xml
executable file
·37 lines (31 loc) · 1.9 KB
/
goslimmer.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<tool id="goslimmer" name="GOSlimmer" version="1.0.1">
<description>converts a set of annotation from GO to a given GOSlim version</description>
<command interpreter="java -jar">GOSlimmer.jar
--go $go
--slim $slim
--annotation $annotation
--output $output
</command>
<stdio>
<exit_code range="1:" level="fatal" description="Fatal ERROR exit code greater than 1" />
</stdio>
<inputs>
<param name="go" type="data" format="obo,owl" label="Full Gene Ontology File" help="Full Gene Ontology file in OBO or OWL format (see http://geneontology.org/page/download-ontology)"/>
<param name="slim" type="data" format="obo,owl" label="GOSlim File" help="Slim Gene Ontology file in OBO or OWL format (see http://geneontology.org/page/download-ontology)"/>
<param name="annotation" type="data" label="Gene Product Annotation File" help="Tabular file containing annotations from gene products to GO terms (in GAF or BLAST2GO format, or a simple two-column table)"/>
</inputs>
<outputs>
<data name="output" format="tabular" label="Slim Annotations" help="Slim Annotation Table"/>
</outputs>
<help>
.. class:: infomark
GOSlimmer is a Java application that converts a set of annotations from the full GO version to a given GOSlim version.
It requires:
- -A full Gene Ontology file in either OBO or OWL format (see http://geneontology.org/page/download-ontology).
- -A slim Gene Ontology file in either OBO or OWL format (see http://geneontology.org/page/download-ontology).
- -A tabular annotation file in GAF (http://geneontology.org/page/download-annotations) format, BLAST2GO format, or a simple two-column table (e.g. from BioMart) with gene product ids in the first column and GO terms in the second one.
-----
.. class:: infomark
GOSlimmer can also be applied to other pairs of OWL/OBO ontologies where one is a subset of the other and you want to convert annotations from the larger to the smaller one.
</help>
</tool>