https://github.com/leegieyoung/scRNAseq/blob/master/Seurat/QC.R scRNAseq 코드 및 변수 설명 QC pipeline (One sample) NormalizeData FindVariableFeatures ScaleData (features를 통한 수를 정해주지 않으면 2000 개의 유전자로만 진행하게 되기에 정해주는 게 좋음, 이는 PCA 와 Clustering 결과에는 영향을 주지 않지만 DoHeatmap() 에 영향을 줄 수 있음) Shifts the expression of each gene, so that the mean expression across cells is 0. Scales the expression of each gene, so taht the variance across cell is 1 test <- function(x){ + A = paste("sum= " ,sum(x)) + B = paste("var=...