annotate auto_local_threshold.xml @ 3:be2d3ce89c0f draft default tip

"planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit b1b3c63ab021aa77875c3b04127f6836024812f9"
author imgteam
date Sat, 19 Feb 2022 15:17:19 +0000
parents c90b91f4a07b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
be2d3ce89c0f "planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit b1b3c63ab021aa77875c3b04127f6836024812f9"
imgteam
parents: 1
diff changeset
1 <tool id="ip_localthreshold" name="Local Threshold" version="0.0.3" profile="20.05">
1
c90b91f4a07b planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit 8a2a5763d1ac38b3c7974bd7c2da4d5c1101a0a9
imgteam
parents: 0
diff changeset
2 <description>applies a local threshold algorithm to an image</description>
0
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
3 <requirements>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
4 <requirement type="package" version="0.14.2">scikit-image</requirement>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
5 <requirement type="package" version="1.15.4">numpy</requirement>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
6 <requirement type="package" version="5.3.0">pillow</requirement>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
7 <requirement type="package" version="0.15.1">tifffile</requirement>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
8 </requirements>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
9 <command detect_errors="aggressive">
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
10 <![CDATA[
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
11 python '$__tool_directory__/auto_local_threshold.py' '$input' '$output' $block_size $thresh_type $dark_background
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
12 ]]>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
13 </command>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
14 <inputs>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
15 <param name="input" type="data" format="tiff" label="Source file" />
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
16 <param name="thresh_type" type="select" label="Threshold Algorithm">
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
17 <option value="gaussian" selected="True">Gaussian</option>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
18 <option value="median">Median</option>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
19 <option value="mean">Mean</option>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
20 </param>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
21 <param name="block_size" type="integer" value="5" label="Odd size of pixel neighborhood which is used to calculate the threshold value" />
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
22 <param name="dark_background" type="boolean" checked="true" truevalue="True" falsevalue="False" label="Dark Background" />
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
23 </inputs>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
24 <outputs>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
25 <data format="tiff" name="output" />
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
26 </outputs>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
27 <tests>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
28 <test>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
29 <param name="input" value="sample.tif"/>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
30 <output name="output" value="out.tif" ftype="tiff" compare="sim_size"/>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
31 <param name="thresh_type" value="gaussian"/>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
32 <param name="block_size" value="429"/>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
33 <param name="dark_backgroud" value="True"/>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
34 </test>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
35 </tests>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
36 <help>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
37 Applies a local threshold algorithm to an image.
3
be2d3ce89c0f "planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit b1b3c63ab021aa77875c3b04127f6836024812f9"
imgteam
parents: 1
diff changeset
38
be2d3ce89c0f "planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit b1b3c63ab021aa77875c3b04127f6836024812f9"
imgteam
parents: 1
diff changeset
39 Note: This tool is deprecated and may not be supported in future. Please use the tool "Auto Threshold" instead.
0
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
40 </help>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
41 <citations>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
42 <citation type="doi">10.1016/j.jbiotec.2017.07.019</citation>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
43 </citations>
a20c14eb5f98 planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_auto_local_threshold/ commit f3903c908786b9b0ea5a46e9cc35ee025770ecda
imgteam
parents:
diff changeset
44 </tool>