#' Determine if an experiment has Peregrine friendly filenames
#' @inheritParams default_params_doc
#' @export
is_pff_experiment <- function(experiment) {
result <- FALSE
tryCatch({
peregrine::check_pff_experiment(experiment)
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.