Mercurial > repos > imgteam > image_info
diff image_info.xml @ 0:8c25d4ff0b51 draft
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/image_info/ commit 982cc5470b2032b5b85077500c17a020d0d25fd6
author | imgteam |
---|---|
date | Fri, 19 Jul 2019 07:29:08 -0400 |
parents | |
children | 7b6d9412c7f8 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/image_info.xml Fri Jul 19 07:29:08 2019 -0400 @@ -0,0 +1,31 @@ +<tool id="ip_imageinfo" name="Image Info" version="0.1"> + <description>Show Image Info</description> + <requirements> + <requirement type="package" version="5.7.1">bftools</requirement> + </requirements> + <command> + <![CDATA[ + showinf '$input_file' -no-upgrade -minmax -nopix > '$output' + ]]> + </command> + <inputs> + <param label="Input Image" name="input_file" type="data" format="tiff,tif,png,jpeg,bmp"/> + </inputs> + <outputs> + <data format="txt" name="output"/> + </outputs> + <tests> + <test> + <param name="input_file" value="input.tiff" /> + <output name="output" value="res.txt" ftype="txt" compare="diff" lines_diff="6"/> + </test> + </tests> + <help> + **What it does** + + Extracts metadata from an image. + </help> + <citations> + <citation type="doi">10.1016/j.jbiotec.2017.07.019</citation> + </citations> +</tool>