Mercurial > repos > anton > vcfcombine
annotate vcfcombine.xml @ 2:e00ef554b109
Updated tool version to 0.0.2
author | Anton Nekrutenko <anton@bx.psu.edu> |
---|---|
date | Wed, 25 Jun 2014 16:37:13 -0400 |
parents | 58bbad43101d |
children | 80a0553ee39a |
rev | line source |
---|---|
2
e00ef554b109
Updated tool version to 0.0.2
Anton Nekrutenko <anton@bx.psu.edu>
parents:
1
diff
changeset
|
1 <tool id="vcfcombine" name="VCFcombine:" version="0.0.2"> |
0 | 2 <requirements> |
1
58bbad43101d
Updated to vcflib 86723982aa
Anton Nekrutenko <anton@bx.psu.edu>
parents:
0
diff
changeset
|
3 <requirement type="package" version="86723982aa">vcflib</requirement> |
0 | 4 </requirements> |
5 <description>Combine multiple VCF datasets</description> | |
6 <command> | |
7 | |
8 vcfcombine | |
9 | |
10 #for $input_vcf in $input_vcfs: | |
11 "${input_vcf.input_vcf}" | |
12 #end for | |
13 | |
14 > "${out_file1}" | |
15 | |
16 </command> | |
17 <inputs> | |
18 <repeat name="input_vcfs" title="Select VCF dataset" min="2" > | |
19 <param name="input_vcf" type="data" format="vcf" label="Dataset"/> | |
20 </repeat> | |
21 </inputs> | |
22 <outputs> | |
23 <data format="vcf" name="out_file1" /> | |
24 </outputs> | |
25 <tests> | |
26 <test> | |
27 <param name="input_vcf" value="vcflib.vcf"/> | |
28 <output name="out_file1" file="vcfcombine-test1.vcf"/> | |
29 </test> | |
30 </tests> | |
31 <help> | |
32 | |
33 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. | |
34 | |
35 ----- | |
36 | |
37 Vcfcombine is a part of VCFlib toolkit developed by Erik Garrison (https://github.com/ekg/vcflib). | |
38 | |
39 </help> | |
40 </tool> |