comparison counttable-addsums.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-counttable-totals" name="Counttable totals" version="0.1">
2 <description>add line with total counts to your mothur count table</description>
3 <macros>
4 <import>macros.xml</import>
5 </macros>
6 <command detect_errors="aggressive"><![CDATA[
7 python '$__tool_directory__/mycrobiota.py'
8 --command counttable_totals
9 -ct '$count_in'
10 -o '$count_out'
11 ]]></command>
12 <inputs>
13 <param name="count_in" type="data" format="mothur.count_table" label="Select count file"/>
14 </inputs>
15 <outputs>
16 <data name="count_out" format="tabular" label="Count table with totals on ${on_string}"/>
17 </outputs>
18 <tests>
19 <test>
20 <param name="count_in" value="test.count_table" ftype="mothur.count_table"/>
21 <output name="count_out" file="test-out.count_table" ftype="tabular"/>
22 </test>
23 </tests>
24 <help><![CDATA[
25 Takes a Mothur count table and adds a line to the end with the total counts per sample
26 ]]></help>
27 <expand macro="citations"/>
28 </tool>