Mercurial > repos > melissacline > ucsc_cancer_utilities
view vcfToXena.xml @ 48:a38cc72edd75
xena header
author | jingchunzhu |
---|---|
date | Fri, 14 Aug 2015 00:04:41 -0700 |
parents | 23d98125d20c |
children | 986bca7bc318 |
line wrap: on
line source
<tool id="vcfToXena" name="vcfToXena" version="0.1"> <description>Convert vcf To Xena ready mutation data</description> <command> java -Xmx4G -jar $__tool_directory__/snpEff/snpEff.jar -c $__tool_directory__/snpEff/snpEff.config -i vcf -upDownStreamLen 5000 $genome $input > $__tool_directory__/tmp ; python $__tool_directory__/xenaHeader.py $snpeff_output; cat $__tool_directory__/tmp | python $__tool_directory__/parseSnpEffVcf.py $input.name $snpeff_output </command> <inputs> <param format="vcf" name="input" type="data" label="Input VCF file"/> <param name="genome" type="select" label="Genome"> <option value="hg19">hg19</option> </param> </inputs> <outputs> <data format="tabular" name="snpeff_output" label="${input.name}.mutationVector" /> </outputs> <help> This tool convert vcf files to xena ready positional mutation data files. </help> </tool>