reference <- readRDS(“/path-to-referencedata”)
query <- readRDS(“/path-to-querydata”)
The reference and query seurat objects need to be pre-processed with standard pre-processing workflow for scRNA-seq data in Seurat.
This function iterates through a select range of k-weight parameters and stores the optimal parameter in the Seurat object
reference <- OptiK(reference, lab = "type", range = c(5,50), dims = 50, perc = 0.2)
reference<- DeNoise(ref, lab = "type", coef = 1.5)
This function is a wrapper for Seurat's TransferData, IntegrateEmbeddings, and ProjectUMAP functions, meant to be run after
Result<- MapTo(ref, query, lab = "type", dims = 50)
This function examines the global transcriptomic properties of single cell data.
correlation<-GlobalProbe(dat,lab="type")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.