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