comparison vcfToMutationVector.xml @ 0:60efb9214eaa

Uploaded
author melissacline
date Wed, 14 Jan 2015 13:54:03 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:60efb9214eaa
1 <tool id="vcfToMutationVector" description="Convert SNP output VCF to Xena mutation input format" name="SnpEff VCF To Mutation Vector" version="0.0.1">
2 <description>
3 Given a VCF generated by snpEff, generate mutation data for input to Xena
4 </description>
5 <command interpreter="python">
6 vcfToMutationVector.py $inputVcf --trinity $isTrinity > $mutationVector
7 </command>
8 <inputs>
9 <param name="inputVcf" format="tabular" type="data" label="snpEff Output VCF"/>
10 <param name="isTrinity" type="boolean" truevalue="1" falsevalue="0">
11 <label>Was the input VCF produced from Trinity output?</label>
12 </param>
13 </inputs>
14 <outputs>
15 <data name="mutationVector" format="tabular"/>
16 </outputs>
17 <help>
18 This tool will take a VCF file generated by snpEff and format it appropriately for input
19 to Xena.
20 </help>
21 </tool>