Description Usage Arguments Value Examples
View source: R/score_wrapper.R
This function computes the per-position and per-strand average score profiles across a set of DNA sequences. It can be used to reveal positional constraints of TFBSs.
1 | scoreProfile(seqs, pfm, bg)
|
seqs |
A DNAStringSet or DNAString object |
pfm |
An R matrix that represents a position frequency matrix |
bg |
A Background object |
List containing
Vector of per-position average forward strand scores
Vector of per-position average reverse strand scores
1 2 3 4 5 6 7 8 9 10 11 12 13 | # Load sequences
seqfile = system.file("extdata", "seq.fasta", package = "motifcounter")
seqs = Biostrings::readDNAStringSet(seqfile)
# Load background
bg = readBackground(seqs, 1)
# Load motif
motiffile = system.file("extdata", "x31.tab", package = "motifcounter")
motif = t(as.matrix(read.table(motiffile)))
# Compute the score profile
scoreProfile(seqs, motif, bg)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.