Nothing
context("enrich_motifs()")
test_that("motif enrichment works", {
m <- create_motif("TTTAAA", pseudocount = 1, nsites = 100)
s1 <- Biostrings::DNAStringSet(rep("TTTAAA", 100))
s2 <- Biostrings::DNAStringSet(c(rep("CCCGGG", 100), "TTTAAA"))
r <- suppressWarnings(
enrich_motifs(m, s1, s2, verbose = 0, threshold = 0.8,
threshold.type = "logodds", max.p = 0.1, max.q = 0.1,
max.e = 0.1)
)
r2 <- suppressWarnings(
enrich_motifs(m, s1, s2, verbose = 0,
return.scan.results = TRUE)
)
expect_true(is(r, "DataFrame"))
expect_equal(nrow(r), 1)
expect_true(is(r2, "DataFrame"))
expect_equal(names(S4Vectors::metadata(r2)),
c("scan.target", "scan.bkg", "args"))
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.