1
|
1 <tool id="delly" name="delly" version="">
|
|
2 <description>structural variant prediction method</description>
|
|
3 <parallelism method="basic"></parallelism>
|
|
4
|
|
5 <command interpreter="python">
|
|
6 delly.py
|
|
7 -b $bam
|
|
8 -t
|
|
9 #if $checkDel:
|
|
10 DEL
|
|
11 #end if
|
|
12 #if $checkDup:
|
|
13 DUP
|
|
14 #end if
|
|
15 #if $checkInv:
|
|
16 INV
|
|
17 #end if
|
|
18 #if $checkTra:
|
|
19 TRA
|
|
20 #end if
|
|
21 -q $map_qual
|
|
22 -s $mad_cutoff
|
|
23 -g $genome
|
|
24 -m $min_flank
|
|
25 -e $epsilon
|
|
26 -o $output
|
|
27 </command>
|
|
28
|
|
29 <inputs>
|
|
30 <param format="bam" name="bam" type="data" label="bam file" help="" />
|
|
31 <param name="checkDel" type="boolean" label="Check Deletion?" checked="true"/>
|
|
32 <param name="checkDup" type="boolean" label="Check Duplication?" checked="true"/>
|
|
33 <param name="checkInv" type="boolean" label="Check Inversion?" checked="true"/>
|
|
34 <param name="checkTra" type="boolean" label="Check Translation?" checked="true"/>
|
|
35 <param name="map_qual" type="integer" label="min. paired-end mapping quality" value="0" />
|
|
36 <param name="mad_cutoff" type="integer" label="insert size cutoff, median+s*MAD (deletions only)" value="5" />
|
|
37 <param name="min_flank" type="integer" label="minimum flanking sequence size" value="13" />
|
|
38 <param name="epsilon" type="float" label="allowed epsilon deviation of PE vs. SR deletion" value="0.1" />
|
|
39 <param name="genome" type="text" label="genome" value="null" />
|
|
40 </inputs>
|
|
41
|
|
42 <outputs>
|
|
43 <data format="vcf" name="output" label="VCF output of delly" />
|
|
44 </outputs>
|
|
45
|
|
46 <help>
|
|
47 DELLY is an integrated structural variant prediction method that can detect deletions, tandem duplications, inversions and translocations at single-nucleotide resolution in short-read massively parallel sequencing data.
|
|
48 It uses paired-ends and split-reads to sensitively and accurately delineate genomic rearrangements throughout the genome.
|
|
49
|
|
50 DELLY (Version: 0.5.5)
|
|
51 Contact: Tobias Rausch (rausch@embl.de)
|
|
52
|
|
53 Generic options:
|
|
54 -? [ --help ] show help message
|
|
55 -t [ --type ] arg (=DEL) SV analysis type (DEL, DUP, INV, TRA)
|
|
56 -o [ --outfile ] arg (="sv.vcf") SV output file
|
|
57 -x [ --exclude ] arg (="") file with chr to exclude
|
|
58
|
|
59 PE options:
|
|
60 -q [ --map-qual ] arg (=0) min. paired-end mapping quality
|
|
61 -s [ --mad-cutoff ] arg (=5) insert size cutoff, median+s*MAD (deletions only)
|
|
62
|
|
63 SR options:
|
|
64 -g [ --genome ] arg genome fasta file
|
|
65 -m [ --min-flank ] arg (=13) minimum flanking sequence size
|
|
66
|
|
67 Genotyping options:
|
|
68 -v [ --vcfgeno ] arg (="site.vcf") input vcf file for genotyping only
|
|
69 -u [ --geno-qual ] arg (=20) min. mapping quality for genotyping
|
|
70 </help>
|
|
71
|
|
72 <tests>
|
|
73 <test>
|
|
74 </test>
|
|
75 </tests>
|
|
76
|
|
77 </tool> |