diff fasta_interlacer.xml @ 3:e320ef2d105a draft

Uploaded
author petr-novak
date Thu, 05 Sep 2019 09:04:56 -0400
parents
children c2c69c6090f0
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/fasta_interlacer.xml	Thu Sep 05 09:04:56 2019 -0400
@@ -0,0 +1,33 @@
+
+<tool id="fasta_interlacer" name="FASTA interlacer" version="1.0.0">
+<description> Join pared reads into single file </description>
+<command interpreter="python">
+fasta_interlacer.py -a $A -b $B -p $paired -x $single
+</command>
+
+ <inputs>
+  <param format="fasta" type="data" name="A" label="Left-hand mates" />
+  <param format="fasta" type="data" name="B" label="Right-hand mates" />
+ </inputs>
+
+
+ <outputs>
+    <data format="fasta" name="paired" label="interlaced paired reads from datasets ${A.hid} and ${B.hid} "/>
+   	<data format="fasta" name="single" label="reads without available pair reads from datasets ${A.hid} and ${B.hid}"/>
+ </outputs>
+
+ <help>
+**What it does**
+ This tools joins paired end FASTA reads from separate files, one with the left mates and one with the right mates, into a single files.
+ Last character in identifiers is used to distinguish pairs.
+  
+**Note !!!**
+ This tools is to be used as more efficient replacement of FASTQ interlacer. Galaxy built-in FASTQ interlacer allows different ordering
+ of sequences in both files but this flexibility comes with high memory requirements when large files are used. FASTA interlacer is simple but order of magnitude 
+ faster tools which can be used on files where reads are in the same order.
+ 
+ 
+</help>
+
+ 
+</tool>