[This article was first published on R on Guangchuang Yu, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
To answer the issue, I extend the covplot
function to support viewing coverage of a list of GRanges
objects or bed
files.
library(ChIPseeker) files <- getSampleFiles() peak=GenomicRanges::GRangesList(CBX6=readPeakFile(files[[4]]), CBX7=readPeakFile(files[[5]])) p <- covplot(peak) print(p)
By default, The coverage plot are merged together with different color. Users can separate them to different panels using facet_grid
.
library(ggplot2) col <- c(CBX6='red', CBX7='green') p + facet_grid(chr ~ .id) + scale_color_manual(values=col) + scale_fill_manual(values=col)
To leave a comment for the author, please follow the link and comment on their blog: R on Guangchuang Yu.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.