view vcf2lv.xml @ 0:1209f18a5a83 draft

Uploaded
author saskia-hiltemann
date Mon, 03 Aug 2015 05:01:15 -0400
parents
children 1c6710924e80
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>