anno_enriched.Rd
Annotation Function to Show the Enrichment
anno_enriched(gp = gpar(col = "red"), pos_line = NULL, pos_line_gp = NULL, ylim = NULL, value = c("mean", "sum", "abs_mean", "abs_sum"), yaxis = TRUE, axis = yaxis, axis_param = list(side = "right"), show_error = FALSE, height = unit(2, "cm"), ...)
gp | Graphic parameters. There are two non-standard parameters: |
---|---|
pos_line | Whether draw vertical lines which represent positions of |
pos_line_gp | Graphic parameters for the position lines. |
ylim | Ranges on y-axis. By default it is inferred from the data. |
value | The method to summarize signals from columns of the normalized matrix. |
yaxis | Deprecated, use |
axis | Whether show axis? |
axis_param | parameters for controlling axis. See |
show_error | 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 | 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)