Nothing
library("getDEE2")
library("SummarizedExperiment")
library("testthat")
# E. coli
x<-getDEE2("ecoli",c("SRR1613487","SRR1613488"),legacy=TRUE)
test_that("eco works", {
expect_equal( sum(x$GeneCounts) , 20624168 )
})
# A. thaliana bundle
x <- getDEE2_bundle("athaliana", "SRP058781",col="SRP_accession")
test_that("ath bundles work", {
expect_equal( nrow(assays(x)[[1]]) , 32833 )
expect_equal( ncol(assays(x)[[1]]) , 32 )
})
# check absent present
dat <- query_bundles("drerio",c("SRP131781","SRP055996","SRXXX"),col="SRP_accession")
test_that("dre bundle query", {
expect_equal( length(dat$absent) , 1 )
expect_equal( length(dat$present) , 2 )
})
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.