view macros.xml @ 5:374cb875d38a draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/datamash commit 9edd054251bc74685d627360bb0fbe8ea60fa6a2
author iuc
date Thu, 23 Mar 2023 20:47:02 +0000
parents ac092723240d
children
line wrap: on
line source

<macros>
    <token name="@TOOL_VERSION@">1.8</token>
    <token name="@VERSION_SUFFIX@">0</token>
    <token name="@PROFILE@">22.01</token>
    <xml name="inputs_outputs">
        <inputs>
            <param name="in_file" type="data" format="tabular,csv,tsv" label="Input tabular dataset" help="" />
            <yield />
        </inputs>
        <outputs>
            <data name="out_file" format_source="in_file" label="${tool.name} on ${on_string}" />
        </outputs>
    </xml>
    <token name="@FIELD_SEPARATOR@"><![CDATA[
        #if $in_file.ext == 'csv'
            -t ,
        #end if
    ]]></token>
    <xml name="requirements">
        <requirements>
            <requirement type="package" version="@TOOL_VERSION@">datamash</requirement>
        </requirements>
    </xml>
    <xml name="stdio">
        <stdio>
            <exit_code description="Error" level="fatal" range="1:" />
        </stdio>
    </xml>
    <token name="@HELP_FOOTER@">
-----

**GNU Datamash** is a Free and Open Source Software, see more details on the Datamash_ Website.

**GNU Datamash** is also available as a command-line program, see http://www.gnu.org/software/datamash/download/ .

For more details about supported statistical operations, see Datamash_ website.

.. _Datamash: http://www.gnu.org/software/datamash/
    </token>
    <token name="@HELP_HEADER@">
.. class:: infomark

**TIP:** Input data must be TAB delimited. If the desired dataset does not appear in the input list, use *Text Manipulation->Convert* to convert it to **Tabular** type.

-----
    </token>
    <xml name="citation">
        <citations>
            <citation type="bibtex">
                @ONLINE{datamash,
                    title = {GNU Datamash},
                    url = {https://www.gnu.org/software/datamash/}
                }
            </citation>
        </citations>
    </xml>
</macros>