3
|
1 <tool id="tab2csv" name="Tabular to CSV" version="0.2">
|
|
2 <description>converter</description>
|
|
3 <command interpreter="bash">
|
|
4 tab2csv.sh $input_file $output_file $dq
|
|
5 </command>
|
|
6 <inputs>
|
|
7 <param name="input_file" type="data" format="tabular" label="File (tabular)"/>
|
|
8 <param name="dq" type="boolean" truevalue="--double-quotation" falsevalue="" checked="False" label="Double quotation" />
|
|
9 </inputs>
|
|
10 <outputs>
|
|
11 <data name="output_file" format="csv" label="${tool.name} on ${on_string}"/>
|
|
12 </outputs>
|
|
13 <help>
|
7
|
14
|
|
15 **Double quotation**
|
|
16
|
|
17 If this is checked, output is like:
|
|
18
|
|
19 "aaa","bbb","ccc"
|
|
20
|
|
21 Otherwise:
|
|
22
|
|
23 aaa,bbb,ccc
|
|
24
|
3
|
25 </help>
|
|
26 </tool>
|