Nothing
library(RCAS)
context("built-in data: gff, queryRegions")
data(gff)
test_that("gff is a GRanges object containing test data of dimensions", {
expect_is(object = gff, 'GRanges')
expect_equal(length(gff), 238010)
expect_equal(ncol(GenomicRanges::mcols(gff)), 16)
})
data(queryRegions)
test_that("queryRegions is a GRanges object from a HITS-CLIP dataset", {
expect_is(object = queryRegions, 'GRanges')
expect_equal(length(queryRegions), 10000)
expect_equal(round(mean(GenomicRanges::score(queryRegions))), 45)
})
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.