mirror of https://github.com/msberends/AMR.git
327 lines
12 KiB
R
Executable File
327 lines
12 KiB
R
Executable File
# ==================================================================== #
|
|
# TITLE #
|
|
# Antimicrobial Resistance (AMR) Analysis #
|
|
# #
|
|
# SOURCE #
|
|
# https://gitlab.com/msberends/AMR #
|
|
# #
|
|
# LICENCE #
|
|
# (c) 2019 Berends MS (m.s.berends@umcg.nl), Luz CF (c.f.luz@umcg.nl) #
|
|
# #
|
|
# 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. #
|
|
# #
|
|
# This R package was created for academic research and was publicly #
|
|
# released in the hope that it will be useful, but it comes WITHOUT #
|
|
# ANY WARRANTY OR LIABILITY. #
|
|
# Visit our website for more info: https://msberends.gitlab.io/AMR. #
|
|
# ==================================================================== #
|
|
|
|
#' Class 'mic'
|
|
#'
|
|
#' This transforms a vector to a new class \code{mic}, which is an ordered factor with valid MIC values as levels. Invalid MIC values will be translated as \code{NA} with a warning.
|
|
#' @rdname as.mic
|
|
#' @param x vector
|
|
#' @param na.rm a logical indicating whether missing values should be removed
|
|
#' @details Interpret MIC values as RSI values with \code{\link{as.rsi}}. It supports guidelines from EUCAST and CLSI.
|
|
#' @return Ordered factor with new class \code{mic}
|
|
#' @keywords mic
|
|
#' @export
|
|
#' @importFrom dplyr %>%
|
|
#' @seealso \code{\link{as.rsi}}
|
|
#' @inheritSection AMR Read more on our website!
|
|
#' @examples
|
|
#' mic_data <- as.mic(c(">=32", "1.0", "1", "1.00", 8, "<=0.128", "8", "16", "16"))
|
|
#' is.mic(mic_data)
|
|
#'
|
|
#' # this can also coerce combined MIC/RSI values:
|
|
#' as.mic("<=0.002; S") # will return <=0.002
|
|
#'
|
|
#' # interpret MIC values
|
|
#' as.rsi(x = as.mic(2),
|
|
#' mo = as.mo("S. pneumoniae"),
|
|
#' ab = "AMX",
|
|
#' guideline = "EUCAST")
|
|
#' as.rsi(x = as.mic(4),
|
|
#' mo = as.mo("S. pneumoniae"),
|
|
#' ab = "AMX",
|
|
#' guideline = "EUCAST")
|
|
#'
|
|
#' plot(mic_data)
|
|
#' barplot(mic_data)
|
|
#'
|
|
#' library(clean)
|
|
#' freq(mic_data)
|
|
as.mic <- function(x, na.rm = FALSE) {
|
|
if (is.mic(x)) {
|
|
x
|
|
} else {
|
|
x <- x %>% unlist()
|
|
if (na.rm == TRUE) {
|
|
x <- x[!is.na(x)]
|
|
}
|
|
x.bak <- x
|
|
|
|
# comma to period
|
|
x <- gsub(",", ".", x, fixed = TRUE)
|
|
# remove space between operator and number ("<= 0.002" -> "<=0.002")
|
|
x <- gsub("(<|=|>) +", "\\1", x)
|
|
# transform => to >= and =< to <=
|
|
x <- gsub("=>", ">=", x, fixed = TRUE)
|
|
x <- gsub("=<", "<=", x, fixed = TRUE)
|
|
# starting dots must start with 0
|
|
x <- gsub("^[.]+", "0.", x)
|
|
# <=0.2560.512 should be 0.512
|
|
x <- gsub(".*[.].*[.]", "0.", x)
|
|
# remove ending .0
|
|
x <- gsub("[.]+0$", "", x)
|
|
# remove all after last digit
|
|
x <- gsub("[^0-9]+$", "", x)
|
|
# keep only one zero before dot
|
|
x <- gsub("0+[.]", "0.", x)
|
|
# starting 00 is probably 0.0 if there's no dot yet
|
|
x[!x %like% "[.]"] <- gsub("^00", "0.0", x[!x %like% "[.]"])
|
|
# remove last zeroes
|
|
x <- gsub("([.].?)0+$", "\\1", x)
|
|
x <- gsub("(.*[.])0+$", "\\10", x)
|
|
# remove ending .0 again
|
|
x[x %like% "[.]"] <- gsub("0+$", "", x[x %like% "[.]"])
|
|
# force to be character
|
|
x <- as.character(x)
|
|
# trim it
|
|
x <- trimws(x)
|
|
|
|
## previously unempty values now empty - should return a warning later on
|
|
x[x.bak != "" & x == ""] <- "invalid"
|
|
|
|
# these are allowed MIC values and will become factor levels
|
|
lvls <- c("<0.001", "<=0.001", "0.001", ">=0.001", ">0.001",
|
|
"<0.002", "<=0.002", "0.002", ">=0.002", ">0.002",
|
|
"<0.003", "<=0.003", "0.003", ">=0.003", ">0.003",
|
|
"<0.004", "<=0.004", "0.004", ">=0.004", ">0.004",
|
|
"<0.005", "<=0.005", "0.005", ">=0.005", ">0.005",
|
|
"<0.006", "<=0.006", "0.006", ">=0.006", ">0.006",
|
|
"<0.007", "<=0.007", "0.007", ">=0.007", ">0.007",
|
|
"<0.008", "<=0.008", "0.008", ">=0.008", ">0.008",
|
|
"<0.009", "<=0.009", "0.009", ">=0.009", ">0.009",
|
|
"<0.01", "<=0.01", "0.01", ">=0.01", ">0.01",
|
|
"<0.012", "<=0.012", "0.012", ">=0.012", ">0.012",
|
|
"<0.0125", "<=0.0125", "0.0125", ">=0.0125", ">0.0125",
|
|
"<0.016", "<=0.016", "0.016", ">=0.016", ">0.016",
|
|
"<0.019", "<=0.019", "0.019", ">=0.019", ">0.019",
|
|
"<0.02", "<=0.02", "0.02", ">=0.02", ">0.02",
|
|
"<0.023", "<=0.023", "0.023", ">=0.023", ">0.023",
|
|
"<0.025", "<=0.025", "0.025", ">=0.025", ">0.025",
|
|
"<0.028", "<=0.028", "0.028", ">=0.028", ">0.028",
|
|
"<0.03", "<=0.03", "0.03", ">=0.03", ">0.03",
|
|
"<0.031", "<=0.031", "0.031", ">=0.031", ">0.031",
|
|
"<0.032", "<=0.032", "0.032", ">=0.032", ">0.032",
|
|
"<0.038", "<=0.038", "0.038", ">=0.038", ">0.038",
|
|
"<0.04", "<=0.04", "0.04", ">=0.04", ">0.04",
|
|
"<0.047", "<=0.047", "0.047", ">=0.047", ">0.047",
|
|
"<0.05", "<=0.05", "0.05", ">=0.05", ">0.05",
|
|
"<0.054", "<=0.054", "0.054", ">=0.054", ">0.054",
|
|
"<0.06", "<=0.06", "0.06", ">=0.06", ">0.06",
|
|
"<0.0625", "<=0.0625", "0.0625", ">=0.0625", ">0.0625",
|
|
"<0.063", "<=0.063", "0.063", ">=0.063", ">0.063",
|
|
"<0.064", "<=0.064", "0.064", ">=0.064", ">0.064",
|
|
"<0.075", "<=0.075", "0.075", ">=0.075", ">0.075",
|
|
"<0.08", "<=0.08", "0.08", ">=0.08", ">0.08",
|
|
"<0.09", "<=0.09", "0.09", ">=0.09", ">0.09",
|
|
"<0.094", "<=0.094", "0.094", ">=0.094", ">0.094",
|
|
"<0.095", "<=0.095", "0.095", ">=0.095", ">0.095",
|
|
"<0.1", "<=0.1", "0.1", ">=0.1", ">0.1",
|
|
"<0.12", "<=0.12", "0.12", ">=0.12", ">0.12",
|
|
"<0.125", "<=0.125", "0.125", ">=0.125", ">0.125",
|
|
"<0.128", "<=0.128", "0.128", ">=0.128", ">0.128",
|
|
"<0.15", "<=0.15", "0.15", ">=0.15", ">0.15",
|
|
"<0.16", "<=0.16", "0.16", ">=0.16", ">0.16",
|
|
"<0.17", "<=0.17", "0.17", ">=0.17", ">0.17",
|
|
"<0.18", "<=0.18", "0.18", ">=0.18", ">0.18",
|
|
"<0.19", "<=0.19", "0.19", ">=0.19", ">0.19",
|
|
"<0.2", "<=0.2", "0.2", ">=0.2", ">0.2",
|
|
"<0.23", "<=0.23", "0.23", ">=0.23", ">0.23",
|
|
"<0.25", "<=0.25", "0.25", ">=0.25", ">0.25",
|
|
"<0.256", "<=0.256", "0.256", ">=0.256", ">0.256",
|
|
"<0.28", "<=0.28", "0.28", ">=0.28", ">0.28",
|
|
"<0.3", "<=0.3", "0.3", ">=0.3", ">0.3",
|
|
"<0.32", "<=0.32", "0.32", ">=0.32", ">0.32",
|
|
"<0.35", "<=0.35", "0.35", ">=0.35", ">0.35",
|
|
"<0.36", "<=0.36", "0.36", ">=0.36", ">0.36",
|
|
"<0.38", "<=0.38", "0.38", ">=0.38", ">0.38",
|
|
"<0.47", "<=0.47", "0.47", ">=0.47", ">0.47",
|
|
"<0.5", "<=0.5", "0.5", ">=0.5", ">0.5",
|
|
"<0.512", "<=0.512", "0.512", ">=0.512", ">0.512",
|
|
"<0.64", "<=0.64", "0.64", ">=0.64", ">0.64",
|
|
"<0.73", "<=0.73", "0.73", ">=0.73", ">0.73",
|
|
"<0.75", "<=0.75", "0.75", ">=0.75", ">0.75",
|
|
"<0.8", "<=0.8", "0.8", ">=0.8", ">0.8",
|
|
"<0.94", "<=0.94", "0.94", ">=0.94", ">0.94",
|
|
"<1", "<=1", "1", ">=1", ">1",
|
|
"<1.5", "<=1.5", "1.5", ">=1.5", ">1.5",
|
|
"<2", "<=2", "2", ">=2", ">2",
|
|
"<3", "<=3", "3", ">=3", ">3",
|
|
"<4", "<=4", "4", ">=4", ">4",
|
|
"<5", "<=5", "5", ">=5", ">5",
|
|
"<6", "<=6", "6", ">=6", ">6",
|
|
"<7", "<=7", "7", ">=7", ">7",
|
|
"<8", "<=8", "8", ">=8", ">8",
|
|
"<10", "<=10", "10", ">=10", ">10",
|
|
"<12", "<=12", "12", ">=12", ">12",
|
|
"<16", "<=16", "16", ">=16", ">16",
|
|
"<20", "<=20", "20", ">=20", ">20",
|
|
"<24", "<=24", "24", ">=24", ">24",
|
|
"<32", "<=32", "32", ">=32", ">32",
|
|
"<40", "<=40", "40", ">=40", ">40",
|
|
"<48", "<=48", "48", ">=48", ">48",
|
|
"<64", "<=64", "64", ">=64", ">64",
|
|
"<80", "<=80", "80", ">=80", ">80",
|
|
"<96", "<=96", "96", ">=96", ">96",
|
|
"<128", "<=128", "128", ">=128", ">128",
|
|
"129",
|
|
"<160", "<=160", "160", ">=160", ">160",
|
|
"<256", "<=256", "256", ">=256", ">256",
|
|
"257",
|
|
"<320", "<=320", "320", ">=320", ">320",
|
|
"<512", "<=512", "512", ">=512", ">512",
|
|
"513",
|
|
"<1024", "<=1024", "1024", ">=1024", ">1024",
|
|
"1025")
|
|
|
|
na_before <- x[is.na(x) | x == ""] %>% length()
|
|
x[!x %in% lvls] <- NA
|
|
na_after <- x[is.na(x) | x == ""] %>% length()
|
|
|
|
if (na_before != na_after) {
|
|
list_missing <- x.bak[is.na(x) & !is.na(x.bak) & x.bak != ""] %>%
|
|
unique() %>%
|
|
sort()
|
|
list_missing <- paste0('"', list_missing, '"', collapse = ", ")
|
|
warning(na_after - na_before, " results truncated (",
|
|
round(((na_after - na_before) / length(x)) * 100),
|
|
"%) that were invalid MICs: ",
|
|
list_missing, call. = FALSE)
|
|
}
|
|
|
|
structure(.Data = factor(x, levels = lvls, ordered = TRUE),
|
|
class = c("mic", "ordered", "factor"))
|
|
}
|
|
}
|
|
|
|
#' @rdname as.mic
|
|
#' @export
|
|
#' @importFrom dplyr %>%
|
|
is.mic <- function(x) {
|
|
class(x) %>% identical(c("mic", "ordered", "factor"))
|
|
}
|
|
|
|
#' @exportMethod as.double.mic
|
|
#' @export
|
|
#' @noRd
|
|
as.double.mic <- function(x, ...) {
|
|
as.double(gsub("(<|=|>)+", "", as.character(x)))
|
|
}
|
|
|
|
#' @exportMethod as.integer.mic
|
|
#' @export
|
|
#' @noRd
|
|
as.integer.mic <- function(x, ...) {
|
|
as.integer(gsub("(<|=|>)+", "", as.character(x)))
|
|
}
|
|
|
|
#' @exportMethod as.numeric.mic
|
|
#' @export
|
|
#' @noRd
|
|
as.numeric.mic <- function(x, ...) {
|
|
as.numeric(gsub("(<|=|>)+", "", as.character(x)))
|
|
}
|
|
|
|
#' @exportMethod droplevels.mic
|
|
#' @export
|
|
#' @noRd
|
|
droplevels.mic <- function(x, exclude = ifelse(anyNA(levels(x)), NULL, NA), ...) {
|
|
x <- droplevels.factor(x, exclude = exclude, ...)
|
|
class(x) <- c("mic", "ordered", "factor")
|
|
x
|
|
}
|
|
|
|
#' @exportMethod print.mic
|
|
#' @export
|
|
#' @importFrom dplyr %>% tibble group_by summarise pull
|
|
#' @noRd
|
|
print.mic <- function(x, ...) {
|
|
cat("Class 'mic'\n")
|
|
print(as.character(x), quote = FALSE)
|
|
}
|
|
|
|
#' @exportMethod summary.mic
|
|
#' @export
|
|
#' @importFrom dplyr %>%
|
|
#' @noRd
|
|
summary.mic <- function(object, ...) {
|
|
x <- object
|
|
n_total <- x %>% length()
|
|
x <- x[!is.na(x)]
|
|
n <- x %>% length()
|
|
c(
|
|
"Class" = "mic",
|
|
"<NA>" = n_total - n,
|
|
"Min." = sort(x)[1] %>% as.character(),
|
|
"Max." = sort(x)[n] %>% as.character()
|
|
)
|
|
}
|
|
|
|
#' @exportMethod plot.mic
|
|
#' @export
|
|
#' @importFrom graphics barplot axis par
|
|
#' @noRd
|
|
plot.mic <- function(x,
|
|
main = paste("MIC values of", deparse(substitute(x))),
|
|
ylab = "Frequency",
|
|
xlab = "MIC value",
|
|
axes = FALSE,
|
|
...) {
|
|
barplot(table(droplevels.factor(x)),
|
|
ylab = ylab,
|
|
xlab = xlab,
|
|
axes = axes,
|
|
main = main,
|
|
...)
|
|
axis(2, seq(0, max(table(droplevels.factor(x)))))
|
|
}
|
|
|
|
#' @exportMethod barplot.mic
|
|
#' @export
|
|
#' @importFrom graphics barplot axis
|
|
#' @noRd
|
|
barplot.mic <- function(height,
|
|
main = paste("MIC values of", deparse(substitute(height))),
|
|
ylab = "Frequency",
|
|
xlab = "MIC value",
|
|
axes = FALSE,
|
|
...) {
|
|
barplot(table(droplevels.factor(height)),
|
|
ylab = ylab,
|
|
xlab = xlab,
|
|
axes = axes,
|
|
main = main,
|
|
...)
|
|
axis(2, seq(0, max(table(droplevels.factor(height)))))
|
|
}
|
|
|
|
#' @importFrom pillar type_sum
|
|
#' @export
|
|
type_sum.mic <- function(x) {
|
|
"mic"
|
|
}
|
|
|
|
#' @importFrom pillar pillar_shaft
|
|
#' @export
|
|
pillar_shaft.mic <- function(x, ...) {
|
|
out <- trimws(format(x))
|
|
out[is.na(x)] <- pillar::style_na(NA)
|
|
pillar::new_pillar_shaft_simple(out, align = "right", min_width = 4)
|
|
}
|