view rapsodyn/listfiltering.xml @ 0:442a7c88b886 draft

Uploaded
author mcharles
date Wed, 10 Sep 2014 09:18:15 -0400
parents
children
line wrap: on
line source

<tool id="listfiltering" name="listfiltering" version="0.01">
<description>Compare listA and listB first X column and remove from listA the elements present in listB</description>
<command interpreter="perl">
    listfiltering.pl -input_file $input_listA -header_file $input_listB -nb_col $nb_col > $output_file 
</command>
<inputs>
<param name="input_listA"  type="data" format="pileup" label="Select a suitable input file from your history"/>
<param name="input_listB"  type="data" format="txt" label="Select a suitable input file from your history"/>
<param name="nb_col" type="integer" value="2" label="Number of column to compare"/>
</inputs>
<outputs>
 <data name="output_file" format="pileup" label="${tool.name} on ${on_string}"/>
</outputs>

<help>



</help>
</tool>