This is a convenience wrapper function around the following three functions
that are often run together when perform integration.
#' FindIntegrationAnchors
, RunPCA
,
IntegrateEmbeddings
.
FastRPCAIntegration(
object.list,
reference = NULL,
anchor.features = 2000,
k.anchor = 20,
dims = 1:30,
scale = TRUE,
normalization.method = c("LogNormalize", "SCT"),
new.reduction.name = "integrated_dr",
npcs = 50,
findintegrationanchors.args = list(),
verbose = TRUE
)
Returns a Seurat object with integrated dimensional reduction
A list of Seurat
objects between which to
find anchors for downstream integration.
A vector specifying the object/s to be used as a reference
during integration. If NULL (default), all pairwise anchors are found (no
reference/s). If not NULL, the corresponding objects in object.list
will be used as references. When using a set of specified references, anchors
are first found between each query and each reference. The references are
then integrated through pairwise integration. Each query is then mapped to
the integrated reference.
Can be either:
A numeric value. This will call SelectIntegrationFeatures
to select the provided number of features to be used in anchor finding
A vector of features to be used as input to the anchor finding process
How many neighbors (k) to use when picking anchors
Which dimensions to use from the CCA to specify the neighbor search space
Whether or not to scale the features provided. Only set to FALSE if you have previously scaled the features you want to use for each object in the object.list
Name of normalization method used: LogNormalize or SCT
Name of integrated dimensional reduction
Total Number of PCs to compute and store (50 by default)
A named list of additional arguments to
FindIntegrationAnchors
Print messages and progress