anno_enriched.rd
Annotation Function to Show the Enrichment
Graphic parameters. There are two non-standard parameters: neg_col
and pos_col
. If these two parameters are defined, the positive signals and negatie signals are visualized separatedly. The graphic parameters can be set as vectors when the heatmap or heatmap list is split into several row clusters.
Whether draw vertical lines which represent positions of target
?
Graphic parameters for the position lines.
Ranges on y-axis. By default it is inferred from the data.
The method to summarize signals from columns of the normalized matrix.
Deprecated, use axis
instead.
Whether show axis?
parameters for controlling axis. See default_axis_param
for all possible settings and default parameters.
Whether show error regions which are one standard error to the mean value? Color of error area is same as the corresponding lines with 75 percent transparency.
Height of the annotation.
Other arguments.
This annotation functions shows mean values (or depends on the method set in value
argument) of columns in the normalized matrix
which summarises the enrichment of the signals to the targets.
If rows are splitted, the enriched lines are calculated for each row cluster and there will also be multiple lines in this annotation viewport.
It should only be placed as column annotation of the enriched heatmap.
A column annotation function which should be set to top_annotation
argument in EnrichedHeatmap
.
load(system.file("extdata", "chr21_test_data.RData", package = "EnrichedHeatmap"))
tss = promoters(genes, upstream = 0, downstream = 1)
mat1 = normalizeToMatrix(H3K4me3, tss, value_column = "coverage",
extend = 5000, mean_mode = "w0", w = 50, keep = c(0, 0.99))
EnrichedHeatmap(mat1, col = c("white", "red"), name = "H3K4me3",
top_annotation = HeatmapAnnotation(lines = anno_enriched(gp = gpar(col = 2:4))),
km = 3, row_title_rot = 0)