Nothing
context("Testing OUTRIDER main function")
test_that("test main OUTRIDER function", {
maxIter <- 6
ods <- makeExampleOutriderDataSet(30, 30)
ods <- estimateSizeFactors(ods)
ods <- controlForConfounders(ods, iteration=maxIter)
ods <- computePvalues(ods)
ods <- computeZscores(ods)
res <- results(ods, all=TRUE)
expect_is(res, "data.table")
ods2 <- OUTRIDER(ods, iteration=maxIter, implementation="autoenc")
ods3 <- OUTRIDER(ods, implementation="pca")
res2 <- results(ods2, all=TRUE)
expect_equal(ods, ods2)
expect_equal(res, res2)
expect_is(ods3, "OutriderDataSet")
expect_is(pValue(ods3), "matrix")
expect_equal(dim(pValue(ods3)), dim(pValue(ods2)))
})
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.