Nothing
test_that("processEigenstart errors", {
# load files
indfile <- system.file("extdata", "example.ind.txt", package = "BREADR")
genofile <- system.file("extdata", "example.geno.txt", package = "BREADR")
snpfile <- system.file("extdata", "example.snp.txt", package = "BREADR")
# check input
expect_error(
processEigenstrat(indfile = "no-file.txt")
)
expect_error(
processEigenstrat(indfile = indfile, snpfile = "no-file.txt")
)
expect_error(
processEigenstrat(indfile = indfile,
snpfile = snpfile,
genofile = "no-file.txt")
)
expect_error(
processEigenstrat(indfile = indfile,
snpfile = snpfile,
genofile = genofile,
filter_length = -1)
)
expect_error(
processEigenstrat(indfile = indfile,
snpfile = snpfile,
genofile = genofile,
filter_deam = "NO")
)
})
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.