Instructions.md

Instruction

Read reference and query seurat object files into the R

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.

Find the optimal k-weight parameter for KNN

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)

Denoise a reference Seurat Object

reference<- DeNoise(ref, lab = "type", coef = 1.5)

Map query Seurat object to reference Seurat object

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)

Optimized Tracing of Query to Reference Data

This function examines the global transcriptomic properties of single cell data.

correlation<-GlobalProbe(dat,lab="type")


TrakhtenbergLab/CellTools documentation built on Aug. 21, 2023, 2:39 p.m.