2018-12-16 22:45:12 +01:00
|
|
|
# ==================================================================== #
|
|
|
|
# TITLE #
|
2021-02-02 23:57:35 +01:00
|
|
|
# Antimicrobial Resistance (AMR) Data Analysis for R #
|
2018-12-16 22:45:12 +01:00
|
|
|
# #
|
2019-01-02 23:24:07 +01:00
|
|
|
# SOURCE #
|
2020-07-08 14:48:06 +02:00
|
|
|
# https://github.com/msberends/AMR #
|
2018-12-16 22:45:12 +01:00
|
|
|
# #
|
|
|
|
# LICENCE #
|
2020-12-27 00:30:28 +01:00
|
|
|
# (c) 2018-2021 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. #
|
2018-12-16 22:45:12 +01:00
|
|
|
# #
|
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. #
|
2020-01-05 17:22:09 +01:00
|
|
|
# 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/ #
|
2018-12-16 22:45:12 +01:00
|
|
|
# ==================================================================== #
|
|
|
|
|
2018-08-25 22:01:14 +02:00
|
|
|
context("rsi.R")
|
|
|
|
|
|
|
|
test_that("rsi works", {
|
2020-12-22 00:51:17 +01:00
|
|
|
|
2019-10-15 14:35:23 +02:00
|
|
|
skip_on_cran()
|
|
|
|
|
2018-08-25 22:01:14 +02:00
|
|
|
expect_true(as.rsi("S") < as.rsi("I"))
|
|
|
|
expect_true(as.rsi("I") < as.rsi("R"))
|
|
|
|
expect_true(is.rsi(as.rsi("S")))
|
2020-09-19 11:54:01 +02:00
|
|
|
|
2020-09-25 14:44:50 +02:00
|
|
|
x <- example_isolates$AMX
|
|
|
|
expect_s3_class(x[1], "rsi")
|
|
|
|
expect_s3_class(x[[1]], "rsi")
|
|
|
|
expect_s3_class(c(x[1], x[9]), "rsi")
|
|
|
|
expect_s3_class(unique(x[1], x[9]), "rsi")
|
|
|
|
|
2020-09-19 15:15:57 +02:00
|
|
|
pdf(NULL) # prevent Rplots.pdf being created
|
|
|
|
expect_silent(barplot(as.rsi(c("S", "I", "R"))))
|
|
|
|
expect_silent(plot(as.rsi(c("S", "I", "R"))))
|
2021-02-26 12:11:29 +01:00
|
|
|
if (require("ggplot2")) expect_s3_class(ggplot(as.rsi(c("S", "I", "R"))), "gg")
|
2020-09-19 15:15:57 +02:00
|
|
|
expect_output(print(as.rsi(c("S", "I", "R"))))
|
2020-02-21 13:13:34 +01:00
|
|
|
|
|
|
|
expect_equal(as.character(as.rsi(c(1:3))), c("S", "I", "R"))
|
2020-09-19 11:54:01 +02:00
|
|
|
|
2018-08-25 22:01:14 +02:00
|
|
|
expect_equal(suppressWarnings(as.logical(as.rsi("INVALID VALUE"))), NA)
|
2020-07-22 12:29:51 +02:00
|
|
|
|
|
|
|
expect_equal(summary(as.rsi(c("S", "R"))),
|
|
|
|
structure(c("Class" = "rsi",
|
2020-08-10 11:44:58 +02:00
|
|
|
"%R" = "50.0% (n=1)",
|
|
|
|
"%SI" = "50.0% (n=1)",
|
|
|
|
"- %S" = "50.0% (n=1)",
|
|
|
|
"- %I" = " 0.0% (n=0)"), class = c("summaryDefault", "table")))
|
2020-07-22 12:29:51 +02:00
|
|
|
|
2019-08-27 16:45:42 +02:00
|
|
|
expect_identical(as.logical(lapply(example_isolates, is.rsi.eligible)),
|
|
|
|
rep(FALSE, length(example_isolates)))
|
2020-07-22 12:29:51 +02:00
|
|
|
|
2020-02-21 13:13:34 +01:00
|
|
|
expect_error(as.rsi.mic(as.mic(16)))
|
|
|
|
expect_error(as.rsi.disk(as.disk(16)))
|
|
|
|
|
|
|
|
expect_error(get_guideline("this one does not exist"))
|
2020-09-28 01:08:55 +02:00
|
|
|
|
2021-05-13 19:31:47 +02:00
|
|
|
if (require("dplyr")) {
|
|
|
|
# 40 rsi columns
|
|
|
|
expect_equal(example_isolates %>%
|
|
|
|
mutate_at(vars(PEN:RIF), as.character) %>%
|
|
|
|
lapply(is.rsi.eligible) %>%
|
|
|
|
as.logical() %>%
|
|
|
|
sum(),
|
|
|
|
40)
|
|
|
|
expect_equal(sum(is.rsi(example_isolates)), 40)
|
|
|
|
|
|
|
|
expect_output(print(tibble(ab = as.rsi("S"))))
|
|
|
|
}
|
|
|
|
|
|
|
|
if (require("skimr")) {
|
|
|
|
expect_s3_class(skim(example_isolates),
|
|
|
|
"data.frame")
|
|
|
|
if (require("dplyr")) {
|
|
|
|
expect_s3_class(example_isolates %>%
|
|
|
|
mutate(m = as.mic(2),
|
|
|
|
d = as.disk(20)) %>%
|
|
|
|
skim(),
|
|
|
|
"data.frame")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-25 22:01:14 +02:00
|
|
|
})
|
2019-05-13 10:10:16 +02:00
|
|
|
|
|
|
|
test_that("mic2rsi works", {
|
2019-10-15 14:35:23 +02:00
|
|
|
|
|
|
|
skip_on_cran()
|
|
|
|
|
2020-09-29 23:35:46 +02:00
|
|
|
# S. pneumoniae/ampicillin in EUCAST 2020: 0.5-2 ug/ml (R is only > 2)
|
2019-05-13 10:10:16 +02:00
|
|
|
expect_equal(as.character(
|
2020-09-29 23:35:46 +02:00
|
|
|
as.rsi(x = as.mic(c(0.125, 0.5, 1, 2, 4)),
|
|
|
|
mo = "B_STRPT_PNMN",
|
|
|
|
ab = "AMP",
|
|
|
|
guideline = "EUCAST 2020")),
|
2021-03-08 02:38:32 +01:00
|
|
|
c("S", "S", "I", "I", "R"))
|
2020-09-29 23:35:46 +02:00
|
|
|
# S. pneumoniae/amoxicillin in CLSI 2019: 2-8 ug/ml (R is 8 and > 8)
|
2019-05-13 10:10:16 +02:00
|
|
|
expect_equal(as.character(
|
2020-09-29 23:35:46 +02:00
|
|
|
as.rsi(x = as.mic(c(1, 2, 4, 8, 16)),
|
2019-09-18 15:46:09 +02:00
|
|
|
mo = "B_STRPT_PNMN",
|
2019-05-13 10:10:16 +02:00
|
|
|
ab = "AMX",
|
2020-09-29 23:35:46 +02:00
|
|
|
guideline = "CLSI 2019")),
|
2021-03-08 02:38:32 +01:00
|
|
|
c("S", "S", "I", "R", "R"))
|
2019-05-13 10:10:16 +02:00
|
|
|
|
2020-09-29 10:40:25 +02:00
|
|
|
# cutoffs at MIC = 8
|
|
|
|
expect_equal(as.rsi(as.mic(2), "E. coli", "ampicillin", guideline = "EUCAST 2020"),
|
2021-03-08 02:38:32 +01:00
|
|
|
as.rsi("S"))
|
2020-09-29 10:40:25 +02:00
|
|
|
expect_equal(as.rsi(as.mic(32), "E. coli", "ampicillin", guideline = "EUCAST 2020"),
|
2021-03-08 02:38:32 +01:00
|
|
|
as.rsi("R"))
|
2020-12-17 16:22:25 +01:00
|
|
|
|
2021-05-13 19:31:47 +02:00
|
|
|
if (require("dplyr")) {
|
|
|
|
expect_true(suppressWarnings(example_isolates %>%
|
|
|
|
mutate(amox_mic = as.mic(2)) %>%
|
|
|
|
select(mo, amox_mic) %>%
|
|
|
|
as.rsi() %>%
|
|
|
|
pull(amox_mic) %>%
|
|
|
|
is.rsi()))
|
|
|
|
}
|
2019-05-13 10:10:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
test_that("disk2rsi works", {
|
2019-10-15 14:35:23 +02:00
|
|
|
|
|
|
|
skip_on_cran()
|
|
|
|
|
2019-05-13 10:10:16 +02:00
|
|
|
expect_equal(as.character(
|
|
|
|
as.rsi(x = as.disk(22),
|
2019-09-18 15:46:09 +02:00
|
|
|
mo = "B_STRPT_PNMN",
|
2019-05-13 10:10:16 +02:00
|
|
|
ab = "ERY",
|
|
|
|
guideline = "CLSI")),
|
|
|
|
"S")
|
|
|
|
expect_equal(as.character(
|
|
|
|
as.rsi(x = as.disk(18),
|
2019-09-18 15:46:09 +02:00
|
|
|
mo = "B_STRPT_PNMN",
|
2019-05-13 10:10:16 +02:00
|
|
|
ab = "ERY",
|
|
|
|
guideline = "CLSI")),
|
|
|
|
"I")
|
|
|
|
expect_equal(as.character(
|
|
|
|
as.rsi(x = as.disk(10),
|
2019-09-18 15:46:09 +02:00
|
|
|
mo = "B_STRPT_PNMN",
|
2019-05-13 10:10:16 +02:00
|
|
|
ab = "ERY",
|
|
|
|
guideline = "CLSI")),
|
|
|
|
"R")
|
2021-05-13 19:31:47 +02:00
|
|
|
|
|
|
|
if (require("dplyr")) {
|
|
|
|
expect_true(example_isolates %>%
|
|
|
|
mutate(amox_disk = as.disk(15)) %>%
|
|
|
|
select(mo, amox_disk) %>%
|
|
|
|
as.rsi(guideline = "CLSI") %>%
|
|
|
|
pull(amox_disk) %>%
|
|
|
|
is.rsi())
|
|
|
|
}
|
2020-12-13 13:44:04 +01:00
|
|
|
|
|
|
|
# frequency tables
|
|
|
|
if (require("cleaner")) {
|
|
|
|
expect_s3_class(cleaner::freq(example_isolates$AMX), "freq")
|
|
|
|
}
|
2019-05-13 10:10:16 +02:00
|
|
|
})
|
2020-12-22 00:51:17 +01:00
|
|
|
|
|
|
|
test_that("data.frame2rsi works", {
|
|
|
|
|
|
|
|
skip_on_cran()
|
|
|
|
|
|
|
|
df <- data.frame(microorganism = "Escherichia coli",
|
|
|
|
AMP = as.mic(8),
|
|
|
|
CIP = as.mic(0.256),
|
|
|
|
GEN = as.disk(18),
|
|
|
|
TOB = as.disk(16),
|
|
|
|
ERY = "R", # note about assigning <rsi> class
|
|
|
|
CLR = "V") # note about cleaning
|
2021-05-13 19:31:47 +02:00
|
|
|
expect_s3_class(suppressWarnings(as.rsi(df)),
|
|
|
|
"data.frame")
|
2020-12-22 00:51:17 +01:00
|
|
|
|
|
|
|
expect_s3_class(suppressWarnings(as.rsi(data.frame(mo = "Escherichia coli",
|
2021-05-13 19:31:47 +02:00
|
|
|
amoxi = c("R", "S", "I", "invalid")))$amoxi),
|
|
|
|
"rsi")
|
|
|
|
expect_warning(as.rsi(data.frame(mo = "E. coli",
|
|
|
|
NIT = c("<= 2", 32))))
|
|
|
|
expect_message(as.rsi(data.frame(mo = "E. coli",
|
|
|
|
NIT = c("<= 2", 32),
|
|
|
|
uti = TRUE)))
|
|
|
|
expect_message(as.rsi(data.frame(mo = "E. coli",
|
|
|
|
NIT = c("<= 2", 32),
|
|
|
|
specimen = c("urine", "blood"))))
|
2020-12-22 00:51:17 +01:00
|
|
|
})
|