View source: R/importFimoBindingSites.R
importFimoBindingSites | R Documentation |
Prepare binding sites by given fimo gff files
importFimoBindingSites(
fimoGFFfiles,
maximalBindingWidth = 40L,
mergeBindingSitesByPercentage = 0.8,
ignore.strand = TRUE,
...
)
fimoGFFfiles |
Filenames of gff files of fimo output. |
maximalBindingWidth |
A numeric vector(length=1). Maximal binding site width. Default is 40. |
mergeBindingSitesByPercentage |
A numeric vector (length=1). The percentage of overlapping region of binding sites to merge as one binding site. |
ignore.strand |
When set to TRUE, the strand information is ignored in the calculations. |
... |
Parameter to be passed to import.gff |
A GenomicRanges
with
all the positions of matches.
Jianhong Ou
extdata <- system.file('extdata', package='ATACseqTFEA')
fimoGFFfiles <- dir(extdata, 'fimo.*.gff', full.names=TRUE)
mts <- importFimoBindingSites(fimoGFFfiles)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.