R/profile_estimation.r

Defines functions RunProfilePertubation profilePertubate getProfilesString

Documented in profilePertubate RunProfilePertubation

getProfilesString <- function(profiles) {
  strList <- ""
  for (p in profiles@profileVars) {
    if (strList == "") {
      strList <- paste(p@effectName,
                       ",",
                       p@initialValue,
                       ",",
                       p@pertubateValues,
                       sep = "")
    } else {
      strList <- paste(
        strList,
        paste(
          p@effectName,
          ",",
          p@initialValue,
          ",",
          p@pertubateValues,
          sep = ""
        ),
        sep = " "
      )
    }
  }
  return(strList)
}

#' Executes an NLME profile perturbation
#'
#' Executes an NLME profile perturbation
#'
#' @param  hostPlatform How to execute the run(NlmeParallelHost)
#' @param  params Engine parameters(NlmeEngineExtraParams)
#' @param  profiles Profiles to perturbate(ProfileParameters)
#' @param  model PK/PD model
#' @param  sortColumns Optional list of columns to sort and fit(SortColumns)
#' @param  scenarios Optional list of scenarios to fit(NlmeScenario)
#' @param  runInBackground Set to \code{TRUE} to run in background and return prompt(Bool)
#'
#' @export
#'
#' @examples
#' \donttest{
#' # metod = 3 is FOCE-LB
#'  params <- NlmeEngineExtraParams(
#'    method = 3,
#'    numIterations = 1000
#'  )
#'
#'  profile1 <- ProfileVar("tvV", 9.548, "-2,-1,0,1,2")
#'  profile2 <- ProfileVar("tvCl", 0.919, "-0.5,0,1.5")
#'  profiles <- ProfileParameters("USE_DELTA", c(profile1, profile2))
#'
#'  job <- profilePertubate(defaultHost, params, profiles, model)
#' }
#' @keywords internal
#' @return List of results from NLME execution.
profilePertubate <- function(hostPlatform,
                             params = NULL,
                             profiles,
                             model = NULL,
                             sortColumns = SortColumns(""),
                             scenarios = list(),
                             runInBackground = FALSE) {
  if (!is.null(model)) {
    model@modelInfo@workingDir <-
      .prepare_wd(model@modelInfo@workingDir)
    Certara.RsNLME::writeDefaultFiles(model = model, dataset = model@dataset)
    workingDir <- model@modelInfo@workingDir
  } else {
    workingDir <- normalizePath(".", winslash = "/", mustWork = FALSE)
  }
  return(
    RunProfilePertubation(
      hostPlatform,
      model@dataset,
      params,
      profiles,
      sortColumns,
      scenarios,
      runInBackground,
      workingDir = workingDir
    )
  )
}


#' Execute an NLME profile perturbation
#'
#' Execute an NLME profile perturbation
#'
#' @param  hostPlatform How to execute the run(NlmeParallelHost)
#' @param  dataset Dataset and model information(NlmeDataset)
#' @param  params Engine parameters(NlmeEngineExtraParams)
#' @param  profiles Profiles to perturbate(ProfileParameters)
#' @param  sortColumns Optional list of columns to sort and fit(SortColumns)
#' @param  scenarios Optional list of scenarios to fit(NlmeScenario)
#' @param  runInBackground TRUE will run in background and return prompt(Bool)
#' @param  workingDir Directory in which to run the job. Current working directory is used if \code{NULL}
#'
#' @examples
#' \donttest{
#'   dataset <- NlmeDataset()
#'
#'   params <- NlmeEngineExtraParams(
#'     method = 3,
#'     num_iterations = 1000
#'   )
#'   host <- hostParams(parallelMethod = "None",
#'                     hostName = "local",
#'                     numCores = 1)
#'   sortColumns <- SortColumns("")
#'   profile1 <- ProfileVar("tvV", 9.548, "-2,-1,0,1,2")
#'   profile2 <- ProfileVar("tvCl", 0.919, "-0.5,0,1.5")
#'   profiles <- ProfileParameters("USE_DELTA", c(profile1, profile2))
#'   # dataFile, colDefFile, modelFile are assumed to be written to the working directory
#'   job <- RunProfilePertubation(host, dataset, params, profiles, sortColumns, scenarios)
#' }
#' @export RunProfilePertubation
#' @keywords internal
#' @return Object of class \code{ProfileNlmeJob}
RunProfilePertubation <- function(hostPlatform,
                                  dataset,
                                  params,
                                  profiles,
                                  sortColumns,
                                  scenarios = list(),
                                  runInBackground = FALSE,
                                  workingDir = NULL) {
  workFlow <- "WorkFlow"

  if (hostPlatform@hostType == "Windows" && runInBackground) {
    warning("`runInBackground = TRUE` is not available on Windows. Setting argument to `FALSE`.")
    runInBackground <- FALSE
  } else {
    stopifnot(is.logical(runInBackground))
  }

  if (is.null(workingDir)) {
    cwd <- normalizePath(".", winslash = "/", mustWork = FALSE)
  } else {
    cwd <- workingDir
  }

  argsFile <- GenerateControlfile(
    dataset = dataset,
    params = params,
    workFlow = workFlow,
    scenarios = scenarios,
    workingDir = cwd
  )

  argsList <- list(
    method = hostPlatform@parallelMethod@method,
    install_directory = hostPlatform@installationDirectory,
    shared_directory = hostPlatform@sharedDirectory,
    localWorkingDir = cwd,
    nlmeArgsFile = names(argsFile),
    numColumns = sortColumns@numSortColumns,
    ColumnNames = gsub(",", " ", sortColumns@sortColumnList),
    profileArray = getProfilesString(profiles),
    profilePercentFlag = profiles@howToPertubate,
    NumProc = hostPlatform@numCores
  )

  if (length(scenarios) == 0) {
    argsList <- c(argsList, workFlow)
  } else {
    argsList <- c(argsList, getScenarioNames(scenarios))
  }

  job <- ProfileNlmeJob(
    jobType = "Profile_Pertubation",
    localDir = cwd,
    remoteDir = cwd,
    host = hostPlatform,
    argsList = argsList,
    argsFile = names(argsFile),
    profiles = profiles,
    sortColumns = sortColumns,
    scenarios = scenarios,
    workflow = workFlow,
    runInBackground = runInBackground
  )

  .log_Execution(Model = model,
                 EngineParams = params,
                 RunMode = "Profile",
                 Host = hostPlatform)

  status <- executeJob(job)
  return(job)
}

Try the Certara.RsNLME package in your browser

Any scripts or data that you put into this service are public.

Certara.RsNLME documentation built on April 3, 2025, 11:04 p.m.