#' Voriconazole » CFR » fAUC/MIC
#'
#' Voriconazole » Cumulative Fraction of Response » fAUC to MIC ratio
#'
#' \strong{Drug}:
#' Voriconazole
#'
#' \strong{Method}:
#' Monte Carlo simulation on the proportion of the population achieving a certain pharmacodynamic index value, given the minimum inhibitory concentration (MIC) distribution of the target microorganism(s).
#'
#' \strong{PK/PD target}:
#' 24 hour area under the free concentration-time curve to minimum inhibitory concentration ratio.
#'
#' @param PATID Patient Identifier. User-provided free text (such as patient id, name or alias) to identify related simulations. Must be provided as string.
#' @param AGE Age. Age of the patient in years. Must be provided as numeric (min. 18, max. 120 year).
#' @param HEIGHT Height. Height of the patient. Must be provided as numeric (min. 100, max. 250 cm).
#' @param WEIGHT Weight. Actual body weight of the patient. Must be provided as numeric (min. 20, max. 500 kg).
#' @param GENDER Sex. Patient's sex for clinical decision-making. Must be provided as string ('Male' or 'Female').
#' @param MODEL Model for population of interest. Pharmacokinetic model to be used for specific patient type during simulations. Must be provided as string ('Pascual et al. (2012) - patients with invasive fungal infections').
#' @param RIFAMPICIN Concurrent rifampicin. Presence of rifampicin coadministration. Must be provided as string ('No' or 'Yes').
#' @param SEVEREHEPATICCHOLESTASIS Severe hepatic cholestasis. Severe hepatic cholestasis is defined as any liver function tests > 20 times the upper limit of normal (e.g. alkaline phosphatase, AST, ALT or GGT). Must be provided as string ('No' or 'Yes').
#' @param AUCPERMIC AUC to MIC ratio target. The PK/PD target can be provided as 24 hour area under the concentration-time curve to minimum inhibitory concentration ratio (AUC/MIC). Must be provided as numeric (min. 10, max. 2000 ).
#' @param ORALORIVORKGREGIMENS Dosing Regimens. List of dosing regimens to be used in simulating target attainment, from which the dosing regimen with the smallest absolute difference from the desired target will be automatically selected. Must be provided as list of 1-8 'KGREGIMEN', 'REGIMEN' or 'ORALREGIMEN' values. Use the \code{regimen} helper function to define the REGIMEN values.
#' @param MICDISTR MIC distribution. Non-cumulative MIC distribution of organism for the given antibiotic at the specified MICs provided as percentages with a sum of 100\%. MIC distribution of voriconazole when tested against Aspergillus fumigatus. [Borman et al. "MIC Distributions and Evaluation of Fungicidal Activity for Amphotericin B, Itraconazole, Voriconazole, Posaconazole and Caspofungin and 20 Species of Pathogenic Filamentous Fungi Determined Using the CLSI Broth Microdilution Method." Journal of fungi (Basel, Switzerland) vol. 3,2 27. 31 May. 2017, doi:10.3390/jof3020027]. Must be provided as set.
#'
#' @examples \dontrun{
#' simulate_voriconazole_mc_cfr_fauc_mic_ratio(PATID = "Anonymous",
#' AGE = 35, HEIGHT = 155,
#' WEIGHT = 55, GENDER = "Female",
#' MODEL = "Pascual et al. (2012) - patients with invasive fungal infections",
#' RIFAMPICIN = "No",
#' SEVEREHEPATICCHOLESTASIS = "No",
#' AUCPERMIC = 25, ORALORIVORKGREGIMENS = list(
#' list(set = "REGIMEN",
#' DOSE = 200,
#' INTERVAL = 12,
#' TINF = 1.5),
#' list(set = "ORALREGIMEN",
#' DOSE = 200,
#' INTERVAL = 12)),
#' MICDISTR = list("MICDISTR-0.0625" = list(
#' 0.6), "MICDISTR-0.125" = list(
#' 13), "MICDISTR-0.25" = list(
#' 68.4), "MICDISTR-0.5" = list(
#' 12.5), "MICDISTR-1" = list(
#' 2.8), "MICDISTR-2" = list(
#' 1.9), "MICDISTR-4" = list(
#' 0.8)))
#' }
#'
#' @references \itemize{
#' \item Pascual, Andres et al. (2012): Challenging recommended oral and intravenous voriconazole doses for improved efficacy and safety: population pharmacokinetics-based analysis of adult patients with invasive fungal infections. In. Clinical Infectious Diseases. https://pubmed.ncbi.nlm.nih.gov/22610925
#' }
#' @export
#' @importFrom checkmate assert_number assert_string assert_choice
simulate_voriconazole_mc_cfr_fauc_mic_ratio <- function(PATID, AGE, HEIGHT, WEIGHT, GENDER, MODEL, RIFAMPICIN, SEVEREHEPATICCHOLESTASIS, AUCPERMIC, ORALORIVORKGREGIMENS, MICDISTR) {
## check args
assert_string(PATID)
assert_number(AGE,
lower = 18,
upper = 120
)
assert_number(HEIGHT,
lower = 100,
upper = 250
)
assert_number(WEIGHT,
lower = 20,
upper = 500
)
assert_string(GENDER)
assert_choice(GENDER, c("Male", "Female"))
assert_string(MODEL)
assert_choice(MODEL, c("Pascual et al. (2012) - patients with invasive fungal infections"))
assert_string(RIFAMPICIN)
assert_choice(RIFAMPICIN, c("No", "Yes"))
assert_string(SEVEREHEPATICCHOLESTASIS)
assert_choice(SEVEREHEPATICCHOLESTASIS, c("No", "Yes"))
assert_number(AUCPERMIC,
lower = 10,
upper = 2000
)
## API call
simulate("voriconazole-mc-cfr-fauc-mic-ratio", PATID = PATID, AGE = AGE, HEIGHT = HEIGHT, WEIGHT = WEIGHT, GENDER = GENDER, MODEL = MODEL, RIFAMPICIN = RIFAMPICIN, SEVEREHEPATICCHOLESTASIS = SEVEREHEPATICCHOLESTASIS, AUCPERMIC = AUCPERMIC, ORALORIVORKGREGIMENS = ORALORIVORKGREGIMENS, MICDISTR = MICDISTR)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.