Mercurial > repos > erasmus-medical-center > mycrobiota
comparison make_multi_otutable.xml @ 0:607c5e7e0a64 draft
planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/galaxytools-emc/tree/master/tools/mycrobiota commit 1c4c58018b64ff3531a719e789ce71cb0a1244c5
author | erasmus-medical-center |
---|---|
date | Wed, 13 Dec 2017 10:09:50 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:607c5e7e0a64 |
---|---|
1 <tool id="mycrobiota-make-multi-otutable" name="Make multisample OTUtable" version="0.1"> | |
2 <description>from a shared and taxonomy file</description> | |
3 <macros> | |
4 <import>macros.xml</import> | |
5 </macros> | |
6 <command detect_errors="aggressive"><![CDATA[ | |
7 python '$__tool_directory__/mycrobiota.py' | |
8 --command make_multi_otutable | |
9 --shared_file '$shared_file' | |
10 --taxonomy '$taxonomy' | |
11 --level $level | |
12 ]]></command> | |
13 <inputs> | |
14 <param argument="--taxonomy" type="data" format="mothur.ref.taxonomy,mothur.seq.taxonomy,mothur.cons.taxonomy" label="Select mothur taxonomy file" help=""/> | |
15 <param argument="--shared_file" type="data" optional="true" format="mothur.shared" label="Supply a mothur shared file" help=""/> | |
16 <param argument="--level" type="select" optional="true" label="label - pick (one) OTU Label" help="leave blank for collections, will try to determine level from element names"> | |
17 <options> | |
18 <filter type="data_meta" ref="shared_file" key="labels"/> | |
19 </options> | |
20 </param> | |
21 </inputs> | |
22 <outputs> | |
23 <data name="multi_otutable" format="tabular" from_work_dir="multi_otutable.tsv" label="Multisample otutable on ${on_string}"/> | |
24 </outputs> | |
25 <tests> | |
26 <test> | |
27 <param name="taxonomy" value="multisample.taxonomy"/> | |
28 <param name="shared_file" ftype="mothur.shared" value="example.mothur.shared"/> | |
29 <param name="level" value="0.03"/> | |
30 <output name="multi_otutable" file="shared_with_taxonomy.tsv"/> | |
31 </test> | |
32 </tests> | |
33 <help><![CDATA[ | |
34 help text goes here | |
35 ]]></help> | |
36 <expand macro="citations"/> | |
37 </tool> |