Nothing
context("tax_agg")
test_that("tax_agg returns the correct class", {
skip_on_cran()
skip_on_travis()
skip_if_not_installed("vegan")
suppressPackageStartupMessages(library("vegan"))
data(dune, package='vegan')
take <- dune[ ,1:5]
species <- c("Bellis perennis", "Empetrum nigrum", "Juncus bufonius",
"Juncus articulatus", "Aira praecox")
colnames(take) <- species
out_ncbi <- tax_agg(take, rank = 'family', db = 'ncbi', messages = FALSE)
take2 <- take
colnames(take2) <- NULL
expect_that(out_ncbi, is_a("tax_agg"))
expect_that(length(out_ncbi), equals(4))
expect_equal(class(out_ncbi), "tax_agg")
expect_is(out_ncbi$x, "data.frame")
expect_that(nrow(out_ncbi$x), equals(nrow(take)))
expect_that(nrow(out_ncbi$by), equals(length(unique(colnames(take)))))
expect_that(out_ncbi$n_pre, equals(length(unique(colnames(take)))))
expect_error(tax_agg(as.matrix(take2), rank = 'family', db = 'ncbi',
messages = FALSE))
})
## Moving this test to the long running tests branch since it takes a long time
# take2 <- take
# colnames(take2)[4] <- 'xxxxx'
# out_itis <- tax_agg(take2, rank = 'family', db = 'itis', verbose = FALSE)
#
#
# test_that("Handles NAs", {
# expect_true(is.na(out_itis$by$agg[4]))
# expect_that(ncol(out_itis$x), equals(ncol(take2)))
# })
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.