Extract codelists from JSON files

Extracting codelists from JSON files

In this vignette, we will explore the functions that help us to generate codelists from JSON files. There are two main types of JSON files we can work with:

In the following sections, we will explore how to use specific functions to extract the codelists generated by these two type of JSON files. Specifically, we will delve into:

Hence, we will start by loading the necessary packages, creating a mock cdm, and saving the mock json files we are going to use to reproduce the example.

# Loading necessary files
library(omopgenerics)
library(CodelistGenerator)
library(dplyr)
library(jsonlite)

# Creating mock cdm
cdm <- mockVocabRef()

# Reading mock json files
arthritis_desc <- fromJSON(system.file("concepts_for_mock/arthritis_desc.json", package = "CodelistGenerator")) |> toJSON(pretty = TRUE, auto_unbox = TRUE)
arthritis_no_desc <- fromJSON(system.file("concepts_for_mock/arthritis_no_desc.json", package = "CodelistGenerator")) |> toJSON(pretty = TRUE, auto_unbox = TRUE)
arthritis_with_excluded <- fromJSON(system.file("concepts_for_mock/arthritis_with_excluded.json", package = "CodelistGenerator")) |> toJSON(pretty = TRUE, auto_unbox = TRUE)
arthritis_desc_cohort <- fromJSON(system.file("cohorts_for_mock/oa_desc.json", package = "CodelistGenerator")) |> toJSON(pretty = TRUE, auto_unbox = TRUE)

Bear in mind that the structure of the vocabulary in our mock cdm is the following

Codes from concept sets JSON files

Now, we are going to extract the concept ids provided a concept set JSON file

concepts <- codesFromConceptSet(cdm, 
                    path =  system.file(package = "CodelistGenerator","concepts_for_mock"),
                    type = "codelist_with_details")

Notice that we have used the argument type to define the output as codelist_with_details, but we could also obtain a simple codelist. Let’s have a look at the codelist we have just upload, which contain a set of concept ids to define arthritis:

concepts

Include descendants

Let’s have a look at the first json file, named “arthritis_desc”

arthritis_desc

Notice that in this codelist, we have concept_id=3 and includeDescendants=TRUE, so the final codelist we have obtained using codesFromConceptSet() is

concepts$arthritis_desc

Note that cdm is one of the arguments because it is used to get the descendants (if needed) the result can vary cdm to cdm if different vocabulary versions are used.

Exclude descendants

If descendants are set to exclude in the json file, the function will not provide the descendants:

arthritis_no_desc

concepts$arthritis_no_desc

Exclude concepts

It can be that the json file specifies concepts that must be excluded. This will also be taken into account when creating the final codelist using codesFromConceptSet():

arthritis_with_excluded

concepts$arthritis_with_excluded

Codes from cohort JSON files

Now, we are going to extract the concept ids provided a cohort JSON file. To do that, we just need to provide the path where we saved the json files:

concepts <- codesFromCohort(cdm, 
                    path =  system.file(package = "CodelistGenerator","cohorts_for_mock"),
                    type = "codelist_with_details")
concepts <- newCodelistWithDetails(list("arthritis" = concepts$arthritis))

Let’s have a look at the codelist we have just upload:

arthritis_desc_cohort

concepts$arthritis