Entering edit mode
4.8 years ago
clizama
•
0
I'm using pheatmap to make a Heatmap. I was wondering if exist any way using pheatmap in R to add only the name of specific genes in the heatmap. Without do it manually.
Thanks Carlos
You can set the names that are not of interest to you to empty vectors (I think).
Apart from that, the
ComplexHeatmap
package seems to allow you to do just that without a hack like the one I suggested. You can transfer yourpheatmap
command intoComplexHeatmap
universe following these code details.I tried. ComplexHeatmap
library(ComplexHeatmap) I used the test examples just to see how it work. Then I run: pheatmap(test) I got these error: Error in pheatmap(test) : could not find function "pheatmap"
any guest I can imagine has to be something simple o fix.
Don't worry I fixed, thanks
Thanks guys I will try both option.
do report back what ended up working for you so that this post may be as useful as possible for future users
Finally, I took the suggestion from papyrus and your suggestion with ComplexHeatmap, The Script looks like that and work really good for me.