context("get_bkg()")
library(Biostrings)
test_that("get_bkg() == oligonucleotideFrequency()", {
seqs.DNA <- create_sequences()
bkg.DNA <- get_bkg(seqs.DNA, k = 3)[["count"]]
bkg.DNA2 <- oligonucleotideFrequency(seqs.DNA, 3, 1, as.prob = FALSE)
bkg.DNA2 <- unname(colSums(bkg.DNA2))
expect_equal(bkg.DNA, bkg.DNA2)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.