Mercurial > repos > proteore > proteore_topgo
annotate topGO.xml @ 0:472ad7da3d92 draft
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
author | proteore |
---|---|
date | Mon, 04 Dec 2017 09:39:21 -0500 |
parents | |
children | 6788a57c5cb5 |
rev | line source |
---|---|
0
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
1 <tool id="topGO" name="topGO enrichment analysis" version="0.1.0"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
2 <description> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
3 performs enrichment analysis using R package topGO |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
4 </description> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
5 <requirements> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
6 <requirement type="package" version="1.54.0">bioconductor-graph</requirement> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
7 <requirement type="package" version="2.28.0">bioconductor-topgo</requirement> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
8 </requirements> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
9 <stdio> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
10 <exit_code range="1:" /> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
11 </stdio> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
12 <command><![CDATA[ |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
13 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
14 #if $inputtype.filetype == "file_all": |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
15 Rscript --vanilla $__tool_directory__/enrichment_v3.R --inputtype tabfile --input '$inputtype.genelist' --ontology '$ontocat' --option '$option' --threshold '$threshold' --correction '$correction' --textoutput '$condtext.textoutput' --barplotoutput '$condbar.barplotoutput' --dotplotoutput '$conddot.dotplotoutput' --column '$inputtype.column' --geneuniverse '$geneuniverse' --header '$inputtype.header' |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
16 #end if |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
17 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
18 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
19 #if $inputtype.filetype == "copy_paste": |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
20 Rscript --vanilla $__tool_directory__/enrichment_v3.R --inputtype copypaste --input '$inputtype.genelist' --ontology '$ontocat' --option '$option' --threshold '$threshold' --correction '$correction' --textoutput '$condtext.textoutput' --barplotoutput '$condbar.barplotoutput' --dotplotoutput '$conddot.dotplotoutput' --column c1 --geneuniverse '$geneuniverse' --header None |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
21 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
22 #end if |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
23 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
24 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
25 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
26 ]]></command> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
27 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
28 <inputs> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
29 <conditional name="inputtype"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
30 <param name="filetype" type="select" label="Select your type of input file" help="The identifiers must be Ensembl gene IDs (e.g : ENSG00000139618). If it is not the case, please use the ID Mapping tool."> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
31 <option value="file_all">Input file containing your identifiers</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
32 <option value="copy_paste">Copy/paste your list of IDs</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
33 </param> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
34 <when value="copy_paste"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
35 <param name="genelist" type="text" label="Enter a list of identifiers"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
36 </when> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
37 <when value="file_all"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
38 <param name="genelist" type="data" format="txt,tabular" label="Choose an input file" help="This file must imperatively have 1 column filled with IDs consistent with the database that will be used. Please use the MappingIDs component if this is not the case."/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
39 <param name="column" type="text" label="Please specify the column where you would like to apply the comparison (e.g : Enter c1)" value="c1"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
40 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
41 <param name="header" type="select" label="Does your file have a header?" multiple="false" optional="false"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
42 <option value="TRUE" selected="true">Yes</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
43 <option value="FALSE" selected="false">No</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
44 </param> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
45 </when> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
46 </conditional> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
47 <param name="geneuniverse" type="select" label="Select a specie"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
48 <option value="org.At.tair.db" >Arabidopsis</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
49 <option value="org.Ce.eg.db" >C.elegans</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
50 <option value="org.Dm.eg.db" >Fly</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
51 <option value="org.Hs.eg.db" selected="true">Human</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
52 <option value="org.Mm.eg.db" >Mouse</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
53 <option value="org.Sc.sqd.db" >Yeast</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
54 </param> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
55 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
56 <param name="ontocat" type="select" label="Ontology category"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
57 <option value="BP" >Biological Process</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
58 <option value="CC" >Cellular Component</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
59 <option value="MF" >Molecular Function</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
60 </param> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
61 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
62 <param name="option" type="select" label="Choose the topGO option for your analysis"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
63 <option value="classic" >Classic fisher test</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
64 <option value="elim" selected="true">Elim</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
65 <option value="weight01" >Weight01</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
66 <option value="parentchild" >ParentChild</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
67 </param> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
68 <param name="threshold" type="text" label="Enter the p-value threshold level under the form 1e-level wanted (e.g : 1e-3)" value="1e-3"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
69 <param name="correction" label="Choose a correction for multiple testing" type="select"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
70 <option value="none" >None</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
71 <option value="holm">Holm correction</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
72 <option value="hochberg" >Hochberg correction</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
73 <option value="hommel" >Hommel correction</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
74 <option value="bonferroni" >Bonferroni correction</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
75 <option value="BH" selected="true">Benjamini and Hochberg</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
76 <option value="BY" >Benjamini and Yekutieli</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
77 <option value="fdr" >FDR</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
78 </param> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
79 <conditional name="condtext"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
80 <param name="textoutput" type="select" label="Generate a text file for results"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
81 <option value="TRUE">Yes</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
82 <option value="FALSE">No</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
83 </param> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
84 <when value="TRUE"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
85 <when value="FALSE"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
86 </conditional> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
87 <conditional name="condbar"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
88 <param name="barplotoutput" type="select" label="Generate a barplot of over-represented GO terms"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
89 <option value="TRUE">Yes</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
90 <option value="FALSE">No</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
91 </param> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
92 <when value="TRUE"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
93 <when value="FALSE"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
94 </conditional> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
95 <conditional name="conddot"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
96 <param name="dotplotoutput" type="select" label="Generate a dotplot of over-represented GO terms"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
97 <option value="TRUE">Yes</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
98 <option value="FALSE">No</option> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
99 </param> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
100 <when value="TRUE"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
101 <when value="FALSE"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
102 </conditional> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
103 </inputs> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
104 <outputs> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
105 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
106 <data name="outputtext" format="tabular" label="Text output for topGO analysis $ontocat category" from_work_dir="result.csv"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
107 <filter>condtext['textoutput']=="TRUE"</filter> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
108 </data> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
109 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
110 <data name="outputbarplot" format="png" label="Barplot output for topGO analysis $ontocat category" from_work_dir="barplot.png"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
111 <filter>condbar['barplotoutput']=="TRUE"</filter> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
112 </data> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
113 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
114 <data name="outputdotplot" format="png" label="Dotplot output for topGO analysis $ontocat category" from_work_dir="dotplot.png"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
115 <filter>conddot['dotplotoutput']=="TRUE"</filter> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
116 </data> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
117 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
118 </outputs> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
119 <tests> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
120 <test> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
121 <conditional name="inputtype"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
122 <param name="filetype " value="tabfile"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
123 <param name="genelist" value="prot_reactome_EGFR_mapped_ensg.txt"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
124 <param name="column" value="c1"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
125 <param name="header" value="FALSE"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
126 </conditional> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
127 <param name="ontocat" value="BP"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
128 <param name="option" value="elim"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
129 <param name="threshold" value="1e-3"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
130 <param name="correction" value="BH"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
131 <conditional name="condtext"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
132 <param name="textoutput" value="TRUE"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
133 </conditional> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
134 <conditional name="condbar"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
135 <param name="barplotoutput" value="TRUE"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
136 </conditional> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
137 <conditional name="conddot"> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
138 <param name="dotoutput" value="TRUE"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
139 </conditional> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
140 <param name="geneuniverse" value="org.Hs.eg.db"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
141 <output name="outputtext" file="Text_output_for_topGO_analysis.txt"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
142 <output name="outputbarplot" file="Barplot_output_for_topGO_analysis.png"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
143 <output name="outputdotplot" file="Dotplot_output_for_topGO_analysis.png"/> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
144 </test> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
145 </tests> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
146 <help><![CDATA[ |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
147 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
148 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
149 **Galaxy component based on R package topGO.** |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
150 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
151 **Input required** |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
152 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
153 This component works with Ensembl gene ids (e.g : ENSG0000013618). You can |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
154 copy/paste these identifiers or supply a tabular file (.csv, .tsv, .txt, .tab) |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
155 where there are contained. |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
156 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
157 **Principle** |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
158 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
159 This component provides the GO terms representativity of a gene list in one ontology category (Biological Process "BP", Cellular Component "CC", Molecular Function "MF"). This representativity is evaluated in comparison to the background list of all human genes associated associated with GO terms of the chosen category (BP,CC,MF). This background is given by the R package "org.Hs.eg.db", which is a genome wide association package for **human**. |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
160 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
161 **Output** |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
162 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
163 Three kind of outputs are available : a textual output, a barplot output and |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
164 a dotplot output. |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
165 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
166 *Textual output* : |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
167 The text output lists all the GO-terms that were found significant under the specified threshold. |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
168 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
169 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
170 The different fields are as follow : |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
171 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
172 - Annotated : number of genes in org.Hs.eg.db which are annotated with the GO-term. |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
173 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
174 - Significant : number of genes belonging to your input which are annotated with the GO-term. |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
175 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
176 - Expected : show an estimate of the number of genes a node of size Annotated would have if the significant genes were to be randomly selected from the gene universe. |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
177 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
178 - pvalues : pvalue obtained after the test |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
179 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
180 - ( qvalues : additional column with adjusted pvalues ) |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
181 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
182 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
183 **Tests** |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
184 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
185 topGO provides a classic fisher test for evaluating if some GO terms are over-represented in your gene list, but other options are also provided (elim, weight01,parentchild). For the merits of each option and their algorithmic descriptions, please refer to topGO manual : |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
186 https://bioconductor.org/packages/release/bioc/vignettes/topGO/inst/doc/topGO.pdf |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
187 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
188 **Multiple testing corrections** |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
189 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
190 Furthermore, the following corrections for multiple testing can also be applied : |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
191 - holm |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
192 - hochberg |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
193 - hommel |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
194 - bonferroni |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
195 - BH |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
196 - BY |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
197 - fdr |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
198 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
199 **Authors** |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
200 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
201 Alexa A and Rahnenfuhrer J (2016). topGO: Enrichment Analysis for Gene Ontology. R package version 2.30.0. |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
202 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
203 **Galaxy integration** |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
204 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
205 Lisa Peru, T.P. Lien Nguyen, Florence Combes, Yves Vandenbrouck CEA, INSERM, CNRS, Grenoble-Alpes University, BIG Institute, FR |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
206 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
207 Sandra Dérozier, Olivier Rué, Christophe Caron, Valentin Loux INRA, Paris-Saclay University, MAIAGE Unit, Migale Bioinformatics platform |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
208 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
209 This work has been partially funded through the French National Agency for Research (ANR) IFB project. |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
210 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
211 Contact support@proteore.org for any questions or concerns about the Galaxy implementation of this tool. |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
212 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
213 ]]></help> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
214 <citations> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
215 </citations> |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
216 |
472ad7da3d92
planemo upload commit 9f9e8b72a239e58b5087b2b3737262c25cc2671e-dirty
proteore
parents:
diff
changeset
|
217 </tool> |