Description Usage Arguments Value Author(s) Examples
View source: R/binOverFeature.R
Aggregate peaks over bins from the feature sites.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | binOverFeature(
...,
annotationData = GRanges(),
select = c("all", "nearest"),
radius = 5000L,
nbins = 50L,
minGeneLen = 1L,
aroundGene = FALSE,
mbins = nbins,
featureSite = c("FeatureStart", "FeatureEnd", "bothEnd"),
PeakLocForDistance = c("all", "end", "start", "middle"),
FUN = sum,
errFun = sd,
xlab,
ylab,
main
)
|
... |
Objects of GRanges to be analyzed |
annotationData |
An object of GRanges or annoGR for annotation |
select |
Logical: annotate the peaks to all features or the nearest one |
radius |
The radius of the longest distance to feature site |
nbins |
The number of bins |
minGeneLen |
The minimal gene length |
aroundGene |
Logical: count peaks around features or a given site of the features. Default = FALSE |
mbins |
if aroundGene set as TRUE, the number of bins intra-feature. The value will be normalized by value * (radius/genelen) * (mbins/nbins) |
featureSite |
which site of features should be used for distance calculation |
PeakLocForDistance |
which site of peaks should be used for distance calculation |
FUN |
the function to be used for score calculation |
errFun |
the function to be used for errorbar calculation or values for the errorbar. |
xlab |
titles for each x axis |
ylab |
titles for each y axis |
main |
overall titles for each plot |
A data.frame with bin values.
Jianhong Ou
1 2 3 4 5 | bed <- system.file("extdata", "MACS_output.bed", package="ChIPpeakAnno")
gr1 <- toGRanges(bed, format="BED", header=FALSE)
data(TSS.human.GRCh37)
binOverFeature(gr1, annotationData=TSS.human.GRCh37,
radius=5000, nbins=10, FUN=length, errFun=0)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.