Skip to content

Commit

Permalink
Merge pull request #742 from OHDSI/duckdb_support_exportToAres
Browse files Browse the repository at this point in the history
Add support for duckdb
  • Loading branch information
fdefalco authored May 20, 2024
2 parents 9e5c4df + 686f61f commit 56cebe5
Show file tree
Hide file tree
Showing 8 changed files with 1,859 additions and 1,358 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ deploy.sh
_pkgdown.yml
^CRAN-SUBMISSION$
^cran-comments\.md$
^.lintr
3 changes: 3 additions & 0 deletions .lintr
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
linters: linters_with_defaults(
object_name_linter = object_name_linter(styles = c("camelCase", "snake_case", "symbols")))
encoding: "UTF-8"
20 changes: 11 additions & 9 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Title: Achilles Data Source Characterization
Version: 1.7.2
Date: 2023-05-11
Authors@R: c(
person("Frank", "DeFalco", email = "[email protected]", role = c("aut","cre")),
person("Patrick", "Ryan", email = "[email protected]", role = c("aut")),
person("Frank", "DeFalco", email = "[email protected]", role = c("aut","cre")),
person("Patrick", "Ryan", email = "[email protected]", role = c("aut")),
person("Martijn", "Schuemie", email = "[email protected]", role = c("aut")),
person("Vojtech", "Huser", role = c("aut")),
person("Chris", "Knoll", role = c("aut")),
Expand All @@ -16,17 +16,19 @@ Authors@R: c(
)
Maintainer: Frank DeFalco <[email protected]>
LazyData: true
Description: Automated Characterization of Health Information at Large-Scale
Longitudinal Evidence Systems. Creates a descriptive statistics summary for
an Observational Medical Outcomes Partnership Common Data Model standardized
data source. This package includes functions for executing summary queries on
the specified data source and exporting reporting content for use across a
variety of Observational Health Data Sciences and Informatics community
applications.
Description: Automated Characterization of Health Information at Large-Scale
Longitudinal Evidence Systems. Creates a descriptive statistics summary for
an Observational Medical Outcomes Partnership Common Data Model standardized
data source. This package includes functions for executing summary queries on
the specified data source and exporting reporting content for use across a
variety of Observational Health Data Sciences and Informatics community
applications.
Depends:
DatabaseConnector (>= 2.0.0),
R (>= 4.0.0)
Imports:
DBI,
duckdb,
SqlRender (>= 1.6.0),
dplyr,
jsonlite,
Expand Down
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export(runMissingAnalyses)
export(showReportTypes)
export(sumAcrossYears)
export(tsCompleteYears)
import(DBI)
import(DatabaseConnector)
import(ParallelLogger)
import(SqlRender)
Expand Down
Loading

0 comments on commit 56cebe5

Please sign in to comment.