comparison goenrichment.xml @ 2:2c7c9646ccf0 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/goenrichment commit 2983eca17b9a004685024b6f4554a5190d63c7fd
author iuc
date Wed, 24 Jul 2019 05:37:12 -0400
parents 5ace5c7d1a86
children
comparison
equal deleted inserted replaced
1:5ace5c7d1a86 2:2c7c9646ccf0
1 <tool id="goenrichment" name="GOEnrichment" version="2.0.1"> 1 <tool id="goenrichment" name="GOEnrichment" version="2.0.1">
2 <description>performs GO enrichment analysis of a set of gene products</description> 2 <description>performs GO enrichment analysis of a set of gene products</description>
3 <macros>
4 <import>macros.xml</import>
5 </macros>
3 <requirements> 6 <requirements>
4 <requirement type="package" version="2.0.1">goenrichment</requirement> 7 <requirement type="package" version="2.0.1">goenrichment</requirement>
5 </requirements> 8 </requirements>
6 <command detect_errors="exit_code">goenrichment 9 <command detect_errors="exit_code">goenrichment
7 --go '${go}' 10 --go '${go}'
22 --mf_graph '${mf_graph}' 25 --mf_graph '${mf_graph}'
23 --bp_graph '${bp_graph}' 26 --bp_graph '${bp_graph}'
24 --cc_graph '${cc_graph}' 27 --cc_graph '${cc_graph}'
25 </command> 28 </command>
26 <inputs> 29 <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)"/> 30 <param name="go" type="data" format="obo,owl" label="Gene Ontology File" help="Gene Ontology file in OBO or OWL format (see @ONTOLOGY_URL@"/>
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)"/> 31 <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)"/> 32 <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."/> 33 <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)."> 34 <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"/> 35 <option value="Benjamini-Hochberg" selected="true"/>
99 102
100 .. class:: infomark 103 .. class:: infomark
101 104
102 GOEnrichment requires: 105 GOEnrichment requires:
103 106
104 - A Gene Ontology file in either OBO or OWL format (see http://geneontology.org/page/download-ontology). 107 - A Gene Ontology file in either OBO or OWL format (see @ONTOLOGY_URL@).
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. 108 - A tabular annotation file in GAF (@ANNOTATION_URL@) 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). 109 - 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). 110 - 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 111
109 ----- 112 -----
110 113