context("Report meta-analysis")
test_that("Report function quan", {
skip_on_cran()
testthat::local_edition(3)
#set.seed(123)
column_id = c("Compound Name", "P-value", "Fold-change", "N total", "References")
input_file <- system.file("extdata", "dataset2.csv", package = "amanida")
expect_silent(amanida_report(input_file, separator = ";", column_id,
analysis_type = "quan", pvalue_cutoff = 0.05,
fc_cutoff = 4, votecount_lim = 2, comp_inf = F))
})
test_that("Report function qual", {
#set.seed(123)
skip_on_cran()
testthat::local_edition(3)
column_id = c("Compound Name", "Behaviour", "References")
input_file <- system.file("extdata", "dataset2.csv", package = "amanida")
expect_silent(amanida_report(input_file, separator = ";",
column_id, analysis_type = "qual",
votecount_lim = 2, comp_inf = F))
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.