CoembedData.Rd
This function wraps a number of functions from the Seurat package. It integrates and projects the single-cell multi-omics (e.g., scRNA-seq and scATAC-seq) data into a common low-dimensional space via CCA approach. The details can be found: https://satijalab.org/seurat/articles/seurat5_atacseq_integration_vignette
CoembedData(
obj.rna,
obj.atac,
gene.activity,
reference.assay = "RNA",
reduction = "cca",
weight.reduction = NULL,
verbose = TRUE,
dims = 1:30
)
A Seurat object including gene expression data
A Seurat object including chromatin accessibility data
A sparse matrix containing gene activity score per cell
The reference assay from gene expression data
The reduction name used for function FindTransferAnchors.
Dimensional reduction to use for the weighting anchors
Print progress bars and output
Set of dimensions to use in the anchor weighting procedure.
An integrated Seurat object
if (FALSE) {
obj.coembed <- CoembedData(
obj.rna = obj.rna,
obj.atac = obj.atac,
gene.activity = gene.activity,
weight.reduction = "harmony"
)
}