View source: R/process_motif_sites.R
fimo_motif_matches | R Documentation |
FIMO
to scan for motif matchesRuns FIMO
to scan for motif matches along the genome.
fimo_motif_matches(
motif_file,
sequence_file,
outname = "fimo.txt",
outdir = dirname(outname),
thresh_pValue = 1e-05,
background = c("default", "motif", "uniform", "file"),
background_file,
skip_matched_sequence = TRUE,
max_strand = FALSE,
max_stored_scores = 1e+05,
options = "",
verbosity = 2,
fimo_path = "fimo"
)
motif_file |
Motif file in MEME format. |
sequence_file |
Genome sequence file in FASTA format. |
outname |
Output file name. |
outdir |
Output directory. |
thresh_pValue |
|
background |
Option for background model:
‘default’: uses |
background_file |
Path to a file in Markov Background Model Format. |
skip_matched_sequence |
|
max_strand |
|
max_stored_scores |
The maximum number of stored matches. |
options |
Other options for |
verbosity |
A number of the verbosity level (from 1 to 5). If set to 1 (quiet) then it will only output error messages, in contrast, the other extreme 5 (dump) outputs lots of mostly useless information. |
fimo_path |
Path to |
## Not run:
fimo_motif_matches(motif_file='motifID.meme',
sequence_file='hg38.fa',
thresh_pValue=1e-5,
outname='motifID_1e-5.fimo.txt',
fimo_path='fimo')
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.