Please include a link when you are recommending a tool. There can be programs with similar names.
Heatmap and rna-seq
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
• 2,618 views
•
link
3 answers
install.packages("pheatmap")
library(pheatmap)
setwd("/Users/data_analysis/results")
data <- read.table(file = "log2cpm.tsv", header = T, sep = "\t")
pheatmap(mat = data)
• 0 views
•
link
Check out clustergrammer from Avi Ma'ayan's lab.
• 0 views
•
link
• 0 views
•
link
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.
• 0 views
•
link
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
• 0 views
•
link
Log in to answer this question.