CreatePairedObject.Rd
This function will create a Seurat object including single-cell multimodal data based on the paired cells.
CreatePairedObject(
df.pair,
obj.coembed = NULL,
obj.rna = NULL,
obj.atac = NULL,
rna.assay = NULL,
atac.assay = NULL,
sep = c("-", "-")
)
A data frame containing the cell pairing results
generated by the function PairCells
.
Separators to use for strings encoding genomic coordinates. First element is used to separate the chromosome from the coordinates, second element is used to separate the start from end coordinate.
Seurat object generated by the function CoembedData
A string indicating the first assay
A string indicating the first assay
A Seurat object
if (FALSE) {
obj <- CreatePairedObject(
df.pair = df.pair,
object = obj.coembed,
use.assay1 = "RNA",
use.assay2 = "ATAC",
)
}