AMR/R/zzz.R

234 lines
9.5 KiB
R
Raw Normal View History

# ==================================================================== #
# TITLE #
2022-10-05 09:12:22 +02:00
# AMR: An R Package for Working with Antimicrobial Resistance Data #
# #
2019-01-02 23:24:07 +01:00
# SOURCE #
2020-07-08 14:48:06 +02:00
# https://github.com/msberends/AMR #
# #
2022-10-05 09:12:22 +02:00
# CITE AS #
# Berends MS, Luz CF, Friedrich AW, Sinha BNM, Albers CJ, Glasner C #
# (2022). AMR: An R Package for Working with Antimicrobial Resistance #
# Data. Journal of Statistical Software, 104(3), 1-31. #
# doi:10.18637/jss.v104.i03 #
# #
2020-10-08 11:16:03 +02:00
# Developed at the University of Groningen, the Netherlands, in #
# collaboration with non-profit organisations Certe Medical #
2022-08-28 10:31:50 +02:00
# Diagnostics & Advice, and University Medical Center Groningen. #
# #
2019-01-02 23:24:07 +01:00
# This R package is free software; you can freely use and distribute #
# it for both personal and commercial purposes under the terms of the #
# GNU General Public License version 2.0 (GNU GPL-2), as published by #
# the Free Software Foundation. #
# We created this package for both routine data analysis and academic #
# research and it was publicly released in the hope that it will be #
# useful, but it comes WITHOUT ANY WARRANTY OR LIABILITY. #
2020-10-08 11:16:03 +02:00
# #
# Visit our website for the full manual and a complete tutorial about #
# how to conduct AMR data analysis: https://msberends.github.io/AMR/ #
# ==================================================================== #
2020-12-29 21:23:01 +01:00
# set up package environment, used by numerous AMR functions
2022-10-05 09:12:22 +02:00
AMR_env <- new.env(hash = FALSE)
AMR_env$mo_uncertainties <- data.frame(
original_input = character(0),
input = character(0),
fullname = character(0),
mo = character(0),
candidates = character(0),
minimum_matching_score = integer(0),
keep_synonyms = logical(0),
stringsAsFactors = FALSE
)
AMR_env$mo_renamed <- list()
AMR_env$mo_previously_coerced <- data.frame(
x = character(0),
mo = character(0),
stringsAsFactors = FALSE
2022-08-28 10:31:50 +02:00
)
2022-10-10 15:44:59 +02:00
AMR_env$ab_previously_coerced <- data.frame(
x = character(0),
ab = character(0),
stringsAsFactors = FALSE
)
AMR_env$av_previously_coerced <- data.frame(
x = character(0),
av = character(0),
stringsAsFactors = FALSE
)
2022-10-05 09:12:22 +02:00
AMR_env$rsi_interpretation_history <- data.frame(
2022-09-01 15:20:57 +02:00
datetime = Sys.time()[0],
index = integer(0),
ab_input = character(0),
ab_considered = character(0),
mo_input = character(0),
mo_considered = character(0),
guideline = character(0),
ref_table = character(0),
method = character(0),
breakpoint_S = double(0),
breakpoint_R = double(0),
input = double(0),
interpretation = character(0),
stringsAsFactors = FALSE
)
AMR_env$custom_ab_codes <- character(0)
2022-10-30 21:05:46 +01:00
AMR_env$is_dark_theme <- NULL
2020-12-29 21:23:01 +01:00
2021-05-12 18:15:03 +02:00
# determine info icon for messages
utf8_supported <- isTRUE(base::l10n_info()$`UTF-8`)
is_latex <- tryCatch(import_fn("is_latex_output", "knitr", error_on_fail = FALSE)(),
2022-08-28 10:31:50 +02:00
error = function(e) FALSE
)
2021-05-12 18:15:03 +02:00
if (utf8_supported && !is_latex) {
# \u2139 is a symbol officially named 'information source'
2022-10-05 09:12:22 +02:00
AMR_env$info_icon <- "\u2139"
2021-05-12 18:15:03 +02:00
} else {
2022-10-05 09:12:22 +02:00
AMR_env$info_icon <- "i"
2021-05-12 18:15:03 +02:00
}
2022-10-05 09:12:22 +02:00
.onLoad <- function(lib, pkg) {
# Support for tibble headers (type_sum) and tibble columns content (pillar_shaft)
2022-08-28 10:31:50 +02:00
# without the need to depend on other packages. This was suggested by the
# developers of the vctrs package:
# https://github.com/r-lib/vctrs/blob/05968ce8e669f73213e3e894b5f4424af4f46316/R/register-s3.R
s3_register("pillar::pillar_shaft", "ab")
s3_register("pillar::pillar_shaft", "av")
2020-08-26 11:33:54 +02:00
s3_register("pillar::pillar_shaft", "mo")
s3_register("pillar::pillar_shaft", "rsi")
s3_register("pillar::pillar_shaft", "mic")
s3_register("pillar::pillar_shaft", "disk")
2020-10-08 11:16:03 +02:00
s3_register("tibble::type_sum", "ab")
s3_register("tibble::type_sum", "av")
2020-10-08 11:16:03 +02:00
s3_register("tibble::type_sum", "mo")
s3_register("tibble::type_sum", "rsi")
s3_register("tibble::type_sum", "mic")
2020-08-26 11:33:54 +02:00
s3_register("tibble::type_sum", "disk")
# Support for frequency tables from the cleaner package
s3_register("cleaner::freq", "mo")
s3_register("cleaner::freq", "rsi")
# Support for skim() from the skimr package
if (pkg_is_available("skimr", also_load = FALSE, min_version = "2.0.0")) {
s3_register("skimr::get_skimmers", "mo")
s3_register("skimr::get_skimmers", "rsi")
s3_register("skimr::get_skimmers", "mic")
s3_register("skimr::get_skimmers", "disk")
}
# Support for autoplot() from the ggplot2 package
s3_register("ggplot2::autoplot", "rsi")
s3_register("ggplot2::autoplot", "mic")
s3_register("ggplot2::autoplot", "disk")
s3_register("ggplot2::autoplot", "resistance_predict")
2021-11-01 13:51:13 +01:00
# Support for fortify from the ggplot2 package
s3_register("ggplot2::fortify", "rsi")
s3_register("ggplot2::fortify", "mic")
s3_register("ggplot2::fortify", "disk")
# Support vctrs package for use in e.g. dplyr verbs
2022-10-31 11:19:06 +01:00
# S3: ab_selector
s3_register("vctrs::vec_ptype2", "character.ab_selector")
2022-10-31 11:19:06 +01:00
s3_register("vctrs::vec_ptype2", "ab_selector.character")
s3_register("vctrs::vec_cast", "character.ab_selector")
2022-10-31 11:19:06 +01:00
# S3: ab_selector_any_all
2022-08-21 16:37:20 +02:00
s3_register("vctrs::vec_ptype2", "logical.ab_selector_any_all")
2022-10-31 11:19:06 +01:00
s3_register("vctrs::vec_ptype2", "ab_selector_any_all.logical")
2022-08-21 16:37:20 +02:00
s3_register("vctrs::vec_cast", "logical.ab_selector_any_all")
2022-10-31 11:19:06 +01:00
# S3: ab
s3_register("vctrs::vec_ptype2", "character.ab")
s3_register("vctrs::vec_ptype2", "ab.character")
s3_register("vctrs::vec_cast", "character.ab")
s3_register("vctrs::vec_cast", "ab.character")
# S3: av
s3_register("vctrs::vec_ptype2", "character.av")
s3_register("vctrs::vec_ptype2", "av.character")
s3_register("vctrs::vec_cast", "character.av")
s3_register("vctrs::vec_cast", "av.character")
2022-10-31 11:19:06 +01:00
# S3: mo
s3_register("vctrs::vec_ptype2", "character.mo")
s3_register("vctrs::vec_ptype2", "mo.character")
s3_register("vctrs::vec_cast", "character.mo")
s3_register("vctrs::vec_cast", "mo.character")
# S3: disk
s3_register("vctrs::vec_ptype2", "integer.disk")
2022-10-31 11:19:06 +01:00
s3_register("vctrs::vec_ptype2", "disk.integer")
s3_register("vctrs::vec_cast", "integer.disk")
2022-10-31 11:19:06 +01:00
s3_register("vctrs::vec_cast", "disk.integer")
s3_register("vctrs::vec_cast", "double.disk")
s3_register("vctrs::vec_cast", "disk.double")
s3_register("vctrs::vec_cast", "character.disk")
s3_register("vctrs::vec_cast", "disk.character")
# S3: mic
2022-08-30 21:48:02 +02:00
s3_register("vctrs::vec_cast", "character.mic")
s3_register("vctrs::vec_cast", "double.mic")
2022-10-31 11:19:06 +01:00
s3_register("vctrs::vec_cast", "mic.character")
s3_register("vctrs::vec_cast", "mic.double")
2022-08-30 21:48:02 +02:00
s3_register("vctrs::vec_math", "mic")
2022-10-31 11:19:06 +01:00
# S3: rsi
s3_register("vctrs::vec_ptype2", "character.rsi")
s3_register("vctrs::vec_ptype2", "rsi.character")
s3_register("vctrs::vec_cast", "character.rsi")
s3_register("vctrs::vec_cast", "rsi.character")
2022-08-28 10:31:50 +02:00
# if mo source exists, fire it up (see mo_source())
2022-10-05 09:12:22 +02:00
if (tryCatch(file.exists(getOption("AMR_mo_source", "~/mo_source.rds")), error = function(e) FALSE)) {
invisible(get_mo_source())
}
2022-08-28 10:31:50 +02:00
2022-08-27 20:49:37 +02:00
# be sure to print tibbles as tibbles
if (pkg_is_available("tibble", also_load = FALSE)) {
loadNamespace("tibble")
}
2022-08-28 10:31:50 +02:00
2021-05-30 22:14:38 +02:00
# reference data - they have additional columns compared to `antibiotics` and `microorganisms` to improve speed
2022-08-27 20:49:37 +02:00
# they cannot be part of R/sysdata.rda since CRAN thinks it would make the package too large (+3 MB)
2022-10-14 13:02:50 +02:00
AMR_env$AB_lookup <- create_AB_lookup()
AMR_env$AV_lookup <- create_AV_lookup()
2022-10-14 13:02:50 +02:00
AMR_env$MO_lookup <- create_MO_lookup()
2021-05-30 22:14:38 +02:00
}
2022-10-10 15:44:59 +02:00
.onAttach <- function(lib, pkg) {
if (interactive() && is.null(getOption("AMR_locale", default = NULL))) {
current_lang <- get_AMR_locale()
if (current_lang != "en") {
packageStartupMessage(word_wrap(
"Assuming the ", LANGUAGES_SUPPORTED_NAMES[[current_lang]]$exonym, " language (",
LANGUAGES_SUPPORTED_NAMES[[current_lang]]$endonym, ") for the AMR package. See `set_AMR_locale()` to change this or to silence this note.",
2022-10-30 14:31:45 +01:00
add_fn = list(font_blue), as_note = TRUE
))
2022-10-10 15:44:59 +02:00
}
}
}
2021-05-30 22:14:38 +02:00
# Helper functions --------------------------------------------------------
create_AB_lookup <- function() {
2022-03-14 16:36:10 +01:00
cbind(AMR::antibiotics, AB_LOOKUP)
2021-05-30 22:14:38 +02:00
}
create_AV_lookup <- function() {
cbind(AMR::antivirals, AV_LOOKUP)
}
2021-05-30 22:14:38 +02:00
create_MO_lookup <- function() {
MO_lookup <- AMR::microorganisms
2022-08-28 10:31:50 +02:00
2021-05-30 22:14:38 +02:00
MO_lookup$kingdom_index <- NA_real_
MO_lookup[which(MO_lookup$kingdom == "Bacteria" | MO_lookup$mo == "UNKNOWN"), "kingdom_index"] <- 1
MO_lookup[which(MO_lookup$kingdom == "Fungi"), "kingdom_index"] <- 2
MO_lookup[which(MO_lookup$kingdom == "Protozoa"), "kingdom_index"] <- 3
MO_lookup[which(MO_lookup$kingdom == "Archaea"), "kingdom_index"] <- 4
# all the rest
MO_lookup[which(is.na(MO_lookup$kingdom_index)), "kingdom_index"] <- 5
2022-08-28 10:31:50 +02:00
2022-10-30 21:05:46 +01:00
MO_lookup$fullname_lower <- MO_FULLNAME_LOWER
2022-10-05 09:12:22 +02:00
MO_lookup$full_first <- substr(MO_lookup$fullname_lower, 1, 1)
MO_lookup$species_first <- substr(MO_lookup$species, 1, 1)
2022-08-28 10:31:50 +02:00
2022-10-30 21:05:46 +01:00
MO_lookup
2021-05-30 22:14:38 +02:00
}
2022-10-30 21:05:46 +01:00
add_intrinsic_resistance_to_AMR_env <- function() {
2021-05-30 22:14:38 +02:00
# for mo_is_intrinsic_resistant() - saves a lot of time when executed on this vector
2022-10-30 21:05:46 +01:00
if (is.null(AMR_env$intrinsic_resistant)) {
AMR_env$intrinsic_resistant <- paste(AMR::intrinsic_resistant$mo, AMR::intrinsic_resistant$ab)
}
2018-04-19 14:10:57 +02:00
}