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

Uploaded
author mcharles
date Wed, 10 Sep 2014 09:18:15 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rapsodyn/listfiltering.xml	Wed Sep 10 09:18:15 2014 -0400
@@ -0,0 +1,20 @@
+<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>