I have used the following code to make this heatmap for my large dataset. Now I want to get the name of rows (name of the genes) for the second cluster (red on the left and green on the right). First I tried to follow the instructions on this page to separate clusters but due to the complexity of the dendrogram on the y-axis, the solutions were not practical for me. Then I tried to make clusters before making the heatmap hoping to get the same result. the codes on this page did not generate the same heatmap.
is there any possible way that I could get the list of genes for the desired regions of the heatmap?
library(RColorBrewer)
my_palette <- colorRampPalette(c("red", "black", "green"))(n = 100)
heatmap.2(as.matrix(sd_pol),
col=my_palette,
density.info="none",
trace="none",
symm=F,symkey=F,symbreaks=F, scale="none",
labRow=NA,
main="test_heatmap",
margins = c(8, 8))
As detailed in the docs, heatmap.2 uses the function
hclust
for clustering, so an approach for what you want to achieve would be to create the clustering object and then applycutree
as described here.However, you will have to tune the parameters h or k to get the results you want:
Output: