-
I have a Seurat object in which I have used SCTransform and then integrated the data. The resulting Seurat object has three assays; When using FeaturePlot, I do not want to use integrated data, but FeaturePlot has no argument for choosing the assay. FeaturePlot does have an argument for choosing the slot in which the value can be either 'counts', 'data' or 'scale.data'. When I choose 'counts' as the slot, then all the genes (features) come up as not being found, even when they are found when 'data' or 'scale.data' is the chosen slot. So, it seems like FeaturePlot is using the 'integrated' assay, but I want to avoid integrated data for plotting. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
The default assay is used. This is the default for all functions in Seurat unless an |
Beta Was this translation helpful? Give feedback.
-
So, after integrating the data, I guess the 'integrated' assay is the default assay in which case to to differential expression or graphics I would need to do: By the way, I am using Chrome as my browser and nothing happens when I click "Mark as answer". Also, when I click the "Got it!" button the pop-up does not go away, so maybe a browser problem with Chrome ? I have tried a number of times on more than one question to 'Mark as answer', but it never seems to mark the question as answered. |
Beta Was this translation helpful? Give feedback.
-
Thank you very much for the link and all the help ! |
Beta Was this translation helpful? Give feedback.
The default assay is used. This is the default for all functions in Seurat unless an
assay
parameter is implemented and a different assay is specified in the function call.