comparison concatenate.xml @ 0:e77c9484b2d0 draft default tip

Uploaded
author saskia-hiltemann
date Thu, 22 Oct 2015 09:18:30 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e77c9484b2d0
1 <tool id="concatenate" name="File Concatenation" version="1">
2
3 <description> concatenate 2 files </description>
4
5 <command interpreter="bash">
6 concatenate.sh
7 $infile
8 $infile2
9 $outputfile
10 </command>
11
12 <outputs>
13 <data format="tabular" name="outputfile" label="${sample} - File Concatenation on ${on_string}"/>
14 </outputs>
15
16 <inputs>
17
18 <param name="infile" type="data" label="Select first file for concatenation" />
19 <param name="infile2" type="data" label="Select second file for concatenation" />
20
21 <param name="sample" type="text" value="" label="Output File Name" help="Optional."/>
22
23 </inputs>
24
25 <help>
26
27 **What it does**
28 Concatenates 2 files
29
30 </help>
31 </tool>