-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.Rmd
56 lines (40 loc) · 2.26 KB
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
title: "ComplexHeatmap Complete Reference"
author: "Zuguang Gu"
date: "last revised on `r Sys.Date()`"
site: bookdown::bookdown_site
output: bookdown::gitbook
documentclass: book
bibliography: [book.bib]
biblio-style: apalike
link-citations: yes
github-repo: jokergoo/ComplexHeatmap-reference
cover-image: complexheatmap-cover.jpg
url: 'https\://jokergoo.github.io/ComplexHeatmap-reference/book'
description: "Complex heatmaps are efficient to visualize associations between different sources of data sets and reveal potential patterns. Here the ComplexHeatmap R package provides a highly flexible way to arrange multiple heatmaps and supports various annotation graphics. This book is the complete reference to ComplexHeatmap pacakge."
---
# About {-}
This is the documentation of the
[**ComplexHeatmap**](https://github.com/jokergoo/ComplexHeatmap) package. Examples in the book
are generated under version `r installed.packages()["ComplexHeatmap", "Version"]`.
You can get a stable Bioconductor version from
http://bioconductor.org/packages/release/bioc/html/ComplexHeatmap.html, but
the most up-to-date version is always on Github and you can install it by:
```{r, eval = FALSE}
library(devtools)
install_github("jokergoo/ComplexHeatmap")
```
The [development branch on Bioconductor](http://bioconductor.org/packages/devel/bioc/html/ComplexHeatmap.html) is
basically synchronized to the Github repository.
The **ComplexHeatmap** package is inspired by the [**pheatmap**](https://CRAN.R-project.org/package=pheatmap) package. You can find many arguments in **ComplexHeatmap** have the same names as in **pheatmap**. Also you
can find [this old package](https://github.com/jokergoo/pheatmap2) that I tried to develop by modifying **pheatmap**.
**Please note, this documentation is not completely compatible with older versions (< 1.99.0, before
Oct, 2018), but the major functionality keeps the same.**
If you use **ComplexHeatmap** in your publications, I am appreciated if you can cite:
Gu, Z. (2016) Complex heatmaps reveal patterns and correlations in multidimensional genomic data.
DOI: [10.1093/bioinformatics/btw313](https://doi.org/10.1093/bioinformatics/btw313)
<img src="complexheatmap-cover.jpg" style="width:500px;border:2px solid black;" />
Session info:
```{r}
sessionInfo()
```