AMR/tests/testthat/test-eucast_rules.R

101 lines
4.1 KiB
R
Raw Normal View History

# ==================================================================== #
# TITLE #
# Antimicrobial Resistance (AMR) Analysis #
# #
# AUTHORS #
# Berends MS (m.s.berends@umcg.nl), Luz CF (c.f.luz@umcg.nl) #
# #
# LICENCE #
# This package is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License version 2.0, #
# as published by the Free Software Foundation. #
# #
# This R package is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License version 2.0 for more details. #
# ==================================================================== #
2018-11-16 20:50:50 +01:00
context("eucast_rules.R")
2018-03-27 17:43:42 +02:00
test_that("EUCAST rules work", {
2018-11-16 20:50:50 +01:00
expect_error(suppressWarnings(eucast_rules(septic_patients, col_mo = "Non-existing")))
2018-07-23 14:14:03 +02:00
expect_identical(colnames(septic_patients),
2018-11-16 20:50:50 +01:00
colnames(suppressWarnings(eucast_rules(septic_patients))))
2018-05-02 14:56:25 +02:00
2018-10-17 17:32:34 +02:00
a <- data.frame(mo = c("KLEPNE", # Klebsiella pneumoniae
"PSEAER", # Pseudomonas aeruginosa
"ENTAER"), # Enterobacter aerogenes
2018-03-27 17:43:42 +02:00
amox = "-", # Amoxicillin
stringsAsFactors = FALSE)
2018-10-17 17:32:34 +02:00
b <- data.frame(mo = c("KLEPNE", # Klebsiella pneumoniae
"PSEAER", # Pseudomonas aeruginosa
"ENTAER"), # Enterobacter aerogenes
amox = "R", # Amoxicillin
2018-03-27 17:43:42 +02:00
stringsAsFactors = FALSE)
2018-11-16 20:50:50 +01:00
expect_identical(suppressWarnings(eucast_rules(a, "mo", info = FALSE)), b)
expect_identical(suppressWarnings(eucast_rules(a, "mo", info = TRUE)), b)
2018-11-01 20:23:33 +01:00
expect_identical(suppressWarnings(interpretive_reading(a, "mo", info = TRUE)), b)
2018-04-02 16:05:09 +02:00
2018-10-17 17:32:34 +02:00
a <- data.frame(mo = c("STAAUR", # Staphylococcus aureus
"STCGRA"), # Streptococcus pyognenes (Lancefield Group A)
coli = "-", # Colistin
2018-03-27 17:43:42 +02:00
stringsAsFactors = FALSE)
2018-10-17 17:32:34 +02:00
b <- data.frame(mo = c("STAAUR", # Staphylococcus aureus
"STCGRA"), # Streptococcus pyognenes (Lancefield Group A)
coli = "R", # Colistin
2018-03-27 17:43:42 +02:00
stringsAsFactors = FALSE)
2018-11-16 20:50:50 +01:00
expect_equal(suppressWarnings(eucast_rules(a, "mo", info = FALSE)), b)
2018-11-01 20:23:33 +01:00
# piperacillin must be R in Enterobacteriaceae when tica is R
library(dplyr)
expect_equal(suppressWarnings(
septic_patients %>%
mutate(tica = as.rsi("R"),
2018-11-01 20:23:33 +01:00
pipe = as.rsi("S")) %>%
2018-11-16 20:50:50 +01:00
eucast_rules(col_mo = "mo") %>%
left_join_microorganisms() %>%
filter(family == "Enterobacteriaceae") %>%
2018-11-01 20:23:33 +01:00
pull(pipe) %>%
unique() %>%
as.character()),
"R")
2018-10-17 17:32:34 +02:00
# azit and clar must be equal to eryt
2018-10-17 17:32:34 +02:00
a <- suppressWarnings(
septic_patients %>%
transmute(mo,
eryt,
azit = as.rsi("R"),
clar = as.rsi("R")) %>%
2018-11-16 20:50:50 +01:00
eucast_rules(col_mo = "mo") %>%
2018-10-17 17:32:34 +02:00
pull(clar))
b <- suppressWarnings(
septic_patients %>%
2018-10-17 17:32:34 +02:00
select(mo, eryt) %>%
2018-11-16 20:50:50 +01:00
eucast_rules(col_mo = "mo") %>%
2018-10-17 17:32:34 +02:00
pull(eryt))
expect_identical(a[!is.na(b)],
b[!is.na(b)])
# amox is inferred by benzylpenicillin in Kingella kingae
expect_equal(
2018-11-16 20:50:50 +01:00
as.list(eucast_rules(
2018-10-17 17:32:34 +02:00
data.frame(mo = as.mo("Kingella kingae"),
peni = "S",
amox = "-",
stringsAsFactors = FALSE)
, info = FALSE))$amox,
"S")
2018-11-30 12:05:59 +01:00
# also test norf
expect_output(suppressWarnings(eucast_rules(septic_patients %>% mutate(norf = "S", nali = "S"))))
# check verbose output
2018-11-16 20:50:50 +01:00
expect_output(suppressWarnings(eucast_rules(septic_patients, verbose = TRUE)))
2018-03-27 17:43:42 +02:00
})