Description Usage Arguments Value Examples
View source: R/count_wrapper.R
This function determines per-position motif hits in a given DNA sequence.
1 |
seq |
A DNAString object |
pfm |
An R matrix that represents a position frequency matrix |
bg |
A Background object |
threshold |
Score threshold for calling motif matches. If NULL, the threshold will determined from alpha. |
List containing
Per-position motif hits on the forward strand
Per-position motif hits on the reverse strand
1 2 3 4 5 6 7 8 9 10 11 12 13 | # Load sequences
seqfile = system.file("extdata", "seq.fasta", package = "motifcounter")
seq = Biostrings::readDNAStringSet(seqfile)
# Load background
bg = readBackground(seq, 1)
# Load motif
motiffile = system.file("extdata", "x31.tab", package = "motifcounter")
motif = t(as.matrix(read.table(motiffile)))
# Determine the motif hits
motifHits(seq[[1]], motif, bg)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.