diff dr-disco_detect.xml @ 1:9495360713d4 draft

planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/galaxytools-emc/tree/master/tools/dr-disco commit 6ca895dfcaa94693a54a90716d669d9488bee45b
author erasmus-medical-center
date Thu, 16 Mar 2017 04:24:23 -0400
parents
children 173ca9768e22
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dr-disco_detect.xml	Thu Mar 16 04:24:23 2017 -0400
@@ -0,0 +1,41 @@
+<tool id="dr_disco_intronic" name="Dr. Disco (intronic)" version="@TOOL_VERSION@-g0">
+    <description>Detects break-points in RNA-seq</description>
+    <macros>
+        <import>macros.xml</import>
+    </macros>
+    
+    <expand macro="requirements"/>
+    <expand macro="version_command"/>
+    
+    <command detect_errors="exit_code"><![CDATA[
+        dr-disco
+            detect
+                --min-e-score '${min_e_score}'
+                '${table_fusion_events}'
+                '${star_discordant_alignment_fixed}'
+    ]]></command>
+    <inputs>
+        <param name="star_discordant_alignment_fixed" type="data" format="bam" label="Discordant alignment file of STAR (processed with dr-disco fix)" />
+        <param name="min_e_score" argument="--min-e-score" type="integer" value="8" min="0"
+               label="Minimal score to initiate pulling sub-graphs" help="Larger numbers boost performance but result in suboptimal results. Values of 8 and below are considered to be very safe (this corresponds to initiate merging already from clusters that consist of 2 or 3 reads)." />
+    </inputs>
+    
+    <outputs>
+        <data name="table_fusion_events" format="tabular" label="${tool.name} on ${$star_discordant_alignment_fixed.name}" />
+    </outputs>
+    
+    <tests>
+        <test>
+            <param name="star_discordant_alignment_fixed" value="detect.bam" />
+            <param name="min_e_score" value="8" />
+
+            <output name="table_fusion_events" file="detect.txt" />
+        </test>
+    </tests>
+    
+    <help><![CDATA[
+        detects
+    ]]></help>
+    
+     <expand macro="citations"/>
+</tool>
\ No newline at end of file