Mercurial > repos > anton > vcfcommonsamples
view vcfcommonsamples.xml @ 1:239ddfe40290
Updated to vcflib 86723982aa
author | Anton Nekrutenko <anton@bx.psu.edu> |
---|---|
date | Wed, 25 Jun 2014 16:13:47 -0400 |
parents | 6a1a90ea160f |
children | 4acc5abb5e8e |
line wrap: on
line source
<tool id="vcfcommonsamples" name="VCFcommonSamples:" version="0.0.1"> <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>