What are the values shown on DESEQ2 heatmap legend?
0
0
Entering edit mode
20 months ago
mgranada3 ▴ 30

I have this heatmap which represents 4 conditions and 5 timepoints each. I understand that when I use z-score the legend refers to the standard deviations. However, when you're not using z-scores what do those values represent? It says 0 to 20, but of what? What would 20 be? 20 transcripts? 20,000 transcripts? 20 FPKM?

I have checked the vignette but I am not finding the answer to my question.

My organism has ~5.5k genes.

enter image description here

heatmap RNA-seq deseq2 R pheatmap • 1.0k views
ADD COMMENT
0
Entering edit mode

Can you show us the code you're using to generate the heatmap? I don't think DESeq2 plots FPKM - it must be one of either raw counts or normalized counts.

ADD REPLY
0
Entering edit mode

My count matrix was made using featureCounts and I read this into DESeq2.

I don't know how much code you need but this is just the heatmap:

> library("pheatmap")
> df <- as.data.frame(colData(dds)[,c("condition","type")])
> select <- order(rowMeans(counts(dds,normalized=TRUE)), decreasing=TRUE)
> pheatmap(assay(vsd)[select,], cluster_rows=TRUE, show_rownames=FALSE,
     cluster_cols=FALSE, annotation_col=df)
ADD REPLY
0
Entering edit mode

Well you're clearly plotting assay(vsd) so what's that?

ADD REPLY

Login before adding your answer.

Traffic: 1956 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6