view vcfcombine.xml @ 1:58bbad43101d

Updated to vcflib 86723982aa
author Anton Nekrutenko <anton@bx.psu.edu>
date Wed, 25 Jun 2014 16:13:17 -0400
parents c079222f1e38
children e00ef554b109
line wrap: on
line source

<tool id="vcfcombine" name="VCFcombine:" version="0.0.1">
<requirements>
    <requirement type="package" version="86723982aa">vcflib</requirement>
</requirements>
  <description>Combine multiple VCF datasets</description>
  <command>

   vcfcombine
   
   #for $input_vcf in $input_vcfs:
        "${input_vcf.input_vcf}"
   #end for

   > "${out_file1}"

  </command>
  <inputs>
    <repeat name="input_vcfs" title="Select VCF dataset" min="2" >
      <param name="input_vcf" type="data" format="vcf" label="Dataset"/>
    </repeat>
  </inputs>
  <outputs>
    <data format="vcf" name="out_file1" />
  </outputs>
  <tests>
    <test>
      <param name="input_vcf" value="vcflib.vcf"/>
      <output name="out_file1" file="vcfcombine-test1.vcf"/>
    </test>
    </tests>
  <help>

Combines VCF files positionally, combining samples when sites and alleles are identical. Any number of VCF files may be combined. The INFO field and other columns are taken from one of the files which are combined when records in multiple files match. Alleles must have identical ordering to be combined into one record. If they do not, multiple records will be emitted.

-----

Vcfcombine is a part of VCFlib toolkit developed by Erik Garrison (https://github.com/ekg/vcflib).                                                                                                                                 

</help>
</tool>