Heatmap and rna-seq
3
Hello everyone!
I have a list of pathways from GSEA analysis (RNA-Seq data) and I want to plot a heatmap of genes associated with pathways, showing distinctly each pathway in the heatmap.
Can somebody help me with this
RNA-Seq
Heatmap
• 1.2k views
•
link
updated 6 months ago by
dsull
★
6.9k
•
written 7 months ago by
qudrat.nii
▴
40
install.packages("pheatmap")
library(pheatmap)
setwd("/Users/data_analysis/results")
data <- read.table(file = "log2cpm.tsv", header = T, sep = "\t")
pheatmap(mat = data)
Check out clustergrammer from Avi Ma'ayan's lab.
Hi, you can take the list of GSEA pathways and then use these via GSVA (https://github.com/rcastelo/GSVA ) to create a heatmap.
You have not indicated that you require assistance with coding; so, I will end my answer right here.
Kevin
Login before adding your answer.
Traffic: 2659 users visited in the last hour
Please include a link when you are recommending a tool. There can be programs with similar names.
https://maayanlab.cloud/clustergrammer/
It's a web-based tool (can also be a python jupyter widget) that I find useful for exploring a pathway x gene matrix or a sample x gene matrix.