comparison listfiltering/listfiltering.xml @ 4:53eff7c08ad3 draft

Uploaded
author mcharles
date Mon, 16 Jun 2014 06:15:32 -0400
parents
children
comparison
equal deleted inserted replaced
3:e29e077a1674 4:53eff7c08ad3
1 <tool id="listfiltering" name="listfiltering" version="0.01">
2 <description>Compare listA and listB first X column and remove from listA the elements present in listB</description>
3 <command interpreter="perl">
4 listfiltering.pl -input_file $input_listA -header_file $input_listB -nb_col $nb_col > $output_file
5 </command>
6 <inputs>
7 <param name="input_listA" type="data" format="pileup" label="Select a suitable input file from your history"/>
8 <param name="input_listB" type="data" format="txt" label="Select a suitable input file from your history"/>
9 <param name="nb_col" type="integer" value="2" label="Number of column to compare"/>
10 </inputs>
11 <outputs>
12 <data name="output_file" format="pileup" label="${tool.name} on ${on_string}"/>
13 </outputs>
14
15 <help>
16
17
18
19 </help>
20 </tool>