2020-01-05 17:22:09 +01:00
|
|
|
# ==================================================================== #
|
|
|
|
# TITLE #
|
2021-02-02 23:57:35 +01:00
|
|
|
# Antimicrobial Resistance (AMR) Data Analysis for R #
|
2020-01-05 17:22:09 +01:00
|
|
|
# #
|
|
|
|
# SOURCE #
|
2020-07-09 20:07:39 +02:00
|
|
|
# https://github.com/msberends/AMR #
|
2020-01-05 17:22:09 +01:00
|
|
|
# #
|
|
|
|
# LICENCE #
|
2021-12-23 18:56:28 +01:00
|
|
|
# (c) 2018-2022 Berends MS, Luz CF et al. #
|
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-26 22:25:15 +02:00
|
|
|
# Diagnostics & Advice, and University Medical Center Groningen. #
|
2020-01-05 17:22:09 +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 #
|
2021-02-02 23:57:35 +01:00
|
|
|
# how to conduct AMR data analysis: https://msberends.github.io/AMR/ #
|
2020-01-05 17:22:09 +01:00
|
|
|
# ==================================================================== #
|
|
|
|
|
2021-01-22 10:20:41 +01:00
|
|
|
# Run this file to update the package using:
|
2022-08-28 10:31:50 +02:00
|
|
|
# source("data-raw/_pre_commit_hook.R")
|
2019-10-23 14:48:25 +02:00
|
|
|
|
2020-09-24 00:30:11 +02:00
|
|
|
library(dplyr, warn.conflicts = FALSE)
|
2021-01-22 10:20:41 +01:00
|
|
|
devtools::load_all(quiet = TRUE)
|
|
|
|
|
2022-08-27 20:49:37 +02:00
|
|
|
suppressMessages(set_AMR_locale("en"))
|
2022-08-19 12:33:14 +02:00
|
|
|
|
2021-01-22 10:20:41 +01:00
|
|
|
old_globalenv <- ls(envir = globalenv())
|
|
|
|
|
2021-04-07 08:37:42 +02:00
|
|
|
# Save internal data to R/sysdata.rda -------------------------------------
|
2021-01-22 10:20:41 +01:00
|
|
|
|
|
|
|
# See 'data-raw/eucast_rules.tsv' for the EUCAST reference file
|
2022-08-28 10:31:50 +02:00
|
|
|
EUCAST_RULES_DF <- utils::read.delim(
|
|
|
|
file = "data-raw/eucast_rules.tsv",
|
|
|
|
skip = 10,
|
|
|
|
sep = "\t",
|
|
|
|
stringsAsFactors = FALSE,
|
|
|
|
header = TRUE,
|
|
|
|
strip.white = TRUE,
|
|
|
|
na = c(NA, "", NULL)
|
|
|
|
) %>%
|
2020-09-24 00:30:11 +02:00
|
|
|
# take the order of the reference.rule_group column in the original data file
|
2022-08-28 10:31:50 +02:00
|
|
|
mutate(
|
|
|
|
reference.rule_group = factor(reference.rule_group,
|
|
|
|
levels = unique(reference.rule_group),
|
|
|
|
ordered = TRUE
|
|
|
|
),
|
|
|
|
sorting_rule = ifelse(grepl("^Table", reference.rule, ignore.case = TRUE), 1, 2)
|
|
|
|
) %>%
|
|
|
|
arrange(
|
|
|
|
reference.rule_group,
|
|
|
|
reference.version,
|
|
|
|
sorting_rule,
|
|
|
|
reference.rule
|
|
|
|
) %>%
|
2022-08-26 22:25:15 +02:00
|
|
|
mutate(reference.rule_group = as.character(reference.rule_group)) %>%
|
2020-09-24 00:30:11 +02:00
|
|
|
select(-sorting_rule)
|
2019-10-23 14:48:25 +02:00
|
|
|
|
2022-08-28 10:31:50 +02:00
|
|
|
TRANSLATIONS <- utils::read.delim(
|
|
|
|
file = "data-raw/translations.tsv",
|
|
|
|
sep = "\t",
|
|
|
|
stringsAsFactors = FALSE,
|
|
|
|
header = TRUE,
|
|
|
|
blank.lines.skip = TRUE,
|
|
|
|
fill = TRUE,
|
|
|
|
strip.white = TRUE,
|
|
|
|
encoding = "UTF-8",
|
|
|
|
fileEncoding = "UTF-8",
|
|
|
|
na.strings = c(NA, "", NULL),
|
|
|
|
allowEscapes = TRUE, # else "\\1" will be imported as "\\\\1"
|
|
|
|
quote = ""
|
|
|
|
)
|
2022-08-26 22:25:15 +02:00
|
|
|
|
2022-08-28 10:31:50 +02:00
|
|
|
LANGUAGES_SUPPORTED_NAMES <- c(
|
|
|
|
list(en = list(exonym = "English", endonym = "English")),
|
|
|
|
lapply(
|
|
|
|
TRANSLATIONS[, which(nchar(colnames(TRANSLATIONS)) == 2), drop = FALSE],
|
|
|
|
function(x) list(exonym = x[1], endonym = x[2])
|
|
|
|
)
|
|
|
|
)
|
2022-08-26 22:25:15 +02:00
|
|
|
|
|
|
|
LANGUAGES_SUPPORTED <- names(LANGUAGES_SUPPORTED_NAMES)
|
|
|
|
|
2021-01-22 10:20:41 +01:00
|
|
|
# vectors of CoNS and CoPS, improves speed in as.mo()
|
2021-05-30 22:14:38 +02:00
|
|
|
create_species_cons_cops <- function(type = c("CoNS", "CoPS")) {
|
|
|
|
# Determination of which staphylococcal species are CoNS/CoPS according to:
|
|
|
|
# - Becker et al. 2014, PMID 25278577
|
|
|
|
# - Becker et al. 2019, PMID 30872103
|
|
|
|
# - Becker et al. 2020, PMID 32056452
|
|
|
|
# this function returns class <mo>
|
|
|
|
MO_staph <- AMR::microorganisms
|
|
|
|
MO_staph <- MO_staph[which(MO_staph$genus == "Staphylococcus"), , drop = FALSE]
|
|
|
|
if (type == "CoNS") {
|
2022-08-28 10:31:50 +02:00
|
|
|
MO_staph[which(MO_staph$species %in% c(
|
|
|
|
"coagulase-negative", "argensis", "arlettae",
|
|
|
|
"auricularis", "borealis", "caeli", "capitis", "caprae",
|
|
|
|
"carnosus", "casei", "chromogenes", "cohnii", "condimenti",
|
|
|
|
"croceilyticus",
|
|
|
|
"debuckii", "devriesei", "edaphicus", "epidermidis",
|
|
|
|
"equorum", "felis", "fleurettii", "gallinarum",
|
|
|
|
"haemolyticus", "hominis", "jettensis", "kloosii",
|
|
|
|
"lentus", "lugdunensis", "massiliensis", "microti",
|
|
|
|
"muscae", "nepalensis", "pasteuri", "petrasii",
|
|
|
|
"pettenkoferi", "piscifermentans", "pragensis", "pseudoxylosus",
|
|
|
|
"pulvereri", "rostri", "saccharolyticus", "saprophyticus",
|
|
|
|
"sciuri", "simulans", "stepanovicii", "succinus",
|
|
|
|
"ureilyticus",
|
|
|
|
"vitulinus", "vitulus", "warneri", "xylosus",
|
|
|
|
"caledonicus", "canis",
|
|
|
|
"durrellii", "lloydii"
|
|
|
|
) |
|
|
|
|
(MO_staph$species == "schleiferi" & MO_staph$subspecies %in% c("schleiferi", ""))),
|
|
|
|
"mo",
|
|
|
|
drop = TRUE
|
|
|
|
]
|
2021-05-30 22:14:38 +02:00
|
|
|
} else if (type == "CoPS") {
|
2022-08-28 10:31:50 +02:00
|
|
|
MO_staph[which(MO_staph$species %in% c(
|
|
|
|
"coagulase-positive", "coagulans",
|
|
|
|
"agnetis", "argenteus",
|
|
|
|
"cornubiensis",
|
|
|
|
"delphini", "lutrae",
|
|
|
|
"hyicus", "intermedius",
|
|
|
|
"pseudintermedius", "pseudointermedius",
|
|
|
|
"schweitzeri", "simiae",
|
|
|
|
"roterodami"
|
|
|
|
) |
|
|
|
|
(MO_staph$species == "schleiferi" & MO_staph$subspecies == "coagulans")),
|
|
|
|
"mo",
|
|
|
|
drop = TRUE
|
|
|
|
]
|
2021-05-30 22:14:38 +02:00
|
|
|
}
|
|
|
|
}
|
2022-03-14 16:36:10 +01:00
|
|
|
create_MO_fullname_lower <- function() {
|
|
|
|
MO_lookup <- AMR::microorganisms
|
|
|
|
# use this paste instead of `fullname` to work with Viridans Group Streptococci, etc.
|
2022-08-28 10:31:50 +02:00
|
|
|
MO_lookup$fullname_lower <- tolower(trimws(paste(
|
|
|
|
MO_lookup$genus,
|
|
|
|
MO_lookup$species,
|
|
|
|
MO_lookup$subspecies
|
|
|
|
)))
|
2022-03-14 16:36:10 +01:00
|
|
|
ind <- MO_lookup$genus == "" | grepl("^[(]unknown ", MO_lookup$fullname, perl = TRUE)
|
2022-08-27 20:49:37 +02:00
|
|
|
MO_lookup[ind, "fullname_lower"] <- tolower(MO_lookup[ind, "fullname", drop = TRUE])
|
2022-03-14 16:36:10 +01:00
|
|
|
MO_lookup$fullname_lower <- trimws(gsub("[^.a-z0-9/ \\-]+", "", MO_lookup$fullname_lower, perl = TRUE))
|
|
|
|
MO_lookup$fullname_lower
|
|
|
|
}
|
2021-01-22 10:20:41 +01:00
|
|
|
MO_CONS <- create_species_cons_cops("CoNS")
|
|
|
|
MO_COPS <- create_species_cons_cops("CoPS")
|
2021-12-11 13:41:31 +01:00
|
|
|
MO_STREP_ABCG <- as.mo(MO_lookup[which(MO_lookup$genus == "Streptococcus"), "mo", drop = TRUE], Lancefield = TRUE) %in% c("B_STRPT_GRPA", "B_STRPT_GRPB", "B_STRPT_GRPC", "B_STRPT_GRPG")
|
2022-03-14 16:36:10 +01:00
|
|
|
MO_FULLNAME_LOWER <- create_MO_fullname_lower()
|
2022-08-28 10:31:50 +02:00
|
|
|
MO_PREVALENT_GENERA <- c(
|
|
|
|
"Absidia", "Acholeplasma", "Acremonium", "Actinotignum", "Aedes", "Alistipes", "Alloprevotella",
|
|
|
|
"Alternaria", "Anaerosalibacter", "Ancylostoma", "Angiostrongylus", "Anisakis", "Anopheles",
|
|
|
|
"Apophysomyces", "Arachnia", "Aspergillus", "Aureobasidium", "Bacteroides", "Basidiobolus",
|
|
|
|
"Beauveria", "Bergeyella", "Blastocystis", "Blastomyces", "Borrelia", "Brachyspira", "Branhamella",
|
|
|
|
"Butyricimonas", "Candida", "Capillaria", "Capnocytophaga", "Catabacter", "Cetobacterium", "Chaetomium",
|
|
|
|
"Chlamydia", "Chlamydophila", "Chryseobacterium", "Chrysonilia", "Cladophialophora", "Cladosporium",
|
|
|
|
"Conidiobolus", "Contracaecum", "Cordylobia", "Cryptococcus", "Curvularia", "Deinococcus", "Demodex",
|
|
|
|
"Dermatobia", "Diphyllobothrium", "Dirofilaria", "Dysgonomonas", "Echinostoma", "Elizabethkingia",
|
|
|
|
"Empedobacter", "Enterobius", "Exophiala", "Exserohilum", "Fasciola", "Flavobacterium", "Fonsecaea",
|
|
|
|
"Fusarium", "Fusobacterium", "Giardia", "Haloarcula", "Halobacterium", "Halococcus", "Hendersonula",
|
|
|
|
"Heterophyes", "Histoplasma", "Hymenolepis", "Hypomyces", "Hysterothylacium", "Lelliottia",
|
|
|
|
"Leptosphaeria", "Leptotrichia", "Lucilia", "Lumbricus", "Malassezia", "Malbranchea", "Metagonimus",
|
|
|
|
"Microsporum", "Mortierella", "Mucor", "Mycocentrospora", "Mycoplasma", "Myroides", "Necator",
|
|
|
|
"Nectria", "Ochroconis", "Odoribacter", "Oesophagostomum", "Oidiodendron", "Opisthorchis",
|
|
|
|
"Ornithobacterium", "Parabacteroides", "Pediculus", "Pedobacter", "Phlebotomus", "Phocaeicola",
|
|
|
|
"Phocanema", "Phoma", "Piedraia", "Pithomyces", "Pityrosporum", "Porphyromonas", "Prevotella",
|
|
|
|
"Pseudallescheria", "Pseudoterranova", "Pulex", "Rhizomucor", "Rhizopus", "Rhodotorula", "Riemerella",
|
|
|
|
"Saccharomyces", "Sarcoptes", "Scolecobasidium", "Scopulariopsis", "Scytalidium", "Sphingobacterium",
|
|
|
|
"Spirometra", "Spiroplasma", "Sporobolomyces", "Stachybotrys", "Streptobacillus", "Strongyloides",
|
|
|
|
"Syngamus", "Taenia", "Tannerella", "Tenacibaculum", "Terrimonas", "Toxocara", "Treponema", "Trichinella",
|
|
|
|
"Trichobilharzia", "Trichoderma", "Trichomonas", "Trichophyton", "Trichosporon", "Trichostrongylus",
|
|
|
|
"Trichuris", "Tritirachium", "Trombicula", "Tunga", "Ureaplasma", "Victivallis", "Wautersiella",
|
|
|
|
"Weeksella", "Wuchereria"
|
|
|
|
)
|
2021-01-22 10:20:41 +01:00
|
|
|
|
2021-04-07 08:37:42 +02:00
|
|
|
# antibiotic groups
|
|
|
|
# (these will also be used for eucast_rules() and understanding data-raw/eucast_rules.tsv)
|
|
|
|
globalenv_before_ab <- c(ls(envir = globalenv()), "globalenv_before_ab")
|
2022-08-28 10:31:50 +02:00
|
|
|
AB_AMINOGLYCOSIDES <- antibiotics %>%
|
|
|
|
filter(group %like% "aminoglycoside") %>%
|
|
|
|
pull(ab)
|
2021-08-16 21:54:34 +02:00
|
|
|
AB_AMINOPENICILLINS <- as.ab(c("AMP", "AMX"))
|
2022-08-28 10:31:50 +02:00
|
|
|
AB_ANTIFUNGALS <- AB_lookup %>%
|
|
|
|
filter(group %like% "antifungal") %>%
|
|
|
|
pull(ab)
|
|
|
|
AB_ANTIMYCOBACTERIALS <- AB_lookup %>%
|
|
|
|
filter(group %like% "antimycobacterial") %>%
|
|
|
|
pull(ab)
|
|
|
|
AB_CARBAPENEMS <- antibiotics %>%
|
|
|
|
filter(group %like% "carbapenem") %>%
|
|
|
|
pull(ab)
|
|
|
|
AB_CEPHALOSPORINS <- antibiotics %>%
|
|
|
|
filter(group %like% "cephalosporin") %>%
|
|
|
|
pull(ab)
|
|
|
|
AB_CEPHALOSPORINS_1ST <- antibiotics %>%
|
|
|
|
filter(group %like% "cephalosporin.*1") %>%
|
|
|
|
pull(ab)
|
|
|
|
AB_CEPHALOSPORINS_2ND <- antibiotics %>%
|
|
|
|
filter(group %like% "cephalosporin.*2") %>%
|
|
|
|
pull(ab)
|
|
|
|
AB_CEPHALOSPORINS_3RD <- antibiotics %>%
|
|
|
|
filter(group %like% "cephalosporin.*3") %>%
|
|
|
|
pull(ab)
|
|
|
|
AB_CEPHALOSPORINS_4TH <- antibiotics %>%
|
|
|
|
filter(group %like% "cephalosporin.*4") %>%
|
|
|
|
pull(ab)
|
|
|
|
AB_CEPHALOSPORINS_5TH <- antibiotics %>%
|
|
|
|
filter(group %like% "cephalosporin.*5") %>%
|
|
|
|
pull(ab)
|
2021-08-16 21:54:34 +02:00
|
|
|
AB_CEPHALOSPORINS_EXCEPT_CAZ <- AB_CEPHALOSPORINS[AB_CEPHALOSPORINS != "CAZ"]
|
2022-08-28 10:31:50 +02:00
|
|
|
AB_FLUOROQUINOLONES <- antibiotics %>%
|
|
|
|
filter(atc_group2 %like% "fluoroquinolone" | (group %like% "quinolone" & is.na(atc_group2))) %>%
|
|
|
|
pull(ab)
|
|
|
|
AB_GLYCOPEPTIDES <- antibiotics %>%
|
|
|
|
filter(group %like% "glycopeptide") %>%
|
|
|
|
pull(ab)
|
2021-08-16 21:54:34 +02:00
|
|
|
AB_LIPOGLYCOPEPTIDES <- as.ab(c("DAL", "ORI", "TLV")) # dalba/orita/tela
|
|
|
|
AB_GLYCOPEPTIDES_EXCEPT_LIPO <- AB_GLYCOPEPTIDES[!AB_GLYCOPEPTIDES %in% AB_LIPOGLYCOPEPTIDES]
|
2022-08-28 10:31:50 +02:00
|
|
|
AB_LINCOSAMIDES <- antibiotics %>%
|
|
|
|
filter(atc_group2 %like% "lincosamide" | (group %like% "lincosamide" & is.na(atc_group2))) %>%
|
|
|
|
pull(ab)
|
|
|
|
AB_MACROLIDES <- antibiotics %>%
|
|
|
|
filter(atc_group2 %like% "macrolide" | (group %like% "macrolide" & is.na(atc_group2))) %>%
|
|
|
|
pull(ab)
|
|
|
|
AB_OXAZOLIDINONES <- antibiotics %>%
|
|
|
|
filter(group %like% "oxazolidinone") %>%
|
|
|
|
pull(ab)
|
|
|
|
AB_PENICILLINS <- antibiotics %>%
|
|
|
|
filter(group %like% "penicillin") %>%
|
|
|
|
pull(ab)
|
|
|
|
AB_POLYMYXINS <- antibiotics %>%
|
|
|
|
filter(group %like% "polymyxin") %>%
|
|
|
|
pull(ab)
|
|
|
|
AB_QUINOLONES <- antibiotics %>%
|
|
|
|
filter(group %like% "quinolone") %>%
|
|
|
|
pull(ab)
|
|
|
|
AB_STREPTOGRAMINS <- antibiotics %>%
|
|
|
|
filter(atc_group2 %like% "streptogramin") %>%
|
|
|
|
pull(ab)
|
|
|
|
AB_TETRACYCLINES <- antibiotics %>%
|
|
|
|
filter(group %like% "tetracycline") %>%
|
|
|
|
pull(ab)
|
2021-08-16 21:54:34 +02:00
|
|
|
AB_TETRACYCLINES_EXCEPT_TGC <- AB_TETRACYCLINES[AB_TETRACYCLINES != "TGC"]
|
2022-08-28 10:31:50 +02:00
|
|
|
AB_TRIMETHOPRIMS <- antibiotics %>%
|
|
|
|
filter(group %like% "trimethoprim") %>%
|
|
|
|
pull(ab)
|
2021-08-16 21:54:34 +02:00
|
|
|
AB_UREIDOPENICILLINS <- as.ab(c("PIP", "TZP", "AZL", "MEZ"))
|
|
|
|
AB_BETALACTAMS <- c(AB_PENICILLINS, AB_CEPHALOSPORINS, AB_CARBAPENEMS)
|
|
|
|
# this will be used for documentation:
|
2021-04-07 08:37:42 +02:00
|
|
|
DEFINED_AB_GROUPS <- ls(envir = globalenv())
|
|
|
|
DEFINED_AB_GROUPS <- DEFINED_AB_GROUPS[!DEFINED_AB_GROUPS %in% globalenv_before_ab]
|
2022-03-14 16:36:10 +01:00
|
|
|
create_AB_lookup <- function() {
|
|
|
|
AB_lookup <- AMR::antibiotics
|
|
|
|
AB_lookup$generalised_name <- generalise_antibiotic_name(AB_lookup$name)
|
|
|
|
AB_lookup$generalised_synonyms <- lapply(AB_lookup$synonyms, generalise_antibiotic_name)
|
|
|
|
AB_lookup$generalised_abbreviations <- lapply(AB_lookup$abbreviations, generalise_antibiotic_name)
|
|
|
|
AB_lookup$generalised_loinc <- lapply(AB_lookup$loinc, generalise_antibiotic_name)
|
2022-08-28 10:31:50 +02:00
|
|
|
AB_lookup$generalised_all <- unname(lapply(
|
|
|
|
as.list(as.data.frame(t(AB_lookup[,
|
|
|
|
c(
|
|
|
|
"ab", "atc", "cid", "name",
|
|
|
|
colnames(AB_lookup)[colnames(AB_lookup) %like% "generalised"]
|
|
|
|
),
|
|
|
|
drop = FALSE
|
|
|
|
]),
|
|
|
|
stringsAsFactors = FALSE
|
|
|
|
)),
|
|
|
|
function(x) {
|
|
|
|
x <- generalise_antibiotic_name(unname(unlist(x)))
|
|
|
|
x[x != ""]
|
|
|
|
}
|
|
|
|
))
|
2022-03-14 16:36:10 +01:00
|
|
|
AB_lookup[, colnames(AB_lookup)[colnames(AB_lookup) %like% "^generalised"]]
|
|
|
|
}
|
|
|
|
AB_LOOKUP <- create_AB_lookup()
|
2021-04-07 08:37:42 +02:00
|
|
|
|
2019-06-01 20:40:49 +02:00
|
|
|
# Export to package as internal data ----
|
2022-08-27 20:49:37 +02:00
|
|
|
usethis::ui_info(paste0("Saving {usethis::ui_value('sysdata.rda')} to {usethis::ui_value('R/')}"))
|
|
|
|
suppressMessages(usethis::use_data(EUCAST_RULES_DF,
|
2022-08-28 10:31:50 +02:00
|
|
|
TRANSLATIONS,
|
|
|
|
LANGUAGES_SUPPORTED_NAMES,
|
|
|
|
LANGUAGES_SUPPORTED,
|
|
|
|
MO_CONS,
|
|
|
|
MO_COPS,
|
|
|
|
MO_STREP_ABCG,
|
|
|
|
MO_FULLNAME_LOWER,
|
|
|
|
MO_PREVALENT_GENERA,
|
|
|
|
AB_LOOKUP,
|
|
|
|
AB_AMINOGLYCOSIDES,
|
|
|
|
AB_AMINOPENICILLINS,
|
|
|
|
AB_ANTIFUNGALS,
|
|
|
|
AB_ANTIMYCOBACTERIALS,
|
|
|
|
AB_CARBAPENEMS,
|
|
|
|
AB_CEPHALOSPORINS,
|
|
|
|
AB_CEPHALOSPORINS_1ST,
|
|
|
|
AB_CEPHALOSPORINS_2ND,
|
|
|
|
AB_CEPHALOSPORINS_3RD,
|
|
|
|
AB_CEPHALOSPORINS_4TH,
|
|
|
|
AB_CEPHALOSPORINS_5TH,
|
|
|
|
AB_CEPHALOSPORINS_EXCEPT_CAZ,
|
|
|
|
AB_FLUOROQUINOLONES,
|
|
|
|
AB_LIPOGLYCOPEPTIDES,
|
|
|
|
AB_GLYCOPEPTIDES,
|
|
|
|
AB_GLYCOPEPTIDES_EXCEPT_LIPO,
|
|
|
|
AB_LINCOSAMIDES,
|
|
|
|
AB_MACROLIDES,
|
|
|
|
AB_OXAZOLIDINONES,
|
|
|
|
AB_PENICILLINS,
|
|
|
|
AB_POLYMYXINS,
|
|
|
|
AB_QUINOLONES,
|
|
|
|
AB_STREPTOGRAMINS,
|
|
|
|
AB_TETRACYCLINES,
|
|
|
|
AB_TETRACYCLINES_EXCEPT_TGC,
|
|
|
|
AB_TRIMETHOPRIMS,
|
|
|
|
AB_UREIDOPENICILLINS,
|
|
|
|
AB_BETALACTAMS,
|
|
|
|
DEFINED_AB_GROUPS,
|
|
|
|
internal = TRUE,
|
|
|
|
overwrite = TRUE,
|
|
|
|
version = 2,
|
|
|
|
compress = "xz"
|
|
|
|
))
|
2019-06-01 20:40:49 +02:00
|
|
|
|
2021-01-22 10:20:41 +01:00
|
|
|
# Export data sets to the repository in different formats -----------------
|
2019-09-15 22:57:30 +02:00
|
|
|
|
2022-08-26 22:25:15 +02:00
|
|
|
for (pkg in c("haven", "openxlsx", "arrow")) {
|
|
|
|
if (!pkg %in% rownames(utils::installed.packages())) {
|
|
|
|
message("NOTE: package '", pkg, "' not installed! Ignoring export where this package is required.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ("digest" %in% rownames(utils::installed.packages())) {
|
|
|
|
md5 <- function(object) digest::digest(object, "md5")
|
|
|
|
} else {
|
|
|
|
# will write all files anyway, since MD5 hash cannot be determined
|
|
|
|
md5 <- function(object) "unknown-md5-hash"
|
|
|
|
}
|
|
|
|
|
2020-09-14 12:21:23 +02:00
|
|
|
write_md5 <- function(object) {
|
2020-09-24 00:30:11 +02:00
|
|
|
conn <- file(paste0("data-raw/", deparse(substitute(object)), ".md5"))
|
2022-08-26 22:25:15 +02:00
|
|
|
writeLines(md5(object), conn)
|
2020-09-24 00:30:11 +02:00
|
|
|
close(conn)
|
2020-09-14 12:21:23 +02:00
|
|
|
}
|
|
|
|
changed_md5 <- function(object) {
|
2022-08-28 10:31:50 +02:00
|
|
|
tryCatch(
|
|
|
|
{
|
|
|
|
conn <- file(paste0("data-raw/", deparse(substitute(object)), ".md5"))
|
|
|
|
compared <- md5(object) != readLines(con = conn)
|
|
|
|
close(conn)
|
|
|
|
compared
|
|
|
|
},
|
|
|
|
error = function(e) TRUE
|
|
|
|
)
|
2020-09-14 12:21:23 +02:00
|
|
|
}
|
2021-01-22 10:20:41 +01:00
|
|
|
|
2020-02-14 19:54:13 +01:00
|
|
|
# give official names to ABs and MOs
|
2022-08-26 22:25:15 +02:00
|
|
|
rsi <- rsi_translation %>%
|
|
|
|
mutate(mo_name = mo_name(mo, language = NULL), .after = mo) %>%
|
2022-05-11 10:26:58 +02:00
|
|
|
mutate(ab_name = ab_name(ab, language = NULL), .after = ab)
|
2020-09-14 12:21:23 +02:00
|
|
|
if (changed_md5(rsi)) {
|
2022-08-27 20:49:37 +02:00
|
|
|
usethis::ui_info(paste0("Saving {usethis::ui_value('rsi_translation')} to {usethis::ui_value('data-raw/')}"))
|
2020-09-14 12:21:23 +02:00
|
|
|
write_md5(rsi)
|
|
|
|
try(saveRDS(rsi, "data-raw/rsi_translation.rds", version = 2, compress = "xz"), silent = TRUE)
|
|
|
|
try(write.table(rsi, "data-raw/rsi_translation.txt", sep = "\t", na = "", row.names = FALSE), silent = TRUE)
|
|
|
|
try(haven::write_sas(rsi, "data-raw/rsi_translation.sas"), silent = TRUE)
|
|
|
|
try(haven::write_sav(rsi, "data-raw/rsi_translation.sav"), silent = TRUE)
|
|
|
|
try(haven::write_dta(rsi, "data-raw/rsi_translation.dta"), silent = TRUE)
|
|
|
|
try(openxlsx::write.xlsx(rsi, "data-raw/rsi_translation.xlsx"), silent = TRUE)
|
2022-08-26 22:25:15 +02:00
|
|
|
try(arrow::write_feather(rsi, "data-raw/rsi_translation.feather"), silent = TRUE)
|
|
|
|
try(arrow::write_parquet(rsi, "data-raw/rsi_translation.parquet"), silent = TRUE)
|
2020-09-14 12:21:23 +02:00
|
|
|
}
|
2020-08-16 21:38:42 +02:00
|
|
|
|
2022-08-26 22:25:15 +02:00
|
|
|
if (changed_md5(microorganisms)) {
|
2022-08-27 20:49:37 +02:00
|
|
|
usethis::ui_info(paste0("Saving {usethis::ui_value('microorganisms')} to {usethis::ui_value('data-raw/')}"))
|
2022-08-26 22:25:15 +02:00
|
|
|
write_md5(microorganisms)
|
|
|
|
try(saveRDS(microorganisms, "data-raw/microorganisms.rds", version = 2, compress = "xz"), silent = TRUE)
|
2020-09-14 12:21:23 +02:00
|
|
|
try(write.table(mo, "data-raw/microorganisms.txt", sep = "\t", na = "", row.names = FALSE), silent = TRUE)
|
2022-08-26 22:25:15 +02:00
|
|
|
max_50_snomed <- sapply(microorganisms$snomed, function(x) paste(x[seq_len(min(50, length(x), na.rm = TRUE))], collapse = " "))
|
|
|
|
mo <- microorganisms
|
|
|
|
mo$snomed <- max_50_snomed
|
2022-08-28 10:31:50 +02:00
|
|
|
mo <- dplyr::mutate_if(mo, ~ !is.numeric(.), as.character)
|
2022-08-26 22:25:15 +02:00
|
|
|
try(haven::write_sas(mo, "data-raw/microorganisms.sas"), silent = TRUE)
|
|
|
|
try(haven::write_sav(mo, "data-raw/microorganisms.sav"), silent = TRUE)
|
|
|
|
try(haven::write_dta(mo, "data-raw/microorganisms.dta"), silent = TRUE)
|
|
|
|
try(openxlsx::write.xlsx(mo, "data-raw/microorganisms.xlsx"), silent = TRUE)
|
|
|
|
try(arrow::write_feather(microorganisms, "data-raw/microorganisms.feather"), silent = TRUE)
|
|
|
|
try(arrow::write_parquet(microorganisms, "data-raw/microorganisms.parquet"), silent = TRUE)
|
2020-09-14 12:21:23 +02:00
|
|
|
}
|
2020-08-16 21:38:42 +02:00
|
|
|
|
2020-09-14 12:21:23 +02:00
|
|
|
if (changed_md5(microorganisms.old)) {
|
2022-08-27 20:49:37 +02:00
|
|
|
usethis::ui_info(paste0("Saving {usethis::ui_value('microorganisms.old')} to {usethis::ui_value('data-raw/')}"))
|
2020-09-14 12:21:23 +02:00
|
|
|
write_md5(microorganisms.old)
|
|
|
|
try(saveRDS(microorganisms.old, "data-raw/microorganisms.old.rds", version = 2, compress = "xz"), silent = TRUE)
|
|
|
|
try(write.table(microorganisms.old, "data-raw/microorganisms.old.txt", sep = "\t", na = "", row.names = FALSE), silent = TRUE)
|
|
|
|
try(haven::write_sas(microorganisms.old, "data-raw/microorganisms.old.sas"), silent = TRUE)
|
|
|
|
try(haven::write_sav(microorganisms.old, "data-raw/microorganisms.old.sav"), silent = TRUE)
|
|
|
|
try(haven::write_dta(microorganisms.old, "data-raw/microorganisms.old.dta"), silent = TRUE)
|
|
|
|
try(openxlsx::write.xlsx(microorganisms.old, "data-raw/microorganisms.old.xlsx"), silent = TRUE)
|
2022-08-26 22:25:15 +02:00
|
|
|
try(arrow::write_feather(microorganisms.old, "data-raw/microorganisms.old.feather"), silent = TRUE)
|
|
|
|
try(arrow::write_parquet(microorganisms.old, "data-raw/microorganisms.old.parquet"), silent = TRUE)
|
2020-09-14 12:21:23 +02:00
|
|
|
}
|
2020-08-17 21:49:58 +02:00
|
|
|
|
2022-08-28 10:31:50 +02:00
|
|
|
ab <- dplyr::mutate_if(antibiotics, ~ !is.numeric(.), as.character)
|
2020-09-14 12:21:23 +02:00
|
|
|
if (changed_md5(ab)) {
|
2022-08-27 20:49:37 +02:00
|
|
|
usethis::ui_info(paste0("Saving {usethis::ui_value('antibiotics')} to {usethis::ui_value('data-raw/')}"))
|
2020-09-14 12:21:23 +02:00
|
|
|
write_md5(ab)
|
2022-08-26 22:25:15 +02:00
|
|
|
try(saveRDS(antibiotics, "data-raw/antibiotics.rds", version = 2, compress = "xz"), silent = TRUE)
|
|
|
|
try(write.table(antibiotics, "data-raw/antibiotics.txt", sep = "\t", na = "", row.names = FALSE), silent = TRUE)
|
2020-09-14 12:21:23 +02:00
|
|
|
try(haven::write_sas(ab, "data-raw/antibiotics.sas"), silent = TRUE)
|
|
|
|
try(haven::write_sav(ab, "data-raw/antibiotics.sav"), silent = TRUE)
|
|
|
|
try(haven::write_dta(ab, "data-raw/antibiotics.dta"), silent = TRUE)
|
|
|
|
try(openxlsx::write.xlsx(ab, "data-raw/antibiotics.xlsx"), silent = TRUE)
|
2022-08-26 22:25:15 +02:00
|
|
|
try(arrow::write_feather(antibiotics, "data-raw/antibiotics.feather"), silent = TRUE)
|
|
|
|
try(arrow::write_parquet(antibiotics, "data-raw/antibiotics.parquet"), silent = TRUE)
|
2020-09-14 12:21:23 +02:00
|
|
|
}
|
2020-08-16 21:38:42 +02:00
|
|
|
|
2022-08-28 10:31:50 +02:00
|
|
|
av <- dplyr::mutate_if(antivirals, ~ !is.numeric(.), as.character)
|
2020-09-14 12:21:23 +02:00
|
|
|
if (changed_md5(av)) {
|
2022-08-27 20:49:37 +02:00
|
|
|
usethis::ui_info(paste0("Saving {usethis::ui_value('antivirals')} to {usethis::ui_value('data-raw/')}"))
|
2020-09-14 12:21:23 +02:00
|
|
|
write_md5(av)
|
2022-08-26 22:25:15 +02:00
|
|
|
try(saveRDS(antivirals, "data-raw/antivirals.rds", version = 2, compress = "xz"), silent = TRUE)
|
2020-09-14 12:21:23 +02:00
|
|
|
try(write.table(av, "data-raw/antivirals.txt", sep = "\t", na = "", row.names = FALSE), silent = TRUE)
|
|
|
|
try(haven::write_sas(av, "data-raw/antivirals.sas"), silent = TRUE)
|
|
|
|
try(haven::write_sav(av, "data-raw/antivirals.sav"), silent = TRUE)
|
|
|
|
try(haven::write_dta(av, "data-raw/antivirals.dta"), silent = TRUE)
|
|
|
|
try(openxlsx::write.xlsx(av, "data-raw/antivirals.xlsx"), silent = TRUE)
|
2022-08-26 22:25:15 +02:00
|
|
|
try(arrow::write_feather(antivirals, "data-raw/antivirals.feather"), silent = TRUE)
|
|
|
|
try(arrow::write_parquet(antivirals, "data-raw/antivirals.parquet"), silent = TRUE)
|
2020-09-14 12:21:23 +02:00
|
|
|
}
|
|
|
|
|
2021-12-14 21:47:14 +01:00
|
|
|
# give official names to ABs and MOs
|
2022-08-28 10:31:50 +02:00
|
|
|
intrinsicR <- data.frame(
|
|
|
|
microorganism = mo_name(intrinsic_resistant$mo, language = NULL),
|
|
|
|
antibiotic = ab_name(intrinsic_resistant$ab, language = NULL),
|
|
|
|
stringsAsFactors = FALSE
|
|
|
|
)
|
2021-12-14 21:47:14 +01:00
|
|
|
if (changed_md5(intrinsicR)) {
|
2022-08-27 20:49:37 +02:00
|
|
|
usethis::ui_info(paste0("Saving {usethis::ui_value('intrinsic_resistant')} to {usethis::ui_value('data-raw/')}"))
|
2021-12-14 21:47:14 +01:00
|
|
|
write_md5(intrinsicR)
|
|
|
|
try(saveRDS(intrinsicR, "data-raw/intrinsic_resistant.rds", version = 2, compress = "xz"), silent = TRUE)
|
|
|
|
try(write.table(intrinsicR, "data-raw/intrinsic_resistant.txt", sep = "\t", na = "", row.names = FALSE), silent = TRUE)
|
|
|
|
try(haven::write_sas(intrinsicR, "data-raw/intrinsic_resistant.sas"), silent = TRUE)
|
|
|
|
try(haven::write_sav(intrinsicR, "data-raw/intrinsic_resistant.sav"), silent = TRUE)
|
|
|
|
try(haven::write_dta(intrinsicR, "data-raw/intrinsic_resistant.dta"), silent = TRUE)
|
|
|
|
try(openxlsx::write.xlsx(intrinsicR, "data-raw/intrinsic_resistant.xlsx"), silent = TRUE)
|
2022-08-26 22:25:15 +02:00
|
|
|
try(arrow::write_feather(intrinsicR, "data-raw/intrinsic_resistant.feather"), silent = TRUE)
|
|
|
|
try(arrow::write_parquet(intrinsicR, "data-raw/intrinsic_resistant.parquet"), silent = TRUE)
|
2020-09-14 12:21:23 +02:00
|
|
|
}
|
2020-08-16 21:38:42 +02:00
|
|
|
|
2021-01-18 16:57:56 +01:00
|
|
|
if (changed_md5(dosage)) {
|
2022-08-27 20:49:37 +02:00
|
|
|
usethis::ui_info(paste0("Saving {usethis::ui_value('dosage')} to {usethis::ui_value('data-raw/')}"))
|
2021-01-18 16:57:56 +01:00
|
|
|
write_md5(dosage)
|
|
|
|
try(saveRDS(dosage, "data-raw/dosage.rds", version = 2, compress = "xz"), silent = TRUE)
|
|
|
|
try(write.table(dosage, "data-raw/dosage.txt", sep = "\t", na = "", row.names = FALSE), silent = TRUE)
|
|
|
|
try(haven::write_sas(dosage, "data-raw/dosage.sas"), silent = TRUE)
|
|
|
|
try(haven::write_sav(dosage, "data-raw/dosage.sav"), silent = TRUE)
|
|
|
|
try(haven::write_dta(dosage, "data-raw/dosage.dta"), silent = TRUE)
|
|
|
|
try(openxlsx::write.xlsx(dosage, "data-raw/dosage.xlsx"), silent = TRUE)
|
2022-08-26 22:25:15 +02:00
|
|
|
try(arrow::write_feather(dosage, "data-raw/dosage.feather"), silent = TRUE)
|
|
|
|
try(arrow::write_parquet(dosage, "data-raw/dosage.parquet"), silent = TRUE)
|
2021-01-18 16:57:56 +01:00
|
|
|
}
|
|
|
|
|
2022-08-27 20:49:37 +02:00
|
|
|
suppressMessages(reset_AMR_locale())
|
2022-08-19 12:33:14 +02:00
|
|
|
|
2021-01-22 10:20:41 +01:00
|
|
|
# remove leftovers from global env
|
|
|
|
current_globalenv <- ls(envir = globalenv())
|
|
|
|
rm(list = current_globalenv[!current_globalenv %in% old_globalenv])
|
|
|
|
rm(current_globalenv)
|
2022-08-26 22:25:15 +02:00
|
|
|
|
|
|
|
devtools::load_all(quiet = TRUE)
|
2022-08-28 10:31:50 +02:00
|
|
|
|
|
|
|
|
2022-08-28 19:17:12 +02:00
|
|
|
# Update URLs -------------------------------------------------------------
|
|
|
|
usethis::ui_info("Checking URLs for redirects")
|
|
|
|
invisible(capture.output(urlchecker::url_update()))
|
|
|
|
|
|
|
|
|
2022-08-28 10:31:50 +02:00
|
|
|
# Document pkg ------------------------------------------------------------
|
|
|
|
usethis::ui_info("Documenting package")
|
|
|
|
suppressMessages(devtools::document(quiet = TRUE))
|
|
|
|
|
|
|
|
|
|
|
|
# Style pkg ---------------------------------------------------------------
|
|
|
|
usethis::ui_info("Styling package")
|
|
|
|
invisible(capture.output(styler::style_pkg(
|
|
|
|
style = styler::tidyverse_style,
|
|
|
|
filetype = c("R", "Rmd")
|
|
|
|
)))
|
|
|
|
invisible(capture.output(styler::style_dir(
|
|
|
|
path = "inst", # unit tests
|
|
|
|
style = styler::tidyverse_style,
|
|
|
|
filetype = c("R", "Rmd")
|
|
|
|
)))
|
|
|
|
|
|
|
|
|
|
|
|
# Finished ----------------------------------------------------------------
|
2022-08-28 11:17:53 +02:00
|
|
|
usethis::ui_done("All done")
|