Mercurial > repos > devteam > vcfcombine
changeset 1:55ca04702702 draft
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcflib/vcfcombine commit a1517c9d22029095120643bbe2c8fa53754dd2b7
author | devteam |
---|---|
date | Wed, 11 Nov 2015 12:58:45 -0500 |
parents | da419f5ed589 |
children | 18f9f2624bd6 |
files | vcfcombine.xml |
diffstat | 1 files changed, 5 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/vcfcombine.xml Thu Mar 19 14:20:28 2015 -0400 +++ b/vcfcombine.xml Wed Nov 11 12:58:45 2015 -0500 @@ -1,4 +1,4 @@ -<tool id="vcfcombine" name="VCFcombine:" version="0.0.3"> +<tool id="vcfcombine" name="VCFcombine:" version="0.0.4"> <description>Combine multiple VCF datasets</description> <macros> <import>macros.xml</import> @@ -8,25 +8,23 @@ <command> vcfcombine - + #for $input_vcf in $input_vcfs: - "${input_vcf.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> + <param name="input_vcfs" type="data" format="vcf" label="Select VCF Datasets" min="2" multiple="True"/> </inputs> <outputs> <data format="vcf" name="out_file1" /> </outputs> <tests> <test> - <param name="input_vcf" value="vcflib.vcf"/> + <param name="input_vcfs" value="vcflib.vcf"/> <output name="out_file1" file="vcfcombine-test1.vcf"/> </test> </tests>