Description Usage Arguments Value Author(s) See Also Examples
View source: R/findEnhancers.R
Find possible enhancers by data from chromosome conformation capture techniques such as 3C, 5C or HiC.
1 2 3 4 5 6 7 8 9 | findEnhancers(
peaks,
annoData,
DNAinteractiveData,
bindingType = c("nearestBiDirectionalPromoters", "startSite", "endSite"),
bindingRegion = c(-5000, 5000),
ignore.peak.strand = TRUE,
...
)
|
peaks |
peak list, GRanges object |
annoData |
annotation data, GRanges object |
DNAinteractiveData |
DNA interaction data, GRanges object with interaction blocks informations. |
bindingType |
Specifying the criteria to associate peaks with annotation. Here is how to use it together with the parameter bindingRegion. The annotation will be shift to a new position depend on the DNA interaction region.
|
bindingRegion |
Annotation range used together with bindingType, which is a vector with two integer values, default to c (-5000, 5000). The first one must be no bigger than 0. And the sec ond one must be no less than 1. For details, see bindingType. |
ignore.peak.strand |
ignore the peaks strand or not. |
... |
Not used. |
Output is a GRanges object of the annotated peaks.
Jianhong Ou
See Also as annotatePeakInBatch
1 2 3 4 5 6 7 8 | bed <- system.file("extdata",
"wgEncodeUmassDekker5CGm12878PkV2.bed.gz",
package="ChIPpeakAnno")
DNAinteractiveData <- toGRanges(gzfile(bed))
library(EnsDb.Hsapiens.v75)
annoData <- toGRanges(EnsDb.Hsapiens.v75, feature="gene")
data("myPeakList")
findEnhancers(myPeakList[500:1000], annoData, DNAinteractiveData)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.