Hierarchical annotation of immune cells in scRNA-Seq data based on ssGSEA algorithm. Fork for large datasets with QOL improvements.

Update README.md

authored by Yingjiang17 and committed by GitHub 7b1bc10b 316465f2

Changed files
+19 -1
+19 -1
README.md
··· 24 24 remotes::install_github("wuaipinglab/scImmuCC") 25 25 26 26 # QuickStart 27 - The following is a quick tutorial on how to use scImmuCC to annotate immune cell types in scRNA-Seq 27 + The following is a quick tutorial on how to use scImmuCC to annotate immune cell types in scRNA-Seq. 28 + 29 + library(scImmuCC) 30 + 31 + count <- read.csv(file=filename) #read your scRNA-Seq file 32 + dim(count) 33 + count <- as.matrix(count) 34 + test <- scImmuCC_Layered(test_data,Non_Immune=FALSE) ## if your data have non-immune cell, Nn_Immune = TRUE 35 + 36 + The annotation results will be output in your current running directory。 37 + 38 + 39 + 40 + 41 + 42 + 43 + 44 + 45 + 28 46