This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Adapter for RNA-seq alignment

Hi everyone:

I'm not quite familiar with RNA-seq alignment. It seems that part of the RNA-seq reads (splice site) can be mapped to reference genome by alignment tool Tophat or STAR. In this case, do we need to remove the adapters for sequencing reads with tools like cutadapt? For small RNA-seq, since the sequencing reads length is increasing, there is high possibility that the reads will contain adapter sequences.

alignment rna-seq

2 answers

It's always a good idea to trim off the adapters (note that if you have paired-end reads, only use a trimmer that trims as a pair). You can also quality trim, but don't do that aggressively (certainly don't go over a minimum Phred score of 5).

Thanks, which trim tool would you suggest?

There are two popular ones cutadapt and fastx clipper

I would go for cutadapt,

Thanks, cutadapt is a good tool.

The presence of adapter sequences in your reads can affect dramaticaly the % of the alignment and also the quality. So, as Devon said, it's always a good practice to remove them. I suggest you to use Trimmomatic, which can deal with both Paired-End (PE) and Single-End (SE) data.

Thanks for your recommendation.

Log in to answer this question.