view merge_cut_up_clustering.xml @ 1:ce1a3ce0e807 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/concoct commit 77dea70f156d56c83b6851b61dc997d2b344bdc9
author iuc
date Fri, 01 Jul 2022 14:16:08 +0000
parents b546422c9128
children 21ccf9548e2c
line wrap: on
line source

<tool id="concoct_merge_cut_up_clustering" name="CONCOCT: merge cut clusters" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
    <description>into the original</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements"/>
    <command detect_errors="exit_code"><![CDATA[
python '$__tool_directory__/merge_cut_up_clustering.py'
--input '$input'
--output '$output'
    ]]></command>
    <inputs>
        <param name="input" type="data" format="tabular" label="Tabular file containng cut up contigs"/>
    </inputs>
    <outputs>
        <data name="output" format="tabular"/>
    </outputs>
    <tests>
        <!-- default settings -->
        <test expect_num_outputs="1">
            <param name="input" value="input_merge_clusters.tabular" ftype="tabular"/>
            <output name="output" file="output_merge_clusters.tabular" ftype="tabular"/>
        </test>
    </tests>
    <help><![CDATA[
**What it does**

Accepts a tbular file containing clusters output by the CONCOCT metagenome binning tool
and produces a tabular file of the original contigs, with consecutive slices merged.

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