###############################################
# S3 dispatches for submitting a single model
###############################################
#' Submit a model to be run
#'
#' Submits a model to be run by calling out to `bbi`.
#'
#' @return While `submit_model()` _does_ return something, it is primarily
#' called for its side effects, specifically that it runs the model and writes
#' all model outputs to disk under `get_output_dir(.mod)`.
#'
#' **NONMEM**
#' For NONMEM models, a `bbi_process` object is returned. The typical NONMEM
#' output files are all written into `get_output_dir(.mod)`. A summary of the
#' contents of these files can be accessed with [model_summary()], and the path
#' to individual files can be easily constructed like
#' `build_path_from_model(.mod, ".lst")`.
#'
#' A `bbi_config.json` file is also written, which stores information about the
#' configuration of the run. See [config_log()] for more details about this
#' file.
#'
#' @template nonmem-mod-ext
#'
#' @seealso [submit_models()]
#' @param .mod The model object to submit.
#' @param .bbi_args A named list specifying arguments to pass to bbi
#' formatted like `list("nm_version" = "nm74gf_nmfe", "json" = T, "threads" =
#' 4)`. Run [print_bbi_args()] to see valid arguments. Note that bbr does
#' not support changing the output directory (including through the model or
#' global YAML files).
#' @param .mode Mode for model submission: "local", "sge", or "slurm". If
#' unspecified, the value is set to the value of the `bbr.bbi_exe_mode`
#' option. This option defaults to "sge" on Linux and "local" otherwise.
#' @param ... args passed through to `bbi_exec()`
#' @param .overwrite Logical to specify whether or not to overwrite existing
#' model output from a previous run. If `NULL`, the default, will defer to
#' setting in `.bbi_args` or `bbi.yaml`. If _not_ `NULL` will override any
#' settings in `.bbi_args` or `bbi.yaml`. **The exception to this are
#' bootstrap runs (`bbi_nmboot_model` objects).** For bootstrap runs, this
#' defaults to `FALSE` and does _not_ respect any setting passed via
#' `.bbi_args` or a `bbi.yaml` config file. To overwrite existing bootstrap
#' output, a user must pass `TRUE` through this argument.
#' @param .config_path Path to a bbi configuration file. If `NULL`, the
#' default, will attempt to use a `bbi.yaml` in the same directory as the
#' model.
#' @param .wait If `TRUE`, the default, wait for the bbi process to return
#' before this function call returns. If `FALSE` function will return while
#' bbi process runs in the background.
#' @param .dry_run Returns an object detailing the command that would be run,
#' insted of running it. This is primarily for testing but also a debugging
#' tool.
#' @export
submit_model <- function(
.mod,
.bbi_args = NULL,
.mode = getOption("bbr.bbi_exe_mode"),
...,
.overwrite = NULL,
.config_path = NULL,
.wait = TRUE,
.dry_run = FALSE
) {
UseMethod("submit_model")
}
#' @describeIn submit_model Takes a `bbi_base_model` object.
#' @export
submit_model.bbi_base_model <- function(
.mod,
.bbi_args = NULL,
.mode = getOption("bbr.bbi_exe_mode"),
...,
.overwrite = NULL,
.config_path = NULL,
.wait = TRUE,
.dry_run = FALSE
) {
res <- submit_nonmem_model(.mod,
.bbi_args = .bbi_args,
.mode = .mode,
...,
.overwrite = .overwrite,
.config_path = .config_path,
.wait = .wait,
.dry_run = .dry_run)
return(res)
}
#' @describeIn submit_model Takes a `bbi_base_model` object.
#' @export
submit_model.bbi_nmsim_model <- function(
.mod,
.bbi_args = NULL,
.mode = getOption("bbr.bbi_exe_mode"),
...,
.overwrite = NULL,
.config_path = NULL,
.wait = TRUE,
.dry_run = FALSE
) {
# Ensure spec file exists
spec_path <- get_spec_path(.mod, .check_exists = FALSE)
if(!fs::file_exists(spec_path)){
rlang::abort(glue("No simulation specification file was found at {spec_path}"))
}
.config_path <- if (is.null(.config_path)) {
# Explicitly pass the default value because it's needed for the
# simulations, which happens one level deeper (stored in output directory of parent model).
# - We dont want to use the generated yaml stored in the output directory
# of the parent model, as this may have the option `local {create_child_dirs: false}`
# set, which will cause the submission to fail
model_dir <- get_model_working_directory(read_model(get_based_on(.mod)))
file.path(model_dir, "bbi.yaml")
} else {
# Ensure that user-specified values work from the simulation directory.
# i.e. the output directory of the parent/based_on model
fs::path_abs(.config_path)
}
res <- submit_nonmem_model(.mod,
.bbi_args = .bbi_args,
.mode = .mode,
...,
.overwrite = .overwrite,
.config_path = .config_path,
.wait = .wait,
.dry_run = .dry_run)
return(res)
}
#' @describeIn submit_model Takes a `bbi_nmboot_model` object.
#' @param .batch_size Number of models to submit to run concurrently as a
#' "batch." Passing `NULL` (or a number larger than the number of submitted
#' models) will bypass this and submit all models concurrently. This will
#' launch a background process to manage the batch submission. Details from
#' this process are logged in the `OUTPUT` file in top-level bootstrap model
#' directory.
#' @export
submit_model.bbi_nmboot_model <- function(
.mod,
.bbi_args = NULL,
.mode = "sge",
...,
.overwrite = FALSE,
.config_path = NULL,
.wait = FALSE,
.dry_run = FALSE,
.batch_size = 100
){
checkmate::assert_number(.batch_size, null.ok = TRUE, lower = 1)
# Ensure bootstrap setup was done
spec_path <- get_spec_path(.mod, .check_exists = FALSE)
if(!fs::file_exists(spec_path)){
rlang::abort(
c(
glue("No bootstrap specification file was found at {spec_path}"),
"i" = "Please run `setup_bootstrap_run()` with your bootstrap run model object."
)
)
}
.config_path <- if (is.null(.config_path)) {
# Explicitly pass the default value because it's needed for the
# bootstrap runs, which happen one level deeper.
file.path(get_model_working_directory(.mod), "bbi.yaml")
} else {
# Ensure that user-specified values work from the bootstrap
# subdirectory.
fs::path_abs(.config_path)
}
# check overwrite and delete existing output, if requested
if (!is.null(.bbi_args[["overwrite"]])) {
rlang::warn(paste(
"submit_model.bbi_nmboot_model does NOT respect setting `overwrite` via .bbi_args or a bbi.yaml config file.",
"To overwrite an existing bootstrap run, use submit_model(..., .overwrite = TRUE)."
))
}
boot_models <- get_boot_models(.mod)
cleaned_up <- bootstrap_is_cleaned_up(.mod)
if (!isTRUE(.dry_run)) {
outdirs <- purrr::map_chr(boot_models, ~ get_output_dir(.x, .check_exists = FALSE))
if (any(fs::dir_exists(outdirs)) && !isTRUE(cleaned_up)) {
if (isTRUE(.overwrite)) {
rlang::inform(glue("Overwriting existing bootstrap output directories in {get_output_dir(.mod)}"))
fs::dir_delete(outdirs[fs::dir_exists(outdirs)])
# delete other bootstrap artifacts from previous run
boot_output_path <- file.path(.mod[[ABS_MOD_PATH]], "OUTPUT")
if (fs::file_exists(boot_output_path)) fs::file_delete(boot_output_path)
boot_sum_path <- file.path(.mod[[ABS_MOD_PATH]], "boot_summary.RDS")
if (fs::file_exists(boot_sum_path)) fs::file_delete(boot_sum_path)
} else {
rlang::abort(
c(
glue("Model output already exists in {get_output_dir(.mod)}."),
"Use submit_model(..., .overwrite = TRUE) to overwrite the existing output directories."
)
)
}
} else {
if (isTRUE(cleaned_up)) {
# We dont want to delete anything if the model has been cleaned up
# - All output files would be deleted via:
# `setup_bootstrap_run(.boot_run, .overwrite = TRUE)`
rlang::abort(
c(
"Model has been cleaned up and cannot be overwritten",
"Call `setup_bootstrap_run(.boot_run, .overwrite = TRUE)` before re-submitting"
)
)
}
}
}
res <- if (!isTRUE(.dry_run) &&
!is.null(.batch_size) &&
.batch_size < length(boot_models)
) {
submit_batch_callr(
.mods = boot_models,
.batch_size = .batch_size,
.bbi_args = .bbi_args,
.mode = .mode,
.overwrite = .overwrite,
.config_path = .config_path,
stdout_path = file.path(.mod[[ABS_MOD_PATH]], "OUTPUT")
)
} else {
submit_models(
boot_models, .bbi_args, .mode, ...,
.overwrite = .overwrite, .config_path = .config_path,
.wait = .wait, .dry_run = .dry_run
)
}
return(res)
}
#####################################
# Private implementation function(s)
#####################################
#' Submit a NONMEM model via bbi
#'
#' Private implementation function called by `submit_model()` dispatches.
#' @param .mod An S3 object of class `bbi_nonmem_model`, for example from `new_model()`, `read_model()` or `copy_model_from()`
#' @importFrom stringr str_detect
#' @importFrom tools file_path_sans_ext
#' @importFrom checkmate assert_logical
#' @return An S3 object of class `bbi_process`
#' @keywords internal
submit_nonmem_model <- function(.mod,
.bbi_args = NULL,
.mode = getOption("bbr.bbi_exe_mode"),
...,
.overwrite = NULL,
.config_path = NULL,
.wait = TRUE,
.dry_run=FALSE) {
# check against YAML
check_yaml_in_sync(.mod)
# check for valid .mode arg
check_mode_argument(.mode)
# build command line args
.bbi_args <- parse_args_list(.bbi_args, .mod[[YAML_BBI_ARGS]])
if (!is.null(.overwrite)) {
checkmate::assert_logical(.overwrite)
.bbi_args[["overwrite"]] <- .overwrite
}
args_vec <- check_bbi_args(.bbi_args)
cmd_args <- c("nonmem", "run", .mode, get_model_path(.mod), args_vec)
# define working directory
model_dir <- get_model_working_directory(.mod)
# check for existence of config
checkmate::assert_string(.config_path, null.ok = TRUE)
cpath <- .config_path %||% file.path(model_dir, "bbi.yaml")
if(!file_exists(cpath)){
stop(paste("No bbi configuration was found in the execution directory.",
"Please run `bbi_init()` with the appropriate directory to continue."))
}
if (!is.null(.config_path)) {
cmd_args <- c(
cmd_args,
sprintf("--config=%s", normalizePath(.config_path))
)
}
if (.dry_run) {
# construct fake res object
return(bbi_dry_run(cmd_args, model_dir))
}
# check overwrite and delete existing output, if requested
overwrite_requested <- if (!is.null(.bbi_args[["overwrite"]])) {
# if passed via .overwrite or .bbi_args, return this value
.bbi_args[["overwrite"]]
} else {
# if _not_ passed, check config bbi.yaml
# return FALSE if _not_ specified there either
isTRUE(yaml::read_yaml(cpath)[["overwrite"]])
}
outdir <- get_output_dir(.mod, .check_exists = FALSE)
if (fs::dir_exists(outdir)) {
if (isTRUE(overwrite_requested)) {
rlang::inform(glue("Overwriting existing output directory in {outdir}"))
fs::dir_delete(outdir)
} else {
rlang::abort(
c(
glue("Model output already exists in {outdir}."),
"Either pass `.overwrite = TRUE` or use `.bbi_args` to overwrite the existing output directory."
)
)
}
}
# launch model
res <- bbi_exec(cmd_args, .wait = .wait, .dir = model_dir, ...)
return(res)
}
#' Private helper to check if `.mode` arg to `submit_model()` is valid
#' @param .mode argument to be checked
#' @keywords internal
check_mode_argument <- function(.mode) {
if (is.null(.mode)) {
stop(BBI_EXE_MODE_NULL_ERR_MSG, call. = FALSE)
}
checkmate::assert_string(.mode)
if (!(.mode %in% BBI_VALID_MODES)) {
stop(BBI_EXE_MODE_INVALID_ERR_MSG, call. = FALSE)
}
if (isTRUE(getOption("bbr.DEV_skip_system_mode_checks"))) {
# ^ Allow dry-run tests to skip the system mode checks.
return(invisible(TRUE))
}
# All of the remaining checks depend on system details.
if (identical(.mode, "slurm") && !test_bbi_version(.min_version = "3.4.0")) {
stop(
"Installed bbi version is ", bbi_version(),
", but .mode='slurm' requires at least version 3.4.0"
)
}
if (identical(.mode, "sge")) {
qsub <- unname(Sys.which("qsub"))
if (identical(qsub, "")) {
stop(".mode='sge' but qsub is not available on system")
}
# This guard is Metworx (or really ParallelCluster) specific. Slurm ships
# with a qsub shim. That leads to a confusing situation where 'bbi nonmem
# run sge ...' will not abort upfront, but the execution doesn't entirely
# match the expected behavior (especially under --parallel).
if (identical(qsub, "/opt/slurm/bin/qsub")) {
stop(
".mode is 'sge' but qsub points to Slurm shim.\n",
"Instead set .mode to 'slurm' (requires bbi 3.4.0 or later)\n"
)
}
}
return(invisible(TRUE))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.