Mercurial > repos > thomaswollmann > permutate_axis
comparison permutate_axis.xml @ 0:8fb82d514666 draft default tip
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/permutate_axis/ commit 27a6350188f687411bdd6bfe0d569c0803389ca0
| author | thomaswollmann |
|---|---|
| date | Wed, 12 Dec 2018 04:50:51 -0500 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:8fb82d514666 |
|---|---|
| 1 <tool id="permutate_axis" name="Permutate Axis" version="0.1"> | |
| 2 <description> Permutates axes </description> | |
| 3 <requirements> | |
| 4 <requirement type="package" version="0.14.0">scikit-image</requirement> | |
| 5 <requirement type="package" version="1.15.4">numpy</requirement> | |
| 6 </requirements> | |
| 7 <command> | |
| 8 <![CDATA[ | |
| 9 python '$__tool_directory__/permutate_axis.py' '$input' '$output' $permutate --axis $axis | |
| 10 ]]> | |
| 11 </command> | |
| 12 <inputs> | |
| 13 <param name="input" type="data" format="tiff" label="Binary Image File"/> | |
| 14 <param name="permutate" type="text" value="0,1,2" label="new channel order"> | |
| 15 <validator type="regex" message="Input has to be a sequence of axis, separated by commas">([0-4],)+[0-4]</validator> | |
| 16 </param> | |
| 17 <param name="axis" type="integer" value="0" label="concatenation axis" help="Concatenation axis (0-4)" /><!-- why not have a selection from 0 to 4?--> | |
| 18 </inputs> | |
| 19 <outputs> | |
| 20 <data format="tiff" name="output"/> | |
| 21 </outputs> | |
| 22 <tests> | |
| 23 <test> | |
| 24 <param name="input" value="galaxyIcon_noText.tif"/> | |
| 25 <output name="output" file="res.tif" ftype="tiff" compare="sim_size"/> | |
| 26 </test> | |
| 27 </tests> | |
| 28 <help>Permutates the image along a specified axis.</help> | |
| 29 <citations> | |
| 30 <citation type="doi">10.1016/j.jbiotec.2017.07.019</citation> | |
| 31 </citations> | |
| 32 </tool> |
