Mercurial > repos > thomaswollmann > binaryimage2points
diff binaryimage2points.xml @ 0:c983b2d2cdd7 draft default tip
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/binaryimage2points/ commit 27a6350188f687411bdd6bfe0d569c0803389ca0
author | thomaswollmann |
---|---|
date | Wed, 12 Dec 2018 04:49:24 -0500 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/binaryimage2points.xml Wed Dec 12 04:49:24 2018 -0500 @@ -0,0 +1,29 @@ +<tool id="binaryimage2points" name="Binary To Points" version="0.1"> + <description>Converts Binary Image to Points</description> + <requirements> + <requirement type="package" version="1.15.4">numpy</requirement><!--https://github.com/numpy/numpy/pull/432 --> + <requirement type="package" version="0.14.0" >scikit-image</requirement> + <requirement type="package" version="0.23.4" >pandas</requirement> + </requirements> + <command> + <![CDATA[ + python '$__tool_directory__/binaryimage2points.py' '$input' '$output' + ]]> + </command> + <inputs> + <param name="input" type="data" format="tiff" label="Binary Image File"/> + </inputs> + <outputs> + <data format="csv" name="output"/> + </outputs> + <tests> + <test> + <param name="input" value="galaxyIcon_noText.tif" /> + <output name="output" value="points.csv" ftype="csv" /> + </test> + </tests> + <help>This tool converts an image to points.</help> + <citations> + <citation type="doi">10.7717/peerj.453</citation> + </citations> +</tool>