scoreStrand: Score strand

Description Usage Arguments Details Value Examples

View source: R/score_wrapper.R

Description

This function computes the per-position score in a given DNA strand.

Usage

1
scoreStrand(seq, pfm, bg)

Arguments

seq

A DNAString object

pfm

An R matrix that represents a position frequency matrix

bg

A Background object

Details

The function returns the per-position scores for the given strand. If the sequence is too short, it contains an empty vector.

Value

scores

Vector of scores on the given strand

Examples

 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 per-position and per-strand scores
motifcounter:::scoreStrand(seqs[[1]], motif, bg)

motifcounter documentation built on Nov. 8, 2020, 5:44 p.m.