Nothing
context("Params")
test_that("setParam sets correctly", {
params <- newSimpleParams()
params <- setParam(params, "nGenes", 100)
expect_equal(getParam(params, "nGenes"), 100)
params <- setParam(params, "mean.rate", 0.5)
expect_equal(getParam(params, "mean.rate"), 0.5)
})
test_that("getParam gets correctly", {
params <- newSimpleParams()
expect_equal(getParam(params, "nGenes"), 10000)
expect_equal(getParam(params, "mean.rate"), 0.3)
})
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.