I am carrying out some scRNA-seq analysis in Seurat and I have made a pseudobulk of my data, transformed the count data using round()
(as the count data was not all integer) and run FindMarkers
using DESeq2 and sorted by log2_FC. Now I want to visualise the output in the form of a hierarchial heatmap.
My question is, which slot do I pull the data from the Seurat object? If I use scale.data
then I loose a lot of genes which are not scaled, if I use slots counts
or data
then the heatmap just looks weird and nothing looks differentially expressed. Does anyone have a solution to this problem?
Thanks for the help, much appreciated!
use the data slot, and as shown in the code, you then scale it by yourself.