Mercurial > repos > iuc > imagej2_smooth
view imagej2_smooth.xml @ 1:97a50ff3df5d draft default tip
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej2 commit 8ea6a4271431c05c82b09c0d3e629b13e6ea7936
| author | iuc |
|---|---|
| date | Fri, 22 Jul 2016 23:17:48 -0400 |
| parents | f3ec070f1781 |
| children |
line wrap: on
line source
<?xml version='1.0' encoding='UTF-8'?> <tool id="imagej2_smooth" name="Smooth" version="@WRAPPER_VERSION@.0"> <description></description> <macros> <import>imagej2_macros.xml</import> </macros> <expand macro="fiji_requirements" /> <command> <![CDATA[ python $__tool_directory__/imagej2_smooth.py --input "$input" --input_datatype $input.ext --jython_script $__tool_directory__/imagej2_smooth_jython_script.py --output_datatype $output.ext --output "$output" ]]> </command> <inputs> <param format="bmp,eps,gif,jpg,pcx,pgm,png,psd,tiff" name="input" type="data" label="Select image"/> </inputs> <outputs> <data name="output" format_source="input" label="${tool.name} on ${on_string}"/> </outputs> <tests> <test> <param name="input" value="blobs.gif" /> <output name="output" file="blobs_smooth.gif" compare="sim_size" /> </test> </tests> <help> **What it does** <![CDATA[ Blurs the image by replacing each pixel with the average of its 3x3 neighborhood. ]]> </help> <expand macro="fiji_headless_citations" /> </tool>
