Entering edit mode
Jessica
▴
10
@jessica-24203
Last seen 4.2 years ago
Hello, I found out when I used DESeq2 to analyze the data, the low counts is very high. Most of padj is 'NA'.
out of 31557 with nonzero total read count
adjusted p-value < 0.05
LFC > 0 (up) : 4, 0.013%
LFC < 0 (down) : 7, 0.022%
outliers [1] : 0, 0%
low counts [2] : 22025, 70%
(mean count < 165)
My genes' expression are very low, this can lead to a lot of lost information. Is there any way to solve it?
dds <- DESeq(dds)
res_table <- results(dds,contrast = c("condition","trt","untrt"),alpha = 0.05)
I tried to set independentFiltering=FALSE, as you say I got fewer DE genes. The result not good.
As I mentioned before, some of my genes' expression are high, most of them are low. Is there any way to analyze such data? Otherwise I would lose a lot of data.
I don’t have any further suggestions from what you tried initially.
One more question, how to define low counts? It means why the low counts : 22025, 70% (mean count<165), rather than mean count<1 or something else. How is it calculated?
Read more about it in the vignette of the paper.
OK, thanks for your help.