Mercurial > repos > iuc > delly_merge
annotate merge.xml @ 2:148389992630 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
author | iuc |
---|---|
date | Fri, 22 Jan 2021 14:32:24 +0000 |
parents | 97c7441aed0d |
children | 1efb2b927957 |
rev | line source |
---|---|
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
1 <?xml version="1.0"?> |
1
97c7441aed0d
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 3da28c7772346e1872b6d768b904305be0c61db7"
iuc
parents:
0
diff
changeset
|
2 <tool id="delly_merge" name="Delly merge" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="18.01"> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
3 <description>structural variants across/within BCF/VCF file(s)</description> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
4 <macros> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
5 <import>macros.xml</import> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
6 </macros> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
7 <expand macro="requirements"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
8 <expand macro="version_command"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
9 <command detect_errors="exit_code"><![CDATA[ |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
10 ## initialize |
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
11 #for $i, $current in enumerate($input) |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
12 #if $current.is_of_type('vcf') |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
13 bcftools view -Ob '$current' > 'input_${i}.bcf.gz' && |
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
14 bcftools index 'input_${i}.bcf.gz' && |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
15 #else |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
16 ln -s '${current}' 'input_${i}.bcf.gz' && |
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
17 ln -s '${current.metadata.bcf_index}' 'input_${i}.bcf.gz.csi' && |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
18 #end if |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
19 #end for |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
20 |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
21 ## run |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
22 delly merge |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
23 ## generic options |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
24 --outfile 'result.bcf' |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
25 --chunks $generic.chunks |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
26 --vaf $generic.vaf |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
27 --coverage $generic.coverage |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
28 --minsize $generic.minsize |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
29 --maxsize $generic.maxsize |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
30 $generic.cnvmode |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
31 $generic.precise |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
32 $generic.pass |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
33 ## overlap options |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
34 --bp-offset $overlap.bpoffset |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
35 --rec-overlap $overlap.recoverlap |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
36 ## input |
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
37 #for $i, $current in enumerate($input) |
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
38 'input_${i}.bcf.gz' |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
39 #end for |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
40 |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
41 ## postprocessing |
1
97c7441aed0d
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 3da28c7772346e1872b6d768b904305be0c61db7"
iuc
parents:
0
diff
changeset
|
42 @LOG@ |
97c7441aed0d
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 3da28c7772346e1872b6d768b904305be0c61db7"
iuc
parents:
0
diff
changeset
|
43 @VCF@ |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
44 ]]></command> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
45 <inputs> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
46 <expand macro="input" format="bcf,vcf" multiple="true" label="Select input files"/> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
47 <section name="generic" title="Generic options" expanded="true"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
48 <param argument="--chunks" type="integer" value="500" label="Set maximum chunk size to merge groups of BCF files"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
49 <param argument="--vaf" type="float" value="0.15" min="0.0" max="1.0" label="Set minimum fractional ALT support"/> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
50 <expand macro="coverage" label="Set minimum coverage"/> |
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
51 <expand macro="minsize" default="0" label="Set minimum SV size"/> |
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
52 <expand macro="maxsize" default="1000000" label="Set maximum SV size"/> |
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
53 <param argument="--cnvmode" type="boolean" truevalue="--cnvmode" falsevalue="" label="Merge Delly CNV files?"/> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
54 <param argument="--precise" type="boolean" truevalue="--precise" falsevalue="" label="Filter sites for PRECISE?"/> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
55 <expand macro="pass"/> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
56 </section> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
57 <section name="overlap" title="Overlap options" expanded="true"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
58 <param name="bpoffset" type="integer" value="1000" label="Set maximum breakpoint offset" help="(--bp-offset)"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
59 <param name="recoverlap" type="float" value="0.8" label="Set minimum reciprocal overlap" help="(--rec-overlap)"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
60 </section> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
61 <section name="oo" title="Output options" expanded="true"> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
62 <param name="out" type="select" multiple="true" optional="false" label="Select output file(s)"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
63 <option value="bcf" selected="true">BCF</option> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
64 <option value="log">Log</option> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
65 <option value="vcf">VCF</option> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
66 </param> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
67 </section> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
68 </inputs> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
69 <outputs> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
70 <expand macro="bcf"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
71 <expand macro="log"/> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
72 <expand macro="vcf"/> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
73 </outputs> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
74 <tests> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
75 <!-- #1 bcf, default --> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
76 <test expect_num_outputs="2"> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
77 <param name="input" value="call_1.bcf.gz,call_2.bcf.gz"/> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
78 <section name="oo"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
79 <param name="out" value="vcf,bcf"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
80 </section> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
81 <output name="out_bcf"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
82 <assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
83 <has_size value="1851" delta="10"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
84 </assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
85 </output> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
86 <output name="out_vcf"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
87 <assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
88 <has_n_lines n="128"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
89 <has_line line="##fileformat=VCFv4.2"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
90 <has_line line="#CHROM	POS	ID	REF	ALT	QUAL	FILTER	INFO"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
91 </assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
92 </output> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
93 </test> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
94 <!-- #2 bcf --> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
95 <test expect_num_outputs="3"> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
96 <param name="input" value="call_1.bcf.gz,call_2.bcf.gz"/> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
97 <section name="generic"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
98 <param name="chunks" value="500"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
99 <param name="vaf" value="0.16"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
100 <param name="coverage" value="10"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
101 <param name="minsize" value="0"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
102 <param name="maxsize" value="1000000"/> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
103 <param name="cnvmode" value="true"/> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
104 <param name="precise" value="true"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
105 <param name="pass" value="true"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
106 </section> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
107 <section name="overlap"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
108 <param name="bp-offset" value="1000"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
109 <param name="rec-overlap" value="0.79"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
110 </section> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
111 <section name="oo"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
112 <param name="out" value="vcf,bcf,log"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
113 </section> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
114 <output name="out_bcf"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
115 <assert_contents> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
116 <has_size value="1021" delta="10"/> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
117 </assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
118 </output> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
119 <output name="out_log"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
120 <assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
121 <has_text_matching expression=".+Done\."/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
122 </assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
123 </output> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
124 <output name="out_vcf"> |
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
125 <assert_contents> |
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
126 <has_n_lines n="108"/> |
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
127 <has_line line="##fileformat=VCFv4.2"/> |
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
128 <has_line line="#CHROM	POS	ID	REF	ALT	QUAL	FILTER	INFO"/> |
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
129 </assert_contents> |
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
130 </output> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
131 </test> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
132 <!-- #3 vcf, default --> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
133 <test expect_num_outputs="2"> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
134 <param name="input" value="call_1.vcf.gz,call_2.vcf.gz"/> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
135 <section name="oo"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
136 <param name="out" value="vcf,bcf"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
137 </section> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
138 <output name="out_bcf"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
139 <assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
140 <has_size value="1851" delta="10"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
141 </assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
142 </output> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
143 <output name="out_vcf"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
144 <assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
145 <has_n_lines n="128"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
146 <has_line line="##fileformat=VCFv4.2"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
147 <has_line line="#CHROM	POS	ID	REF	ALT	QUAL	FILTER	INFO"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
148 </assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
149 </output> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
150 </test> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
151 </tests> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
152 <help><![CDATA[ |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
153 .. class:: infomark |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
154 |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
155 **What it does** |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
156 |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
157 @WID@ |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
158 |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
159 **Input** |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
160 |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
161 Delly *merge* requires BCF or VCF files. |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
162 |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
163 **Output** |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
164 |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
165 A single file in BCF/VCF format. Additionally a log file is provided. |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
166 |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
167 .. class:: infomark |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
168 |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
169 **References** |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
170 |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
171 @REFERENCES@ |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
172 ]]></help> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
173 <expand macro="citations"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
174 </tool> |