View source: R/processAssays.R
processOneAssay | R Documentation |
For raw counts, filter genes and samples, then estimate precision weights using linear mixed model weighting by number of cells observed for each sample. For normalized data, only weight by number of cells
processOneAssay(
y,
formula,
data,
n.cells,
min.cells = 5,
min.count = 2,
min.samples = 4,
min.prop = 0.4,
min.total.count = 15,
isCounts = TRUE,
normalize.method = "TMM",
span = "auto",
quiet = TRUE,
weights = NULL,
rescaleWeightsAfter = FALSE,
BPPARAM = SerialParam(),
...
)
y |
matrix of counts or log2 CPM |
formula |
regression formula for differential expression analysis |
data |
metadata used in regression formula |
n.cells |
array of cell count for each sample |
min.cells |
minimum number of observed cells for a sample to be included in the analysis |
min.count |
used to compute a CPM threshold of |
min.samples |
minimum number of samples passing cutoffs for cell cluster to be retained |
min.prop |
minimum proportion of retained samples with |
min.total.count |
minimum total count required per gene for inclusion |
isCounts |
logical, indicating if data is raw counts |
normalize.method |
normalization method to be used by |
span |
Lowess smoothing parameter using by |
quiet |
show messages |
weights |
matrix of precision weights |
rescaleWeightsAfter |
default = FALSE, should the output weights be scaled by the input weights |
BPPARAM |
parameters for parallel evaluation |
... |
other arguments passed to |
EList
object storing log2 CPM and precision weights
processAssays()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.