Mercurial > repos > brigidar > drop_column
view drop_column.xml @ 2:befa27962b5e draft default tip
Uploaded
author | brigidar |
---|---|
date | Wed, 07 Oct 2015 12:46:41 -0400 |
parents | |
children |
line wrap: on
line source
<tool id="drop_column" name="drop one column" version="0.1"> <description>removes unwanted column</description> <command> cat $input1 | cut -f-$number1,$number2- >> $out_file1 </command> <inputs> <param name="input1" type="data" label="input file"/> <param name="number1" type="integer" label="column to the left" value="4"/> <param name="number2" type="integer" label="column to the right" value="6"/> </inputs> <outputs> <data name="out_file1" format="input" metadata_source="input1"/> </outputs> <tests> </tests> <help> </help> </tool>