Skip to content

Commit

Permalink
replace triple colon with double in CaprPHEMS::<function> calls
Browse files Browse the repository at this point in the history
  • Loading branch information
guuswilmink committed Sep 10, 2024
1 parent 3f9748d commit 1b34dcc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions inst/scripts/main.R
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ disconnect(con)
# Establish connection
con <- connect(connectionDetails)

CaprPHEMS:::countOccurrences(
CaprPHEMS::countOccurrences(
v = conceptSets$concepts$uc1,
tables = names(links), # Query all CDM tables
links = CaprPHEMS:::links, # Links between tables and concept_id fields (table:field)
links = CaprPHEMS::links, # Links between tables and concept_id fields (table:field)
db_connection = con,
cdm_schema = connectionConfig$cdm_schema,
vocab_schema = connectionConfig$vocabulary_schema,
Expand All @@ -69,7 +69,7 @@ disconnect(con)
con <- connect(connectionDetails)

# Return table of non-standard concepts
CaprPHEMS:::isStandardDB(
CaprPHEMS::isStandardDB(
db_connection = con,
cdm_schema = connectionConfig$cdm_schema,
vocab_schema = connectionConfig$vocabulary_schema,
Expand Down

0 comments on commit 1b34dcc

Please sign in to comment.