Mercurial > repos > melissacline > ucsc_cancer_utilities
comparison vcfToXena.xml @ 45:e2627dcbd8b9
start vcfToXena
author | jingchunzhu |
---|---|
date | Thu, 13 Aug 2015 21:48:02 -0700 |
parents | |
children | 23d98125d20c |
comparison
equal
deleted
inserted
replaced
44:bb8963939d6f | 45:e2627dcbd8b9 |
---|---|
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 |