Nothing
context("setPriorVcf")
test_that("Example data matches expected values", {
vcf.file <- system.file("extdata", "example_vcf.vcf.gz", package = "PureCN")
vcf <- readVcf(vcf.file, "hg19")
vcf <- setPriorVcf(vcf)
vcf.priorsomatic <- info(vcf)$PR
expected <- c(2322, 9)
names(expected) <- c(1e-04, 0.999)
expect_equal(sort(table(vcf.priorsomatic))[2], expected[1])
expect_equal(sort(table(vcf.priorsomatic))[1], expected[2])
})
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.