Nothing
context("read_*()")
test_that("read functions work ok", {
homer <- read_homer(system.file("extdata", "homer.txt",
package="universalmotif"))
cisbp <- read_cisbp(system.file("extdata", "cisbp.txt",
package="universalmotif"))
jaspar <- read_jaspar(system.file("extdata", "jaspar.txt",
package="universalmotif"))
dreme <- read_meme(system.file("extdata", "dreme.txt",
package="universalmotif"))
m <- system.file("extdata", "meme_full.txt", package = "universalmotif")
meme <- read_meme(file = m)
transfac <- read_transfac(system.file("extdata", "transfac.txt",
package="universalmotif"))
uniprobe <- read_uniprobe(system.file("extdata", "uniprobe_full.txt",
package="universalmotif"))
universalmotif <- read_motifs(system.file("extdata",
"universalmotif.txt",
package="universalmotif"))
hocomoco <- read_matrix(system.file("extdata", "hocomoco.txt",
package="universalmotif"),
headers = ">", alphabet = "DNA", positions = "rows")
expect_equal(length(homer), 5)
expect_equal(length(cisbp), 2)
expect_equal(length(jaspar), 5)
expect_equal(length(dreme), 3)
expect_equal(length(meme), 3)
expect_equal(length(transfac), 5)
expect_equal(length(uniprobe), 3)
expect_s4_class(universalmotif, "universalmotif")
expect_s4_class(hocomoco, "universalmotif")
meme2 <- read_meme(m, readsites = TRUE)
expect_true(is.list(meme2))
expect_equal(names(meme2), c("motifs", "sites"))
expect_equal(length(meme2$sites), 3)
expect_s4_class(meme2$sites[[1]], "DNAStringSet")
})
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.