0
|
1 <tool id="xls_to_table_1" name="Excel to Table" version="1.0.0">
|
|
2 <requirements><requirement type="package">protk</requirement></requirements>
|
|
3 <description>Converts an excel spreadsheet to a tab delimited text file</description>
|
|
4
|
|
5
|
|
6 <!-- Note .. the input file is assumed to be the first argument -->
|
|
7 <command>xls_to_table.rb $input_file -o $output</command>
|
|
8
|
|
9
|
|
10 <inputs>
|
|
11
|
|
12 <param name="input_file" type="data" format="xls" multiple="false" label="Input File" help="An Excel Spreadsheet"/>
|
|
13
|
|
14 </inputs>
|
|
15 <outputs>
|
|
16 <data format="csv" name="output" metadata_source="input_file" label="${input_file.display_name}.csv" />
|
|
17 </outputs>
|
|
18
|
|
19 <help>
|
|
20 Convert an Excel Spreadsheet to Tab delimited text
|
|
21 </help>
|
|
22
|
|
23 </tool>
|