This function filters out low-expressed genes from a DGEList
object and
normalizes the count data. It also provides diagnostic plots for raw and
filtered data.
dprocess_dgeList(x, group.column, min.count = 10)
The function returns a DGEList
object with low-expressed genes
filtered out and normalization factors calculated.
A DGEList
object containing raw count data.
The name of the column in x$samples
that contains the
grouping information for the samples.
The minimum number of counts required for a gene to be considered expressed. Genes with counts below this threshold in any group will be filtered out. Defaults to 10.