plotCoverageFromEnsembldb | R Documentation |
A wrapper around the plotCoverage function. See the documentation for (plotCoverage
)
for more information.
plotCoverageFromEnsembldb(ensembldb, gene_names, transcript_ids = NULL, ...)
ensembldb |
ensembldb object. |
gene_names |
List of gene names to be plotted. |
transcript_ids |
Optional list of transcript ids to be plotted. |
... |
Additional parameters to be passed to plotCoverage. |
ggplot2 object
require("EnsDb.Hsapiens.v86") require("dplyr") require("GenomicRanges") sample_data = dplyr::data_frame(sample_id = c("aipt_A", "aipt_C", "bima_A", "bima_C"), condition = factor(c("Naive", "LPS", "Naive", "LPS"), levels = c("Naive", "LPS")), scaling_factor = 1) %>% dplyr::mutate(bigWig = system.file("extdata", paste0(sample_id, ".str2.bw"), package = "wiggleplotr")) track_data = dplyr::mutate(sample_data, track_id = condition, colour_group = condition) ## Not run: plotCoverageFromEnsembldb(EnsDb.Hsapiens.v86, "NCOA7", transcript_ids = c("ENST00000438495", "ENST00000392477"), track_data, heights = c(2,1), fill_palette = getGenotypePalette()) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.