Thank you for the suggstion! If I understand you correctly , and I understand the edger manual's section on glmQLFTest(), I can use the output glmQLFTest() to identify genes significantly affected by each individual batch?
mod <- model.matrix(~ factDx + LibraryBatchall)
dge.estDisp.mod <- estimateDisp(dge, mod)
fit <- glmQLFit(dge.estDisp.mod, mod)
qlf.specific.batch <- glmQLFTest(fit, coef="specific.batchID")
topTags(qlf.specific.batch )
Absolutely will add the plotMDS graphical exploration to my to-do list as well.