Entering edit mode
I am doing a Transcriptomics study, where I have 120 samples. I want to know what criteria should I set to filter counts. Below is what I am using now. But I think it maybe I can set the threshold fo the counts to a higher number. Has anyone have any experience in dealing with such big datasets. ```{r} keep <- rowSums(counts(dds)) >= 5 dds <- dds[keep,]
Cross-posted on biostars: https://www.biostars.org/p/9596031/