Skip to content

Commit

Permalink
Merge pull request #213 from darwin-eu/helper_functions
Browse files Browse the repository at this point in the history
helper functions
  • Loading branch information
edward-burn authored Sep 24, 2024
2 parents 08f4e20 + 8c4481e commit 3768090
Show file tree
Hide file tree
Showing 2 changed files with 204 additions and 0 deletions.
131 changes: 131 additions & 0 deletions R/helperFunctions.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
# Copyright 2024 DARWIN EU®
#
# This file is part of CodelistGenerator
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

#' Get all ingredients codes from the cdm
#'
#' @param cdm cdm_reference via CDMConnector
#'
#' @return A vector list of all ingredient level codes found in the concept
#' table of cdm.
#'
#' @export
#'
#' @examples
#' \dontrun{
#' cdm <- mockVocabRef()
#' availableIngredients(cdm)
#'}
availableIngredients <- function(cdm) {
errorMessage <- checkmate::makeAssertCollection()
checkDbType(cdm = cdm, type = "cdm_reference", messageStore = errorMessage)
checkmate::reportAssertions(collection = errorMessage)

ingredientConcepts <- cdm$concept |>
dplyr::filter(.data$standard_concept == "S") |>
dplyr::filter(.data$concept_class_id == "Ingredient") |>
dplyr::pull("concept_name")

return(ingredientConcepts)
}

#' Get all ATC codes from the cdm
#'
#' @param cdm cdm_reference via CDMConnector
#' @param level ATC level. Can be one or more of "ATC 1st", "ATC 2nd",
#' "ATC 3rd", "ATC 4th", and "ATC 5th"
#'
#' @return A vector list of all ATC codes for the chosen level(s) found in the
#' concept table of cdm.
#'
#' @export
#'
#' @examples
#' \dontrun{
#' cdm <- mockVocabRef()
#' availableATC(cdm)
#'}
#'
availableATC <- function(cdm,
level = c("ATC 1st")) {
errorMessage <- checkmate::makeAssertCollection()
checkDbType(cdm = cdm, type = "cdm_reference", messageStore = errorMessage)
levelCheck <- all(level %in%
c(
"ATC 1st",
"ATC 2nd",
"ATC 3rd",
"ATC 4th",
"ATC 5th"
))
if (!isTRUE(levelCheck)) {
errorMessage$push(
"- level can only be from: ATC 1st, ATC 2nd, ATC 3rd, ATC 4th, ATC 5th"
)
}
checkmate::assertTRUE(levelCheck, add = errorMessage)
checkmate::reportAssertions(collection = errorMessage)

atc_names <- cdm$concept |>
dplyr::filter(.data$vocabulary_id == "ATC") |>
dplyr::filter(.data$concept_class_id %in% .env$level) |>
dplyr::pull("concept_name")

return(atc_names)
}

#' Get all ICD codes from the cdm
#'
#' @param cdm cdm_reference via CDMConnector
#' @param level Can be either "ICD10 Chapter" or "ICD10 SubChapter"
#'
#' @return A vector list of all ICD10 codes for the chosen level(s) found in the
#' concept table of cdm.
#'
#' @export
#'
#' @examples
#' \dontrun{
#' cdm <- mockVocabRef()
#' availableICD10(cdm)
#'}
availableICD10 <- function(cdm,
level = c(
"ICD10 Chapter",
"ICD10 SubChapter"
)){

errorMessage <- checkmate::makeAssertCollection()
checkDbType(cdm = cdm, type = "cdm_reference", messageStore = errorMessage)
levelCheck <- all(level %in%
c(
"ICD10 Chapter",
"ICD10 SubChapter"
))
if (!isTRUE(levelCheck)) {
errorMessage$push(
"- level can only be from: ICD10 Chapter, ICD10 SubChapter "
)
}
checkmate::assertTRUE(levelCheck, add = errorMessage)
checkmate::reportAssertions(collection = errorMessage)

ICD10Concepts <- cdm$concept |>
dplyr::filter(.data$vocabulary_id == "ICD10") |>
dplyr::filter(.data$concept_class_id %in% .env$level) |>
dplyr::pull("concept_name")

return(ICD10Concepts)
}
73 changes: 73 additions & 0 deletions tests/testthat/test-helperFunctions.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
test_that("input validation", {
skip_on_cran()
backends <- c("database", "data_frame")
for (i in seq_along(backends)) {
cdm <- mockVocabRef(backends[[i]])
expect_no_error(
availableIngredients(cdm)
)
expect_no_error(
availableATC(cdm)
)
expect_no_error(
availableATC(cdm, level = c("ATC 2nd"))
)
expect_error(
availableATC(cdm, level = c("ATC 3nd"))
)
expect_no_error(
availableICD10(cdm)
)
expect_no_error(
availableICD10(cdm, level = "ICD10 Chapter")
)
expect_error(
availableICD10(cdm, level = "ICD10 Chapters")
)
}
})

test_that("available ingredients", {
skip_on_cran()
backends <- c("database", "data_frame")
for (i in seq_along(backends)) {
cdm <- mockVocabRef(backends[[i]])
expect_no_error(
res <- availableIngredients(cdm)
)
manual_res <- cdm$concept |>
dplyr::filter(standard_concept == "S" & concept_class_id == "Ingredient") |>
dplyr::pull("concept_name")
expect_true(setequal(res, manual_res))
}
})

test_that("available ATC", {
skip_on_cran()
backends <- c("database", "data_frame")
for (i in seq_along(backends)) {
cdm <- mockVocabRef(backends[[i]])
expect_no_error(
res1 <- availableATC(cdm, level = c("ATC 1st", "ATC 2nd"))
)
expect_no_error(
res2 <- availableATC(cdm, level = c("ATC 1st"))
)
expect_true(setequal(intersect(res2, res1), res2)) # res 2 is a subset of res 1
}
})

test_that("available ICD10", {
skip_on_cran()
backends <- c("database", "data_frame")
for (i in seq_along(backends)) {
cdm <- mockVocabRef(backends[[i]])
expect_no_error(
res1 <- availableICD10(cdm)
)
expect_no_error(
res2 <- availableICD10(cdm, level = c("ICD10 Chapter"))
)
expect_true(setequal(intersect(res2, res1), res2)) # res 2 is a subset of res 1
}
})

0 comments on commit 3768090

Please sign in to comment.