#' Determine if all experiments have Peregrine friendly filenames
#' @param experiments a list of \code{pirouette} experiments,
#' as created by \link[pirouette]{create_experiment}
#' @export
are_pff_experiments <- function(experiments) {
result <- FALSE
tryCatch({
peregrine::check_pff_experiments(experiments)
result <- TRUE
}, error = function(e) {} # nolint ignore e
)
result
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.