Mercurial > repos > imgteam > 2d_histogram_equalization
annotate histogram_equalization.xml @ 0:70316d792fc9 draft
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
author | imgteam |
---|---|
date | Tue, 23 Jul 2019 14:07:07 -0400 |
parents | |
children | 77f7159d775a |
rev | line source |
---|---|
0
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
1 <tool id="ip_histogram_equalization" name="Histogram equalization" version="0.0.1"> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
2 <description>automatic histogram equalization</description> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
3 <requirements> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
4 <requirement type="package" version="0.14.2">scikit-image</requirement> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
5 <requirement type="package" version="1.15.4">numpy</requirement> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
6 <requirement type="package" version="5.3.0">pillow</requirement> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
7 <requirement type="package" version="0.15.1">tifffile</requirement> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
8 </requirements> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
9 <command detect_errors="aggressive"> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
10 <![CDATA[ |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
11 python '$__tool_directory__/histogram_equalization.py' '$input' '$output' $h_type |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
12 ]]> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
13 </command> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
14 <inputs> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
15 <param name="input" type="data" format="tiff" label="Source file" /> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
16 <param name="h_type" type="select" label="Histogram Equalization Algorithm"> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
17 <option value="default">Stretching</option> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
18 <option value="clahe" selected="True">CLAHE</option> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
19 </param> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
20 </inputs> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
21 <outputs> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
22 <data format="tiff" name="output" /> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
23 </outputs> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
24 <tests> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
25 <test> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
26 <param name="input" value="sample.tif"/> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
27 <output name="output" value="out.tif" ftype="tiff" compare="sim_size"/> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
28 <param name="h_type" value="default"/> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
29 </test> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
30 </tests> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
31 <help> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
32 Applies histogram equalization to an image. |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
33 </help> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
34 <citations> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
35 <citation type="doi">10.1016/j.jbiotec.2017.07.019</citation> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
36 </citations> |
70316d792fc9
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/2d_histogram_equalization/ commit 767d7fec860d01468701c4e6dc270a7f1c74d53c
imgteam
parents:
diff
changeset
|
37 </tool> |