comparison datamash-transpose.xml @ 0:60e287a6d17d draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/datamash commit 8a7a779896ce1b9b296557a2c31bd93f5fbb5462
author iuc
date Wed, 28 Oct 2015 12:45:41 -0400
parents
children 1cb70a56fc89
comparison
equal deleted inserted replaced
-1:000000000000 0:60e287a6d17d
1 <?xml version="1.0"?>
2 <tool id="datamash_transpose" name="Transpose" version="1.0.6">
3 <description>rows/columns in a tabular file</description>
4 <macros>
5 <import>macros.xml</import>
6 </macros>
7 <expand macro="requirements" />
8 <expand macro="stdio" />
9 <command><![CDATA[datamash -W transpose < $in_file > $out_file]]></command>
10 <expand macro="inputs_outputs" />
11 <tests>
12 <test>
13 <param name="in_file" value="datamash_transpose_input.txt" />
14 <output file="datamash_transpose_output.txt" name="out_file" />
15 </test>
16 </tests>
17 <help>
18 <![CDATA[
19 @HELP_HEADER@
20
21 **Syntax**
22
23 This tools transposes (swaps) rows/columns in a tabular input file.
24
25 -----
26
27 **Example**
28
29 Input file::
30
31 Genes NOX1 DcP HH
32 Sample A1 A2 B3
33 Counts 514 542 490
34
35 Output file::
36
37 Genes Sample Counts
38 NOX1 A1 514
39 DcP A2 542
40 HH B3 490
41
42 @HELP_FOOTER@
43 ]]>
44 </help>
45 </tool>