comparison otutable_split_by_sample.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-split-multi-otutable" name="Split multisample OTUtable" version="0.1">
2 <description>into a table persample</description>
3 <macros>
4 <import>macros.xml</import>
5 </macros>
6 <command detect_errors="aggressive"><![CDATA[
7 python '$__tool_directory__/mycrobiota.py'
8 --command split_multi_otutable
9 --otutable '$otutable'
10 ]]></command>
11 <inputs>
12 <param argument="--otutable" type="data" format="tabular" label="Supply a multisaple OTU table" help="expects sample as first part of name e.g. samplename_replicate2_rest"/>
13 </inputs>
14 <outputs>
15 <collection name="sample_otutables" type="list" label="${tool.name} on ${on_string}: per-sample otu tables">
16 <discover_datasets pattern="(?P&lt;designation&gt;.*)\.otutable" format="tabular"/>
17 </collection>
18 </outputs>
19 <tests>
20 <test>
21 <param name="otutable" value="multisample.otutable" ftype="tabular"/>
22 <output_collection name="sample_otutables" count="3">
23 <element name="DX01" file="DX01.otutable" ftype="tabular"/>
24 </output_collection>
25 </test>
26 </tests>
27 <help><![CDATA[
28 help text goes here
29 ]]></help>
30 <expand macro="citations"/>
31 </tool>