In this vignette we cover how to run the Achilles package on your Common Data Model (CDM) database in order to characterize the dataset. The characterizations can help you learn more about your dataset’s features and limitations.
It is a best practice for all OHDSI sites to run Achilles on their CDM datasets to ensure researchers can evaluate study feasibility and contextualize study results.
The Achilles package consists of:
In most Achilles functions, you can specify
sqlOnly = TRUE
in order to produce the SQL without
executing it, which can be useful if you’d like to examine the SQL
closely or debug something. The SQL files are stored in the
outputFolder
.
File and console logging is enabled across most Achilles functions.
The status of each step is logged into files in the
outputFolder
. You can review the files in a common text
editor.
The verboseMode
parameter can be set to FALSE if you’d
like less details about the function execution to appear in the console.
Either way, all details are written to the log files. By default, this
is set to TRUE.
In order to run the package, you will need to determine if you’d like the Achilles tables and staging tables to be stored in schemas that are separate from your CDM’s schema (recommended), or within the same schema as the CDM.
As the achilles functions can run independently, we have added a multi-threaded mode to allow for more than 1 SQL script to execute at a time. This is particularly useful for massively parallel processing (MPP) platforms such as Amazon Redshift and Microsoft PDW. It may not be beneficial for traditional SQL platforms, so only use the multi-threaded mode if confident it can be useful.
Further, while multiple threads can help performance in MPP platforms, there can be diminishing returns as the cluster has a finite number of concurrency slots to handle the queries. A rule of thumb: most likely you should not use more than 10.
In the multi-threaded mode, all scripts produce permanent staging tables, whereas in the single-threaded mode, the scripts produce temporary staging tables. In both, the staging tables are merged to produce the final Achilles tables.
The following sub-sections describe the optional parameters in achilles that can be configured, regardless of whether you run the function in single- or multi-threaded mode.
To keep the staging tables organized, the achilles
function will use a table prefix of “tmpach” by default, but you can
choose a different one using the tempAchillesPrefix
parameter. This is useful for database platforms like Oracle, which
limit the length of table names.
The sourceName
parameter is used to assign the name of
the dataset to the Achilles results. If you set this to
NULL
, the achilles function will try to
obtain the source name from the CDM_SOURCE table.
The createTable
parameter, when set to
TRUE
, drops any existing Achilles results tables and builds
new ones. If set to FALSE
, these tables will persist, and
the achilles function will just insert new data to
them.
By default, the achilles function runs all default
analyses detailed in the getAnalysisDetails
function.
However, it may be useful to focus on a subset of analyses rather than
running the whole set. This can be accomplished by specifying analysis
Ids in the analysisIds
parameter.
By default, the achilles function does not run
analyses on the COST table(s), as they can be very time-consuming, and
are not critical to most OHDSI studies. However, you can choose to run
these analyses by setting runCostAnalysis
to
TRUE
. The cost analyses are conditional on the CDM version.
If using CDM v5.0, then the older cost tables are queried. If using any
version after 5.0, the unified cost table is queried.
To avoid patient identification, you can establish the minimum cell
size that should be kept in the Achilles tables. Cells with small counts
(less than or equal to the value of the smallCellCount
parameter) are deleted. By default, this is set to 5. Set to 0 for
complete summary without small cell count restrictions.
See the Post-Processing section to read about how to run this step separately
This parameter is only necessary if running in multi-threaded mode
The dropScratchTables
parameter, if set to
TRUE
, will drop all staging tables created during the
execution of achilles in multi-threaded mode.
See the Post-Processing section to read about how to run this step separately
The createIndices
parameter, if set to
TRUE
, will result in indices on the Achilles results tables
to be created in order to improve query performance.
When running achilles, the return value, if you assign a variable to the function call, is a list object in which metadata about the execution and all of the SQL scripts executed are attributes. You can also run the function call without assigning a variable to it, so that no values are printed or returned.
In single-threaded mode, there is no need to set a
scratchDatabaseSchema
, as temporary tables will be
used.
In multi-threaded mode, you need to specify
scratchDatabaseSchema
and use > 1 for
numThreads
.
connectionDetails <- createConnectionDetails(dbms = "postgresql",
server = "localhost/synpuf",
user = "cdm_user",
password = "cdm_password")
achilles(connectionDetails = connectionDetails,
cdmDatabaseSchema = "cdm",
resultsDatabaseSchema = "results",
scratchDatabaseSchema = "scratch",
numThreads = 5,
outputFolder = "output")
This section describes the usage of standalone functions for post-processing that can be invoked if you did not use them in the achilles function call.
Not supported by Amazon Redshift or IBM Netezza; function will skip this step if using those platforms
To improve query performance of the Achilles results tables, run the createIndices function.
If the achilles execution has errors, or if you did
not enable this step in the call to these functions, use the
dropAllScratchTables
function.
The tableTypes
parameter can be used to specify which
batch of staging tables to drop (“achilles”).
Considerable work has been dedicated to provide the
Achilles
package.
#> To cite package 'Achilles' in publications use:
#>
#> DeFalco F, Ryan P, Schuemie M, Huser V, Knoll C, Londhe A,
#> Abdul-Basser T, Molinaro A (2023). _Achilles: Achilles Data Source
#> Characterization_. R package version 1.7.2.
#>
#> A BibTeX entry for LaTeX users is
#>
#> @Manual{,
#> title = {Achilles: Achilles Data Source Characterization},
#> author = {Frank DeFalco and Patrick Ryan and Martijn Schuemie and Vojtech Huser and Chris Knoll and Ajit Londhe and Taha Abdul-Basser and Anthony Molinaro},
#> year = {2023},
#> note = {R package version 1.7.2},
#> }