Mercurial > repos > iuc > delly_merge
annotate merge.xml @ 3:1efb2b927957 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:05:40 +0000 |
parents | 148389992630 |
children |
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> |
3
1efb2b927957
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d76130cdcb21f0390b4e68e733d38575fd5cc6c7"
iuc
parents:
2
diff
changeset
|
4 <expand macro="bio_tools"/> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
5 <macros> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
6 <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
|
7 </macros> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
8 <expand macro="requirements"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
9 <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
|
10 <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
|
11 ## initialize |
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
12 #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
|
13 #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
|
14 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
|
15 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
|
16 #else |
2
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}' '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
|
18 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
|
19 #end if |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
20 #end for |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
21 |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
22 ## run |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
23 delly merge |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
24 ## generic options |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
25 --outfile 'result.bcf' |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
26 --chunks $generic.chunks |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
27 --vaf $generic.vaf |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
28 --coverage $generic.coverage |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
29 --minsize $generic.minsize |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
30 --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
|
31 $generic.cnvmode |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
32 $generic.precise |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
33 $generic.pass |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
34 ## overlap options |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
35 --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
|
36 --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
|
37 ## input |
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
38 #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
|
39 '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
|
40 #end for |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
41 |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
42 ## postprocessing |
1
97c7441aed0d
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 3da28c7772346e1872b6d768b904305be0c61db7"
iuc
parents:
0
diff
changeset
|
43 @LOG@ |
97c7441aed0d
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 3da28c7772346e1872b6d768b904305be0c61db7"
iuc
parents:
0
diff
changeset
|
44 @VCF@ |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
45 ]]></command> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
46 <inputs> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
47 <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
|
48 <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
|
49 <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
|
50 <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
|
51 <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
|
52 <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
|
53 <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
|
54 <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
|
55 <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
|
56 <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
|
57 </section> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
58 <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
|
59 <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
|
60 <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
|
61 </section> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
62 <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
|
63 <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
|
64 <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
|
65 <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
|
66 <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
|
67 </param> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
68 </section> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
69 </inputs> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
70 <outputs> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
71 <expand macro="bcf"/> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
72 <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
|
73 <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
|
74 </outputs> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
75 <tests> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
76 <!-- #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
|
77 <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
|
78 <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
|
79 <section name="oo"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
80 <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
|
81 </section> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
82 <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
|
83 <assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
84 <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
|
85 </assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
86 </output> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
87 <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
|
88 <assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
89 <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
|
90 <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
|
91 <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
|
92 </assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
93 </output> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
94 </test> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
95 <!-- #2 bcf --> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
96 <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
|
97 <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
|
98 <section name="generic"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
99 <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
|
100 <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
|
101 <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
|
102 <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
|
103 <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
|
104 <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
|
105 <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
|
106 <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
|
107 </section> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
108 <section name="overlap"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
109 <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
|
110 <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
|
111 </section> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
112 <section name="oo"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
113 <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
|
114 </section> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
115 <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
|
116 <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
|
117 <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
|
118 </assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
119 </output> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
120 <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
|
121 <assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
122 <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
|
123 </assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
124 </output> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
125 <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
|
126 <assert_contents> |
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
127 <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
|
128 <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
|
129 <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
|
130 </assert_contents> |
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
131 </output> |
0
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
132 </test> |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
133 <!-- #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
|
134 <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
|
135 <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
|
136 <section name="oo"> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
137 <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
|
138 </section> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
139 <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
|
140 <assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
141 <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
|
142 </assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
143 </output> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
144 <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
|
145 <assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
146 <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
|
147 <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
|
148 <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
|
149 </assert_contents> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
150 </output> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
151 </test> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
152 </tests> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
153 <help><![CDATA[ |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
154 .. class:: infomark |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
155 |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
156 **What it does** |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
157 |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
158 @WID@ |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
159 |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
160 **Input** |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
161 |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
162 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
|
163 |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
164 **Output** |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
165 |
2
148389992630
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d18d984264f54b45e94d97b5b97ed499a32a334a"
iuc
parents:
1
diff
changeset
|
166 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
|
167 |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
168 .. class:: infomark |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
169 |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
170 **References** |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
171 |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
172 @REFERENCES@ |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
173 ]]></help> |
6331d804f983
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit 86ada42b811af0262618636f2d8d1788274f9884"
iuc
parents:
diff
changeset
|
174 <expand macro="citations"/> |
3
1efb2b927957
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly commit d76130cdcb21f0390b4e68e733d38575fd5cc6c7"
iuc
parents:
2
diff
changeset
|
175 </tool> |