How to load .Robj file #4021
-
Hello, a very basic question. How do I load the Seurat .Robj files downloaded from Figshare. Thanks. Rishi. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You can use the |
Beta Was this translation helpful? Give feedback.
-
After loading the .Robj file (ref) downloaded from Figshare, I want to integrate it with an .rds file (slide.seq) for label transfer:
but I get the following error: Error in UseMethod(generic = "DefaultAssay", object = object) : |
Beta Was this translation helpful? Give feedback.
You can use the
load()
function in R to load objects that were saved using thesave()
function, or usereadRDS()
for those saved usingsaveRDS()
.