Two_columns_table

This software transforms a table in CSV (separator TAB by default) and rearranges the cells by sets of 2 lines to obtain a two columns table. If the table have only 2 lines, the result is a transposition of the table. If the table have more than 2 lines, the result is an iterative transposition of the table 2 lines by 2 lines.

Example of application : this software is useful when you have data names and their values organized by lines and you want to put them in columns.

Manual :

1- if not already installed, install Perl free programming language

2- unzip the software

3- copy your tables csv or txt files in the “data” directory

4- If the separator of the table is TAB : execute the software by the command : perl software_name or double click on the .pl file

if you want to use another separator use this syntax in a GNU linux / Unix terminal or in windows command line : 2columns_table-0.1.pl -s 'separator'

EXAMPLES

perl 2columns_table-0.1.pl -s ';' # separator ";"

perl 2columns_table-0.1.pl -s ',' # separator ","

5- processed files are in the “results” directory.