Mercurial > repos > iuc > biom_from_uc
comparison biom_from_uc.xml @ 0:26c9cf427dcd draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/biom_format commit f726b353973996a1f59e2044e80ef7c9b75833ab"
author | iuc |
---|---|
date | Wed, 11 Sep 2019 12:40:39 -0400 |
parents | |
children | 2cdeed709bf4 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:26c9cf427dcd |
---|---|
1 <tool id="biom_from_uc" name="Create a BIOM table" version="@VERSION@.1"> | |
2 <description>from a vsearch/uclust/usearch BIOM file</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"> | |
9 <![CDATA[ | |
10 biom from-uc | |
11 --input-fp '$input_fp' | |
12 --output-fp '$output_fp' | |
13 ]]> | |
14 </command> | |
15 <inputs> | |
16 <param name="input_fp" argument="--input-fp" type="data" format="txt" label="UC File" /> | |
17 <param name="rep_set_fp" argument="--rep-set-fp" type="data" format="fasta" optional="true" label="Fasta file containing representative sequences with where sequences are labeled with OTU identifiers, and description fields contain original sequence identifiers" help="This output is created, for example, by vsearch with the --relabel_sha1 --relabel_keep options."/> | |
18 </inputs> | |
19 <outputs> | |
20 <data format="biom1" name="output_fp"/> | |
21 </outputs> | |
22 <tests> | |
23 <test> | |
24 <param name="input_fp" value="uc_table.uc" /> | |
25 <output name="output_fp" file="biom_from_uc.biom" compare="sim_size"/> | |
26 </test> | |
27 </tests> | |
28 <help><![CDATA[ | |
29 Create a BIOM table from a vsearch/uclust/usearch BIOM file. | |
30 ]]></help> | |
31 <expand macro="citations" /> | |
32 </tool> |