-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor Strategus module approach (#145)
* Implementation of CohortIncidence module. (#147) * Adjustments from testing --------- Co-authored-by: Chris Knoll <[email protected]>
- Loading branch information
1 parent
33dd01b
commit 0a0171b
Showing
147 changed files
with
7,767 additions
and
12,654 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Package: Strategus | ||
Type: Package | ||
Title: Coordinating and Executing Analytics Using HADES Modules | ||
Version: 0.3.0 | ||
Date: 2023-06-04 | ||
Version: 1.0.0 | ||
Date: 2024-07-10 | ||
Authors@R: c( | ||
person("Martijn", "Schuemie", email = "[email protected]", role = c("aut")), | ||
person("Anthony", "Sena", email = "[email protected]", role = c("aut", "cre")), | ||
|
@@ -17,36 +17,44 @@ BugReports: https://github.com/OHDSI/Strategus/issues | |
Depends: | ||
R (>= 4.2.0), | ||
CohortGenerator (>= 0.8.0), | ||
DatabaseConnector (>= 6.2.3) | ||
DatabaseConnector (>= 6.2.3), | ||
R6 | ||
Imports: | ||
targets, | ||
renv (>= 1.0.0), | ||
ParallelLogger (>= 3.1.0), | ||
dplyr, | ||
checkmate, | ||
keyring, | ||
rlang, | ||
utils, | ||
R.utils, | ||
digest, | ||
methods, | ||
tibble, | ||
ResultModelManager (>= 0.3.0), | ||
SqlRender (>= 1.11.0), | ||
semver, | ||
httr2, | ||
jsonlite | ||
ResultModelManager (>= 0.5.8), | ||
SqlRender (>= 1.18.0) | ||
Suggests: | ||
testthat (>= 3.0.0), | ||
Characterization, | ||
CirceR, | ||
CohortDiagnostics, | ||
CohortIncidence, | ||
CohortMethod, | ||
Cyclops, | ||
Eunomia, | ||
EvidenceSynthesis, | ||
FeatureExtraction, | ||
fs, | ||
knitr, | ||
PatientLevelPrediction, | ||
rmarkdown, | ||
Eunomia, | ||
RSQLite, | ||
SelfControlledCaseSeries, | ||
testthat (>= 3.0.0), | ||
withr | ||
Remotes: | ||
ohdsi/Characterization, | ||
ohdsi/CohortDiagnostics, | ||
ohdsi/CohortGenerator, | ||
ohdsi/CohortIncidence, | ||
ohdsi/CohortMethod, | ||
ohdsi/PatientLevelPrediction, | ||
ohdsi/ResultModelManager, | ||
ohdsi/Eunomia | ||
ohdsi/SelfControlledCaseSeries | ||
VignetteBuilder: knitr | ||
NeedsCompilation: no | ||
RoxygenNote: 7.3.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,36 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export(CharacterizationModule) | ||
export(CohortDiagnosticsModule) | ||
export(CohortGeneratorModule) | ||
export(CohortIncidenceModule) | ||
export(CohortMethodModule) | ||
export(EvidenceSynthesisModule) | ||
export(PatientLevelPredictionModule) | ||
export(SelfControlledCaseSeriesModule) | ||
export(StrategusModule) | ||
export(addCharacterizationModuleSpecifications) | ||
export(addCohortDiagnosticsModuleSpecifications) | ||
export(addCohortGeneratorModuleSpecifications) | ||
export(addCohortIncidenceModuleSpecifications) | ||
export(addCohortMethodeModuleSpecifications) | ||
export(addEvidenceSynthesisModuleSpecifications) | ||
export(addModuleSpecifications) | ||
export(addPatientLevelPredictionModuleSpecifications) | ||
export(addSelfControlledCaseSeriesModuleSpecifications) | ||
export(addSharedResources) | ||
export(compareLockFiles) | ||
export(createCdmExecutionSettings) | ||
export(createEmptyAnalysisSpecificiations) | ||
export(createResultDataModels) | ||
export(createResultDataModel) | ||
export(createResultsDataModelSettings) | ||
export(createResultsExecutionSettings) | ||
export(ensureAllModulesInstantiated) | ||
export(execute) | ||
export(getModuleList) | ||
export(installLatestModule) | ||
export(retrieveConnectionDetails) | ||
export(storeConnectionDetails) | ||
export(syncLockFile) | ||
export(unlockKeyring) | ||
export(validateLockFile) | ||
export(verifyModuleInstallation) | ||
export(getDatabaseIdentifierFilePath) | ||
export(uploadResults) | ||
export(zipResults) | ||
import(CohortGenerator) | ||
import(DatabaseConnector) | ||
import(R6) | ||
import(dplyr) | ||
importFrom(methods,is) | ||
importFrom(rlang,.data) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.