diff concatenate.xml @ 0:e77c9484b2d0 draft default tip

Uploaded
author saskia-hiltemann
date Thu, 22 Oct 2015 09:18:30 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/concatenate.xml	Thu Oct 22 09:18:30 2015 -0400
@@ -0,0 +1,31 @@
+ <tool id="concatenate" name="File Concatenation" version="1">
+
+  <description> concatenate 2 files </description>
+  
+  <command interpreter="bash"> 
+  	concatenate.sh 
+  		$infile
+  		$infile2
+		$outputfile		
+  </command>
+
+  <outputs>
+  	<data format="tabular" name="outputfile" label="${sample} - File Concatenation on ${on_string}"/>
+  </outputs>
+  
+  <inputs>
+
+  	<param name="infile" type="data" label="Select first file for concatenation" />   	
+  	<param name="infile2" type="data" label="Select second file for concatenation" />  	
+  	 
+  	<param name="sample"	type="text" value="" label="Output File Name" help="Optional."/>	
+
+  </inputs>
+
+  <help>
+  
+**What it does**
+Concatenates 2 files
+
+  </help>
+</tool>