view xls_to_table.xml @ 3:255b5b6ec617 draft default tip

Better defaults for omssa
author Ira Cooke <iracooke@gmail.com>
date Mon, 23 Jul 2012 14:48:31 +1000
parents a929e27eb203
children
line wrap: on
line source

<tool id="xls_to_table_1" name="Excel to Table" version="1.0.0">
	<requirements><requirement type="package">protk</requirement></requirements>
  <description>Converts an excel spreadsheet to a tab delimited text file</description>


<!-- Note .. the input file is assumed to be the first argument -->
<command>xls_to_table.rb $input_file -o $output</command>


<inputs>

	<param name="input_file" type="data" format="xls"  multiple="false" label="Input File" help="An Excel Spreadsheet"/>

</inputs>
<outputs>
	<data format="csv" name="output" metadata_source="input_file" label="${input_file.display_name}.csv" />
</outputs>

<help>
	Convert an Excel Spreadsheet to Tab delimited text
</help>

</tool>