diff dgidb_annotator.xml @ 0:28d72b995c6b draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/dgidb_annotator commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
author devteam
date Mon, 09 Nov 2015 11:29:28 -0500
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dgidb_annotator.xml	Mon Nov 09 11:29:28 2015 -0500
@@ -0,0 +1,45 @@
+<tool id="dgidb_annotate" name="Annotate with DGI" version="0.1">
+    <description>database info</description>
+    
+    <command interpreter="python">
+        dgidb_annotator.py
+        #if $expert_curated_only:
+            -e
+        #end if
+        #if $print_all:
+            -a
+        #end if
+        -g $gene_name_col
+        $input &gt; $output
+    </command>
+    <inputs>
+        <param name="input" label="Input" type="data" format="tabular"/>
+        <param name="expert_curated_only" label="Use Only Expert Curated Results" type="boolean"/>
+        <param name="print_all" label="Print All Rows, including those without Annotation" type="boolean"/>
+        <param name="gene_name_col" label="Gene Name Column" type="data_column" data_ref="input"/>
+    </inputs>
+
+    <outputs>
+        <data name="output" format="tabular"/>
+    </outputs>
+
+    <stdio>
+        <regex match=".*" source="both" level="log" description="tool progress"/>
+    </stdio>
+
+    <tests>
+        <test>
+            <param name="input" value="in1.tabular"/>
+            <param name="expert_curated_only" value="True"/>
+            <param name="print_all" value="False"/>
+            <param name="gene_name_col" value="1"/>
+            <output name="output" file="out1.tabular"/>
+        </test>
+    </tests>
+
+    <help>
+Annotates a tabular dataset with information from the `Drug-Gene Interations database`__
+
+.. __: http://dgidb.genome.wustl.edu/
+    </help>
+</tool>