This is a test version of Biostars. For the public version, visit https://www.biostars.org.
gene names in "Heatmap" function

Hi, I am using "ComplexHeatmap" package for clustering differentially expressed genes. I'm building a matrix from my dataset without the names of the genes since it's a character and not numeric variable. After the heat map is created, how do I add the names of the genes??

Thanks very much

complexheatmap

Instead of removing your gene names directly from your matrix, try to make row.names of these gene names before removing them.

e.g.,

row.names(matrix) <- matrix$gene.names

Then remove the gene names column.

if you have a matrix of DEGs with expression values in the columns just load it in R with rownames=1 then the gene names will be your row names and you will be able to have them in your heatmap.

0 answers

No answers yet.

Log in to answer this question.