context("Convert by AnnotationDb")
library(Biobase)
library(data.table)
library(phantasusLite)
Sys.setenv(R_USER_CONFIG_DIR = system.file("/testdata/config", package = "phantasus"))
test_that("AnnotationbyDb works with delete version", {
test_file <- system.file("testdata/counts_versioned_ids.gct", package="phantasus")
if (test_file == ""){
stop("test counts file doesn't exists")
}
es <- readGct(test_file)
dbName <-"sample_mouse_db.sqlite"
columnName <- "id"
columnType <- "ENSEMBL"
keyType <- "SYMBOL"
otherOptions <- list(deleteDotVersion = FALSE)
expect_error(convertByAnnotationDB(es, dbName, columnName, columnType, keyType, otherOptions))
otherOptions <- list(deleteDotVersion = TRUE)
symbols <- jsonlite::fromJSON(convertByAnnotationDB(es, dbName, columnName, columnType, keyType, otherOptions))
expect_gt(sum(!is.na(symbols)),0)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.