0
|
1 <tool id="varscan" name="VarScan Readcount" version="2.4.4">
|
|
2 <description>To use varscan readcount tool</description>
|
|
3
|
|
4 <requirements>
|
|
5 <requirement type="package" version="2.4.4">varscan</requirement>
|
|
6 </requirements>
|
|
7
|
|
8 <stdio>
|
|
9 <regex match="Exception" source="both" level="fatal" description="Tool exception"/>
|
|
10 <regex match=".*" source="both" level="log" description="tool progress"/>
|
|
11 </stdio>
|
|
12
|
|
13 <version_command><![CDATA[
|
|
14 varscan 2>&1 | head -n 1
|
|
15 ]]></version_command>
|
|
16
|
|
17 <command><![CDATA[
|
|
18 varscan readcounts ${input} --min-coverage ${min_cov} --min-base-qual ${min_base_qual} --output-file ${output}
|
|
19 ]]></command>
|
|
20
|
|
21 <inputs>
|
|
22 <param format="pileup" name="input" type="data" label="Pileup dataset" help=""/>
|
|
23 <param name="min_cov" type="integer" value="1" min="1" max="2000" label="Minimum read depth" help="Minimum depth at a position to make a call [1]"/>
|
|
24 <param name="min_base_qual" type="integer" value="20" min="1" max="500" label="Minimum base quality" label="Minimum base quality at a position to count a read [20]"/>
|
|
25 </inputs>
|
|
26
|
|
27 <outputs>
|
|
28 <data name="output" format="vcf"/>
|
|
29 </outputs>
|
|
30
|
|
31 <help>
|
|
32
|
|
33 command: varscan readcounts --help
|
|
34
|
|
35 Min coverage: 1
|
|
36 Min base qual: 20
|
|
37 USAGE: java -jar VarScan.jar readcounts [pileup] OPTIONS
|
|
38 OPTIONS:
|
|
39 --variants-file A list of variants at which to report readcounts
|
|
40 --output-file Output file to contain the readcounts
|
|
41 --min-coverage Minimum read depth at a position to make a call [1]
|
|
42 --min-base-qual Minimum base quality at a position to count a read [20]
|
|
43
|
|
44 </help>
|
|
45
|
|
46 <citations>
|
|
47 <citation type="doi">10.1101/gr.129684.111</citation>
|
|
48 </citations>
|
|
49 </tool>
|
|
50
|
|
51
|