view count_objects.xml @ 2:5bf8eb50b280 draft

planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/count_objects/ commit 3c2a4fed433e518fcd0bc8d4deffcc5c2346b2b5
author imgteam
date Sat, 08 Jul 2023 01:32:11 +0000
parents 664232d2a3f7
children b58447a2eed2
line wrap: on
line source

<tool id="ip_count_objects" name="Count Objects" version="0.0.5">
    <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>
        <requirement type="package" version="0.15.1">tifffile</requirement>
    </requirements>
    <command>
    <![CDATA[
        python '$__tool_directory__/count_objects.py' '$input' '$output'
    ]]>
    </command>
    <inputs> 
        <param name="input" type="data" format="tiff,png" 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>