Skip to content
Snippets Groups Projects
Commit 82f83860 authored by Gervaise Henry's avatar Gervaise Henry 🤠
Browse files

Handle subsets if not all idents present

parent 8bf0a96b
2 merge requests!6Develop,!5Refactor
......@@ -123,10 +123,10 @@ sc10x$lung <- labs.raw
Idents(sc10x) <- "lin"
sc10x.epi <- subset(sc10x, idents="Epithelia")
sc10x.fmst <- subset(sc10x, idents=c("Fibroblast","Smooth Muscle"))
sc10x.fmst <- subset(sc10x, idents=colnames(sc10x@meta.data) %in% c("Fibroblast","Smooth Muscle"))
sc10x.fib <- subset(sc10x, idents="Fibroblast")
sc10x.sm <- subset(sc10x, idents="Smooth Muscle")
sc10x.leu <- subset(sc10x, idents=c("Lymphoid", "Myeloid", "Granulocyte"))
sc10x.leu <- subset(sc10x, idents=colnames(sc10x@meta.data) %in% c("Lymphoid", "Myeloid", "Granulocyte"))
res <- c(seq(0.1,0.5,0.1),0.75,seq(1,5,1))
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment