comparison goslimmer.xml @ 0:d5273661bace draft default tip

Uploaded
author ubi.igc
date Thu, 24 May 2018 14:01:53 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:d5273661bace
1 <tool id="goslimmer" name="GOSlimmer" version="1.0.1">
2 <description>converts a set of annotation from GO to a given GOSlim version</description>
3 <requirements>
4 <requirement type="package" version="8.0.112">java-jdk</requirement>
5 </requirements>
6 <stdio>
7 <exit_code range="1:" level="fatal" description="Fatal ERROR exit code greater than 1" />
8 </stdio>
9 <command interpreter="java -jar">GOSlimmer.jar
10 --go $go
11 --slim $slim
12 --annotation $annotation
13 --output $output
14 </command>
15 <inputs>
16 <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)"/>
17 <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)"/>
18 <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)"/>
19 </inputs>
20 <outputs>
21 <data name="output" format="tabular" label="Slim Annotations"/>
22 </outputs>
23 <tests>
24 <test>
25 <param name="go" ftype="obo" value="go.obo"/>
26 <param name="slim" ftype="obo" value="goslim_generic.obo"/>
27 <param name="annotation" ftype="txt" value="Mus_musculus_annotations_biomart_e92.tab"/>
28 <output name="output" ftype="tabular" file="goslim_annotations_mouse.txt" lines_diff="0"/>
29 </test>
30 </tests>
31 <help>
32 .. class:: infomark
33
34 GOSlimmer is a Java application that converts a set of annotations from the full GO version to a given GOSlim version.
35
36 It requires:
37
38 - -A full Gene Ontology file in either OBO or OWL format (see http://geneontology.org/page/download-ontology).
39 - -A slim Gene Ontology file in either OBO or OWL format (see http://geneontology.org/page/download-ontology).
40 - -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.
41
42 -----
43
44 .. class:: infomark
45
46 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.
47 </help>
48 <citations>
49 <citation type="bibtex">
50 @misc{githubgoslimmer,
51 author = {Faria, Daniel},
52 year = {2017},
53 title = {GOSlimmer},
54 publisher = {GitHub},
55 journal = {GitHub repository},
56 url = {https://github.com/DanFaria/GOSlimmer},
57 }</citation>
58 </citations>
59 </tool>