comparison varscan/varscan_somatic.native.xml @ 0:848f3dc54593 draft

Uploaded
author geert-vandeweyer
date Fri, 07 Mar 2014 06:17:32 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:848f3dc54593
1 <tool id="varscan_somatic" name="VarScan Somatic (Native Output)" version="2.3.5">
2 <description>
3 somatic mutation caller for cancer genomics
4 </description>
5 <requirements>
6 <requirement type="package" version="2.3.5">VarScan</requirement>
7 </requirements>
8 <command interpreter="perl">
9
10 varscan_somatic.pl
11 "COMMAND::java -jar \$JAVA_JAR_PATH/VarScan.v2.3.5.jar somatic"
12 "NORMAL::$normal"
13 "TUMOR::$tumor"
14 "TUMORBAM::$tumorbam"
15 "SNP::$snp"
16 "INDEL::$indel"
17 "LOG::$log"
18
19 "OPTION::--min-coverage $min_coverage"
20 "OPTION::--min-coverage-normal $min_coverage_normal"
21 "OPTION::--min-coverage-tumor $min_coverage_tumor"
22
23 "OPTION::--min-var-freq $min_var_freq"
24 "OPTION::--min-freq-for-hom $min_freq_for_hom"
25
26 "OPTION::--normal-purity $normal_purity"
27 "OPTION::--tumor-purity $tumor_purity"
28
29 "OPTION::--p-value $p_value"
30 "OPTION::--somatic-p-value $somatic_p_value"
31
32 "OPTION::--strand-filter $strand_filter"
33 "OPTION::--validation $validation"
34
35
36
37 </command>
38
39 <inputs>
40
41 <param name="normal" type="data" format="pileup" label="normal mpileup file" help="The SAMtools mpileup file for normal sample" />
42 <param name="tumor" type="data" format="pileup" label="tumor mpileup file" help="The SAMtools mpileup file for tumor sample" />
43 <param name="tumorbam" type="data" format="bam" label="tumor BAM file" help="The BAM file of the tumor sample used in mpileup step" />
44
45 <param name="min_coverage" type="integer" label="min-coverage" help="" optional="true" value="8"/>
46 <param name="min_coverage_normal" type="integer" label="min-coverage-normal" help="" optional="true" value="8"/>
47 <param name="min_coverage_tumor" type="integer" label="min-coverage-tumor" help="" optional="true" value="6"/>
48
49 <param name="min_var_freq" type="float" label="min-var-freq" help="" optional="true" value="0.10"/>
50 <param name="min_freq_for_hom" type="float" label="min-freq-for-hom" help="" optional="true" value="0.75"/>
51
52 <param name="normal_purity" type="float" label="normal-purity" help="" optional="true" value="1.00"/>
53 <param name="tumor_purity" type="float" label="tumor-purity" help="" optional="true" value="1.00"/>
54
55
56 <param name="p_value" type="text" label="p-value" help="" optional="true" value="0.99"/>
57 <param name="somatic_p_value" type="text" label="somatic-p-value" help="" optional="true" value="0.05"/>
58
59 <param name="strand_filter" type="integer" label="strand-filter" help="" optional="true" value="1"/>
60 <param name="validation" type="integer" label="validation" help="" optional="true" value="0"/>
61
62 </inputs>
63 <outputs>
64 <data type="data" format="txt" name="log" label="${tool.name} result on ${on_string} (log) "/>
65 <data type="data" format="txt" name="snp" label="${tool.name} result on ${on_string} (SNP)" />
66 <data type="data" format="txt" name="indel" label="${tool.name} result on ${on_string} (INDEL)" />
67
68
69 </outputs>
70
71 <help>
72
73 .. class:: infomark
74
75 **What it does**
76
77 ::
78
79 VarScan is a platform-independent mutation caller for targeted, exome, and whole-genome resequencing data generated on Illumina, SOLiD, Life/PGM, Roche/454, and similar instruments. The newest version, VarScan 2, is written in Java, so it runs on most operating systems. It can be used to detect different types of variation:
80
81 Germline variants (SNPs an dindels) in individual samples or pools of samples.
82 Multi-sample variants (shared or private) in multi-sample datasets (with mpileup).
83 Somatic mutations, LOH events, and germline variants in tumor-normal pairs.
84 Somatic copy number alterations (CNAs) in tumor-normal exome data.
85
86
87 **Input**
88
89 ::
90
91 mpileup normal file - The SAMtools mpileup file for normal
92 mpileup tumor file - The SAMtools mpileup file for tumor
93
94
95 **Parameters**
96
97 ::
98
99 min-coverage
100 Minimum read depth at a position to make a call [8]
101
102 min-coverage-normal
103 Minimum coverage in normal to call somatic [8]
104
105 min-coverage-tumor
106 Minimum coverage in tumor to call somatic [6]
107
108 min-var-freq
109 Minimum variant frequency to call a heterozygote [0.10]
110
111 min-freq-for-hom
112 Minimum frequency to call homozygote [0.75]
113
114 normal-purity
115 Estimated purity (non-tumor content) of normal sample [1.00]
116
117 tumor-purity
118 Estimated purity (tumor content) of tumor sample [1.00]
119
120 p-value
121 Default p-value threshold for calling variants [0.99]
122
123 somatic-p-value
124 P-value threshold to call a somatic site [0.05]
125
126 strand-filter
127 If set to 1, removes variants with >90% strand bias
128
129 validation
130 If set to 1, outputs all compared positions even if non-variant
131
132 output-vcf
133 If set to 1, outputs in VCF format [Default]
134
135
136
137 </help>
138 </tool>
139