This is a test version of Biostars. For the public version, visit https://www.biostars.org.
What can I use to identify primer sequences in my fasta files?

I have NGS data of the V4 region of 16s rRNA but I am not aware of the primers used. I'm pretty sure the primer sequences are still in the files because the data is unprocessed, and I was able to remove the primers [of known sequences] for another data set from the same sequencer So wondering if there are tools that can help me figure out what these sequences are so that I can remove them appropriately? I was considering just trimming 20 bp from each end, but would prefer to remove the specific sequences. I have tried to align multiple sequences and see if I can find a common sequence, and I think I have found the reverse but am not confident in the forward..

next-gen sequencing sequence

If you have paired-end reads and if enough reads have inserts shorter than read length then you can do this with BBTools:

bbmerge.sh in1=r1.fq in2=r2.fq outa=adapters.fa

outa file contain adapter sequences.

1 answer

Have you tried cutadapt? Sounds like it should be up the job.

Log in to answer this question.