view merge.taxsummary.xml @ 5:80bd73567a2c draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 7f7605c2c8d8e92f3369dfdc290e5d8d06fa409a
author iuc
date Fri, 03 Aug 2018 14:49:05 -0400
parents 297f3f6ad488
children
line wrap: on
line source

<tool profile="16.07" id="mothur_merge_taxsummary" name="Merge.taxsummary" version="@WRAPPER_VERSION@.0">
    <description>Merge tax.summary files</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements"/>
    <expand macro="stdio"/>
    <expand macro="version_command"/>
    <command><![CDATA[
@SHELL_OPTIONS@

## create symlinks to input datasets
#for $i in $input:
    ln -s '$i' input${input.index($i)}.dat &&
#end for

echo 'merge.taxsummary(
    input=#for $i in $input#input${input.index($i)}.dat-#end for#,
    output=$output
)'
| sed 's/ //g'  ## mothur trips over whitespace
| sed 's/-,/,/g'
| mothur
| tee mothur.out.log
    ]]></command>
    <inputs>
        <param name="input" type="data" format="mothur.tax.summary" multiple="true" label="input - tax.summary files"/>
        <expand macro="param-savelog"/>
    </inputs>
    <outputs>
        <expand macro="logfile-output"/>
        <data name="output" format="mothur.tax.summary" label="${tool.name} on ${on_string}: merged sff"/>
    </outputs>
    <tests>
        <test>
            <param name="input" value="amazon.wang.knn.tax.summary,amazon.silva.wang.tax.summary"/>
            <output name="output" md5="7175d0709a1e4622d0710e79dd52801b" ftype="mothur.tax.summary"/>
            <param name="savelog" value="true"/>
            <expand macro="logfile-test"/>
        </test>
    </tests>
    <help><![CDATA[

@MOTHUR_OVERVIEW@

.. _Mothur: https://www.mothur.org/wiki/Main_Page

**Command Documentation**

The merge.taxsummary command takes a list of tax.summary files separated by dashes and merges them into one file.

.. _merge.taxsummary: https://www.mothur.org/wiki/Merge.taxsummary

    ]]></help>
    <expand macro="citations"/>
</tool>