Author: Zuguang Gu ( z.gu@dkfz.de )
Date: 2015-10-14
Complex heatmaps are efficient to visualize associations between different sources of data sets and reveal potential structures. Here the ComplexHeatmap package provides a highly flexible way to arrange multiple heatmaps and supports self-defined annotation graphics.
Generally, a heatmap list contains several heatmaps and row annotations.
Surrounding the heatmap list, there are legends for heatmaps and annotations, also there are titles which are placed on the four sides of the heatmap list. And for each heatmap, there are also different components surrounding the heatmap body.
The ComplexHeatmap package is implemented in an object-oriented way. To describe a heatmap list, there are following classes:
Heatmap
class: a single heatmap containing heatmap body, row/column names, titles, dendrograms and column annotations.HeatmapList
class: a list of heatmaps and row annotations.HeatmapAnnotation
class: defines a list of row annotations and column annotations.There are also several internal classes:
SingleAnnotation
class: defines a single row annotation or column annotation.ColorMapping
class: mapping from values to colors.ComplexHeatmap is implemented under grid system, so users should know basic grid functionality to get full use of the package.
There are several vignettes in the package. Each vignette focuses on a specific topic. Following lists the general topics discussed in these vignettes:
This vignette introduces the basic configuration for making a single heatmap. Similar as other R functions/packages, the basic usage is quite similar, but there are several unique features for ComplexHeamtap package.
Highly flexible for clustering. You can define the distance method for clustering by:
You can define the clustering method by:
diana()
from cluster packagehclust
or dendrogram
object.NA
is allowed for clustering and heatmap visualization.
Dendrogram and dimension names can be put on any side of the heatmap.
Rows on the heatmap can be split by cutree
, by kmeans
or by a data frame which contains
different levels that split the heatmap.
The heatmap body itself can be completely self-defined.
This vignette introduces how to concatenate a list of heatmaps and how adjustment is applied to keep the correspondence of the heatmaps.
This vignette introduces the concept of the heatmap annotation and demonstrate how to make simple annotations as well as complex annotations. Also, the vignette explains the difference between column annotations and row annotations.
Heatmap and Annotation Legends
This vignette introduces how to configurate the heatmap legend and annotation legend, also how to add self-defined legends.
This vignette introduces methods to add more self-defined graphics to the heatmaps after the heatmaps are generated.
How to select a region in the heatmap to retrieve the sub-matrix.
How to make an oncoPrint.
More simulated and real-world examples are shown in this vignette.