FeaturePlot() in Seurat v5 object #9951
-
|
Hello, I integrated 3 Seurat objects together, and now in my "RNA" assay, I have "data.1", "data.2", "data.3", and "counts.1", "counts.2", "counts.3". If I set my default assay to be "RNA", and run FeaturePlot() on the integrated object, which layer will it use? I thought it would use assay = "RNA", layer = "data", but now there are 3 different "data" layers. I would really appreciate any help. Thank you! |
Beta Was this translation helpful? Give feedback.
Answered by
samuel-marsh
Jun 17, 2025
Replies: 1 comment 1 reply
-
|
Have you tried JoinLayers? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
JoinLayersis not needed for plotting functions. Internally, they automatically collect data from all layers usingFetchData. So any layers matching pattern (i.e. data.1, data.2) will be included. Below is quick validation example showing thatFetchDatareturns data for all cells in the object regardless of it being split.Best,
Sam