Yes, we use it for dual-indexing all the time. You can use -l , -L or -B modes for dual indexes, -g will not work.
EXAMPLE (r1 is "read 1" from illumina):
fastq-multx -l dual_barcodes.txt r2.gz r3.gz r1.gz r4.gz -o n/a -o n/a -o r1.%.fastq.gz -o r2.gz
EXAMPLE of dual index file:
SampleID Index Style
D701_501 ATTACTCG-TATAGCCT Nextera
D701_502 ATTACTCG-ATAGAGGC Nextera
D701_503 ATTACTCG-CCTATCCT Nextera
D701_504 ATTACTCG-GGCTCTGA Nextera
D701_505 ATTACTCG-AGGCGAAG Nextera
D701_506 ATTACTCG-TAATCTTA Nextera
D701_507 ATTACTCG-CAGGACGT Nextera
D701_508 ATTACTCG-GTACTGAC Nextera
D702_501 TCCGGAGA-TATAGCCT Nextera
--
You received this message because you are subscribed to the Google Groups "EA Utils" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
ea-utils+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I'm not sure what you mean by "removed from the read files". Can you paste in an example (1 row from each file you have).
That is only 2 files. When you say dual-indexed, do you mean Nextera-like? If not, then I said the wrong thing.
--
You received this message because you are subscribed to a topic in the Google Groups "EA Utils" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/ea-utils/Oc7fdmLs_DY/unsubscribe.
To unsubscribe from this group and all its topics, send an email to ea-utils+u...@googlegroups.com.
Unless the barcodes are interleaved somehow (not sure from how you pasted it) the command line below should work fine.
fastq-multx does not require the barcode to be "ligated" to the read.
R2 is
fastq-multx -l dual_barcodes.txt r2.gz r3.gz r1.gz r4.gz -o n/a -o n/a -o r1.%.fastq.gz -o r2.gz
FILE R2
@M01385:25:000000000-A6GWW:1:1101:16207:1221 1:N:0:0
CCCTCTTT
+
6,,6,,,,
FILE R3
@M01385:25:000000000-A6GWW:1:1101:16207:1221 2:N:0:0
CTTTCCCT
+
-,66,5,6
FILE R1:
@M01385:25:000000000-A6GWW:1:1101:16207:1221 1:N:0:0
CCTCCTTTTTTCTTCCTTTCTTCCTCTTTCTCCCTTTTTTCTCTTCTTCTTCCTCTCTTTCTCTTTCTTTCTTCCTTCTTTCTTTTTTTTCCTTTTTTTTTTTTTTTTCTTTTCTTTCTTTTCTTTTCTCTTTTTTCCTTTCTCTTTTTTTTCCTTCTTTTTTTTTTCTTTTCCTTTTTTTTCTTTTTT
CCTTTTTTTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTCTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT
+
68A@BEDD9CFF6CECFCE,CF<CC6CEC,6<CCB;B,,@,,<66CCE<6,,;CC,;,C6<CEDDE,6@E;5A5<CD,66E:CECCDEEC96,,99<=C@C:4+4>C:4;6,,,7?4,5,754,,5=,33;==;@+,6,3=,+,3,33,+3:322;0**33*4*11:2+4,5+08;;9:))//<@98*7
))57)3;17,)39<68C6..).772,23(777<<<>9(,(-2211(24):38>88888821(:8888885(-(,-316775775755))/-17755.888888655555888
1) yes
2)
Can you post an attachment (tar.gz) with
- a handful of reads from each file
- the adapter file
I can run some diagnostics to be sure, but typically when you run with -l, the system will autodetermine… meaning if you don't have sufficient # of matching reads, it will determine that it's looking at line-noise. If you're trying to recover from a failed demux, using -B is the right way to go. But you'll probably need to re-pool all the reads into 1 file. This is why I never use Illumina's built-in demultiplexer…. no do-over's.
From: ea-u...@googlegroups.com [mailto:ea-u...@googlegroups.com]
On Behalf Of alk...@nau.edu
Sent: Wednesday, August 20, 2014 9:06 PM
To: ea-u...@googlegroups.com
Subject: Re: fastq-multx
Quick update:
--