Description Usage Arguments Value Examples
View source: R/extractBoundaries.R
Function to extract boundaries from domain data.
1 | extractBoundaries(domains.mat, filter = FALSE, CHR, resolution)
|
domains.mat |
either a |
filter |
logical, indicating whether or not domains exceeding 2mb in width or smaller than 2*(the specified resolution) should be filtered out (default is FALSE, all boundaries will be used). Required. |
CHR |
character vector, specifying which chromosome(s) to extract domain boundaries on (ex: "chr22", case ignored). Unused seqnames are dropped. Required. |
resolution |
numeric, the Hi-C data resolution that domains were called at. Ignored if filter is FALSE, required otherwise. |
A GRanges
object
1 2 3 4 5 6 7 | #Read in domain data from ARROWHEAD at 5 kb for GM12878
data("arrowhead_gm12878_5kb")
#Extract unique boundaries for CHRs 1-8 and 10-22
bounds.GR <- extractBoundaries(domains.mat=arrowhead_gm12878_5kb,
filter=FALSE,
CHR=paste0("CHR",c(1:8,10:22)),
resolution=5000)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.