Make heatmap for RNA-seq with non replicate
0
0
Entering edit mode
8 months ago
Chris ▴ 260

Hi all,

degs = rownames(subset(DEG, PValue < 0.05 & abs(logFC > 9)))
rownames(counts) = DEG[rownames(counts), 'symbol']
counts_degs = counts[degs,]
pheatmap(counts_degs, clustering_method = 'ward.D', scale='row')

Could I use TPM matrix instead of raw count matrix to make heat map using the code above? Which I think it makes more sense. Thank you so much! My DEG is as the photo.

enter image description here

RNA-seq • 999 views
ADD COMMENT
1
Entering edit mode

Your code is faulty: abs(logFC > 9) should be abs(logFC) > 9, I think. Also, I can't really understand your question - you can make a heatmap of anything. You mention "non replicate" but you're running DESeq2. How are you doing that?

ADD REPLY
0
Entering edit mode

Thank you for showing me the error! I used edgeR:

d <- DGEList(counts=counts,group=factor(samples))
keep <- filterByExpr(d)
d <- d[keep,]
bcv <- 0.2
et <- exactTest(keep, dispersion=bcv^2)

I try to find differential gene expression that why I think TPM is better than the raw count.

ADD REPLY
0
Entering edit mode

I try to find differential gene expression that why I think TPM is better than the raw count.

What is the relationship between differential gene expression and TPM? Where does it say that TPM is better than raw count at diff. expression analysis?

ADD REPLY
0
Entering edit mode

I thought that people use RPKM, TPM or CPM to estimate differential gene expression, is that correct?

ADD REPLY
1
Entering edit mode

That is not correct. All of those metrics quantify relative gene expression within a sample.

ADD REPLY
0
Entering edit mode

Comparison across samples may be problematic but could we use it as a reference or estimate and may be validate again later on? I just want to make a heat map to see gene expression between 4 samples and use raw count is not make sense. Thank you for your reply!

ADD REPLY
1
Entering edit mode

I do this heatmap thing all the time. If cross-sample comparison is all you're interested in, I'd recommend UQ normalizing raw counts or using normalized counts from DESeq2. For cross-gene comparison, TPM will work. To combine both, I use a modified version of the UQpgQ2 method: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5411036/, where instead of normalizing by median (Q2) in step-2, I normalize by median of all expressors to retain more genes. A better way would be to UQ normalize across samples, then calculate z-scores per gene.

ADD REPLY
0
Entering edit mode

I found an interesting discussion here How to choose Normalization methods (TPM/RPKM/FPKM) for mRNA expression. Thank you for sharing! What do you think about voom?

y <- voom(d, mm, plot = T)

https://ucdavis-bioinformatics-training.github.io/2018-June-RNA-Seq-Workshop/thursday/DE.html

When I use y$E to make heat map, I don't have logFC to filter out to make the heat map less dense.

ADD REPLY
1
Entering edit mode

I don't have any thoughts about voom but please note the replies on Novogene's post - Novogene's take is bad/outdated. Don't go by what they say.

EDIT: That is an awfully short discussion - the forum has a lot more discussions on this topic and the post you've picked is one of the least informative (except for i.sudbery's takes). Dig deeper - make a heatmap from whatever but don't expect the heatmap to be statistically sound.

ADD REPLY
0
Entering edit mode

Thank you for letting me know! That post pop up because it mentioned about UQpgQ2.

ADD REPLY
1
Entering edit mode

Yeah, that comment is from me as well - I'm probably the only person mentioning that metric on this site.

ADD REPLY

Login before adding your answer.

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