0
|
1 <tool id="snpSift_caseControl" name="SnpSift CaseControl" version="1.0">
|
|
2 <description>Count samples are in 'case' and 'control' groups.</description>
|
|
3 <!--
|
|
4 You will need to change the path to wherever your installation is.
|
|
5 You can change the amount of memory used, just change the -Xmx parameter (e.g. use -Xmx2G for 2Gb of memory)
|
|
6 -->
|
|
7 <requirements>
|
11
|
8 <requirement type="package" version="3.0">snpEff</requirement>
|
0
|
9 <requirement type="set_environment">JAVA_JAR_PATH </requirement>
|
|
10 </requirements>
|
|
11 <command>
|
|
12 java -Xmx1G -jar $JAVA_JAR_PATH/SnpSift.jar casControl -q $hhCase $hhControl $caseControStr $input > $output
|
|
13 </command>
|
|
14 <inputs>
|
|
15 <param format="vcf" name="input" type="data" label="VCF input"/>
|
|
16 <param name="hhCase" type="select" label="Hom/Het case">
|
|
17 <option value="any">Any</option>
|
|
18 <option value="hom">Homozygous</option>
|
|
19 <option value="het">Heterozygous</option>
|
|
20 </param>
|
|
21 <param name="hhControl" type="select" label="Hom/Het control">
|
|
22 <option value="any">Any</option>
|
|
23 <option value="hom">Homozygous</option>
|
|
24 <option value="het">Heterozygous</option>
|
|
25 </param>
|
|
26 <param name="caseControStr" type="text" label="Case / Control" size="50"/>
|
|
27 </inputs>
|
|
28 <outputs>
|
|
29 <data format="vcf" name="output" />
|
|
30 </outputs>
|
5
|
31 <stdio>
|
|
32 <exit_code range=":-1" level="fatal" description="Error: Cannot open file" />
|
|
33 <exit_code range="1:" level="fatal" description="Error" />
|
|
34 </stdio>
|
0
|
35
|
|
36 <help>
|
|
37
|
|
38 Count samples are in 'case' and 'control' groups. You can count 'homozygous', 'heterozygous' or 'any' variants. Case and control are defined by a string containing plus and minus symbols ('+' and '-') where '+' is case and '-' is control. This command adds two annotations to the VCF file.
|
|
39
|
|
40 For details about this tool, please go to http://snpeff.sourceforge.net/SnpSift.html#casecontrol
|
|
41
|
|
42 </help>
|
|
43 </tool>
|