View source: R/plot_ChIPseeker_annotation.R
plot_ChIPseeker_annotation | R Documentation |
This function annotates peaks using ChIPseeker::annotatePeak
.
It outputs functional annotation of each peak file in a barplot.
plot_ChIPseeker_annotation(
peaklist,
txdb = NULL,
tss_distance = c(-3000, 3000),
interact = FALSE
)
peaklist |
A list of peak files as GRanges object.
Files must be listed and named using |
txdb |
A TxDb annotation object from Bioconductor. |
tss_distance |
A vector specifying the distance upstream and downstream
around transcription start sites (TSS).
The default value is |
interact |
Default TRUE. By default, plots are interactive. If set FALSE, all plots in the report will be static. |
ggplot barplot
### Load Data ###
data("CnT_H3K27ac") # example peakfile GRanges object
data("CnR_H3K27ac") # example peakfile GRanges object
peaklist <- list("CnT"=CnT_H3K27ac, "CnR"=CnR_H3K27ac)
my_plot <- plot_ChIPseeker_annotation(peaklist = peaklist,
tss_distance = c(-50,50))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.