Repository 'goenrichment'
hg clone https://toolshed.g2.bx.psu.edu/repos/iuc/goenrichment

Changeset 2:2c7c9646ccf0 (2019-07-24)
Previous changeset 1:5ace5c7d1a86 (2019-01-18)
Commit message:
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/goenrichment commit 2983eca17b9a004685024b6f4554a5190d63c7fd
modified:
goenrichment.xml
added:
macros.xml
b
diff -r 5ace5c7d1a86 -r 2c7c9646ccf0 goenrichment.xml
--- a/goenrichment.xml Fri Jan 18 11:13:00 2019 -0500
+++ b/goenrichment.xml Wed Jul 24 05:37:12 2019 -0400
b
@@ -1,5 +1,8 @@
 <tool id="goenrichment" name="GOEnrichment" version="2.0.1">
     <description>performs GO enrichment analysis of a set of gene products</description>
+    <macros>
+        <import>macros.xml</import>
+    </macros>
     <requirements>
         <requirement type="package" version="2.0.1">goenrichment</requirement>
     </requirements>
@@ -24,7 +27,7 @@
 --cc_graph '${cc_graph}'
     </command>
     <inputs>
-        <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)"/>
+        <param name="go" type="data" format="obo,owl" label="Gene Ontology File" help="Gene Ontology file in OBO or OWL format (see @ONTOLOGY_URL@"/>
         <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)"/>
         <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)"/>
         <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."/>
@@ -101,8 +104,8 @@
 
 GOEnrichment requires:
 
-- A 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.
+- A Gene Ontology file in either OBO or OWL format (see @ONTOLOGY_URL@).
+- 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.
 - A list of gene products comprising the study set (a flat text file with one gene product per line).
 - 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).
 
b
diff -r 5ace5c7d1a86 -r 2c7c9646ccf0 macros.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/macros.xml Wed Jul 24 05:37:12 2019 -0400
b
@@ -0,0 +1,4 @@
+<tokens>
+    <token name="@ANNOTATION_URL@">http://geneontology.org/docs/download-go-annotations</token>
+    <token name="@ONTOLOGY_URL@">http://geneontology.org/docs/download-ontology</token>
+</tokens>