comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:8c25d4ff0b51
1 <tool id="ip_imageinfo" name="Image Info" version="0.1">
2 <description>Show Image Info</description>
3 <requirements>
4 <requirement type="package" version="5.7.1">bftools</requirement>
5 </requirements>
6 <command>
7 <![CDATA[
8 showinf '$input_file' -no-upgrade -minmax -nopix > '$output'
9 ]]>
10 </command>
11 <inputs>
12 <param label="Input Image" name="input_file" type="data" format="tiff,tif,png,jpeg,bmp"/>
13 </inputs>
14 <outputs>
15 <data format="txt" name="output"/>
16 </outputs>
17 <tests>
18 <test>
19 <param name="input_file" value="input.tiff" />
20 <output name="output" value="res.txt" ftype="txt" compare="diff" lines_diff="6"/>
21 </test>
22 </tests>
23 <help>
24 **What it does**
25
26 Extracts metadata from an image.
27 </help>
28 <citations>
29 <citation type="doi">10.1016/j.jbiotec.2017.07.019</citation>
30 </citations>
31 </tool>