forked from galaxyproject/tools-iuc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd_rank_names_to_phyloseq.xml
More file actions
36 lines (32 loc) · 1.12 KB
/
add_rank_names_to_phyloseq.xml
File metadata and controls
36 lines (32 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<tool id="add_rank_names_to_phyloseq" name="Add Rank Names to Phyloseq Object" version="1.0">
<description>Add taxonomy rank names to a phyloseq object</description>
<macros>
<import>macros.xml</import>
</macros>
<expand macro="bio_tools"/>
<expand macro="requirements"/>
<command detect_errors="exit_code"><![CDATA[
Rscript '${__tool_directory__}/add_rank_names_to_phyloseq.R' --input '$input' --output '$output'
]]></command>
<inputs>
<expand macro="phyloseq_input"/>
</inputs>
<outputs>
<data name="output" format="phyloseq"/>
</outputs>
<tests>
<test>
<param name="input" value="output.phyloseq" ftype="phyloseq"/>
<output name="output" ftype="phyloseq">
<!-- Check if the output contains the first character -->
<assert_contents>
<has_text text="B"/>
</assert_contents>
</output>
</test>
</tests>
<help>
This tool adds taxonomy rank names to a phyloseq object in the `tax_table` slot.
</help>
<expand macro="citations"/>
</tool>