Entering edit mode
5.1 years ago
cook.675
▴
230
If I have a seurat object with two assay classes "ADT" and "RNA" how do I remove one or the other from the object?
I tried
rm(Object@ADT) rm(Object@"ADT") rm(Object$ADT) rm(Object$"ADT")
?
I got it!
Thanks
If an answer was helpful, you should upvote it; if the answer resolved your question, you should mark it as accepted. You can accept more than one answer if they all work.