comparison voronoi_tessellation.xml @ 3:1944b0fccdbd draft default tip

planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/voronoi_tesselation commit 60cf803236ef94f414056823688e6fd008b7a1b6
author imgteam
date Thu, 25 Apr 2024 10:58:05 +0000
parents 412d7478ec92
children
comparison
equal deleted inserted replaced
2:412d7478ec92 3:1944b0fccdbd
1 <tool id="voronoi_tessellation" name="Compute Voronoi tessellation" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="23.0"> 1 <tool id="voronoi_tessellation" name="Compute Voronoi tessellation" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="23.0">
2 <description>with scikit-image</description> 2 <description>with scikit-image</description>
3 <macros> 3 <macros>
4 <import>creators.xml</import> 4 <import>creators.xml</import>
5 <token name="@TOOL_VERSION@">0.22.0</token> 5 <token name="@TOOL_VERSION@">0.22.0</token>
6 <token name="@VERSION_SUFFIX@">2</token> 6 <token name="@VERSION_SUFFIX@">3</token>
7 </macros> 7 </macros>
8 <edam_operations> 8 <edam_operations>
9 <edam_operation>operation_3443</edam_operation> 9 <edam_operation>operation_3443</edam_operation>
10 </edam_operations> 10 </edam_operations>
11 <xrefs> 11 <xrefs>
29 ./result.tiff 29 ./result.tiff
30 30
31 ]]> 31 ]]>
32 </command> 32 </command>
33 <inputs> 33 <inputs>
34 <param name="input" type="data" format="png,tiff" label="Input image" help="Must be a label map." /> 34 <param name="input" type="data" format="png,tiff" label="Label map" />
35 </inputs> 35 </inputs>
36 <outputs> 36 <outputs>
37 <data format="tiff" name="result" from_work_dir="result.tiff" /> 37 <data format="tiff" name="result" from_work_dir="result.tiff" />
38 </outputs> 38 </outputs>
39 <tests> 39 <tests>
52 </output> 52 </output>
53 </test> 53 </test>
54 </tests> 54 </tests>
55 <help> 55 <help>
56 56
57 **Computes Voronoi tessellations for labeled images.** 57 **Computes Voronoi tessellations for label maps (labeled images).**
58 58
59 Voronoi tessellations are also known as Vornoi diagrams, or Dirichlet tessellations. 59 Voronoi tessellations are also known as Vornoi diagrams, or Dirichlet tessellations.
60 Zero labels are treated as image background. 60 Zero labels are treated as image background.
61 61
62 </help> 62 </help>