# Input
liana_path <- system.file(package = "liana")
seurat_object <-
readRDS(file.path(liana_path , "testdata", "input", "testdata.rds"))
# Test
test_that("Test NATMI", {
if(!exists("test_external")){
skip("Not testing externals")
} else{
if(!test_external) skip("Not testing externals")
}
skip_on_ci()
exp1 <- readRDS(file.path(liana_path, "testdata",
"output", "natmi_res.RDS"))
res1 <- call_natmi(op_resource = select_resource("OmniPath")[[1]],
sce = seurat_object,
expr_file = "test_em.csv",
meta_file = "test_metadata.csv",
output_dir = "NATMI_test",
assay = "RNA",
num_cor = 4,
.format = TRUE,
.seed = 1004,
.natmi_path = NULL,
.overwrite_data = FALSE)
expect_equal(exp1, res1)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.