Replies: 3 comments 10 replies
-
Is the R you using version 4.3? please go back to version 4.2.2 and try again |
Beta Was this translation helpful? Give feedback.
-
I encountered the same issue. Not only I loose the dimnames, but counts are stored as a layer within RNA, but it used to be an independent feature within RNA. While it doesn't really affect the generation of UMAPs, it was problematic for me when performing DEseq analyses. I solved the problem by installing Seurat 4.4.0 and SeuratObject 4.1.4. However, is there any way this information could be retrieved from a Seurat Object in the newest version? Thanks |
Beta Was this translation helpful? Give feedback.
-
I found the 'old' Dimnames are now stored in obj@assays$RNA@cells and obj@assays$RNA@features, I guess it is trying to save space |
Beta Was this translation helpful? Give feedback.
-
Hi!
I recently started working with Seurat version 5.0.1 for single-cell RNA-seq analysis. While executing my R code, I didn't encounter any immediate warning or error messages. However, upon closer inspection of the Seurat object created, I noticed an unexpected issue.
After processing my data with the CreateSeuratObject function, the dimension names (Dimnames) of the dataset appear to be missing. This anomaly wasn't anticipated and isn't accompanied by any direct error messages, making it difficult to diagnose the problem.
Additionally, I observed that the assay class in the Seurat object has changed to "Assay5". This is different from what I've seen typically and might be related to the issue at hand.
I've searched through the documentation and forums but haven't found a similar issue reported or addressed. I'm reaching out to see if anyone has encountered this problem or could provide insights into what might be causing the disappearance of dimnames and the change in the assay class.
I am attaching the screenshots for a clearer understanding. (Note: As per the guidelines, I'm not attaching the screenshots here but can provide them if needed.)
Here's a brief snippet of the code I used:
library(Seurat)
library(tidyverse)
library(dplyr)
library(patchwork)
scRNA.counts=Read10X("C:\Users\Admini\Desktop\51 lesson\single cell\lesson1\GSE152048_BC21.matrix\BC21")
scRNA = CreateSeuratObject(scRNA.counts,assay = "RNA",meta.data = NULL,project = "os", min.cells=3,min.features=300)
I would greatly appreciate any guidance or suggestions you might have. Thank you very much for your time and help!
Best Regards,
Tong Ling
Beta Was this translation helpful? Give feedback.
All reactions