library(decoupleR)
# Directories -------------------------------------------------------------
# Inputs
input_dir <- system.file("testdata", "inputs", package = "decoupleR")
# Outputs
expected_dir <- system.file("testdata", "outputs", "ulm", package = "decoupleR")
# Data to run -------------------------------------------------------------
mat <- file.path(input_dir, "mat.rds") %>%
readRDS()
net <- file.path(input_dir, "net.rds") %>%
readRDS()
# Test for run_ulm function ---------------------------------------------
test_that("test run_ulm", {
res_1 <- run_ulm(mat, net, minsize=0)
exp_1 <- file.path(expected_dir, "output-ulm.rds") %>%
readRDS()
expect_equal(res_1, exp_1, tolerance=0.01)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.