comparison tree_macros.xml @ 0:cd7675c5b15a draft

planemo upload for repository https://github.com/geraldinepascal/FROGS-wrappers/ commit 78ca62b54aee22893d278d9c3d495527be405f8a
author frogs
date Wed, 04 Feb 2026 13:15:55 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:cd7675c5b15a
1 <?xml version="1.0"?>
2 <macros>
3 <token name="@TREE_CMD_LINE@">
4 tree.py
5 --input-fasta '$input_fasta'
6 --input-biom '$input_biom'
7 @CPUS@
8 --output-tree '$output_tree'
9 --html '$html'
10 </token>
11
12 <xml name="tree_inputs">
13 <!-- Files -->
14 <param argument="--input-fasta" type="data" format="fasta" label="Sequence file (.fasta)" help="FASTA file containing the representative sequences to be used for phylogenetic tree construction." />
15 <param argument="--input-biom" type="data" format="biom1" label="Abundance file (.biom)" help="BIOM file containing the abundance table associated with the input sequences." />
16 </xml>
17
18 <!-- Test -->
19 <xml name="tree_test_input">
20 <param name="input_fasta" value="references/04-filters.fasta" />
21 <param name="input_biom" value="references/06-affiliation.biom" />
22 </xml>
23
24 <xml name="tree_test_output">
25 <output name="output_tree" file="references/15-tree-mafft.nwk" compare="sim_size" delta="30"/>
26 <output name="html" file="references/15-tree-mafft.html" compare="diff" lines_diff="2" />
27 <output name="html">
28 <assert_contents>
29 <has_text_matching expression="FROGS\sTree" />
30 <has_text_matching expression="abundance_removed.*:\s0" />
31 <has_text_matching expression="abundance_kept.*:\s73531" />
32 <has_text_matching expression="asv_removed.*:\s0" />
33 <has_text_matching expression="asv_kept.*:\s54" />
34 </assert_contents>
35 </output>
36 </xml>
37 </macros>