+6
-1
README.md
+6
-1
README.md
···
27
27
# QuickStart
28
28
The following is a quick tutorial on how to use scImmuCC to annotate immune cell types in scRNA-Seq.
29
29
<div style="backgroud-color: #f5f5f5; padding: 10px">
30
+
30
31
library(scImmuCC)
31
-
count <- read.csv(file=filename) ##read your scRNA-Seq file
32
+
33
+
count <- read.csv(file=filename) ##read your scRNA-Seq file
34
+
32
35
count <- as.matrix(count)
36
+
33
37
test <- scImmuCC_Layered(test_data,Non_Immune=FALSE)
34
38
##if your data have non-immune cell, Nn_Immune = TRUE
39
+
35
40
</div>
36
41
The annotation results will be output in your current running directory。
37
42