This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Is RSEM required for RNA-seq data analysis using STAR and edgeR?

I have fastq files (n=40) obtained by paired-end unstranded RNA-seq. I would like to analyze these files using STAR for mapping and perform the differential expression analysis between the two groups by edgeR. I plan to apply TPM for normalized count. I am wondering if RSEM is currently necessary since STAR can generate raw count data per gene. I would be grateful if you could enlighten me.

edger rna-seq star

DESeq2 and EdgeR uses raw counts as input.

2 answers

A complete example analysis is given here (using Rsubread instead of STAR): https://bioconductor.org/packages/release/workflows/vignettes/RnaSeqGeneEdgeRQL/inst/doc/edgeRQL.html

RSEM would also be a smarter algorithm than subread.

Thank you for your response. I can use the counts calculated by STAR, please give me a rationale why using the Rsubreade algorithm is better than using the counts generated by STAR.

EdgeR wants raw counts, not TPM. You can use the counts STAR calculates, but RSEM's algorithm is better.

Thank you for your response. You are right that I can use the counts calculated by STAR, please give me a rationale why using the RSEM algorithm is better than using the counts generated by STAR. Is it reported in papers or other sources that the RSEM generated counts are more accurate than the STAR counts?

You could just read the RSEM paper to find out how it processes the counts to make them better! It involves dealing with multi-mapping reads.

Thank you for your reply. I'll read the RSEM paper.

Log in to answer this question.