annotate somatic_sniper.xml @ 0:2a6cd0e894d5 draft default tip

planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
author morinlab
date Tue, 11 Oct 2016 14:33:29 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
1 <tool id="somatic_sniper" name="SomaticSniper" version="1.0">
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
2 <description>calls SNVs for tumour-normal pairs.</description>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
3 <requirements>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
4 <requirement type="package" version="1.0.5.0">somatic_sniper</requirement>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
5 <requirement type="set_environment">SOMATIC_SNIPER_ROOT_DIR</requirement>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
6 </requirements>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
7 <command detect_errors="aggressive"><![CDATA[
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
8
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
9 ## SYMLINK BAM FILES ALONGSIDE INDEX FILES
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
10 ln -s $normal normal.bam;
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
11 ln -s $normal.metadata.bam_index normal.bam.bai;
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
12 ln -s $tumor tumor.bam;
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
13 ln -s $tumor.metadata.bam_index tumor.bam.bai;
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
14
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
15 #if $interval:
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
16
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
17 for i in \$(cut -f1 $interval); do
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
18
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
19 #end if
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
20
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
21
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
22 ## BUILD SOMATICSNIPER COMMAND LINE
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
23 \$SOMATIC_SNIPER_ROOT_DIR/bin/bam-somaticsniper
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
24 -F vcf
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
25 -q $advancedsettings.q
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
26 -Q $advancedsettings.Q
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
27 -T $advancedsettings.T
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
28 -N $advancedsettings.N
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
29 -r $advancedsettings.r
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
30 -n $advancedsettings.n
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
31 -t $advancedsettings.t
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
32 $advancedsettings.L
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
33 $advancedsettings.G
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
34 $advancedsettings.p
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
35
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
36 #if $ref.ref_options == "cached"
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
37 -f ${ref.index.fields.path}
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
38 #else
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
39 -f ${ref.ownFile}
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
40 #end if
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
41
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
42 #if $interval:
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
43
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
44 <(samtools view -b tumor.bam \$i)
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
45 <(samtools view -b normal.bam \$i)
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
46
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
47 #else:
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
48 tumor.bam
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
49 normal.bam
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
50
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
51 #end if
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
52
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
53 #if $interval:
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
54 tmp_\$i.txt
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
55 #else:
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
56 $variants
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
57 #end if
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
58 ;
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
59
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
60 #if $interval:
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
61
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
62 done;
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
63
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
64 for i in \$(cut -f1 $interval); do
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
65
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
66 if [ \$i == \$(cut -f1 $interval | head -n1) ] ; then
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
67 cat tmp_\$i.txt > $variants;
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
68 else
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
69 grep -v ^#.* tmp_\$i.txt >> $variants;
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
70 fi ;
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
71
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
72 done;
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
73
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
74 #end if
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
75
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
76
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
77
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
78 ]]></command>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
79 <inputs>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
80 <conditional name="ref">
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
81 <param name="ref_options" type="select" label="Choose the source for the reference genome">
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
82 <option value="cached" selected="True">Use a built-in genome</option>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
83 <option value="history">Use a genome from the history</option>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
84 </param>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
85 <when value="cached">
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
86 <param name="index" type="select" label="Reference Genome File" >
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
87 <options from_data_table="all_fasta" />
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
88 </param>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
89 </when>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
90 <when value="history">
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
91 <param format="fasta" name="ownFile" type="data" metadata_name="dbkey" label="Reference Genome File" />
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
92 </when>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
93 </conditional>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
94 <param format="bam" name="normal" type="data" label="Normal Alignment File" />
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
95 <param format="bam" name="tumor" type="data" label="Tumour Alignment File" />
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
96 <param type="data" format="txt" optional="true" name="interval" label="Specify Inteval"/>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
97 <section name="advancedsettings" title="Advanced Settings" expanded="False" >
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
98 <param name="q" type="integer" value="0" label="Minimum read mapping quality"/>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
99 <param name="Q" type="integer" value="15" label="Minimum somatic variant quality score"/>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
100 <param name="T" type="float" value="0.850000" label="theta in maq consensus calling model (for -c/-g) [0.850000]"/>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
101 <param name="N" type="integer" value="2" label="Ploidy (number of haplotypes)"/>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
102 <param name="r" type="float" value="0.001000" label="Prior probability for differences between haplotypes"/>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
103 <param name="n" type="text" value="NORMAL" label="Normal sample ID"/>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
104 <param name="t" type="text" value="TUMOR" label="Tumour sample ID"/>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
105 <param name="L" type="boolean" truevalue="-L" falsevalue="" checked="true" label="Exclude LOH variants from output" />
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
106 <param name="G" type="boolean" truevalue="-G" falsevalue="" checked="true" label="Exclude gain of reference variants from output" />
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
107 <param name="p" type="boolean" truevalue="-p" falsevalue="" checked="true" label="Disable priors in somatic calculation (improved sensitivity for solid tumours)" />
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
108 </section>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
109 </inputs>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
110 <outputs>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
111 <data name="variants" format="vcf" label="SomaticSniper SNVs" />
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
112 </outputs>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
113 <help>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
114 http://gmt.genome.wustl.edu/packages/somatic-sniper/
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
115 </help>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
116 <citations>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
117 <expand macro="morinlab_citation" />
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
118 <expand macro="galaxy_citation" />
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
119 <expand macro="somatic_sniper_citation" />
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
120 </citations>
2a6cd0e894d5 planemo upload for repository https://github.com/morinlab/tools-morinlab/tree/master/tools/somatic_sniper commit 4ef2d91b7c1686a2696b92fe538d4aec51d05e40-dirty
morinlab
parents:
diff changeset
121 </tool>