Mercurial > repos > imgteam > imagej2_shadows
view imagej2_shadows.xml @ 3:f7ae316b00e4 draft default tip
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej2 commit 8f49f3c66b5a1de99ec15e65c2519a56792f1d56
author | imgteam |
---|---|
date | Wed, 25 Sep 2024 16:02:30 +0000 |
parents | f3c9192bd0b9 |
children |
line wrap: on
line source
<tool id="imagej2_shadows" name="Add shadow effect" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="23.0"> <description>with ImageJ2</description> <macros> <import>imagej2_macros.xml</import> </macros> <edam_operations> <edam_operation>operation_3443</edam_operation> </edam_operations> <xrefs> <xref type="bio.tools">imagej</xref> <xref type="biii">imagej2</xref> </xrefs> <expand macro="fiji_requirements"/> <command detect_errors="exit_code"><![CDATA[ #import os #set input_sans_ext = $os.path.splitext($os.path.basename($input.file_name))[0] #set input_with_ext = './' + '.'.join([input_sans_ext, $input.ext]) ln -s '$input.file_name' '$input_with_ext' && #set output_filename = '.'.join(['output', $input.ext]) touch '$output_filename' && ImageJ --ij2 --headless --debug --jython '$__tool_directory__/imagej2_shadows_jython_script.py' '$input_with_ext' '$direction' '$output_filename' '$input.ext' && mv '$output_filename' '$output'; ]]></command> <inputs> <expand macro="param_input"/> <param name="direction" type="select" label="Direction" help="Light will appear to come from the selected direction"> <option value="East" selected="True">East</option> <option value="North">North</option> <option value="Northeast">Northeast</option> <option value="Northwest">Northwest</option> <option value="South">South</option> <option value="Southeast">Southeast</option> <option value="Southwest">Southwest</option> <option value="West">West</option> </param> </inputs> <outputs> <data name="output" format_source="input"/> </outputs> <tests> <test> <param name="input" value="blobs.gif"/> <param name="direction" value="Northwest"/> <output name="output" file="blobs_northwest.gif" compare="image_diff"/> </test> </tests> <help> **What it does** <![CDATA[ Produces a shadow effect, with light appearing to come from the selected direction (East, North, Northeast, Northwest, South, Southeast, Southwest and West). The underlying commands use Convolve 3 × 3, ImageJ’s 3 × 3 convolution function. ]]> </help> <expand macro="fiji_headless_citations"/> </tool>