vmsg <- function(...) {
verbose <- getOption("QDNAseq::verbose", TRUE)
if (is.na(verbose)) {
args <- list(...)
appendLF <- TRUE
if ("appendLF" %in% names(args)) {
appendLF <- args[["appendLF"]]
args[["appendLF"]] <- NULL
}
cat(unlist(args), sep="")
if (appendLF)
cat("\n")
} else if (verbose) {
message(...)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.