# Input
liana_path <- system.file(package = "liana")
seurat_object <-
readRDS(file.path(liana_path , "testdata", "input", "testdata.rds"))
# Test
test_that("Test SingleCellSignalR", {
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", "sca_res.RDS"))
res1 <- call_sca(sce = seurat_object,
op_resource = NULL,
assay = 'RNA',
.format = TRUE,
s.score = 0,
logFC = log2(1.5)
)
expect_equal(exp1, res1)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.