view count_objects.xml @ 0:784d5cf56c82 draft

planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/count_objects/ commit c3f4b766f03770f094fda6bda0a5882c0ebd4581
author imgteam
date Sat, 09 Feb 2019 14:16:39 -0500
parents
children faa34f06aa6c
line wrap: on
line source

<tool id="ip_count_objects" name="Count Objects" version="0.0.4">
    <description>in labled images</description>
    <requirements>
        <requirement type="package" version="0.14.2">scikit-image</requirement>
        <requirement type="package" version="1.15.4">numpy</requirement>
    </requirements>
    <command>
    <![CDATA[
        python '$__tool_directory__/count_objects.py' '$input' '$output'
    ]]>
    </command>
    <inputs>
        <param name="input" type="data" format="tiff" label="Source file" />
    </inputs>
    <outputs>
        <data format="tabular" name="output" />
    </outputs>
    <tests>
        <test>
            <param name="input" value="input.tiff"/>
            <output name="output" value="table.tsv" ftype="tabular"/>
        </test>
    </tests>
    <help>
    **What it does**

    This tool counts objects in a labeled image.
    </help>
    <citations>
        <citation type="doi">10.1016/j.jbiotec.2017.07.019</citation>
    </citations>
</tool>