Help with heatmaps
2
0
Entering edit mode
4 months ago
rb_99 • 0

Hello, I need some help with deciding the best way to present data. I have UNT and treated samples between a control and knock-out sample. I currently have the data presented as normalised gene counts in a heatmap, as I think this better represents what’s going on in my samples. Whenever I do log2FC I feel like it hides a lot of data and is not telling the true story. Is it okay to present normalised gene counts in a heatmap? Thank you.

DeSeq2 genecounts heatmap RNAseq • 425 views
ADD COMMENT
0
Entering edit mode

its arguably even better than presenting log2FC. you can ballpark a log2FC from counts, reverse isnt true.

ADD REPLY
0
Entering edit mode
4 months ago

It is absolutely fine to present normalised gene counts. The most common way that we present data is median-scaled gene counts (gene-wise centering by the median). In R it would be something like:

centred.matrix <- assay(rlog.dds.object) - rowMedians(assay(rlog.dds.object))

ADD COMMENT
0
Entering edit mode
4 months ago
BioinfGuru ★ 2.1k

In the Deseq2 workflow section 4.3 (Sample distances) you can see (with coding) how to normalise, calculate sample distances, and plot the heatmap "to assess overall similarity between samples: Which samples are similar to each other, which are different? Does this fit to the expectation from the experiment’s design?"

ADD COMMENT

Login before adding your answer.

Traffic: 1886 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