view vcfcommonsamples.xml @ 2:4acc5abb5e8e

Updated tool version to 0.0.2
author Anton Nekrutenko <anton@bx.psu.edu>
date Wed, 25 Jun 2014 16:37:43 -0400
parents 239ddfe40290
children 0012529b72a3
line wrap: on
line source

<tool id="vcfcommonsamples" name="VCFcommonSamples:" version="0.0.2">
<requirements>
    <requirement type="package" version="86723982aa">vcflib</requirement>
</requirements>
  <description>Output records belonging to samples commong between two datasets</description>
  <command>vcfcommonsamples "${input1}" "${input2}" > "${out_file1}"</command>
  <inputs>
    <param format="vcf" name="input1" type="data" label="First dataset"/>
    <param format="vcf" name="input2" type="data" label="Second dataset"/>
  </inputs>
  <outputs>
    <data format="vcf" name="out_file1" />
  </outputs>
  <tests>
    <test>
      <param name="input1" value="vcflib.vcf"/>
      <param name="input2" value="vcfcommonsamples-test1-input2.vcf"/>
      <output name="out_file1" file="vcfcommonsamples-test1.vcf"/>
    </test>
    </tests>
  <help>

Outputs each record in the first file, removing samples not present in the second.

----

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

</help>
</tool>