-
Notifications
You must be signed in to change notification settings - Fork 139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update RNAIntegration.R #2178
base: dev
Are you sure you want to change the base?
Update RNAIntegration.R #2178
Conversation
Update auto-comment.yml
Update auto-comment.yml
when running addGeneIntegrationMatrix function, it will occur this error: "Error in slot(object = object, name = \"features\")[[layer]] <- features : \n more elements supplied than there are to replace\n" After repeated testing, I finally know the answer to this question: This error occurred in the RNAIntegration.R of the ArchR package This code in the RNAIntegration.R file: seuratATAC <- Seurat::CreateSeuratObject(counts = mat[head(seq_len(nrow(mat)), 5), , drop = FALSE]) The Seurat::CreateSeuratObject function requires that the rownames of mat must be vector, not matrix. But the rownames passed to mat in the previous code was actually a matrix, so you only need to add a command line before this code, this will cast the rownames of mat to a vector: rownames(mat) <- as.character(rownames(mat)) And then this error was completely eliminated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Works and tested with: Seurat_5.1.0, SeuratObject_5.0.2
Hi ZhangFuchang, thanks for this! I've been noticing this was breaking tests starting at R 4.2/4.3 or so. I'll merge in, but do you mind setting your local upstream as the dev branch? I would like to provide you credit for this, but I do not want the changes from |
when running addGeneIntegrationMatrix function, it will occur this error: "Error in slot(object = object, name = "features")[[layer]] <- features : \n more elements supplied than there are to replace\n"
After repeated testing, I finally know the answer to this question: This error occurred in the RNAIntegration.R of the ArchR package This code in the RNAIntegration.R file: seuratATAC <- Seurat::CreateSeuratObject(counts = mat[head(seq_len(nrow(mat)), 5), , drop = FALSE]) The Seurat::CreateSeuratObject function requires that the rownames of mat must be vector, not matrix. But the rownames passed to mat in the previous code was actually a matrix, so you only need to add a command line before this code, this will cast the rownames of mat to a vector: rownames(mat) <- as.character(rownames(mat))
And then this error was completely eliminated.