Mercurial > repos > iuc > delly_classify
annotate classify.xml @ 1:d31211a43b19 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d76130cdcb21f0390b4e68e733d38575fd5cc6c7"
author | iuc |
---|---|
date | Tue, 14 Dec 2021 19:07:12 +0000 |
parents | d3bc6ec7881f |
children |
rev | line source |
---|---|
0
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
1 <?xml version="1.0"?> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
2 <tool id="delly_classify" name="Delly classify" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="18.01"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
3 <description>somatic or germline copy-number variants</description> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
4 <macros> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
5 <import>macros.xml</import> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
6 </macros> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
7 <expand macro="requirements"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
8 <expand macro="version_command"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
9 <command detect_errors="exit_code"><![CDATA[ |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
10 ## initialize |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
11 #if $input.is_of_type('vcf') |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
12 bcftools view -Ob '$input' > 'input.bcf.gz' && |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
13 bcftools index 'input.bcf.gz' && |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
14 #else |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
15 ln -s '${input}' 'input.bcf.gz' && |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
16 ln -s '${input.metadata.bcf_index}' 'input.bcf.gz.csi' && |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
17 #end if |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
18 |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
19 ## run |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
20 delly classify |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
21 ## generic options |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
22 --filter $sv.mode_cond.mode_sel |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
23 --outfile 'result.bcf' |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
24 --minsize $generic.minsize |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
25 --maxsize $generic.maxsize |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
26 $generic.pass |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
27 ## somatic options |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
28 #if $sv.mode_cond.mode_sel == 'somatic' |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
29 --samples '$sv.mode_cond.samples' |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
30 --pgerm $sv.mode_cond.pgerm |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
31 --cn-offset $sv.mode_cond.cnoffset |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
32 ## germline options |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
33 #else if $sv.mode_cond.mode_sel == 'germline' |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
34 --ploidy $sv.mode_cond.ploidy |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
35 --qual $sv.mode_cond.qual |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
36 --maxsd $sv.mode_cond.maxsd |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
37 #end if |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
38 ## input |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
39 'input.bcf.gz' |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
40 |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
41 ## postprocessing |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
42 @LOG@ |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
43 @VCF@ |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
44 ]]></command> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
45 <inputs> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
46 <expand macro="input" format="bcf,vcf" label="Select input file"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
47 <section name="generic" title="Generic options" expanded="true"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
48 <expand macro="minsize" default="1000" label="Set minimum CNV size"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
49 <expand macro="maxsize" default="500000000" label="Set maximum CNV size"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
50 <expand macro="pass"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
51 </section> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
52 <section name="sv" title="SV calling options" expanded="true"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
53 <conditional name="mode_cond"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
54 <param name="mode_sel" type="select" label="Select filter mode" help="(--filter)"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
55 <option value="somatic" selected="true">Somatic</option> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
56 <option value="germline">Germline</option> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
57 </param> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
58 <when value="somatic"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
59 <expand macro="samples"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
60 <param argument="--pgerm" type="float" value="0.05" label="Set probability germline"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
61 <expand macro="cnoffset" default="0.2"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
62 </when> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
63 <when value="germline"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
64 <expand macro="ploidy"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
65 <param argument="--qual" type="integer" value="50" label="Set minimum site quality"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
66 <param argument="--maxsd" type="float" value="0.15" label="Set maximum population SD"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
67 </when> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
68 </conditional> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
69 </section> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
70 <section name="oo" title="Output options" expanded="true"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
71 <param name="out" type="select" multiple="true" optional="false" label="Select output file(s)"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
72 <option value="bcf" selected="true">BCF</option> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
73 <option value="log">Log</option> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
74 <option value="vcf">VCF</option> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
75 </param> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
76 </section> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
77 </inputs> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
78 <outputs> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
79 <expand macro="bcf"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
80 <expand macro="log"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
81 <expand macro="vcf"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
82 </outputs> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
83 <tests> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
84 <!-- #1 somatic, default --> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
85 <test expect_num_outputs="3"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
86 <param name="input" value="call_1.bcf.gz"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
87 <section name="sv"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
88 <conditional name="mode_cond"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
89 <param name="mode_sel" value="somatic"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
90 <param name="samples" value="samples.tsv"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
91 </conditional> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
92 </section> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
93 <section name="oo"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
94 <param name="out" value="bcf,vcf,log"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
95 </section> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
96 <output name="out_bcf"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
97 <assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
98 <has_size value="2322"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
99 </assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
100 </output> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
101 <output name="out_log"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
102 <assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
103 <has_text_matching expression=".+Done.+"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
104 </assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
105 </output> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
106 <output name="out_vcf"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
107 <assert_contents> |
1
d31211a43b19
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d76130cdcb21f0390b4e68e733d38575fd5cc6c7"
iuc
parents:
0
diff
changeset
|
108 <has_size value="7758"/> |
0
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
109 </assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
110 </output> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
111 </test> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
112 <!-- #2 somatic --> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
113 <test expect_num_outputs="3"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
114 <param name="input" value="call_1.bcf.gz"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
115 <section name="generic"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
116 <param name="minsize" value="1001"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
117 <param name="maxsize" value="500000001"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
118 <param name="pass" value="true"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
119 </section> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
120 <section name="sv"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
121 <conditional name="mode_cond"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
122 <param name="mode_sel" value="somatic"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
123 <param name="samples" value="samples.tsv"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
124 <param name="pgerm" value="0.04"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
125 <param name="cnoffset" value="0.19"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
126 </conditional> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
127 </section> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
128 <section name="oo"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
129 <param name="out" value="bcf,vcf,log"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
130 </section> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
131 <output name="out_bcf"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
132 <assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
133 <has_size value="2322"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
134 </assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
135 </output> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
136 <output name="out_log"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
137 <assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
138 <has_text_matching expression=".+Done.+"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
139 </assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
140 </output> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
141 <output name="out_vcf"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
142 <assert_contents> |
1
d31211a43b19
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d76130cdcb21f0390b4e68e733d38575fd5cc6c7"
iuc
parents:
0
diff
changeset
|
143 <has_size value="7758"/> |
0
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
144 </assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
145 </output> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
146 </test> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
147 <!-- #3 germline, default --> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
148 <test expect_num_outputs="3"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
149 <param name="input" value="call_1.bcf.gz"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
150 <section name="sv"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
151 <conditional name="mode_cond"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
152 <param name="mode_sel" value="germline"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
153 </conditional> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
154 </section> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
155 <section name="oo"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
156 <param name="out" value="bcf,vcf,log"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
157 </section> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
158 <output name="out_bcf"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
159 <assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
160 <has_size value="2270"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
161 </assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
162 </output> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
163 <output name="out_log"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
164 <assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
165 <has_text_matching expression=".+Done.+"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
166 </assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
167 </output> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
168 <output name="out_vcf"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
169 <assert_contents> |
1
d31211a43b19
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d76130cdcb21f0390b4e68e733d38575fd5cc6c7"
iuc
parents:
0
diff
changeset
|
170 <has_size value="7661"/> |
0
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
171 </assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
172 </output> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
173 </test> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
174 <!-- #4 germline --> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
175 <test expect_num_outputs="3"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
176 <param name="input" value="call_1.bcf.gz"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
177 <section name="sv"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
178 <conditional name="mode_cond"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
179 <param name="mode_sel" value="germline"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
180 <param name="ploidy" value="1"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
181 <param name="qual" value="51"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
182 <param name="maxsd" value="0.16"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
183 </conditional> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
184 </section> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
185 <section name="oo"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
186 <param name="out" value="bcf,vcf,log"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
187 </section> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
188 <output name="out_bcf"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
189 <assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
190 <has_size value="2270"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
191 </assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
192 </output> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
193 <output name="out_log"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
194 <assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
195 <has_text_matching expression=".+Done.+"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
196 </assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
197 </output> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
198 <output name="out_vcf"> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
199 <assert_contents> |
1
d31211a43b19
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d76130cdcb21f0390b4e68e733d38575fd5cc6c7"
iuc
parents:
0
diff
changeset
|
200 <has_size value="7661"/> |
0
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
201 </assert_contents> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
202 </output> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
203 </test> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
204 </tests> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
205 <help><![CDATA[ |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
206 .. class:: infomark |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
207 |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
208 **What it does** |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
209 |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
210 @WID@ |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
211 |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
212 Delly *classify* for somatic or germline copy-number variants. |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
213 |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
214 **Input** |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
215 |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
216 Delly *classify* requires an input file in BCF format that can be generated with e.g. Delly *merge*. Additionally a tab-delimited sample description file is required where the first column is the sample id (as in the VCF/BCF file) and the second column is either tumor or control. |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
217 |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
218 **Output** |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
219 |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
220 The output is available in BCF and VCF format. Additionally a log file is provided. |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
221 |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
222 .. class:: infomark |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
223 |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
224 **References** |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
225 |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
226 @REFERENCES@ |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
227 ]]></help> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
228 <expand macro="citations"/> |
d3bc6ec7881f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
diff
changeset
|
229 </tool> |