annotate lumpy.xml @ 1:a006d42dd759 draft

planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
author drosofff
date Tue, 06 Dec 2016 09:29:31 -0500
parents 8b3daa745d9b
children b1e152172de9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
1 <tool id="lumpy" name="lumpy-sv" version="0.1">
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
2 <description>find structural variants</description>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
3 <requirements>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
4 <requirement type="package" version="0.2.12">lumpy-sv</requirement>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
5 <requirement type="package" version="1.3.1">samtools</requirement>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
6 <requirement type="package" version="1.11.2">numpy</requirement>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
7 </requirements>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
8 <stdio>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
9 <exit_code range="1:" level="fatal" description="Tool exception" />
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
10 </stdio>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
11 <version_command>lumpy --version</version_command>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
12 <command><![CDATA[
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
13 ln -f -s "$input_file" input.bam &&
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
14 #if $seq_method.seq_method_list == "paired-end":
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
15 samtools view -b -F 1294 input.bam > "input.discordants.unsorted.bam" &&
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
16 samtools view -h input.bam | python $__tool_directory__/extractSplitReads_BwaMem.py -i stdin | samtools view -Sb - > "input.splitters.unsorted.bam" &&
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
17 samtools sort input.discordants.unsorted.bam > input.discordants.bam &&
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
18 samtools sort input.splitters.unsorted.bam > input.splitters.bam &&
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
19 samtools view -r readgroup input.bam
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
20 |tail -n +$seq_method.additional_params.samplingValue
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
21 |python $__tool_directory__/pairend_distro.py -r 101 -X 4 -N $seq_method.additional_params.samplingValue -o input.lib.histo > meandev.txt &&
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
22 mean=\$(cat meandev.txt | sed s/mean:// | sed -r s/stdev:.+//) &&
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
23 stdev=\$(cat meandev.txt | sed -r s/mean:.+stdev://) &&
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
24 lumpy -mw 4 -tt 0
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
25 -pe id:input.bam,bam_file:input.discordants.bam,histo_file:input.lib.histo,mean:"\$mean",stdev:"\$stdev",read_length:$seq_method.readLength,min_non_overlap:$seq_method.additional_params.min_non_overlap,discordant_z:$seq_method.additional_params.discordant_z,back_distance:$seq_method.additional_params.back_distance,weight:$seq_method.additional_params.weight,min_mapping_threshold:$seq_method.additional_params.min_mapping_threshold
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
26 -sr id:input.bam,bam_file:input.splitters.bam,back_distance:$seq_method.additional_params.back_distance,weight:$seq_method.additional_params.weight,min_mapping_threshold:$seq_method.additional_params.min_mapping_threshold > output.vcf &&
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
27 mv input.discordants.bam $discordants &&
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
28 mv input.splitters.bam $splits &&
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
29 mv input.lib.histo $histogram &&
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
30 mv output.vcf $vcf_call &&
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
31 rm input.discordants.unsorted.bam input.splitters.unsorted.bam meandev.txt
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
32 #end if
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
33 #if $seq_method.seq_method_list == "single-read":
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
34 samtools view -h input.bam | python $__tool_directory__/extractSplitReads_BwaMem.py -i stdin | samtools view -Sb - > "input.splitters.unsorted.bam" &&
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
35 lumpy -mw 4 -tt 0
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
36 -sr id:input.bam,bam_file:input.splitters.unsorted.bam,back_distance:$seq_method.additional_params.back_distance,weight:$seq_method.additional_params.weight,min_mapping_threshold:$seq_method.additional_params.min_mapping_threshold > output.vcf &&
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
37 mv input.splitters.unsorted.bam $splits &&
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
38 mv output.vcf $vcf_call
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
39 #end if
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
40
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
41 ]]></command>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
42 <!-- basic error handling -->
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
43 <inputs>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
44 <param format="bam" name="input_file" type="data" label="One BAM alignment file produced by BWA-mem"/>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
45 <conditional name="seq_method">
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
46 <param help="Paired-end or single-read sequencing" label="Sequencing method" name="seq_method_list" type="select">
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
47 <option selected="True" value="paired-end">Paired-end sequencing</option>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
48 <option value="single-read">Single-read sequencing</option>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
49 </param>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
50 <when value="paired-end">
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
51 <param name="readLength" value="151" type="integer" label="read length" help="e.g. 151 nt" />
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
52 <section name="additional_params" title="Additional Options" expanded="False">
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
53 <param name="samplingValue" value="100000" type="integer" label="number of reads to compute mean and stdev of read length" help="e.g. 10000" />
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
54 <param name="min_non_overlap" value="101" type="integer" label="min_non_overlap" help="e.g. 101" />
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
55 <param name="discordant_z" value="5" type="integer" label="discordant_z" help="e.g. 5" />
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
56 <param name="back_distance" value="10" type="integer" label="back_distance" help="e.g. 10" />
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
57 <param name="weight" value="1" type="integer" label="weight" help="e.g. 1" />
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
58 <param name="min_mapping_threshold" value="20" type="integer" label="min_mapping_threshold" help="e.g. 20" />
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
59 </section>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
60 </when>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
61 <when value="single-read">
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
62 <section name="additional_params" title="Additional Options" expanded="False">
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
63 <param name="back_distance" value="10" type="integer" label="back_distance" help="e.g. 10" />
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
64 <param name="weight" value="1" type="integer" label="weight" help="e.g. 1" />
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
65 <param name="min_mapping_threshold" value="20" type="integer" label="min_mapping_threshold" help="e.g. 20" />
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
66 </section>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
67 </when>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
68
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
69 </conditional>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
70
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
71 </inputs>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
72
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
73 <outputs>
1
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
74 <data format="tabular" name="histogram" type="data" label="Lumpy on ${input_file.element_identifier}: Fragment size distribution">
0
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
75 <filter>seq_method['seq_method_list'] == "paired-end"</filter>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
76 </data>
1
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
77 <data format="bam" name="splits" type="data" label="Lumpy on ${input_file.element_identifier}: Split Reads (Bam format)"/>
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
78 <data format="bam" name="discordants" type="data" label="Lumpy on ${input_file.element_identifier}: Discordant Pairs (Bam format)">
0
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
79 <filter>seq_method['seq_method_list'] == "paired-end"</filter>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
80 </data>
1
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
81 <data format="vcf" name="vcf_call" type="data" label="Lumpy on ${input_file.element_identifier}: Variant Calling (vcf format)"/>
0
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
82 </outputs>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
83
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
84 <tests>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
85 <test>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
86 <param name="input_file" value="sr.input.bam" ftype="bam"/>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
87 <param name="seq_method_list" value="single-read" />
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
88 <param name="back_distance" value="10"/>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
89 <param name="weight" value="1" />
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
90 <param name="min_mapping_threshold" value="20" />
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
91 <output name="vcf_call" file="output.vcf" ftype="vcf"/>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
92 </test>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
93 </tests>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
94
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
95 <help>
1
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
96
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
97 **lumpy-sv manual**
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
98
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
99 Read the lumpy-sv_ documentation for details on using lumpy.
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
100
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
101 .. _lumpy-sv: https://github.com/arq5x/lumpy-sv
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
102
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
103 **lumpy options**
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
104
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
105 v 0.2.13
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
106 Author: Ryan Layer (rl6sf@virginia.edu)
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
107
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
108 Summary: Find structural variations in various signals.
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
109
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
110 Options::
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
111
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
112 -g Genome file (defines chromosome order)
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
113 -e Show evidence for each call
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
114 -w File read windows size (default 1000000)
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
115 -mw minimum weight for a call
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
116 -msw minimum per-sample weight for a call
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
117 -tt trim threshold
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
118 -x exclude file bed file
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
119 -t temp file prefix, must be to a writeable directory
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
120 -P output probability curve for each variant
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
121 -b output BEDPE instead of VCF
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
122 -sr bam_file:&lt;file name&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
123 id:&lt;sample name&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
124 back_distance:&lt;distance&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
125 min_mapping_threshold:&lt;mapping quality&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
126 weight:&lt;sample weight&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
127 min_clip:&lt;minimum clip length&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
128 read_group:&lt;string&gt;
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
129
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
130 -pe bam_file:&lt;file name&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
131 id:&lt;sample name&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
132 histo_file:&lt;file name&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
133 mean:&lt;value&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
134 stdev:&lt;value&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
135 read_length:&lt;length&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
136 min_non_overlap:&lt;length&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
137 discordant_z:&lt;z value&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
138 back_distance:&lt;distance&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
139 min_mapping_threshold:&lt;mapping quality&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
140 weight:&lt;sample weight&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
141 read_group:&lt;string&gt;
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
142
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
143 -bedpe bedpe_file:&lt;bedpe file&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
144 id:&lt;sample name&gt;,
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
145 weight:&lt;sample weight&gt;
a006d42dd759 planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit bd0a0b0717fd7da2ff703668b21ff7db3677d61b
drosofff
parents: 0
diff changeset
146
0
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
147 </help>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
148
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
149 <citations>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
150 <citation type="doi">10.1186/gb-2014-15-6-r84</citation>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
151 </citations>
8b3daa745d9b planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy commit c0bfc4b2215705e1b5fd1d4e60b1d72e5da13c92
drosofff
parents:
diff changeset
152 </tool>