Nothing
# library(testthat)
hmp50 <- as_rbiom(system.file(package = 'rbiom', 'extdata', 'hmp50.bz2'))
rare50 <- rarefy(hmp50)
min50 <- as_rbiom(list(counts = hmp50$counts))
hmp5 <- hmp50[1:5]
# Make sure sample names can handle any characters, including unicode.
hmp5$samples <- c("~4L< vl%", "\U1F60A]<?^@D'", "x\\T@;`\U26F9/", '{1"[~/q;$8>', "k_s \U2B50[|L:")
rare5 <- rarefy(hmp5)
min5 <- as_rbiom(list(counts = hmp5$counts))
expect_equal_rbiom <- function (a, b) {
expect_identical(class(a), c('rbiom', 'R6'))
expect_identical(class(b), c('rbiom', 'R6'))
expect_identical(a$id, b$id)
expect_identical(a$comment, b$comment)
expect_identical(a$sequences, b$sequences)
expect_identical(a$tree$tip.label, b$tree$tip.label)
expect_identical(lapply(a$metadata, as.character), lapply(b$metadata, as.character))
expect_identical(lapply(a$taxonomy, as.character), lapply(b$taxonomy, as.character))
expect_equal(a$depth, b$depth)
expect_equal(as.matrix(a$counts), as.matrix(b$counts))
expect_equal(a$tree$edge, b$tree$edge)
expect_equal(a$tree$edge.length, b$tree$edge.length)
}
expect_identical_json <- function (a, b) {
expect_identical(as.character(jsonlite::toJSON(a)), b)
}
# Convert all factors to character before comparing.
expect_equal_tibble <- function (a, b) {
expect_s3_class(a, 'tbl_df')
expect_s3_class(b, 'tbl_df')
a <- mutate(a, across(where(is.factor), as.character))
b <- mutate(b, across(where(is.factor), as.character))
expect_equal(a, b)
}
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.