Entering edit mode
10.1 years ago
andrew.j.skelton73
6.6k
I have a set of fastq files and I want to trim from the adaptor sequence to the 3' end, are there any trimmers that can do this?
Example:
5' -> AAATTAACGGGG ATCGATCGATCG TTGGGGTGGGTG <- 3'
Adaptor Sequence -> ATCGATCGATCG
What I want extracted -> AAATTAACGGGG
yes that's the most common situation in which you have to trim adapter sequences. see for example Trimmomatic or cutadapt. I guess you could have found such tools by searching biostars
if I remember correctly, you could set what part od read you want and which you want to discard with
-a
and-g
options