45
|
1 <tool id="vcfToXena" name="vcfToXena" version="0.1">
|
47
|
2 <description>Convert vcf To Xena ready mutation data</description>
|
45
|
3 <command>
|
|
4 java -Xmx4G -jar $__tool_directory__/snpEff/snpEff.jar -c $__tool_directory__/snpEff/snpEff.config
|
|
5 -i vcf -upDownStreamLen 5000 $genome
|
47
|
6 $input > $__tool_directory__/tmp ;
|
|
7 cat $__tool_directory__/tmp | python $__tool_directory__/parseSnpEffVcf.py $input.name $snpeff_output
|
45
|
8 </command>
|
|
9 <inputs>
|
|
10 <param format="vcf" name="input" type="data" label="Input VCF file"/>
|
|
11 <param name="genome" type="select" label="Genome">
|
|
12 <option value="hg19">hg19</option>
|
|
13 </param>
|
|
14
|
|
15 </inputs>
|
|
16 <outputs>
|
47
|
17 <data format="tabular" name="snpeff_output" label="${input.name}.mutationVector" />
|
45
|
18 </outputs>
|
|
19 <help>
|
|
20 This tool convert vcf files to xena ready positional mutation data files.
|
|
21 </help>
|
|
22 </tool>
|
|
23
|