comparison fastreer_dist2tree.xml @ 0:a21e02af4488 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:27:29 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a21e02af4488
1 <tool id="fastreer_dist2tree" name="DIST2TREE" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
2 <description>Newick tree from distance matrix</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 DIST2TREE
10 -i '$dist_input'
11 -o '$output'
12 --verbose
13 ]]></command>
14 <inputs>
15 <param name="dist_input" type="data" format="txt" label="Input Distance Matrix" help="Input Distance Matrix"/>
16 </inputs>
17 <outputs>
18 <data name="output" format="newick" label="Output Newick Tree"/>
19 </outputs>
20 <tests>
21 <test>
22 <param name="dist_input" value="test.dist"/>
23 <output name="output" file="expected.dist.nwk"/>
24 </test>
25 </tests>
26 <help><![CDATA[
27 Builds a Newick tree from a PHYLIP-compatible distance matrix.
28 ]]></help>
29 <expand macro="citations"/>
30 </tool>