overlap_footprints_peaks | R Documentation |
Because the running time of this function is too long, it's highly recommanded to use bedtools to implement this function
overlap_footprints_peaks(footprints, peak_bed)
footprints |
footprints file, generated by combine_footprints() |
peak_bed |
bed format of peak, first column should be 'chr', second column should be 'start', third column should be 'end' |
return data.frame contain footprints that overlap peaks
load(system.file("extdata", "test_peak.rda", package = "IReNA"))
load(system.file("extdata", "combined.rda", package = "IReNA"))
peak_bed <- get_bed(test_peak)
overlapped <- overlap_footprints_peaks(combined, peak_bed)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.