Nothing
# detach(package:vcfR, unload=T)
#
library(testthat)
library(vcfR)
context("heatmap.bp function")
#data("vcfR_example")
test_that("heatmap.bp works",{
tmp <- matrix( rnorm(100,1,10), ncol=10, nrow=10)
test <- heatmap.bp(tmp)
expect_equal(test, NULL)
})
test_that("heatmap.bp works, labels with small number of colors",{
tmp <- matrix( rnorm(100,1,10), ncol=10, nrow=10)
test <- heatmap.bp(tmp, col.ramp = viridisLite::viridis(n = 8, alpha = 1))
expect_equal(test, NULL)
})
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.