Description Usage Arguments Details Value Author(s) See Also Examples
Scan for motif occurrences using the prepared PWMs and obtain the promising candidate motifs in these regions.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | enrichFindMotifsInRegions(
  prevStep,
  inputRegionBed = NULL,
  outputRegionMotifBed = NULL,
  motifRc = c("integrate", "jaspar", "pwmfile"),
  inputPwmFile = getRefFiles("motifpwm"),
  genome = getGenome(),
  threads = getThreads(),
  ...
)
## S4 method for signature 'Step'
enrichFindMotifsInRegions(
  prevStep,
  inputRegionBed = NULL,
  outputRegionMotifBed = NULL,
  motifRc = c("integrate", "jaspar", "pwmfile"),
  inputPwmFile = getRefFiles("motifpwm"),
  genome = getGenome(),
  threads = getThreads(),
  ...
)
findMotifsInRegions(
  inputRegionBed,
  outputRegionMotifBed = NULL,
  motifRc = c("integrate", "jaspar", "pwmfile"),
  inputPwmFile = getRefFiles("motifpwm"),
  genome = getGenome(),
  threads = getThreads(),
  ...
)
 | 
| prevStep | 
 | 
| inputRegionBed | 
 | 
| outputRegionMotifBed | 
 | 
| motifRc | 
 | 
| inputPwmFile | 
 | 
| genome | 
 | 
| threads | 
 | 
| ... | Additional arguments, currently unused. | 
Scan for motif occurrences using the prepared PWMs and obtain the promising candidate motifs in these regions.
An invisible EnrichStep-class object
(Step-class based) scalar for downstream analysis.
Zheng Wei
genBackground
findMotifsInRegions
tfsEnrichInRegions
| 1 2 3 4 5 | setGenome("testgenome") #Use "hg19","hg38",etc. for your application
foregroundBedPath <- system.file(package = "enrichTF",
    "extdata","testregion.bed")
gen <- genBackground(inputForegroundBed = foregroundBedPath)
findMotif <- enrichFindMotifsInRegions(gen,motifRc="integrate")
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.