This is a test version of Biostars. For the public version, visit https://www.biostars.org.
removing a part of sequence of all genes

I have 3'-seq data and planning to remove polyA of all genes. I have aligned the reads but I do not know how to remove polyA at the end of genes. do you know how to do that?

rna-seq

Please don't delete your question after you have received a helpful answer.

If an answer was helpful you should upvote it, if the answer resolved your question you should mark it as accepted. Upvote|Bookmark|Accept

1 answer

Hello Sara,

you can use cutadapt to remove adapters (poly-A included). As the poly-A is usually found at the 3' end of reads, you can use the following as suggested by cutadapt documentation:

cutadapt -a "A{100}" -o output.fastq input.fastq

Log in to answer this question.