comparison drop_column.xml @ 0:5acd16a281c1 draft

Uploaded
author brigidar
date Wed, 07 Oct 2015 12:45:15 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:5acd16a281c1
1 <tool id="drop_column" name="drop one column" version="0.1">
2 <description>removes unwanted column</description>
3 <command>
4 cat $input1 | cut -f-$number1,$number2- >> $out_file1 </command>
5 <inputs>
6 <param name="input1" type="data" label="input file"/>
7 <param name="number1" type="integer" label="column to the left"/>
8 <param name="number2" type="integer" label="column to the right"/>
9 </inputs>
10 <outputs>
11 <data name="out_file1" format="input" metadata_source="input1"/>
12 </outputs>
13 <tests>
14 </tests>
15 <help>
16 </help>
17 </tool>