#' Save a \code{.cov} table to file
#' @inheritParams default_params_doc
#' @author Richèl J.C. Bilderbeek
#' @export
save_cov_table <- function(
cov_table,
cov_filename
) {
# A .cov file does not have a header
text_matrix_header <- t(as.matrix(names(cov_table)))
text_matrix_body <- as.matrix(cov_table)
text_matrix <- rbind(text_matrix_header, text_matrix_body)
text_vector <- rep(NA, nrow(text_matrix))
for (i in seq_along(text_vector)) {
text_vector[i] <- paste0(text_matrix[i, ], collapse = " ")
}
dir.create(
path = dirname(cov_filename),
showWarnings = FALSE,
recursive = TRUE
)
tryCatch(
suppressWarnings(
readr::write_lines(x = text_vector, file = cov_filename)
),
error = function(e) {
stop(
"Cannot save 'cov_table' to path '", cov_filename, "'. \n",
"Maybe no permission to do so? \n",
"Note that 'save_cov_table' will (try to) create ",
"the (sub)folders needed. \n",
"Error message: ", e$message
)
}
)
testthat::expect_true(file.exists(cov_filename))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.