2018-07-04 17:20:03 +02:00
# ==================================================================== #
# TITLE #
2020-10-08 11:16:03 +02:00
# Antimicrobial Resistance (AMR) Analysis for R #
2018-07-04 17:20:03 +02:00
# #
2019-01-02 23:24:07 +01:00
# SOURCE #
2020-07-08 14:48:06 +02:00
# https://github.com/msberends/AMR #
2018-07-04 17:20:03 +02:00
# #
# LICENCE #
2020-01-05 17:22:09 +01:00
# (c) 2018-2020 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-07-04 17:20:03 +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. #
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 #
# how to conduct AMR analysis: https://msberends.github.io/AMR/ #
2018-07-04 17:20:03 +02:00
# ==================================================================== #
2020-10-26 12:23:03 +01:00
#' Pattern matching with keyboard shortcut
2018-07-04 17:20:03 +02:00
#'
2020-04-14 14:12:31 +02:00
#' Convenient wrapper around [grep()] to match a pattern: `x %like% pattern`. It always returns a [`logical`] vector and is always case-insensitive (use `x %like_case% pattern` for case-sensitive matching). Also, `pattern` can be as long as `x` to compare items of each index in both vectors, or they both can have the same length to iterate over all cases.
2020-01-05 17:22:09 +01:00
#' @inheritSection lifecycle Stable lifecycle
2019-11-29 19:43:23 +01:00
#' @param x a character vector where matches are sought, or an object which can be coerced by [as.character()] to a character vector.
2020-09-18 16:05:53 +02:00
#' @param pattern a character string containing a regular expression (or [character] string for `fixed = TRUE`) to be matched in the given character vector. Coerced by [as.character()] to a character string if possible. If a [character] vector of length 2 or more is supplied, the first element is used with a warning.
2019-11-29 19:43:23 +01:00
#' @param ignore.case if `FALSE`, the pattern matching is *case sensitive* and if `TRUE`, case is ignored during matching.
2019-11-28 22:32:17 +01:00
#' @return A [`logical`] vector
2018-07-04 17:20:03 +02:00
#' @name like
#' @rdname like
#' @export
2020-05-16 13:05:47 +02:00
#' @details
#' The `%like%` function:
2020-09-03 12:31:48 +02:00
#' * Is case-insensitive (use `%like_case%` for case-sensitive matching)
2020-05-16 13:05:47 +02:00
#' * Supports multiple patterns
#' * Checks if `pattern` is a regular expression and sets `fixed = TRUE` if not, to greatly improve speed
#' * Tries again with `perl = TRUE` if regex fails
2020-04-14 14:12:31 +02:00
#'
2020-11-23 21:50:27 +01:00
#' Using RStudio? The text `%like%` can also be directly inserted in your code from the Addins menu and can have its own Keyboard Shortcut like `Ctrl+Shift+L` or `Cmd+Shift+L` (see `Tools` > `Modify Keyboard Shortcuts...`).
2020-05-16 13:05:47 +02:00
#' @source Idea from the [`like` function from the `data.table` package](https://github.com/Rdatatable/data.table/blob/master/R/like.R)
2020-09-03 12:31:48 +02:00
#' @seealso [grep()]
2019-01-02 23:24:07 +01:00
#' @inheritSection AMR Read more on our website!
2018-07-04 17:20:03 +02:00
#' @examples
#' # simple test
#' a <- "This is a test"
#' b <- "TEST"
#' a %like% b
#' #> TRUE
#' b %like% a
#' #> FALSE
#'
#' # also supports multiple patterns, length must be equal to x
#' a <- c("Test case", "Something different", "Yet another thing")
2020-02-14 19:54:13 +01:00
#' b <- c( "case", "diff", "yet")
2018-07-04 17:20:03 +02:00
#' a %like% b
#' #> TRUE TRUE TRUE
#'
2020-05-16 13:05:47 +02:00
#' # get isolates whose name start with 'Ent' or 'ent'
2020-09-29 23:35:46 +02:00
#' \donttest{
#' if (require("dplyr")) {
#' example_isolates %>%
#' filter(mo_name(mo) %like% "^ent")
#' }
2020-05-16 21:40:50 +02:00
#' }
2019-09-15 22:57:30 +02:00
like <- function ( x , pattern , ignore.case = TRUE ) {
2020-10-19 17:09:19 +02:00
meet_criteria ( x , allow_NA = TRUE )
2020-10-21 14:40:00 +02:00
meet_criteria ( pattern , allow_NA = FALSE )
2020-10-19 17:09:19 +02:00
meet_criteria ( ignore.case , allow_class = " logical" , has_length = 1 )
2020-05-16 13:05:47 +02:00
# set to fixed if no regex found
2020-09-24 00:30:11 +02:00
fixed <- ! any ( is_possibly_regex ( pattern ) )
2020-05-16 13:05:47 +02:00
if ( ignore.case == TRUE ) {
2020-12-07 16:06:42 +01:00
# set here, otherwise if fixed = TRUE, this warning will be thrown: argument `ignore.case = TRUE` will be ignored
2020-05-16 13:05:47 +02:00
x <- tolower ( x )
pattern <- tolower ( pattern )
}
2020-09-03 12:31:48 +02:00
if ( length ( pattern ) > 1 & length ( x ) == 1 ) {
x <- rep ( x , length ( pattern ) )
}
2020-10-19 17:09:19 +02:00
if ( all ( is.na ( x ) ) ) {
return ( rep ( FALSE , length ( x ) ) )
}
2020-09-03 12:31:48 +02:00
2018-07-04 17:20:03 +02:00
if ( length ( pattern ) > 1 ) {
2020-09-03 12:31:48 +02:00
res <- vector ( length = length ( pattern ) )
2018-07-04 17:20:03 +02:00
if ( length ( x ) != length ( pattern ) ) {
2019-09-12 15:08:53 +02:00
if ( length ( x ) == 1 ) {
x <- rep ( x , length ( pattern ) )
}
# return TRUE for every 'x' that matches any 'pattern', FALSE otherwise
2020-09-03 12:31:48 +02:00
for ( i in seq_len ( length ( res ) ) ) {
if ( is.factor ( x [i ] ) ) {
res [i ] <- as.integer ( x [i ] ) %in% grep ( pattern [i ] , levels ( x [i ] ) , ignore.case = FALSE , fixed = fixed )
} else {
res [i ] <- grepl ( pattern [i ] , x [i ] , ignore.case = FALSE , fixed = fixed )
}
}
res <- sapply ( pattern , function ( pttrn ) grepl ( pttrn , x , ignore.case = FALSE , fixed = fixed ) )
2019-09-12 15:08:53 +02:00
res2 <- as.logical ( rowSums ( res ) )
# get only first item of every hit in pattern
res2 [duplicated ( res ) ] <- FALSE
res2 [rowSums ( res ) == 0 ] <- NA
return ( res2 )
2018-07-04 17:20:03 +02:00
} else {
# x and pattern are of same length, so items with each other
2019-10-11 17:21:02 +02:00
for ( i in seq_len ( length ( res ) ) ) {
2018-07-04 17:20:03 +02:00
if ( is.factor ( x [i ] ) ) {
2020-09-03 12:31:48 +02:00
res [i ] <- as.integer ( x [i ] ) %in% grep ( pattern [i ] , levels ( x [i ] ) , ignore.case = FALSE , fixed = fixed )
2018-07-04 17:20:03 +02:00
} else {
2020-09-03 12:31:48 +02:00
res [i ] <- grepl ( pattern [i ] , x [i ] , ignore.case = FALSE , fixed = fixed )
2018-07-04 17:20:03 +02:00
}
}
return ( res )
}
}
2020-07-13 09:17:24 +02:00
2018-07-04 17:20:03 +02:00
# the regular way how grepl works; just one pattern against one or more x
if ( is.factor ( x ) ) {
2020-09-03 12:31:48 +02:00
as.integer ( x ) %in% grep ( pattern , levels ( x ) , ignore.case = FALSE , fixed = fixed )
2018-07-04 17:20:03 +02:00
} else {
2020-09-03 12:31:48 +02:00
tryCatch ( grepl ( pattern , x , ignore.case = FALSE , fixed = fixed ) ,
2020-07-02 21:12:52 +02:00
error = function ( e ) {
if ( grepl ( " invalid reg(ular )?exp" , e $ message , ignore.case = TRUE ) ) {
# try with perl = TRUE:
2020-09-03 12:31:48 +02:00
return ( grepl ( pattern = pattern ,
2020-07-02 21:12:52 +02:00
x = x ,
ignore.case = FALSE ,
fixed = fixed ,
perl = TRUE ) )
} else {
# stop otherwise
stop ( e $ message )
}
} )
2018-07-04 17:20:03 +02:00
}
}
#' @rdname like
#' @export
2019-09-15 22:57:30 +02:00
" %like%" <- function ( x , pattern ) {
2020-10-19 17:09:19 +02:00
meet_criteria ( x , allow_NA = TRUE )
2020-10-21 15:28:48 +02:00
meet_criteria ( pattern , allow_NA = FALSE )
2019-09-15 22:57:30 +02:00
like ( x , pattern , ignore.case = TRUE )
}
#' @rdname like
#' @export
" %like_case%" <- function ( x , pattern ) {
2020-10-19 17:09:19 +02:00
meet_criteria ( x , allow_NA = TRUE )
2020-10-21 14:40:00 +02:00
meet_criteria ( pattern , allow_NA = FALSE )
2019-09-15 22:57:30 +02:00
like ( x , pattern , ignore.case = FALSE )
}
2020-09-24 00:30:11 +02:00
" %like_perl%" <- function ( x , pattern ) {
2020-10-21 14:40:00 +02:00
meet_criteria ( x , allow_NA = TRUE )
meet_criteria ( pattern , allow_NA = FALSE )
2020-10-21 15:28:48 +02:00
# convenient for e.g. matching all Klebsiella and Raoultella, but not
# K. aerogenes: fullname %like_perl% "^(Klebsiella(?! aerogenes)|Raoultella)"
2020-09-24 00:30:11 +02:00
grepl ( x = tolower ( x ) ,
pattern = tolower ( pattern ) ,
perl = TRUE ,
fixed = FALSE ,
ignore.case = TRUE )
}