Open KeeBak opened 3 years ago
Hi @KeeBak , thank you for your interest in DAseq!
I think you could try the following.
labels_res <- immune.combined$orig.ident[immune.combined$stim == "STIM"]
table(labels_res)
labels_nonres <- immune.combined$orig.ident[immune.combined$stim == "CTRL"]
table(labels_nonres)
Basically, you need to check what meta.data
columns are available in this object first and then go from there. Hope this is helpful.
Hi, I'm really interested in using this tool! I am however new to this sort of analysis and so was hoping you could help with the basics. I have integrated my sample as in the seurat vignette https://satijalab.org/seurat/articles/integration_introduction.html and have now my seurat object "immune.combined". I am now following your tutorial to identify my da regions and have errors.
get label info
head(immune.combined)
labels_res <- immune.combined[immune.combined$stim == "STIM", "label"] labels_nonres <- immune.combined[immune.combined$stim == "CTRL", "label"]
any help would be greatly appreciated!