R/motif_count_matrix.R
motif_count_matrix.Rd
Detect all matches of a given motif (typically a short string) in a (typically long sequence) reference sequence or set of reference sequences. For each sequence and each motif a count matrix is generated and returned.
motif_count_matrix(file, motifs, max.mismatch = 0, min.mismatch = 0, ...)
a file path to the fasta
file storing the sequences of interest.
a character string specifying the sequence motifs that shall be screened and counted.
the maximum number of mismatching letters allowed (see matchPattern
for details).
the minimum number of mismatching letters allowed (see vcountPattern
for details).
additional arguments passed to matchPattern
.