Replies: 5 comments 6 replies
-
I had the same error as you, for me it worked removing any data not related to gene expression after reading them with Read10X()... |
Beta Was this translation helpful? Give feedback.
-
I also encountered the same error, while my seurat object consisted of 6 data layers. In my case, I found two layers contained the same features (the two layers derived from the same dataset), so I removed the duplicated layers. It worked in the end by processing the object with the last 5 layers. |
Beta Was this translation helpful? Give feedback.
-
I had the same error as you. Have you solved the problem. |
Beta Was this translation helpful? Give feedback.
-
I faced this issue a lot when integrating multiple objects. This is how I fixed it. Essentially you need to remove the faulty layers.
|
Beta Was this translation helpful? Give feedback.
-
Maybe your seurat object did not contain genes when you create. |
Beta Was this translation helpful? Give feedback.
-
Hi all! I'm very new to Seurat and scRNA-seq data...
I'm getting a weird error that I have no idea how to fix.
I also couldn't find information about this error.
I've put in my data filtered_feature_bc_matrix (barcodes.tsv.gz, matrixmtx.gz, and features.tsv.gz) as a Seurat object beginning with this:
ctrl.data <- Read10X(data.dir =
"~/Desktop/scRNAseq/outs/filtered_feature_bc_matrix")
ctrl <- CreateSeuratObject(counts = ctrl.data, project = “IMMUNE_CTRL”, min.cells = 5)
ctrl$stim <- “CTRL”
ctrl$replicate <- “n=1”
ctrl <- subset(ctrl, subset = nFeature_RNA > 500)
ctrl <- NormalizeData(ctrl, verbose = FALSE)
ctrl <- FindVariableFeatures(ctrl, selection.method = "vst", nfeatures = 2000)
Yet Continue to get this error each time:
Finding variable features for layer counts.Gene Expression
Calculating gene variances
0% 10 20 30 40 50 60 70 80 90 100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
Calculating feature variances of standardized and clipped values
0% 10 20 30 40 50 60 70 80 90 100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
Finding variable features for layer counts.Multiplexing Capture
Calculating gene variances
0% 10 20 30 40 50 60 70 80 90 100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
Calculating feature variances of standardized and clipped values
0% 10 20 30 40 50 60 70 80 90 100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
Error in
.SelectFeatures()
:! None of the features provided are present in the feature set
Run
rlang::last_trace()
to see where the error occurred.15 件の警告がありました (警告を見るには warnings() を使って下さい)
Backtrace:
▆
Run rlang::last_trace(drop = FALSE) to see 1 hidden frame.
I keep encountering the same error consistently.
I'm having a tough time with this function and trying to understand how to fix this error.
How can I resolve this issue?
I really appreciate your help!
Beta Was this translation helpful? Give feedback.
All reactions