binAnchor.Rd
Define helper function for binning an anchor
binAnchor(a, p, res)
GRanges object
Position within anchors to resize the bin. Can be a character or integer vector of length 1 or length(a) designating the position for each element in bedpe. Character options are "start", "end" and "center". Integers are referenced from the start position for '+' and '*' strands and from the end position for the '-' strand.
Integer - resolution in which to bin the anchor.
GRanges object that has been shifted and binned into res by p.
library(GenomicRanges)
#> Loading required package: stats4
#> Loading required package: BiocGenerics
#> Loading required package: parallel
#>
#> Attaching package: ‘BiocGenerics’
#> The following objects are masked from ‘package:parallel’:
#>
#> clusterApply, clusterApplyLB, clusterCall, clusterEvalQ,
#> clusterExport, clusterMap, parApply, parCapply, parLapply,
#> parLapplyLB, parRapply, parSapply, parSapplyLB
#> The following objects are masked from ‘package:stats’:
#>
#> IQR, mad, sd, var, xtabs
#> The following objects are masked from ‘package:base’:
#>
#> Filter, Find, Map, Position, Reduce, anyDuplicated, append,
#> as.data.frame, basename, cbind, colnames, dirname, do.call,
#> duplicated, eval, evalq, get, grep, grepl, intersect, is.unsorted,
#> lapply, mapply, match, mget, order, paste, pmax, pmax.int, pmin,
#> pmin.int, rank, rbind, rownames, sapply, setdiff, sort, table,
#> tapply, union, unique, unsplit, which.max, which.min
#> Loading required package: S4Vectors
#>
#> Attaching package: ‘S4Vectors’
#> The following objects are masked from ‘package:base’:
#>
#> I, expand.grid, unname
#> Loading required package: IRanges
#> Loading required package: GenomeInfoDb
## Create example GRanges
gr1 <- GRanges(seqnames = "chr1",
ranges = IRanges(start = rep(5000,3), end = rep(6000,3)),
strand = c('+', '-', '*'))
gr2 <- gr1 |> promoters(upstream = 2000, downstream = 200)
## Binning the results
binAnchor(gr1, 'start', 1000)
#> Error in binAnchor(gr1, "start", 1000): could not find function "binAnchor"
binAnchor(gr1, 'end', 1000)
#> Error in binAnchor(gr1, "end", 1000): could not find function "binAnchor"
binAnchor(gr1, 'center', 1000)
#> Error in binAnchor(gr1, "center", 1000): could not find function "binAnchor"
## Bin after shifting back to TSS
binAnchor(gr2, 2000, 1000)
#> Error in binAnchor(gr2, 2000, 1000): could not find function "binAnchor"