Hi
I'm not familiar with R codes.I use edger with no replicate methods for differential expression analysis. This method works well for some of my samples, and for some others i get this error:
library (edgeR)
x <- read.delim ("quant.txt",row.names="Name")
group<-factor (c("T","C"))
design <- model.matrix(~group)
y <- DGEList (counts=x,group=group)
y <- calcNormFactors(y)
keep <- rowSums(cpm(y)>0.1) >= 2
y <- y[keep, , keep.lib.sizes=FALSE]
y1 <- y
y1$samples$group <- 1
y0 <- estimateCommonDisp(y1[2,], trend="none", tagwise=FALSE)
There were 50 or more warnings (use warnings() to see the first 50)
Warning messages:
1: In condLogLikDerSize(y, r, der = 0L) : value out of range in 'lgamma'
2: In condLogLikDerSize(y, r, der = 0L) : value out of range in 'lgamma'
3: In condLogLikDerSize(y, r, der = 0L) : value out of range in 'lgamma'
Cross-posted
https://www.biostars.org/p/361419/