View source: R/functions_signal_operations.R
centerFixedSizeGRanges | R Documentation |
centerFixedSizeGRanges
First calculates the central coordinate of each
GRange in grs
and extends in both direction by half of
fixed_size
centerFixedSizeGRanges(grs, fixed_size = 2000)
grs |
Set of GRanges with incosistent and/or incorrect size |
fixed_size |
The final width of each GRange returned. |
Set of GRanges after resizing all input GRanges, either shortened
or lengthened as required to match fixed_size
library(GenomicRanges)
grs = GRanges("chr1", IRanges(1:10+100, 1:10*3+100))
centered_grs = centerFixedSizeGRanges(grs, 10)
width(centered_grs)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.