Dear all,
I am using Trimmomatic for adapter removal for my Truseq paired-end data (150bp). According to the Trimmomatic provided adapter file "TruSeq3-PE-2.fa" the reverse complements of index adapter sequence is used for trimming reads from R2 file and the universal adapter is used for trimming reads from R1 file.
PrefixPE/1 TACACTCTTTCCCTACACGACGCTCTTCCGATCT
PrefixPE/2 GTGACTGGAGTTCAGACGTGTGCTCTTCCGATCT
PE1 TACACTCTTTCCCTACACGACGCTCTTCCGATCT
PE1_rc AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTA
PE2 GTGACTGGAGTTCAGACGTGTGCTCTTCCGATCT
PE2_rc AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC
However, it looks like that for my data the actual sequences of the index adapter is in the R1 file and the reverse complement of the universal adapter is in the R2 file. This information was also provided to me by Illumina support team. Therefore I prepared my adapter file as follows:
PrefixPE/1 AGATCGGAAGAGCACACGTCTGAACTCCAGTCACATCACGATCTCGTATGCCGTCTTCTGCTTG (index adapter)
PrefixPE/2 AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTAGATCTCGGTGGTCGCCGTATCATT ( reverse complement of universal adapter)
PE1 AGATCGGAAGAGCACACGTCTGAACTCCAGTCACATCACGATCTCGTATGCCGTCTTCTGCTTG
PE1_rc CAAGCAGAAGACGGCATACGAGATCGTGATGTGACTGGAGTTCAGACGTGTGCTCTTCCGATCT (revcomp of PE1)
PE2 AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTAGATCTCGGTGGTCGCCGTATCATT
PE2_rc AATGATACGGCGACCACCGAGATCTACACTCTTTCCCTACACGACGCTCTTCCGATCT (revcomp of PE2)
Please let me know if this adapter file I prepared is fine or is the Trimmomatic adapter file needs to be used always.
Thanks, Candida
Consider using
bbduk.sh
from BBMap suite and theadapters.fa
file included in theresources
directory. No need to worry about orientation.You can use cutadapt link. Might be useful for you.
Moved this to a comment since it is not an answer for the original question.