context("Report Integration")
library(ORFik)
# Make test data
df <- ORFik.template.experiment()
# Count tables
test_that("count tables created as intended", {
# Summairzed Experiment load
SE <- makeSummarizedExperimentFromBam(df, region = "mrna")
expect_gt(assay(SE)[1,3], 0)
collapsed <- scoreSummarizedExperiment(SE, score = "count", collapse = TRUE)
expect_gt(assay(collapsed)[1,2], 0)
expect_warning(collapsed <- scoreSummarizedExperiment(SE, score = "count",
collapse = "all"))
expect_gt(assay(collapsed)[3,1], 0)
})
test_that("count tables loaded as intended", {
# Summairzed Experiment load
#countTable_regions(df, out.dir = "~/Desktop/ORFik/extdata/Homo_sapiens_sample/QC_STATS/")
table <- countTable(df, "mrna")
expect_equal(table[1,3], data.table("CAGE_WT_r1" = 860))
table <- countTable(df[2:3,], "mrna")
expect_equal(colnames(table), c("CAGE_Mutant_r2", "CAGE_WT_r1"))
})
test_that("transcriptWindow plots correctly", {
loadRegions(df)
expect(exists("leaders", mode = "S4"), TRUE)
expect(exists("cds", mode = "S4"), TRUE)
expect(exists("trailers", mode = "S4"), TRUE)
expect_warning(transcriptWindow(leaders, get("cds", mode = "S4"), trailers, df[3,],
BPPARAM = BiocParallel::SerialParam()))
})
test_that("QCreport work as intended", {
QCreport(df[9,], out.dir = tempdir(), BPPARAM = BiocParallel::SerialParam())
expect(file.exists(file.path(tempdir(), "QC_STATS", "STATS.csv")), TRUE)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.