comparison goenrichment.xml @ 0:52964064db8a draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/goenrichment commit c41d1d8f48da033f601b003d71e0e22345ccdbdb
author iuc
date Fri, 11 Jan 2019 06:18:35 -0500
parents
children 5ace5c7d1a86
comparison
equal deleted inserted replaced
-1:000000000000 0:52964064db8a
1 <tool id="goenrichment" name="GOEnrichment" version="2.0.1">
2 <description>performs GO enrichment analysis of a set of gene products</description>
3 <requirements>
4 <requirement type="package" version="2.0.1">goenrichment</requirement>
5 </requirements>
6 <command detect_errors="exit_code">goenrichment
7 --go '${go}'
8 --annotation '${annotation}'
9 --study '${study}'
10 #if str($population) != 'None'
11 --population '${population}'
12 #end if
13 --correction ${correction}
14 $summarize
15 $singletons
16 $relations
17 --graph_format $graph
18 --cut_off $cutoff
19 --mf_result '${mf_result}'
20 --bp_result '${bp_result}'
21 --cc_result '${cc_result}'
22 --mf_graph '${mf_graph}'
23 --bp_graph '${bp_graph}'
24 --cc_graph '${cc_graph}'
25 </command>
26 <inputs>
27 <param name="go" type="data" format="obo,owl" label="Gene Ontology File" help="Gene Ontology file in OBO or OWL format (see http://geneontology.org/page/download-ontology)"/>
28 <param name="annotation" type="data" format="tabular,txt" 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)"/>
29 <param name="study" type="data" format="txt" label="Study Set File" help="File containing the gene products corresponding to the study set (one per line)"/>
30 <param name="population" type="data" format="txt" optional="true" label="Population Set File (Optional)" help="File containing the gene products corresponding to the population set (one per line). If no file is submitted, the population set will be the set of all gene products listed in the annotation file."/>
31 <param name="correction" type="select" label="Multiple Test Correction" help="The multiple test correction method to use (Benjamini-Hochberg is recommended).">
32 <option value="Benjamini-Hochberg" selected="true"/>
33 <option value="SDA"/>
34 <option value="Bonferroni-Holm"/>
35 <option value="Sidak"/>
36 <option value="Bonferroni"/>
37 </param>
38 <param name="cutoff" type="select" label="P-Value Cut-Off" help="The corrected p-value (or q-value) cut-off to apply for the graph output.">
39 <option value="1.0"/>
40 <option value="0.1"/>
41 <option value="0.05"/>
42 <option value="0.01" selected="true"/>
43 </param>
44 <param name="graph" type="select" label="Output Graph Format" help="The format of the output graphs (png, svg, or tabular for importing into cytoscape).">
45 <option value="png" selected="true"/>
46 <option value="svg"/>
47 <option value="tabular"/>
48 </param>
49 <param name="summarize" type="boolean" checked="true" truevalue="--summarize_output" falsevalue="" label="Summarize Output" help="Whether to produce a summarized list of GO terms or the full list of those that are statistically significant"/>
50 <param name="singletons" type="boolean" checked="true" truevalue="--ignore_singletons" falsevalue="" label="Exclude Singletons" help="Whether to exclude GO terms that are annotated to a single gene product in the study set"/>
51 <param name="relations" type="boolean" checked="false" truevalue="--use_all_relations" falsevalue="" label="Use All Relations" help="Whether to infer annotations through 'part_of' and other non-hierarchical relationships, or only through 'is_a' relations"/>
52 </inputs>
53 <outputs>
54 <data name="mf_result" format="tabular" label="MF Result File"/>
55 <data name="bp_result" format="tabular" label="BP Result File"/>
56 <data name="cc_result" format="tabular" label="CC Result File"/>
57 <data name="mf_graph" format="png" label="MF Graph File">
58 <change_format>
59 <when input="graph" value="svg" format="svg"/>
60 <when input="graph" value="tabular" format="tabular"/>
61 </change_format>
62 </data>
63 <data name="bp_graph" format="png" label="BP Graph File">
64 <change_format>
65 <when input="graph" value="svg" format="svg"/>
66 <when input="graph" value="tabular" format="tabular"/>
67 </change_format>
68 </data>
69 <data name="cc_graph" format="png" label="CC Graph File">
70 <change_format>
71 <when input="graph" value="svg" format="svg"/>
72 <when input="graph" value="tabular" format="tabular"/>
73 </change_format>
74 </data>
75 </outputs>
76 <tests>
77 <test>
78 <param name="go" ftype="obo" value="go.obo"/>
79 <param name="annotation" ftype="txt" value="annotations.tab"/>
80 <param name="study" ftype="txt" value="study.txt"/>
81 <param name="summarize" value="false"/>
82 <output name="mf_result" ftype="tabular" file="MF_result.txt" lines_diff="0"/>
83 </test>
84 <test>
85 <param name="go" ftype="obo" value="go.obo"/>
86 <param name="annotation" ftype="txt" value="annotations.tab"/>
87 <param name="study" ftype="txt" value="study.txt"/>
88 <param name="population" ftype="txt" value="population.txt"/>
89 <param name="summarize" value="false"/>
90 <output name="mf_result" ftype="tabular" file="MF_result.txt" lines_diff="0"/>
91 </test>
92 </tests>
93 <help>
94 .. class:: infomark
95
96 GOEnrichment is a Java application that can be used to analyze gene product sets (e.g., from microarray or RNAseq experiments) for enriched GO terms.
97
98 -----
99
100 .. class:: infomark
101
102 GOEnrichment requires:
103
104 - A Gene Ontology file in either OBO or OWL format (see http://geneontology.org/page/download-ontology).
105 - 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.
106 - A list of gene products comprising the study set (a flat text file with one gene product per line).
107 - Optionally, a list of gene products comprising the population set (if none is submitted, the population set will be the set of gene products listed in the annotation file).
108
109 -----
110
111 .. class:: infomark
112
113 GOEnrichment produces a tabular result file and a graph file for each GO type (MF - Molecular Function, BP - Biological Process and CC - Cellular Component):
114
115 - The result file is a tabular list of all GO terms present in the study set and their respective p-values.
116 - The graph file can be either a png image, an svg image, or a text file for importing into cytoscape (together with the result file).
117
118 -----
119
120 .. class:: infomark
121
122 The graph is colored by p-value: terms with p-value above cut-off appear in white; and the color gets darker as the p-value decreases
123
124 .. image:: https://github.com/DanFaria/GOEnrichment/raw/master/Scale.png
125 :width: 600
126 :height: 315
127
128 (see the scale at https://github.com/DanFaria/GOEnrichment/blob/master/Scale.png). In addition to the name of each GO term, the graph
129 shows its frequency in the study set. Dashed edges indicate that one or more intermediate terms were ommited from the graph.
130
131 -----
132
133 .. class:: warningmark
134
135 Gene products listed in either the study or population set files that are not present in the annotation file will be ignored.
136 </help>
137
138 <citations>
139 <citation type="bibtex">
140 @misc{githubgoenrichment,
141 author = {Faria, Daniel},
142 year = {2017},
143 title = {GOEnrichment},
144 publisher = {GitHub},
145 journal = {GitHub repository},
146 url = {https://github.com/DanFaria/GOEnrichment},
147 }
148 </citation>
149 </citations>
150
151 </tool>