diff fasta_merge_files_and_filter_unique_sequences.xml @ 0:2904d46167da draft

Uploaded
author galaxyp
date Fri, 26 Sep 2014 14:02:14 -0400
parents
children 74144834b0bd
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/fasta_merge_files_and_filter_unique_sequences.xml	Fri Sep 26 14:02:14 2014 -0400
@@ -0,0 +1,23 @@
+<tool id="fasta_merge_files_and_filter_unique_sequences" version="1.0" name="FASTA Merge Files and Filter Unique Sequences">
+  <description>
+    Concatenate FASTA database files together. Only first appearence
+    of each unique sequence will appear in output.
+  </description>
+  <command interpreter="python">
+    fasta_merge_files_and_filter_unique_sequences.py
+    $output
+    #for input in $inputs
+    $input.input
+    #end for
+  </command>
+  <inputs>
+    <repeat name="inputs" title="Input FASTA File(s)">
+      <param format="fasta" name="input" type="data" label="FASTA File"/>
+    </repeat>
+  </inputs>
+  <outputs>
+    <data format="fasta" name="output" label="Merged and Filtered FASTA from ${on_string}"/>
+  </outputs>
+  <help>
+  </help>
+</tool>