Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No slot of name "images" error when trying to open RDS file

Tags:

r

seurat

I'm trying to open a file but it seems I'm running into an error.

Here's what I'm doing, in RStudio:

file <- readRDS("~/Downloads/file.rds")

View(file)

And then I get this error:

Error in eval(call("@", object, slot)) : no slot of name "images" for this object of class "Seurat"

The RDS file requires Seurat but I have that installed properly. I'm not sure how to interpret this error message. Thanks

like image 430
JB_Probs Avatar asked Sep 17 '25 05:09

JB_Probs


1 Answers

try updating the seurat object:

pmbc.updated = UpdateSeuratObject(object = pmbc)

like image 177
Leigh M Avatar answered Sep 19 '25 19:09

Leigh M