You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently processing a Nanostring dataset using Seurat and am trying to remove cells with NA values in a metadata column (V1). I attempted the following:
slide1 <- subset(slide1, subset = !is.na(V1))
However, I encountered this error:
Error in `FetchData()`:
! None of the requested variables were found:
Run `rlang::last_trace()` to see where the error occurred.
Trace output:
Error in `FetchData()`:
! None of the requested variables were found:
---
Backtrace:
▆
1. ├─base::subset(slide1, subset = !is.na(V1))
2. └─SeuratObject:::subset.Seurat(slide1, subset = !is.na(V1))
3. ├─SeuratObject::WhichCells(...)
4. └─SeuratObject:::WhichCells.Seurat(...)
5. ├─SeuratObject::FetchData(...)
6. └─SeuratObject:::FetchData.Seurat(...)
I've double-checked the metadata column name—V1 exists and is correctly spelled.
Hi all,
I'm currently processing a Nanostring dataset using Seurat and am trying to remove cells with NA values in a metadata column (V1). I attempted the following:
slide1 <- subset(slide1, subset = !is.na(V1))
However, I encountered this error:
Trace output:
I've double-checked the metadata column name—V1 exists and is correctly spelled.
Here is my session info:
I'd appreciate any suggestions or workarounds.
Thanks,
Alice
The text was updated successfully, but these errors were encountered: