Hi! We actually use another filtration:
y <- DGEList(counts=count, group=group)
#Normalization
y <- calcNormFactors(y)
#Filtering
keep <- rowSums(cpm(y)>1) >= 3
y <- y[keep, , keep.lib.sizes=FALSE]
# Calculate dispersions
y <- estimateCommonDisp(y)
y <- estimateTrendedDisp(y)
y <- estimateTagwiseDisp(y)
# Testing for DE genes
et <- exactTest(y, pair=c("control", "case"))
This approach works as well? We have four samples in case group and six samples in controls, with only one factor. Thanks in advance!
Did you read the paper mentioned in this post?