comparison vcf2lv.xml @ 0:1209f18a5a83 draft

Uploaded
author saskia-hiltemann
date Mon, 03 Aug 2015 05:01:15 -0400
parents
children 1c6710924e80
comparison
equal deleted inserted replaced
-1:000000000000 0:1209f18a5a83
1 <tool id="vcf2lv" name="VCF-2-VariantList" version="1">
2 <description> convert VCF file to CG-compatible variant list </description>
3
4 <command interpreter="bash">
5 vcf2lv.sh $vcffile $outputfile
6 </command>
7
8 <inputs>
9 <param name="vcffile" type="data" label="Select vcf file" />
10 <param name="fname" type="text" value="" label="Prefix for your output file" help="Optional"/>
11 </inputs>
12
13 <outputs>
14 <data format="tabular" name="outputfile" label="${fname} VCF-2-VariantList conversion"/>
15 </outputs>
16
17 <help>
18 **what it does**
19
20 Converts a VCF file containing small variants (SNVs, indels and substitutions) to a Complete Genomics type variantlist.
21
22 After conversion, the file can be used as input to the Virtual Normal filtering pipeline.
23
24
25
26 </help>
27 </tool>