view igblastmerge.xml @ 0:1f6de7db44b6 draft

Uploaded
author davidvanzessen
date Mon, 23 Sep 2013 05:42:54 -0400
parents
children 30bbd9fe953c
line wrap: on
line source

<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>