test_that("parse_spliceai works on SpliceAI example file", {
spliceai_file <- system.file("extdata", "spliceai_output.vcf", package = "splice2neo")
df <- parse_spliceai(spliceai_file)
expect_true(nrow(df) >= 10)
})
test_that("parse_spliceai_thresh works on SpliceAI example file", {
spliceai_file <- system.file("extdata", "spliceai_thresh_output.vcf", package = "splice2neo")
df <- parse_spliceai_thresh(spliceai_file)
expect_true(nrow(df) >= 10)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.