Mercurial > repos > anton > vcfcommonsamples
annotate vcfcommonsamples.xml @ 3:0012529b72a3 draft default tip
Uploaded
author | anton |
---|---|
date | Mon, 15 Sep 2014 14:50:31 -0400 |
parents | 4acc5abb5e8e |
children |
rev | line source |
---|---|
2
4acc5abb5e8e
Updated tool version to 0.0.2
Anton Nekrutenko <anton@bx.psu.edu>
parents:
1
diff
changeset
|
1 <tool id="vcfcommonsamples" name="VCFcommonSamples:" version="0.0.2"> |
0 | 2 <requirements> |
3 | 3 <requirement type="package" version="8a5602bf07">vcflib</requirement> |
0 | 4 </requirements> |
5 <description>Output records belonging to samples commong between two datasets</description> | |
6 <command>vcfcommonsamples "${input1}" "${input2}" > "${out_file1}"</command> | |
7 <inputs> | |
8 <param format="vcf" name="input1" type="data" label="First dataset"/> | |
9 <param format="vcf" name="input2" type="data" label="Second dataset"/> | |
10 </inputs> | |
11 <outputs> | |
12 <data format="vcf" name="out_file1" /> | |
13 </outputs> | |
14 <tests> | |
15 <test> | |
16 <param name="input1" value="vcflib.vcf"/> | |
17 <param name="input2" value="vcfcommonsamples-test1-input2.vcf"/> | |
18 <output name="out_file1" file="vcfcommonsamples-test1.vcf"/> | |
19 </test> | |
20 </tests> | |
21 <help> | |
22 | |
23 Outputs each record in the first file, removing samples not present in the second. | |
24 | |
25 ---- | |
26 | |
27 Vcfcommonsamples is a part of VCFlib toolkit developed by Erik Garrison (https://github.com/ekg/vcflib). | |
28 | |
29 </help> | |
30 </tool> |