Entering edit mode
7.2 years ago
1769mkc
★
1.2k
I m plotting heatmap, based on padj value this is the code im using .
padj <- 0.05
res.index <- which(res$padj < padj)
df <- as.data.frame(
colData(dds[res.index,])[,c("condition")])
rownames(df) <- colnames(assay(rld[res.index,]))
library(pheatmap)
pheatmap(assay(rld[res.index,]),
cluster_rows=TRUE,
show_rownames=FALSE, cluster_cols=TRUE,
treeheight_col=1,
scale="row",
annotation_col=df)
Im getting the heatmap no issues but i want to get the value which im using for my plot , how i get that, any suggestion or help would be highly appreciated .
Do you mean the rld normalized count table?
yes..how do i get that?