motifAndBackgroundValid: Check valididity of PFM with background

Description Usage Arguments Value Examples

View source: R/forground_wrapper.R

Description

This function checks if the PFM x background combination is valid. The function throws an error if this is not the case.

Usage

1

Arguments

pfm

An R matrix that represents a position frequency matrix

bg

A Background object

Value

None

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", "x1.tab", package = "motifcounter")
motif = t(as.matrix(read.table(motiffile)))

# Check validity
motifcounter:::motifAndBackgroundValid(motif, bg)

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