Open brianFSM opened 2 months ago
Hi @brianFSM,
Did you ever figure this out? I am having a similar issue, but can't see where I'm going wrong.
I also had to use options(future.globals.maxSize = x) to get SCTransform to run, so I'm thinking this could be the issue.
Best wishes,
Michael
Hey @mmccorkindale
Sorry, I haven't had a chance to troubleshoot this issue yet. I ended up switching to v4 and working through it that way.
Hi, I'm having encountering a similar issue as well with FIndAllMarkers
I have also reverted back to v4 and the same code is now working - this would be my suggestion until a v5 solution is posted.
Best wishes,
Michael
Hi @mmccorkindale ,
Thanks for your reply, actually I just wanted to add that I encountered this bug too. I managed to resolve following the suggestion here:
https://github.com/satijalab/seurat/issues/6592
Adding this before running FindAllMarkers worked for me;
object <- PrepSCTFindMarkers(object, assay = "SCT", verbose = TRUE)
I've got an object with 5 samples, and I'm using Seurat v5. I ran sctransform, integrated, scaled, and clustered the object. However, when I go to run FIndAllMarkers it runs in less than a second, returns no warnings or errors, and generates an empty object for me (i.e. no DE genes).
I suspect it has something to do with layers, but I can't for the life of me figure it out. I had a helluva time getting sctransform and integration to work, and I'm still not sure that I did it correctly. I can't find an example in any of the vignettes on how to properly import multiple matrix files (NOT h5, my setup doesn't support h5).
I've printed out the ident table to confirm that I'm working within the proper ident (the resolution selection from clustering). I try switching idents to orig.ident (sample name) and get the same behavior from FindAllMarkers (i.e. runs in a second and generates an empty object)
Here is my code:
experiment.aggregate
sessionInfo()