We are seeking collaborators who have access to patient-level data and are interested in providing evidence on the effects of direct oral anticoagulants (DOACs) to the healthcare community through publication.
Atrial fibrillation (AF) is the most common cardiac arrhythmia affecting over 33 million people worldwide and is a leading cause of stroke. Current clinical guidelines recommend direct oral anticoagulants (DOACs) as the first-line treatments for stroke prevention in patients with AF. However, there is no further guidance on how to choose between the DOACs, because evidence from head-to-head trials of DOACs is not available.
We are interested in every pairwise comparison between any two DOACs (dabigatran, rivaroxaban, apixaban, and edoxaban). For each comparison, we are interested in the comparative effect on 1) a composite of ischemic stroke and systemic embolism; 2) intracranial bleeding; 3) gastrointestinal bleeding; and 4) all-cause mortality.
For each comparison between two DOACs, for each of the outcomes of interest, what is the hazard ratio?
the primary analyses will be repeated in the following subgroups: 1) Patients who received a standard dose of DOACs 2) Patients who received a reduced dose of DOACs 3) Patients with chronic kidney disease 4) Aged 80 years or older
Patient-level data where each DOAC drug cohort (including edoxaban) has more than 1,000 subjects will be eligible for the study.
We intend to publish our findings in a peer-reviewed journal.
Follow these instructions for seting up your R environment, including RTools and Java.
In R
, use the following code to install the dependencies:
```r
install.packages("remotes") library(remotes) install_github("ohdsi/ParallelLogger", ref = "v2.0.0") install_github("ohdsi/SqlRender", ref = "v1.6.6") install_github("ohdsi/DatabaseConnector", ref = "v3.0.0") install_github("ohdsi/OhdsiSharing", ref = "v0.2.1") install_github("ohdsi/FeatureExtraction", ref = "v3.0.0") install_github("ohdsi/CohortMethod", ref = "v4.0.0") install_github("ohdsi/EmpiricalCalibration", ref = "v2.0.2") install_github("ohdsi/MethodEvaluation", ref = "v1.1.0") ```
In R
, use the following devtools
command to install the corazon package:
r
install.packages("devtools")
devtools::install_github("ohdsi-studies/Corazon")
Once installed, you can execute the study by modifying and using the code below. For your convenience, this code is also provided under extras/CodeToRun.R
:
```r library(corazon)
options(andromedaTempFolder = "c:/andromedaTemp")
maxCores <- parallel::detectCores()
minCellCount <- 5
outputFolder <- "c:/corazon"
connectionDetails <- DatabaseConnector::createConnectionDetails(dbms = "postgresql", server = "some.server.com/ohdsi", user = "joe", password = "secret")
cdmDatabaseSchema <- "cdm_synpuf"
cohortDatabaseSchema <- "scratch.dbo" cohortTable <- "my_study_cohorts"
databaseId <- "Synpuf" databaseName <- "Medicare Claims Synthetic Public Use Files (SynPUFs)" databaseDescription <- "Medicare Claims Synthetic Public Use Files (SynPUFs) were created to allow interested parties to gain familiarity using Medicare claims data while protecting beneficiary privacy. These files are intended to promote development of software and applications that utilize files in this format, train researchers on the use and complexities of Centers for Medicare and Medicaid Services (CMS) claims, and support safe data mining innovations. The SynPUFs were created by combining randomized information from multiple unique beneficiaries and changing variable values. This randomization and combining of beneficiary information ensures privacy of health information."
oracleTempSchema <- NULL
execute(connectionDetails = connectionDetails, cdmDatabaseSchema = cdmDatabaseSchema, cohortDatabaseSchema = cohortDatabaseSchema, cohortTable = cohortTable, oracleTempSchema = oracleTempSchema, outputFolder = outputFolder, databaseId = databaseId, databaseName = databaseName, databaseDescription = databaseDescription, createCohorts = TRUE, synthesizePositiveControls = FALSE, runAnalyses = TRUE, packageResults = TRUE, maxCores = maxCores) ```
Send the file export/Results_<DatabaseId>.zip
in the output folder to the study coordinator Carmen O. Torre
To view the results, use the Shiny app:
```r
prepareForEvidenceExplorer("Result_.zip", "/shinyData") launchEvidenceExplorer("/shinyData", blind = TRUE) ```
Note that you can save plots from within the Shiny app. It is possible to view results from more than one database by applying prepareForEvidenceExplorer
to the Results file from each database, and using the same data folder. Set blind = FALSE
if you wish to be unblinded to the final results.
The corazon package is licensed under Apache License 2.0
corazon was developed in ATLAS and R Studio.
Send the file export/Results_<DatabaseId>.zip
in the output folder to the study coordinator Carmen O. Torre.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.