diff igblastmerge.xml @ 0:1f6de7db44b6 draft

Uploaded
author davidvanzessen
date Mon, 23 Sep 2013 05:42:54 -0400
parents
children 30bbd9fe953c
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/igblastmerge.xml	Mon Sep 23 05:42:54 2013 -0400
@@ -0,0 +1,28 @@
+<tool id="igblastmerge" name="IgBlastMerge" version="1.0">
+	<description>Converting one or more "igBLASTreport parser" outputs for "VDJ Blast plot"</description>
+	<command interpreter="python">
+		igblastmerge.py 
+		--input 
+		#for $i, $f in enumerate($files)
+			${f.file}
+		#end for
+		--id
+		#for $i, $f in enumerate($files)
+			$(f.id)
+		#end for
+		--output $out_file
+	</command>
+	<inputs>
+		<repeat name="files" title="File" min="1" default="1">
+			<param name="file" format="tabular" type="data" label="Data to Process" />
+			<param name="id" type="text" label="ID" />
+		</repeat>
+	</inputs>
+	<outputs>
+		<data format="tabular" name="out_file" />
+	</outputs>
+	<help>
+		Merge several files 			                
+	</help>
+
+</tool>