tss_plot | R Documentation |
This function generates a plot of read count frequency around TSS.
tss_plot(
peaklist,
txdb = NULL,
tss_distance = c(-3000, 3000),
conf = 0.95,
resample = 500,
interact = FALSE,
workers = check_workers()
)
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 |
conf |
Confidence interval threshold estimated by bootstrapping
( |
resample |
Number of bootstrapped iterations to run. Argument passed to plotAvgProf. |
interact |
Default TRUE. By default, plots are interactive. If set FALSE, all plots in the report will be static. |
workers |
Number of cores to parallelise bootstrapping across. Argument passed to plotAvgProf. |
A named list of profile plots.
### Load Data ###
data("CnT_H3K27ac") # example peaklist GRanges object
data("CnR_H3K27ac") # example peaklist GRanges object
### Create Named Peaklist ###
peaklist <- list("CnT"=CnT_H3K27ac, "CnR"=CnR_H3K27ac)
my_plot <- tss_plot(peaklist = peaklist,
tss_distance=c(-50,50),
workers = 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.