Nothing
context("Test fqcVersion")
packageDir <- system.file("extdata", package = "ngsReports")
fl <- list.files(packageDir, pattern = "fastqc.zip", full.names = TRUE)[1:2]
# Load the FASTQC data as a FastqcDataList object
fdl <- FastqcDataList(fl)
test_that("fqcVersion gives correct output",{
expect_equal(fqcVersion(fdl[[1]]), "0.11.2")
expect_equal(fqcVersion(fdl)$version, rep("0.11.2", 2))
})
test_that("fqcVersion handles unimplements classes",{
expect_message(
fqcVersion(c()), "Method not implemented for objects of class NULL"
)
})
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.