perform.seurat.cca.Rd
Performs Seurat integration on the supplied assay names. Results are saved under integration_reductions
perform.seurat.integration(
object,
object.list,
assay,
reduction.save.suffix = NULL,
nfeatures = 2000,
anchors.dims = 1:30,
l2.norm = T,
k.anchor = 5,
k.filter = 200,
k.score = 30,
max.features = 200,
nn.method = "annoy",
n.trees = 50,
anchor.eps = 0,
features = NULL,
integrate.dims = 1:30,
k.weight = 100,
sd.weight = 1,
sample.tree = NULL,
integrate.eps = 0,
print.variance = TRUE,
verbose = FALSE,
seed = 1234,
...
)
IBRAP S4 class object
list of individual sample IBRAP S4 class objects.
Character. String containing indicating which assay to use
Numerical. How many features should be found as integration anchors. Default = 3000
Logical. Perform L2 normalization on the CCA cell embeddings after dimensional reduction. Default = TRUE
Numerical. How many neighbors (k) to use when picking anchors. Default = 5
Numerical. How many neighbors (k) to use when filtering anchors. Default = 200
Numerical. How many neighbors (k) to use when scoring anchors. Default = 30
Character. Method for nearest neighbor finding. Options include: rann, annoy. Default = annoy
Numerical. Error bound on the neighbor finding algorithm (from RANN/Annoy) when finding integration genes.
Character. Vector of features to use when computing the PCA to determine the weights. Only set if you want a different set from those used in the anchor finding process. Default = NULL
Numerical. Number of dimensions to use in the anchor weighting procedure. Default = 1:30
Numerical. Number of neighbors to consider when weighting anchors. Default = 100
Numerical. Controls the bandwidth of the Gaussian kernel for weighting. Default = 1
Character. Specify the order of integration. If NULL, will compute automatically. Default = NULL
Numerical. Error bound on the neighbor finding algorithm (from RANN)
<<<<<<< HEAD
Character. What should be added as a suffix to reduction name. Default = ''
======= >>>>>>> 810d7c0084d3f20c6f22b5e0fc8fff0259de0f1d
Numerical. The maximum number of features to use when specifying the neighborhood search space in the anchor filtering. Default = 200
Numerical. More trees gives higher precision when using annoy approximate nearest neighbor search. Default = 50
Boolean. Should the automatically genewrated plot be saved? Default = TRUE
Produces a new 'methods' assay containing normalised, scaled and HVGs.