Description Usage Arguments Details Value Author(s) References Examples
View source: R/computeSpillmat.R
Computes a spillover matrix from priorly identified single-positive populations.
1 2 3 4 5 6 7 8 | computeSpillmat(
x,
assay = "counts",
interactions = c("default", "all"),
method = c("default", "classic"),
trim = 0.5,
th = 1e-05
)
|
x |
a |
assay |
character string specifying which assay to use; should be one
of |
interactions |
|
method |
|
trim |
numeric. Specifies the trim value used for estimation of spill values.
Note that |
th |
single non-negative numeric. Specifies the threshold value below which spill estimates will be set to 0. |
The default
method estimates the spillover as the median ratio
between the unstained spillover receiving and the stained spillover
emitting channel in the corresponding single stained populations.
method = "classic"
will compute the slope of a line through
the medians (or trimmed means) of stained and unstained populations.
The medians (or trimmed means) computed from events that are i) negative
in the respective channels; and, ii) not assigned to interacting channels;
and, iii) not unassigned are subtracted as to account for background.
interactions="default"
considers only expected interactions, that is,
M+/-1 (detection sensitivity), M+16 (oxide formation) and channels measuring
metals that are potentially contaminated by isotopic impurites
(see reference below and isotope_list
).
interaction="all"
will estimate spill for all n x n - n
interactions, where n denotes the number of single-color controls
(= nrow(bc_key(re))
).
Returns a square compensation matrix with dimensions and dimension names matching those of the input flowFrame. Spillover is assumed to be linear, and, on the basis of their additive nature, spillover values are computed independently for each interacting pair of channels.
Helena L Crowell helena.crowell@uzh.ch
Coursey, J.S., Schwab, D.J., Tsai, J.J., Dragoset, R.A. (2015). Atomic weights and isotopic compositions, (available at http://physics.nist.gov/Comp).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # construct SCE from single-stained control samples
data(ss_exp)
sce <- prepData(ss_exp)
# specify mass channels stained for
bc_ms <- c(139, 141:156, 158:176)
# debarcode single-positive populations
sce <- assignPrelim(sce, bc_ms)
sce <- estCutoffs(sce)
sce <- applyCutoffs(sce)
# estimate & extract spillover matrix
sce <- computeSpillmat(sce)
library(SingleCellExperiment)
head(metadata(sce)$spillover_matrix)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.