Mercurial > repos > erasmus-medical-center > dr_disco
comparison 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 |
comparison
equal
deleted
inserted
replaced
0:fca9c1ace23c | 1:9495360713d4 |
---|---|
1 <tool id="dr_disco_intronic" name="Dr. Disco (intronic)" version="@TOOL_VERSION@-g0"> | |
2 <description>Detects break-points in RNA-seq</description> | |
3 <macros> | |
4 <import>macros.xml</import> | |
5 </macros> | |
6 | |
7 <expand macro="requirements"/> | |
8 <expand macro="version_command"/> | |
9 | |
10 <command detect_errors="exit_code"><![CDATA[ | |
11 dr-disco | |
12 detect | |
13 --min-e-score '${min_e_score}' | |
14 '${table_fusion_events}' | |
15 '${star_discordant_alignment_fixed}' | |
16 ]]></command> | |
17 <inputs> | |
18 <param name="star_discordant_alignment_fixed" type="data" format="bam" label="Discordant alignment file of STAR (processed with dr-disco fix)" /> | |
19 <param name="min_e_score" argument="--min-e-score" type="integer" value="8" min="0" | |
20 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)." /> | |
21 </inputs> | |
22 | |
23 <outputs> | |
24 <data name="table_fusion_events" format="tabular" label="${tool.name} on ${$star_discordant_alignment_fixed.name}" /> | |
25 </outputs> | |
26 | |
27 <tests> | |
28 <test> | |
29 <param name="star_discordant_alignment_fixed" value="detect.bam" /> | |
30 <param name="min_e_score" value="8" /> | |
31 | |
32 <output name="table_fusion_events" file="detect.txt" /> | |
33 </test> | |
34 </tests> | |
35 | |
36 <help><![CDATA[ | |
37 detects | |
38 ]]></help> | |
39 | |
40 <expand macro="citations"/> | |
41 </tool> |