view vcf2lv.xml @ 4:58815aed4ec3 draft default tip

few bugfixes in VCF-2-variantlist
author saskia-hiltemann
date Wed, 04 Nov 2015 05:06:12 -0500
parents 885ba15c2564
children
line wrap: on
line source

<tool id="vcf2lv" name="VCF-2-VariantList" version="1">
 	<description> convert VCF file to CG-compatible variant list </description>
  
  	<command interpreter="bash"> 
  		vcf2lv.sh $vcffile $outputfile	
  	</command>

  	<inputs>
  		<param name="vcffile" type="data" label="Select vcf file" />
  		<param name="fname" type="text" value="" label="Prefix for your output file" help="Optional"/>	
  	</inputs>

	<outputs>
  		<data format="tabular" name="outputfile" label="${fname} VCF-2-VariantList conversion"/>
  	</outputs>
  	
  	<help>  
**what it does**

Converts a VCF file containing small variants (SNVs, indels and substitutions) to a Complete Genomics type variantlist.
		
After conversion, the file can be used as input to the Virtual Normal filtering pipeline. 



	</help>
</tool>