Skip to content

Commit

Permalink
reduce dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
edward-burn committed Jan 23, 2024
1 parent 0ffc7e2 commit 1ab5593
Show file tree
Hide file tree
Showing 39 changed files with 140 additions and 157 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ Imports:
vctrs
Suggests:
covr,
here (>= 1.0.0),
knitr,
rmarkdown,
testthat (>= 3.0.0),
Expand All @@ -48,3 +47,4 @@ Config/testthat/parallel: true
VignetteBuilder: knitr
URL: https://darwin-eu.github.io/CodelistGenerator/
Language: en-US
LazyData: true
2 changes: 1 addition & 1 deletion R/getCandidateCodes.R
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ getCandidateCodes <- function(cdm,
# add concept info
searchResults <- addDetails(cdm = cdm,
conceptList = searchResults) %>%
dplyr::filter(.data$domain_id %in% .env$domains)
dplyr::filter(tolower(.data$domain_id) %in% tolower(.env$domains))

cli::cli_alert_success(
"{nrow(searchResults)} candidate concept{?s} identified"
Expand Down
Loading

0 comments on commit 1ab5593

Please sign in to comment.