0
|
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>
|