Compute the delta BIC for a list of potential models
DESeq2BIC(
data,
name = "BIC",
mode = "total",
normalization = mode,
formulas = list(Condition = ~Condition, Background = ~1),
no4sU = FALSE,
columns = NULL,
verbose = FALSE
)
a new grandR object including a new analysis table. The columns of the new analysis table are named as <name in list>.dBIC
A grandR object
the user defined analysis name to store the results
either "total", "new" or "old"
normalize on "total", "new", or "old" (see details)
list of formulas specifying the models (you can use any column name from the Coldata(data)
)
Use no4sU columns (TRUE) or not (FALSE)
logical vector of which columns (samples or cells) to use (or NULL: use all)
Print status updates
DESeq2 by default performs size factor normalization. When computing differential expression of new RNA, it might be sensible to normalize w.r.t. to total RNA, i.e. use the size factors computed from total RNA instead of computed from new RNA. This can be accomplished by setting mode to "new", and normalization to "total"!