Hey everyone,
When it comes to RNA-Seq data analysis using edgeR, which filter is commonly used to determine the "total expressed genes."
While I've employed the criterion of logCPM > 1 as one of the filters to identify differentially expressed genes (DEGs), I'm uncertain whether I should apply the same filter to calculate the total expressed genes.
total <- total[total$logCPM > 1, ]
Alternatively, some discussions suggest considering TPM (Transcripts Per Million) for this purpose.
normed <- normed[rowSums(normed > 0) > 1, ]
Thanks for any insights!