Hi!
I'm having a issue demultiplexing a fastq file containing multiple samples from a nextseq run. we had dual index and dual barcode for each sample. the demultiplexing on the index (I5 and i7) worked properly but I still need to demultplex the barcode_5 and barcode_7. it goes like this:
The "NNNNNN" sequence are the barcode I have to demultiplex to get individual samples.
I have a list of barcode per samples. Here is some examples:
Sample_ID Barcode_5 Sequence 5'-3' Barcode_7 Sequence 5'-3'
A_1 501 TCCGATAT 701 GCTCATTAT
A_2 502 CGGAGATA 701 GCTCATTAT
I saw that nextseq use barcode reverse complement so I tried to dempultiplex using the following:
A_1 TCCGATAT-ATAATGAGC
A_2 CGGAGATA-ATAATGAGC
but all the reads went to the unmatched fastq. I then tried to use the exact sequence I was given.
A_1 TCCGATAT-GCTCATTAT
A_2 CGGAGATA-GCTCATTAT
but it didn't work either...
I can't figure out what I did wrong... Is there another tool that can demultiplex this kind of dual barcoded reads?
First separate the files based on the Illumina indexes using standard Illumina demultiplexing. Then use
sabre
(LINK) to further de-multiplex your files based on the barcodes.thank you for you replie, does sabre is able to find two barcode at once? it seems to me you have to use one barcode at a time...
You are probably going to need to do this sequentially via multiple rounds. Perhaps someone else may have a suggestion for a software that can do two barcodes at the same time.