comparison fastreer_vcf2tree.xml @ 0:5ea9b32aaef6 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastreer commit 6e38d3e17b87a9e9804bd90fa2dba708c2361a0b
author iuc
date Mon, 03 Nov 2025 09:28:03 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:5ea9b32aaef6
1 <tool id="fastreer_vcf2tree" name="VCF2TREE" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
2 <description>Newick tree from VCF files</description>
3 <macros>
4 <import>macros.xml</import>
5 </macros>
6 <expand macro="requirements"/>
7 <expand macro="version_command"/>
8 <command detect_errors="exit_code"><![CDATA[
9 fastreeR VCF2TREE
10 #for $f in $input_vcfs:
11 -i '$f'
12 #end for
13 -o '$output'
14 -b $bootstraps
15 --threads \${GALAXY_SLOTS:-1}
16 --verbose
17 ]]></command>
18 <inputs>
19 <param name="input_vcfs" type="data" format="vcf,vcf_bgzip" multiple="true" label="VCF input files" help="VCF input files"/>
20 <param name="bootstraps" type="integer" min="0" value="0" label="Number of bootstrap replicates" help="Number of bootstrap replicates"/>
21 </inputs>
22 <outputs>
23 <data name="output" format="newick" label="Output Tree"/>
24 </outputs>
25 <tests>
26 <test>
27 <param name="input_vcfs" value="test.vcf"/>
28 <param name="bootstraps" value="0"/>
29 <output name="output" file="expected.vcf.nwk"/>
30 </test>
31 </tests>
32 <help><![CDATA[
33 Computes a phylogenetic tree from one or more VCF files using neighbor-joining.
34 Optional parameter for bootsrapping support calculation.
35 ]]></help>
36 <expand macro="citations"/>
37 </tool>