2018-08-28 13:51:13 +02:00
# ==================================================================== #
# TITLE #
# Antimicrobial Resistance (AMR) Analysis #
# #
2019-01-02 23:24:07 +01:00
# SOURCE #
# https://gitlab.com/msberends/AMR #
2018-08-28 13:51:13 +02:00
# #
# LICENCE #
2019-01-02 23:24:07 +01:00
# (c) 2019 Berends MS (m.s.berends@umcg.nl), Luz CF (c.f.luz@umcg.nl) #
2018-08-28 13:51:13 +02: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. #
# #
# 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.gitab.io/AMR. #
2018-08-28 13:51:13 +02:00
# ==================================================================== #
#' Property of a microorganism
#'
2018-09-04 11:33:30 +02:00
#' Use these functions to return a specific property of a microorganism from the \code{\link{microorganisms}} data set. All input values will be evaluated internally with \code{\link{as.mo}}.
#' @param x any (vector of) text that can be coerced to a valid microorganism code with \code{\link{as.mo}}
2018-09-25 16:44:40 +02:00
#' @param property one of the column names of one of the \code{\link{microorganisms}} data set or \code{"shortname"}
2018-11-09 13:11:54 +01:00
#' @param language language of the returned text, defaults to system language (see \code{\link{get_locale}}) and can also be set with \code{\link{getOption}("AMR_locale")}. Use \code{language = NULL} or \code{language = ""} to prevent translation.
2018-10-09 13:53:33 +02:00
#' @param ... other parameters passed on to \code{\link{as.mo}}
2018-11-09 13:11:54 +01:00
#' @details All functions will return the most recently known taxonomic property according to ITIS, except for \code{mo_ref}, \code{mo_authors} and \code{mo_year}. This leads to the following results:
#' \itemize{
#' \item{\code{mo_fullname("Chlamydia psittaci")} will return \code{"Chlamydophila psittaci"} (with a warning about the renaming)}
#' \item{\code{mo_ref("Chlamydia psittaci")} will return \code{"Page, 1968"} (with a warning about the renaming)}
#' \item{\code{mo_ref("Chlamydophila psittaci")} will return \code{"Everett et al., 1999"} (without a warning)}
#' }
2018-11-05 13:20:32 +01:00
#' @inheritSection get_locale Supported languages
2019-01-08 16:23:45 +01:00
#' @inheritSection ITIS ITIS
2018-09-24 23:33:29 +02:00
#' @inheritSection as.mo Source
2018-08-28 13:51:13 +02:00
#' @rdname mo_property
2018-09-08 16:06:47 +02:00
#' @name mo_property
2018-11-09 13:11:54 +01:00
#' @return \itemize{
#' \item{An \code{integer} in case of \code{mo_TSN} and \code{mo_year}}
#' \item{A \code{list} in case of \code{mo_taxonomy}}
#' \item{A \code{character} in all other cases}
#' }
2018-08-28 13:51:13 +02:00
#' @export
#' @seealso \code{\link{microorganisms}}
2019-01-02 23:24:07 +01:00
#' @inheritSection AMR Read more on our website!
2018-08-28 13:51:13 +02:00
#' @examples
2018-10-01 11:39:43 +02:00
#' # All properties of Escherichia coli
2018-11-09 13:11:54 +01:00
#' ## taxonomic properties
#' mo_kingdom("E. coli") # "Bacteria"
2018-09-24 23:33:29 +02:00
#' mo_subkingdom("E. coli") # "Negibacteria"
2018-09-17 20:53:32 +02:00
#' mo_phylum("E. coli") # "Proteobacteria"
#' mo_class("E. coli") # "Gammaproteobacteria"
#' mo_order("E. coli") # "Enterobacteriales"
2018-09-04 11:33:30 +02:00
#' mo_family("E. coli") # "Enterobacteriaceae"
#' mo_genus("E. coli") # "Escherichia"
#' mo_species("E. coli") # "coli"
2018-09-27 23:23:48 +02:00
#' mo_subspecies("E. coli") # NA
2018-11-09 13:11:54 +01:00
#' mo_TSN("E. coli") # 285 (Taxonomic Serial Number)
#'
#' ## colloquial properties
2018-09-04 11:33:30 +02:00
#' mo_fullname("E. coli") # "Escherichia coli"
2018-09-05 10:51:46 +02:00
#' mo_shortname("E. coli") # "E. coli"
2018-11-09 13:11:54 +01:00
#'
#' ## other properties
2018-09-24 23:33:29 +02:00
#' mo_gramstain("E. coli") # "Gram negative"
2018-11-09 13:11:54 +01:00
#' mo_type("E. coli") # "Bacteria" (equal to kingdom)
#'
#' ## scientific reference
2018-10-01 14:44:40 +02:00
#' mo_ref("E. coli") # "Castellani and Chalmers, 1919"
2018-11-09 13:11:54 +01:00
#' mo_authors("E. coli") # "Castellani and Chalmers"
#' mo_year("E. coli") # 1919
2018-08-28 13:51:13 +02:00
#'
#'
2018-09-04 11:33:30 +02:00
#' # Abbreviations known in the field
#' mo_genus("MRSA") # "Staphylococcus"
#' mo_species("MRSA") # "aureus"
2018-09-05 10:51:46 +02:00
#' mo_shortname("MRSA") # "S. aureus"
2018-09-24 23:33:29 +02:00
#' mo_gramstain("MRSA") # "Gram positive"
2018-08-28 13:51:13 +02:00
#'
2018-09-04 11:33:30 +02:00
#' mo_genus("VISA") # "Staphylococcus"
#' mo_species("VISA") # "aureus"
2018-08-28 13:51:13 +02:00
#'
#'
#' # Known subspecies
2018-09-04 11:33:30 +02:00
#' mo_genus("doylei") # "Campylobacter"
#' mo_species("doylei") # "jejuni"
2018-09-24 23:33:29 +02:00
#' mo_fullname("doylei") # "Campylobacter jejuni doylei"
2018-09-04 11:33:30 +02:00
#'
2018-09-24 23:33:29 +02:00
#' mo_fullname("K. pneu rh") # "Klebsiella pneumoniae rhinoscleromatis"
2018-09-05 10:51:46 +02:00
#' mo_shortname("K. pneu rh") # "K. pneumoniae"
2018-08-28 13:51:13 +02:00
#'
#'
2018-09-04 11:33:30 +02:00
#' # Becker classification, see ?as.mo
2018-09-05 12:21:27 +02:00
#' mo_fullname("S. epi") # "Staphylococcus epidermidis"
#' mo_fullname("S. epi", Becker = TRUE) # "Coagulase Negative Staphylococcus (CoNS)"
#' mo_shortname("S. epi") # "S. epidermidis"
#' mo_shortname("S. epi", Becker = TRUE) # "CoNS"
2018-09-04 11:33:30 +02:00
#'
#' # Lancefield classification, see ?as.mo
2018-09-05 12:21:27 +02:00
#' mo_fullname("S. pyo") # "Streptococcus pyogenes"
#' mo_fullname("S. pyo", Lancefield = TRUE) # "Streptococcus group A"
#' mo_shortname("S. pyo") # "S. pyogenes"
2018-11-09 13:11:54 +01:00
#' mo_shortname("S. pyo", Lancefield = TRUE) # "GAS" ('Group A streptococci')
2018-09-08 16:06:47 +02:00
#'
#'
2018-11-09 13:11:54 +01:00
#' # Language support for German, Dutch, Spanish, Portuguese, Italian and French
2018-09-24 23:33:29 +02:00
#' mo_gramstain("E. coli", language = "de") # "Gramnegativ"
#' mo_gramstain("E. coli", language = "nl") # "Gram-negatief"
#' mo_gramstain("E. coli", language = "es") # "Gram negativo"
2018-09-08 16:06:47 +02:00
#'
2018-11-09 13:11:54 +01:00
#' # mo_type is equal to mo_kingdom, but mo_kingdom will remain official
#' mo_kingdom("E. coli") # "Bacteria" on a German system
#' mo_type("E. coli") # "Bakterien" on a German system
#' mo_type("E. coli") # "Bacteria" on an English system
#'
2018-09-09 12:11:44 +02:00
#' mo_fullname("S. pyogenes",
2018-09-08 16:06:47 +02:00
#' Lancefield = TRUE,
#' language = "de") # "Streptococcus Gruppe A"
2018-09-09 12:11:44 +02:00
#' mo_fullname("S. pyogenes",
2018-09-08 16:06:47 +02:00
#' Lancefield = TRUE,
#' language = "nl") # "Streptococcus groep A"
2018-09-17 20:53:32 +02:00
#'
#'
2018-11-09 13:11:54 +01:00
#' # Get a list with the complete taxonomy (subkingdom to subspecies)
2018-09-17 20:53:32 +02:00
#' mo_taxonomy("E. coli")
2018-11-05 13:20:32 +01:00
mo_fullname <- function ( x , language = get_locale ( ) , ... ) {
2018-10-01 11:39:43 +02:00
x <- mo_validate ( x = x , property = " fullname" , ... )
2018-09-27 23:23:48 +02:00
mo_translate ( x , language = language )
2018-08-28 13:51:13 +02:00
}
2018-09-05 10:51:46 +02:00
#' @rdname mo_property
2018-09-27 23:23:48 +02:00
#' @importFrom dplyr %>% left_join mutate pull
2018-09-05 10:51:46 +02:00
#' @export
2018-11-05 13:20:32 +01:00
mo_shortname <- function ( x , language = get_locale ( ) , ... ) {
2018-10-01 11:39:43 +02:00
dots <- list ( ... )
Becker <- dots $ Becker
if ( is.null ( Becker ) ) {
Becker <- FALSE
}
Lancefield <- dots $ Lancefield
if ( is.null ( Lancefield ) ) {
Lancefield <- FALSE
}
2018-09-05 10:51:46 +02:00
if ( Becker %in% c ( TRUE , " all" ) | Lancefield == TRUE ) {
2018-10-01 11:39:43 +02:00
res1 <- AMR :: as.mo ( x , Becker = FALSE , Lancefield = FALSE , reference_df = dots $ reference_df )
res2 <- suppressWarnings ( AMR :: as.mo ( res1 , ... ) )
2018-11-05 13:20:32 +01:00
res2_fullname <- mo_fullname ( res2 , language = language )
res2_fullname [res2_fullname %like% " \\(CoNS\\)" ] <- " CoNS"
res2_fullname [res2_fullname %like% " \\(CoPS\\)" ] <- " CoPS"
res2_fullname [res2_fullname %like% " \\(KNS\\)" ] <- " KNS"
res2_fullname [res2_fullname %like% " \\(KPS\\)" ] <- " KPS"
res2_fullname [res2_fullname %like% " \\(CNS\\)" ] <- " CNS"
res2_fullname [res2_fullname %like% " \\(CPS\\)" ] <- " CPS"
2018-09-13 14:48:34 +02:00
res2_fullname <- gsub ( " Streptococcus (group|Gruppe|gruppe|groep|grupo|gruppo|groupe) (.)" ,
2018-09-08 16:06:47 +02:00
" G\\2S" ,
res2_fullname ) # turn "Streptococcus group A" and "Streptococcus grupo A" to "GAS"
2018-09-25 16:44:40 +02:00
res2_fullname_vector <- res2_fullname [res2_fullname == mo_fullname ( res1 ) ]
res2_fullname [res2_fullname == mo_fullname ( res1 ) ] <- paste0 ( substr ( mo_genus ( res2_fullname_vector ) , 1 , 1 ) ,
2018-09-27 23:23:48 +02:00
" . " ,
suppressWarnings ( mo_species ( res2_fullname_vector ) ) )
2018-09-05 10:51:46 +02:00
if ( sum ( res1 == res2 , na.rm = TRUE ) > 0 ) {
res1 [res1 == res2 ] <- paste0 ( substr ( mo_genus ( res1 [res1 == res2 ] ) , 1 , 1 ) ,
" . " ,
2018-09-05 12:21:27 +02:00
suppressWarnings ( mo_species ( res1 [res1 == res2 ] ) ) )
2018-09-05 10:51:46 +02:00
}
res1 [res1 != res2 ] <- res2_fullname
2018-09-05 12:21:27 +02:00
result <- as.character ( res1 )
2018-09-05 10:51:46 +02:00
} else {
2018-10-01 11:39:43 +02:00
x <- AMR :: as.mo ( x , ... )
2018-09-29 21:54:32 +02:00
suppressWarnings (
result <- data.frame ( mo = x ) %>%
left_join ( AMR :: microorganisms , by = " mo" ) %>%
mutate ( shortname = ifelse ( ! is.na ( genus ) & ! is.na ( species ) , paste0 ( substr ( genus , 1 , 1 ) , " . " , species ) , NA_character_ ) ) %>%
pull ( shortname )
)
2018-09-05 10:51:46 +02:00
}
2018-09-08 16:06:47 +02:00
mo_translate ( result , language = language )
2018-09-05 10:51:46 +02:00
}
2018-09-17 20:53:32 +02:00
#' @rdname mo_property
#' @export
2018-11-05 13:20:32 +01:00
mo_subspecies <- function ( x , language = get_locale ( ) , ... ) {
2018-10-01 11:39:43 +02:00
mo_translate ( mo_validate ( x = x , property = " subspecies" , ... ) , language = language )
2018-09-17 20:53:32 +02:00
}
#' @rdname mo_property
#' @export
2018-11-05 13:20:32 +01:00
mo_species <- function ( x , language = get_locale ( ) , ... ) {
2018-10-01 11:39:43 +02:00
mo_translate ( mo_validate ( x = x , property = " species" , ... ) , language = language )
2018-09-17 20:53:32 +02:00
}
#' @rdname mo_property
#' @export
2018-11-05 13:20:32 +01:00
mo_genus <- function ( x , language = get_locale ( ) , ... ) {
2018-10-01 11:39:43 +02:00
mo_translate ( mo_validate ( x = x , property = " genus" , ... ) , language = language )
2018-09-17 20:53:32 +02:00
}
#' @rdname mo_property
#' @export
2018-10-01 11:39:43 +02:00
mo_family <- function ( x , ... ) {
mo_validate ( x = x , property = " family" , ... )
2018-09-17 20:53:32 +02:00
}
#' @rdname mo_property
#' @export
2018-10-01 11:39:43 +02:00
mo_order <- function ( x , ... ) {
mo_validate ( x = x , property = " order" , ... )
2018-09-17 20:53:32 +02:00
}
#' @rdname mo_property
#' @export
2018-10-01 11:39:43 +02:00
mo_class <- function ( x , ... ) {
mo_validate ( x = x , property = " class" , ... )
2018-09-17 20:53:32 +02:00
}
#' @rdname mo_property
#' @export
2018-10-01 11:39:43 +02:00
mo_phylum <- function ( x , ... ) {
mo_validate ( x = x , property = " phylum" , ... )
2018-09-17 20:53:32 +02:00
}
2018-09-05 10:51:46 +02:00
2018-09-24 23:33:29 +02:00
#' @rdname mo_property
#' @export
2018-10-01 11:39:43 +02:00
mo_subkingdom <- function ( x , ... ) {
mo_validate ( x = x , property = " subkingdom" , ... )
2018-09-24 23:33:29 +02:00
}
2018-08-28 13:51:13 +02:00
#' @rdname mo_property
#' @export
2018-11-09 13:11:54 +01:00
mo_kingdom <- function ( x , ... ) {
mo_validate ( x = x , property = " kingdom" , ... )
2018-08-28 13:51:13 +02:00
}
#' @rdname mo_property
#' @export
2018-11-05 13:20:32 +01:00
mo_type <- function ( x , language = get_locale ( ) , ... ) {
2018-11-09 13:11:54 +01:00
mo_translate ( mo_validate ( x = x , property = " kingdom" , ... ) , language = language )
}
#' @rdname mo_property
#' @export
mo_gramstain <- function ( x , language = get_locale ( ) , ... ) {
mo_translate ( mo_validate ( x = x , property = " gramstain" , ... ) , language = language )
2018-10-01 11:39:43 +02:00
}
#' @rdname mo_property
#' @export
mo_TSN <- function ( x , ... ) {
2019-02-08 16:06:54 +01:00
res <- mo_validate ( x = x , property = " tsn" , ... )
if ( any ( is.na ( res ) ) ) {
warning ( " Some results do not have a TSN, because they are missing from ITIS and were added manually. See ?microorganisms." )
}
res
2018-10-01 11:39:43 +02:00
}
#' @rdname mo_property
#' @export
2018-11-09 13:11:54 +01:00
mo_ref <- function ( x , ... ) {
mo_validate ( x = x , property = " ref" , ... )
2018-08-28 13:51:13 +02:00
}
2018-09-08 16:06:47 +02:00
#' @rdname mo_property
#' @export
2018-11-09 13:11:54 +01:00
mo_authors <- function ( x , ... ) {
x <- mo_validate ( x = x , property = " ref" , ... )
# remove last 4 digits and presumably the comma and space that preceed them
x [ ! is.na ( x ) ] <- gsub ( " ,? ?[0-9]{4}" , " " , x [ ! is.na ( x ) ] )
x
}
2018-09-24 23:33:29 +02:00
2018-11-09 13:11:54 +01:00
#' @rdname mo_property
#' @export
mo_year <- function ( x , ... ) {
x <- mo_validate ( x = x , property = " ref" , ... )
# get last 4 digits
x [ ! is.na ( x ) ] <- gsub ( " .*([0-9]{4})$" , " \\1" , x [ ! is.na ( x ) ] )
as.integer ( x )
2018-09-08 16:06:47 +02:00
}
2018-09-17 20:53:32 +02:00
#' @rdname mo_property
#' @export
2018-10-01 11:39:43 +02:00
mo_taxonomy <- function ( x , ... ) {
x <- AMR :: as.mo ( x , ... )
2018-12-10 21:47:25 +01:00
base :: list ( kingdom = mo_kingdom ( x ) ,
subkingdom = mo_subkingdom ( x ) ,
2018-09-24 23:33:29 +02:00
phylum = mo_phylum ( x ) ,
2018-09-17 20:53:32 +02:00
class = mo_class ( x ) ,
order = mo_order ( x ) ,
family = mo_family ( x ) ,
genus = mo_genus ( x ) ,
species = mo_species ( x ) ,
subspecies = mo_subspecies ( x ) )
}
2018-11-09 13:11:54 +01:00
#' @rdname mo_property
#' @importFrom data.table data.table as.data.table setkey
#' @export
mo_property <- function ( x , property = ' fullname' , language = get_locale ( ) , ... ) {
if ( length ( property ) != 1L ) {
stop ( " 'property' must be of length 1." )
}
if ( ! property %in% colnames ( AMR :: microorganisms ) ) {
stop ( " invalid property: '" , property , " ' - use a column name of the `microorganisms` data set" )
}
mo_translate ( mo_validate ( x = x , property = property , ... ) , language = language )
}
2018-09-08 16:06:47 +02:00
#' @importFrom dplyr %>% case_when
mo_translate <- function ( x , language ) {
if ( is.null ( language ) ) {
2018-11-05 13:20:32 +01:00
return ( x )
2018-09-04 11:33:30 +02:00
}
2018-09-08 16:06:47 +02:00
if ( language %in% c ( " en" , " " ) ) {
return ( x )
}
2018-09-10 15:45:25 +02:00
supported <- c ( " en" , " de" , " nl" , " es" , " pt" , " it" , " fr" )
2018-09-08 16:06:47 +02:00
if ( ! language %in% supported ) {
2018-09-10 15:45:25 +02:00
stop ( " Unsupported language: '" , language , " ' - use one of: " , paste0 ( " '" , sort ( supported ) , " '" , collapse = " , " ) , call. = FALSE )
2018-09-08 16:06:47 +02:00
}
2018-11-09 13:11:54 +01:00
x_tobetranslated <- grepl ( x = x ,
pattern = " (Coagulase Negative Staphylococcus|Coagulase Positive Staphylococcus|Beta-haemolytic Streptococcus|unknown Gram negatives|unknown Gram positives|CoNS|CoPS|no MO|Gram negative|Gram positive|Bacteria|Fungi|Protozoa|biogroup|biotype|vegetative|group|Group)" )
if ( sum ( x_tobetranslated , na.rm = TRUE ) == 0 ) {
return ( x )
}
# only translate the ones that need translation
x [x_tobetranslated ] <- case_when (
2018-09-08 16:06:47 +02:00
# German
2018-11-09 13:11:54 +01:00
language == " de" ~ x [x_tobetranslated ] %>%
2018-09-08 16:24:12 +02:00
gsub ( " Coagulase Negative Staphylococcus" , " Koagulase-negative Staphylococcus" , ., fixed = TRUE ) %>%
gsub ( " Coagulase Positive Staphylococcus" , " Koagulase-positive Staphylococcus" , ., fixed = TRUE ) %>%
2018-09-10 11:40:54 +02:00
gsub ( " Beta-haemolytic Streptococcus" , " Beta-h\u00e4molytischer Streptococcus" , ., fixed = TRUE ) %>%
2018-11-05 13:20:32 +01:00
gsub ( " unknown Gram negatives" , " unbekannte Gramnegativen" , ., fixed = TRUE ) %>%
gsub ( " unknown Gram positives" , " unbekannte Grampositiven" , ., fixed = TRUE ) %>%
gsub ( " (CoNS)" , " (KNS)" , ., fixed = TRUE ) %>%
gsub ( " (CoPS)" , " (KPS)" , ., fixed = TRUE ) %>%
2018-09-08 16:06:47 +02:00
gsub ( " (no MO)" , " (kein MO)" , ., fixed = TRUE ) %>%
2018-09-24 23:33:29 +02:00
gsub ( " Gram negative" , " Gramnegativ" , ., fixed = TRUE ) %>%
gsub ( " Gram positive" , " Grampositiv" , ., fixed = TRUE ) %>%
gsub ( " Bacteria" , " Bakterien" , ., fixed = TRUE ) %>%
gsub ( " Fungi" , " Hefen/Pilze" , ., fixed = TRUE ) %>%
gsub ( " Protozoa" , " Protozoen" , ., fixed = TRUE ) %>%
2018-09-08 16:06:47 +02:00
gsub ( " biogroup" , " Biogruppe" , ., fixed = TRUE ) %>%
gsub ( " biotype" , " Biotyp" , ., fixed = TRUE ) %>%
gsub ( " vegetative" , " vegetativ" , ., fixed = TRUE ) %>%
gsub ( " ([([ ]*?)group" , " \\1Gruppe" , .) %>%
2018-11-09 13:11:54 +01:00
gsub ( " ([([ ]*?)Group" , " \\1Gruppe" , .) %>%
iconv ( to = " UTF-8" ) ,
2018-09-08 16:06:47 +02:00
# Dutch
2018-11-09 13:11:54 +01:00
language == " nl" ~ x [x_tobetranslated ] %>%
2018-09-08 16:24:12 +02:00
gsub ( " Coagulase Negative Staphylococcus" , " Coagulase-negatieve Staphylococcus" , ., fixed = TRUE ) %>%
gsub ( " Coagulase Positive Staphylococcus" , " Coagulase-positieve Staphylococcus" , ., fixed = TRUE ) %>%
2018-09-10 11:40:54 +02:00
gsub ( " Beta-haemolytic Streptococcus" , " Beta-hemolytische Streptococcus" , ., fixed = TRUE ) %>%
2018-11-05 13:20:32 +01:00
gsub ( " unknown Gram negatives" , " onbekende Gram-negatieven" , ., fixed = TRUE ) %>%
gsub ( " unknown Gram positives" , " onbekende Gram-positieven" , ., fixed = TRUE ) %>%
2018-09-08 16:06:47 +02:00
gsub ( " (no MO)" , " (geen MO)" , ., fixed = TRUE ) %>%
2018-11-05 13:20:32 +01:00
gsub ( " (CoNS)" , " (CNS)" , ., fixed = TRUE ) %>%
gsub ( " (CoPS)" , " (CPS)" , ., fixed = TRUE ) %>%
2018-09-24 23:33:29 +02:00
gsub ( " Gram negative" , " Gram-negatief" , ., fixed = TRUE ) %>%
gsub ( " Gram positive" , " Gram-positief" , ., fixed = TRUE ) %>%
gsub ( " Bacteria" , " Bacteri\u00ebn" , ., fixed = TRUE ) %>%
gsub ( " Fungi" , " Schimmels/gisten" , ., fixed = TRUE ) %>%
gsub ( " Protozoa" , " protozo\u00ebn" , ., fixed = TRUE ) %>%
2018-09-08 16:06:47 +02:00
gsub ( " biogroup" , " biogroep" , ., fixed = TRUE ) %>%
# gsub("biotype", "biotype", ., fixed = TRUE) %>%
gsub ( " vegetative" , " vegetatief" , ., fixed = TRUE ) %>%
gsub ( " ([([ ]*?)group" , " \\1groep" , .) %>%
2018-11-09 13:11:54 +01:00
gsub ( " ([([ ]*?)Group" , " \\1Groep" , .) %>%
iconv ( to = " UTF-8" ) ,
2018-09-08 16:06:47 +02:00
# Spanish
2018-11-09 13:11:54 +01:00
language == " es" ~ x [x_tobetranslated ] %>%
2018-09-08 16:24:12 +02:00
gsub ( " Coagulase Negative Staphylococcus" , " Staphylococcus coagulasa negativo" , ., fixed = TRUE ) %>%
gsub ( " Coagulase Positive Staphylococcus" , " Staphylococcus coagulasa positivo" , ., fixed = TRUE ) %>%
2018-09-10 11:40:54 +02:00
gsub ( " Beta-haemolytic Streptococcus" , " Streptococcus Beta-hemol\u00edtico" , ., fixed = TRUE ) %>%
2018-11-05 13:20:32 +01:00
gsub ( " unknown Gram negatives" , " Gram negativos desconocidos" , ., fixed = TRUE ) %>%
gsub ( " unknown Gram positives" , " Gram positivos desconocidos" , ., fixed = TRUE ) %>%
2018-09-08 16:06:47 +02:00
gsub ( " (no MO)" , " (sin MO)" , ., fixed = TRUE ) %>%
2018-09-24 23:33:29 +02:00
gsub ( " Gram negative" , " Gram negativo" , ., fixed = TRUE ) %>%
gsub ( " Gram positive" , " Gram positivo" , ., fixed = TRUE ) %>%
gsub ( " Bacteria" , " Bacterias" , ., fixed = TRUE ) %>%
gsub ( " Fungi" , " Hongos" , ., fixed = TRUE ) %>%
gsub ( " Protozoa" , " Protozoarios" , ., fixed = TRUE ) %>%
2018-09-08 16:06:47 +02:00
gsub ( " biogroup" , " biogrupo" , ., fixed = TRUE ) %>%
gsub ( " biotype" , " biotipo" , ., fixed = TRUE ) %>%
gsub ( " vegetative" , " vegetativo" , ., fixed = TRUE ) %>%
gsub ( " ([([ ]*?)group" , " \\1grupo" , .) %>%
2018-11-09 13:11:54 +01:00
gsub ( " ([([ ]*?)Group" , " \\1Grupo" , .) %>%
iconv ( to = " UTF-8" ) ,
2018-09-08 16:06:47 +02:00
2018-09-10 15:45:25 +02:00
# Italian
2018-11-09 13:11:54 +01:00
language == " it" ~ x [x_tobetranslated ] %>%
2018-09-10 15:45:25 +02:00
gsub ( " Coagulase Negative Staphylococcus" , " Staphylococcus negativo coagulasi" , ., fixed = TRUE ) %>%
gsub ( " Coagulase Positive Staphylococcus" , " Staphylococcus positivo coagulasi" , ., fixed = TRUE ) %>%
gsub ( " Beta-haemolytic Streptococcus" , " Streptococcus Beta-emolitico" , ., fixed = TRUE ) %>%
2018-11-05 13:20:32 +01:00
gsub ( " unknown Gram negatives" , " Gram negativi sconosciuti" , ., fixed = TRUE ) %>%
gsub ( " unknown Gram positives" , " Gram positivi sconosciuti" , ., fixed = TRUE ) %>%
2018-09-10 15:45:25 +02:00
gsub ( " (no MO)" , " (non MO)" , ., fixed = TRUE ) %>%
2018-09-24 23:33:29 +02:00
gsub ( " Gram negative" , " Gram negativo" , ., fixed = TRUE ) %>%
gsub ( " Gram positive" , " Gram positivo" , ., fixed = TRUE ) %>%
gsub ( " Bacteria" , " Batteri" , ., fixed = TRUE ) %>%
gsub ( " Fungi" , " Fungo" , ., fixed = TRUE ) %>%
gsub ( " Protozoa" , " Protozoi" , ., fixed = TRUE ) %>%
2018-09-10 15:45:25 +02:00
gsub ( " biogroup" , " biogruppo" , ., fixed = TRUE ) %>%
gsub ( " biotype" , " biotipo" , ., fixed = TRUE ) %>%
gsub ( " vegetative" , " vegetativo" , ., fixed = TRUE ) %>%
gsub ( " ([([ ]*?)group" , " \\1gruppo" , .) %>%
gsub ( " ([([ ]*?)Group" , " \\1Gruppo" , .) ,
# French
2018-11-09 13:11:54 +01:00
language == " fr" ~ x [x_tobetranslated ] %>%
2018-09-10 15:45:25 +02:00
gsub ( " Coagulase Negative Staphylococcus" , " Staphylococcus \u00e0 coagulase n\u00e9gative" , ., fixed = TRUE ) %>%
gsub ( " Coagulase Positive Staphylococcus" , " Staphylococcus \u00e0 coagulase positif" , ., fixed = TRUE ) %>%
gsub ( " Beta-haemolytic Streptococcus" , " Streptococcus B\u00eata-h\u00e9molytique" , ., fixed = TRUE ) %>%
2018-11-05 13:20:32 +01:00
gsub ( " unknown Gram negatives" , " Gram n\u00e9gatifs inconnus" , ., fixed = TRUE ) %>%
gsub ( " unknown Gram positives" , " Gram positifs inconnus" , ., fixed = TRUE ) %>%
2018-09-10 15:45:25 +02:00
gsub ( " (no MO)" , " (pas MO)" , ., fixed = TRUE ) %>%
2018-09-24 23:33:29 +02:00
gsub ( " Gram negative" , " Gram n\u00e9gatif" , ., fixed = TRUE ) %>%
gsub ( " Gram positive" , " Gram positif" , ., fixed = TRUE ) %>%
gsub ( " Bacteria" , " Bact\u00e9ries" , ., fixed = TRUE ) %>%
gsub ( " Fungi" , " Champignons" , ., fixed = TRUE ) %>%
gsub ( " Protozoa" , " Protozoaires" , ., fixed = TRUE ) %>%
2018-09-10 15:45:25 +02:00
gsub ( " biogroup" , " biogroupe" , ., fixed = TRUE ) %>%
# gsub("biotype", "biotype", ., fixed = TRUE) %>%
gsub ( " vegetative" , " v\u00e9g\u00e9tatif" , ., fixed = TRUE ) %>%
gsub ( " ([([ ]*?)group" , " \\1groupe" , .) %>%
2018-11-09 13:11:54 +01:00
gsub ( " ([([ ]*?)Group" , " \\1Groupe" , .) %>%
iconv ( to = " UTF-8" ) ,
2018-11-05 13:20:32 +01:00
# Portuguese
2018-11-09 13:11:54 +01:00
language == " pt" ~ x [x_tobetranslated ] %>%
2018-11-05 13:20:32 +01:00
gsub ( " Coagulase Negative Staphylococcus" , " Staphylococcus coagulase negativo" , ., fixed = TRUE ) %>%
gsub ( " Coagulase Positive Staphylococcus" , " Staphylococcus coagulase positivo" , ., fixed = TRUE ) %>%
gsub ( " Beta-haemolytic Streptococcus" , " Streptococcus Beta-hemol\u00edtico" , ., fixed = TRUE ) %>%
gsub ( " unknown Gram negatives" , " Gram negativos desconhecidos" , ., fixed = TRUE ) %>%
gsub ( " unknown Gram positives" , " Gram positivos desconhecidos" , ., fixed = TRUE ) %>%
gsub ( " (no MO)" , " (sem MO)" , ., fixed = TRUE ) %>%
gsub ( " Gram negative" , " Gram negativo" , ., fixed = TRUE ) %>%
gsub ( " Gram positive" , " Gram positivo" , ., fixed = TRUE ) %>%
gsub ( " Bacteria" , " Bact\u00e9rias" , ., fixed = TRUE ) %>%
gsub ( " Fungi" , " Fungos" , ., fixed = TRUE ) %>%
gsub ( " Protozoa" , " Protozo\u00e1rios" , ., fixed = TRUE ) %>%
gsub ( " biogroup" , " biogrupo" , ., fixed = TRUE ) %>%
gsub ( " biotype" , " bi\u00f3tipo" , ., fixed = TRUE ) %>%
gsub ( " vegetative" , " vegetativo" , ., fixed = TRUE ) %>%
gsub ( " ([([ ]*?)group" , " \\1grupo" , .) %>%
2018-11-09 13:11:54 +01:00
gsub ( " ([([ ]*?)Group" , " \\1Grupo" , .) %>%
iconv ( to = " UTF-8" ) )
2018-09-10 15:45:25 +02:00
2018-11-09 13:11:54 +01:00
x
2018-09-08 16:06:47 +02:00
}
2018-09-27 23:23:48 +02:00
2018-10-01 11:39:43 +02:00
mo_validate <- function ( x , property , ... ) {
dots <- list ( ... )
Becker <- dots $ Becker
if ( is.null ( Becker ) ) {
Becker <- FALSE
}
Lancefield <- dots $ Lancefield
if ( is.null ( Lancefield ) ) {
Lancefield <- FALSE
}
2018-12-06 14:36:39 +01:00
if ( ! " AMR" %in% base :: .packages ( ) ) {
library ( " AMR" )
# These data.tables are available as data sets when the AMR package is loaded:
# microorganismsDT # this one is sorted by kingdom (B<F<P), prevalence, TSN
# microorganisms.prevDT # same as microorganismsDT, but with prevalence != 9999
# microorganisms.unprevDT # same as microorganismsDT, but with prevalence == 9999
# microorganisms.oldDT # old taxonomic names, sorted by name (genus+species), TSN
}
2018-10-31 12:10:49 +01:00
if ( ! all ( x %in% microorganismsDT [ [property ] ] )
| Becker %in% c ( TRUE , " all" )
| Lancefield %in% c ( TRUE , " all" ) ) {
2018-10-01 11:39:43 +02:00
exec_as.mo ( x , property = property , ... )
2018-09-27 23:23:48 +02:00
} else {
2019-01-08 16:23:45 +01:00
if ( property == " mo" ) {
return ( structure ( x , class = " mo" ) )
} else if ( property == " tsn" ) {
return ( as.integer ( x ) )
} else {
return ( x )
}
2018-09-27 23:23:48 +02:00
}
}