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 #
|
|
|
|
# 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:
|
2021-02-02 23:57:35 +01:00
|
|
|
# source("data-raw/_internals.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-19 12:33:14 +02:00
|
|
|
set_AMR_locale("en")
|
|
|
|
|
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
|
2021-06-04 21:07:55 +02:00
|
|
|
EUCAST_RULES_DF <- utils::read.delim(file = "data-raw/eucast_rules.tsv",
|
2022-08-20 20:17:14 +02:00
|
|
|
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
|
|
|
|
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) %>%
|
|
|
|
mutate(reference.rule_group = as.character(reference.rule_group)) %>%
|
|
|
|
select(-sorting_rule)
|
2019-10-23 14:48:25 +02:00
|
|
|
|
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") {
|
|
|
|
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",
|
2021-10-06 13:23:57 +02:00
|
|
|
"vitulinus", "vitulus", "warneri", "xylosus",
|
|
|
|
"caledonicus", "canis",
|
|
|
|
"durrellii", "lloydii")
|
2021-05-30 22:14:38 +02:00
|
|
|
| (MO_staph$species == "schleiferi" & MO_staph$subspecies %in% c("schleiferi", ""))),
|
|
|
|
"mo", drop = TRUE]
|
|
|
|
} else if (type == "CoPS") {
|
|
|
|
MO_staph[which(MO_staph$species %in% c("coagulase-positive", "coagulans",
|
|
|
|
"agnetis", "argenteus",
|
|
|
|
"cornubiensis",
|
|
|
|
"delphini", "lutrae",
|
|
|
|
"hyicus", "intermedius",
|
|
|
|
"pseudintermedius", "pseudointermedius",
|
2021-10-06 13:23:57 +02:00
|
|
|
"schweitzeri", "simiae",
|
|
|
|
"roterodami")
|
2021-05-30 22:14:38 +02:00
|
|
|
| (MO_staph$species == "schleiferi" & MO_staph$subspecies == "coagulans")),
|
|
|
|
"mo", drop = TRUE]
|
|
|
|
}
|
|
|
|
}
|
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.
|
|
|
|
MO_lookup$fullname_lower <- tolower(trimws(paste(MO_lookup$genus,
|
|
|
|
MO_lookup$species,
|
|
|
|
MO_lookup$subspecies)))
|
|
|
|
ind <- MO_lookup$genus == "" | grepl("^[(]unknown ", MO_lookup$fullname, perl = TRUE)
|
|
|
|
MO_lookup[ind, "fullname_lower"] <- tolower(MO_lookup[ind, "fullname"])
|
|
|
|
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-06-10 13:15:23 +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")
|
2021-08-16 21:54:34 +02:00
|
|
|
AB_AMINOGLYCOSIDES <- antibiotics %>% filter(group %like% "aminoglycoside") %>% pull(ab)
|
|
|
|
AB_AMINOPENICILLINS <- as.ab(c("AMP", "AMX"))
|
|
|
|
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)
|
|
|
|
AB_CEPHALOSPORINS_EXCEPT_CAZ <- AB_CEPHALOSPORINS[AB_CEPHALOSPORINS != "CAZ"]
|
|
|
|
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)
|
|
|
|
AB_LIPOGLYCOPEPTIDES <- as.ab(c("DAL", "ORI", "TLV")) # dalba/orita/tela
|
|
|
|
AB_GLYCOPEPTIDES_EXCEPT_LIPO <- AB_GLYCOPEPTIDES[!AB_GLYCOPEPTIDES %in% AB_LIPOGLYCOPEPTIDES]
|
|
|
|
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)
|
|
|
|
AB_TETRACYCLINES_EXCEPT_TGC <- AB_TETRACYCLINES[AB_TETRACYCLINES != "TGC"]
|
|
|
|
AB_TRIMETHOPRIMS <- antibiotics %>% filter(group %like% "trimethoprim") %>% pull(ab)
|
|
|
|
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)
|
|
|
|
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 != ""]
|
|
|
|
}))
|
|
|
|
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 ----
|
2021-06-04 21:07:55 +02:00
|
|
|
usethis::use_data(EUCAST_RULES_DF,
|
2021-01-22 10:20:41 +01:00
|
|
|
MO_CONS,
|
|
|
|
MO_COPS,
|
2021-12-11 13:41:31 +01:00
|
|
|
MO_STREP_ABCG,
|
2022-03-14 16:36:10 +01:00
|
|
|
MO_FULLNAME_LOWER,
|
2022-06-10 13:15:23 +02:00
|
|
|
MO_PREVALENT_GENERA,
|
2022-03-14 16:36:10 +01:00
|
|
|
AB_LOOKUP,
|
2021-08-16 21:54:34 +02:00
|
|
|
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,
|
2021-04-07 08:37:42 +02:00
|
|
|
DEFINED_AB_GROUPS,
|
2019-06-01 20:40:49 +02:00
|
|
|
internal = TRUE,
|
|
|
|
overwrite = TRUE,
|
2020-09-14 12:21:23 +02:00
|
|
|
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
|
|
|
|
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"))
|
|
|
|
writeLines(digest::digest(object, "md5"), conn)
|
|
|
|
close(conn)
|
2020-09-14 12:21:23 +02:00
|
|
|
}
|
|
|
|
changed_md5 <- function(object) {
|
|
|
|
tryCatch({
|
|
|
|
conn <- file(paste0("data-raw/", deparse(substitute(object)), ".md5"))
|
|
|
|
compared <- digest::digest(object, "md5") != readLines(con = conn)
|
|
|
|
close(conn)
|
|
|
|
compared
|
|
|
|
}, error = function(e) TRUE)
|
|
|
|
}
|
2021-01-22 10:20:41 +01:00
|
|
|
|
2020-02-14 19:54:13 +01:00
|
|
|
# give official names to ABs and MOs
|
2022-05-11 10:26:58 +02:00
|
|
|
rsi <- AMR::rsi_translation %>%
|
|
|
|
mutate(mo_name = mo_name(mo, language = NULL), .after = mo) %>%
|
|
|
|
mutate(ab_name = ab_name(ab, language = NULL), .after = ab)
|
2020-09-14 12:21:23 +02:00
|
|
|
if (changed_md5(rsi)) {
|
2021-03-11 21:42:30 +01: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)
|
|
|
|
}
|
2020-08-16 21:38:42 +02:00
|
|
|
|
|
|
|
mo <- dplyr::mutate_if(microorganisms, ~!is.numeric(.), as.character)
|
2020-09-14 12:21:23 +02:00
|
|
|
if (changed_md5(mo)) {
|
2021-03-11 21:42:30 +01:00
|
|
|
usethis::ui_info(paste0("Saving {usethis::ui_value('microorganisms')} to {usethis::ui_value('/data-raw/')}"))
|
2020-09-14 12:21:23 +02:00
|
|
|
write_md5(mo)
|
|
|
|
try(saveRDS(mo, "data-raw/microorganisms.rds", version = 2, compress = "xz"), silent = TRUE)
|
|
|
|
try(write.table(mo, "data-raw/microorganisms.txt", sep = "\t", na = "", row.names = FALSE), silent = TRUE)
|
2021-03-11 21:42:30 +01:00
|
|
|
try(haven::write_sas(dplyr::select(mo, -snomed), "data-raw/microorganisms.sas"), silent = TRUE)
|
|
|
|
try(haven::write_sav(dplyr::select(mo, -snomed), "data-raw/microorganisms.sav"), silent = TRUE)
|
|
|
|
try(haven::write_dta(dplyr::select(mo, -snomed), "data-raw/microorganisms.dta"), silent = TRUE)
|
2022-06-10 13:15:23 +02:00
|
|
|
try(openxlsx::write.xlsx(dplyr::select(mo, -snomed), "data-raw/microorganisms.xlsx"), 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)) {
|
2021-03-11 21:42:30 +01: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)
|
|
|
|
}
|
2020-08-17 21:49:58 +02:00
|
|
|
|
2020-08-16 21:38:42 +02:00
|
|
|
ab <- dplyr::mutate_if(antibiotics, ~!is.numeric(.), as.character)
|
2020-09-14 12:21:23 +02:00
|
|
|
if (changed_md5(ab)) {
|
2021-03-11 21:42:30 +01: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)
|
|
|
|
try(saveRDS(ab, "data-raw/antibiotics.rds", version = 2, compress = "xz"), silent = TRUE)
|
|
|
|
try(write.table(ab, "data-raw/antibiotics.txt", sep = "\t", na = "", row.names = FALSE), silent = TRUE)
|
|
|
|
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)
|
|
|
|
}
|
2020-08-16 21:38:42 +02:00
|
|
|
|
|
|
|
av <- dplyr::mutate_if(antivirals, ~!is.numeric(.), as.character)
|
2020-09-14 12:21:23 +02:00
|
|
|
if (changed_md5(av)) {
|
2021-03-11 21:42:30 +01: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)
|
|
|
|
try(saveRDS(av, "data-raw/antivirals.rds", version = 2, compress = "xz"), silent = TRUE)
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2021-12-14 21:47:14 +01:00
|
|
|
# give official names to ABs and MOs
|
2022-05-11 10:26:58 +02:00
|
|
|
intrinsicR <- data.frame(microorganism = mo_name(intrinsic_resistant$mo, language = NULL),
|
|
|
|
antibiotic = ab_name(intrinsic_resistant$ab, language = NULL),
|
2021-12-14 21:47:14 +01:00
|
|
|
stringsAsFactors = FALSE)
|
|
|
|
if (changed_md5(intrinsicR)) {
|
2021-03-11 21:42:30 +01: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)
|
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)) {
|
2021-03-11 21:42:30 +01: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-19 12:33:14 +02:00
|
|
|
reset_AMR_locale()
|
|
|
|
|
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)
|