-
Notifications
You must be signed in to change notification settings - Fork 231
/
Copy pathanno_mark.Rd
53 lines (50 loc) · 2.29 KB
/
anno_mark.Rd
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
\name{anno_mark}
\alias{anno_mark}
\title{
Link annotation with labels
}
\description{
Link annotation with labels
}
\usage{
anno_mark(at, labels, which = c("column", "row"),
side = ifelse(which == "column", "top", "right"),
lines_gp = gpar(), labels_gp = gpar(),
labels_rot = ifelse(which == "column", 90, 0), padding = unit(1, "mm"),
link_width = unit(5, "mm"), link_height = link_width,
link_gp = lines_gp,
extend = unit(0, "mm"))
}
\arguments{
\item{at}{Numeric index from the original matrix.}
\item{labels}{Corresponding labels.}
\item{which}{Whether it is a column annotation or a row annotation?}
\item{side}{Side of the labels. If it is a column annotation, valid values are "top" and "bottom"; If it is a row annotation, valid values are "left" and "right".}
\item{lines_gp}{Please use \code{link_gp} instead.}
\item{link_gp}{Graphic settings for the segments.}
\item{labels_gp}{Graphic settings for the labels.}
\item{labels_rot}{Rotations of labels, scalar.}
\item{padding}{Padding between neighbouring labels in the plot.}
\item{link_width}{Width of the segments.}
\item{link_height}{Similar as \code{link_width}, used for column annotation.}
\item{extend}{By default, the region for the labels has the same width (if it is a column annotation) or same height (if it is a row annotation) as the heatmap. The size can be extended by this options. The value can be a proportion number or a \code{\link[grid]{unit}} object. The length can be either one or two.}
}
\details{
Sometimes there are many rows or columns in the heatmap and we want to mark some of the rows.
This annotation function is used to mark these rows and connect labels and corresponding rows
with links.
}
\value{
An annotation function which can be used in \code{\link{HeatmapAnnotation}}.
}
\seealso{
\url{https://jokergoo.github.io/ComplexHeatmap-reference/book/heatmap-annotations.html#mark-annotation}
}
\examples{
anno = anno_mark(at = c(1:4, 20, 60, 97:100), labels = month.name[1:10], which = "row")
draw(anno, index = 1:100, test = "anno_mark")
m = matrix(1:1000, byrow = TRUE, nr = 100)
anno = anno_mark(at = c(1:4, 20, 60, 97:100), labels = month.name[1:10], which = "row")
Heatmap(m, cluster_rows = FALSE, cluster_columns = FALSE) + rowAnnotation(mark = anno)
Heatmap(m) + rowAnnotation(mark = anno)
}