comparison montage.xml @ 0:190b3bcc00aa draft

planemo upload for repository https://github.com/bgruening/galaxytools/new/gm/tools/image_processing/image_processing/ commit dd88ad4ff9d10d72ed60263da31b406074173853
author bgruening
date Wed, 10 Oct 2018 16:16:35 -0400
parents
children 4dada93ef525
comparison
equal deleted inserted replaced
-1:000000000000 0:190b3bcc00aa
1 <tool id="graphicsmagick_image_montage" name="Image Montage" version="@VERSION@">
2 <description></description>
3 <macros>
4 <import>macros.xml</import>
5 </macros>
6 <expand macro="requirements" />
7 <command detect_errors="aggressive">
8 <![CDATA[
9 ln -s '${input}' input_existing.jpg
10 &&
11 ln -s '${input_new}' input_new.jpg
12 &&
13 montage input_existing.jpg input_new.jpg -geometry +0+0 -background none -tile 1x2 temp.jpg
14 ]]>
15 </command>
16
17 <inputs>
18 <param format="jpg" name="input" type="data" label="Existing Image" />
19 <param format="jpg" name="input_new" type="data" label="New Image" />
20 </inputs>
21 <outputs>
22 <data format="jpg" name="output" from_work_dir="temp.jpg" />
23 </outputs>
24 <tests>
25 <test>
26 <param name="input" value="donald.jpg" />
27 <param name="input_new" value="donald.jpg" />
28 <output name="output" file="result_image_montage_1.jpg" compare="sim_size" />
29 </test>
30 </tests>
31 <help>
32 <![CDATA[
33
34 **What it does**
35
36 Stick Images together
37
38
39 ]]>
40 </help>
41 <expand macro="citations" />
42 </tool>