Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
e04022f
Updated colapse algorithm (#339)
mvankessel-EMC Nov 6, 2025
6ebf3df
Prune dep (#333)
mvankessel-EMC Nov 7, 2025
6a82315
added reporting of missing ids
mvankessel-EMC Nov 7, 2025
3eee749
added publications and presentations
mvankessel-EMC Nov 7, 2025
a14fc1c
updated collapse
mvankessel-EMC Jan 6, 2026
c3437b9
fixed grouping
mvankessel-EMC Jan 6, 2026
cd14762
updated nrow for updated attrition
mvankessel-EMC Jan 6, 2026
e62eb61
updated nrow for updated attrition
mvankessel-EMC Jan 6, 2026
3ce7033
replaced == with %in%
mvankessel-EMC Jan 6, 2026
cf1d0df
added test for nonePaths
mvankessel-EMC Jan 6, 2026
0c56d05
unified db interface to CDMConnector
mvankessel-EMC Jan 7, 2026
2344045
disabled CDMInterface tests
mvankessel-EMC Jan 8, 2026
a2b044d
moved CDMConnector to Imports
mvankessel-EMC Jan 8, 2026
61eca55
cast personId to int
Jan 15, 2026
acc3e58
fix attempt
Jan 15, 2026
243a015
stability fix
Jan 21, 2026
f711a7b
removed browser
mvankessel-EMC Jan 21, 2026
0eb69e6
added skip if CirceR is not installed
mvankessel-EMC Jan 21, 2026
b46241f
updated test for extra attrition row
mvankessel-EMC Jan 21, 2026
a27dadf
Fix for multiple target cohorts and multiple cohort tables
mvankessel-EMC Jan 22, 2026
1a6e5b4
added test for multi table and target
mvankessel-EMC Jan 22, 2026
e3436d3
updated actions
mvankessel-EMC Jan 26, 2026
9037d42
Merge branch 'develop' of https://github.com/darwin-eu-dev/TreatmentP…
mvankessel-EMC Jan 26, 2026
6652405
postgres and oracle fix
mvankessel-EMC Jan 26, 2026
c20181e
bumped cdm version to 5.3
mvankessel-EMC Jan 26, 2026
64416eb
quated cohort_definition_id in select
mvankessel-EMC Jan 26, 2026
fe7c993
drop temp table in db after were done and compute the table as a perm…
mvankessel-EMC Jan 26, 2026
f018b2e
added explicit qpdf install
mvankessel-EMC Feb 4, 2026
1e93154
added step to ensure qpdf install
mvankessel-EMC Feb 4, 2026
c19c7a1
removed old step
mvankessel-EMC Feb 4, 2026
ddd3fda
switch from macos to ubuntu
mvankessel-EMC Feb 4, 2026
db5e792
updated min pkg requirement and check if online for tests
mvankessel-EMC Feb 9, 2026
cec08e2
fix merge conflict
mvankessel-EMC Feb 11, 2026
1cfd174
debug github action test on spark
ablack3 Feb 12, 2026
a85e81b
Merge branch 'rc' into develop
mvankessel-EMC Feb 13, 2026
de541fd
drop tbl fix for snowflake
mvankessel-EMC Feb 13, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/odbc-cdmc-spark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ jobs:
httpPath = Sys.getenv("HTTP_PATH"),
workspace = Sys.getenv("WORKSPACE"),
uid = Sys.getenv("USER"),
pwd = Sys.getenv("PASSWORD")
pwd = Sys.getenv("PASSWORD"),
useNativeQuery = FALSE
),
file = "./args.rds"
)
Expand Down
4 changes: 3 additions & 1 deletion R/CDMInterface.R
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ fetchCohortTable <- function(cdm, cohorts, cohortTableName, andromeda, andromeda
}
}

cdm <- CDMConnector::dropSourceTable(cdm = cdm, name = "tp_temp_tbl")
if ("tp_temp_tbl" %in% CDMConnector::listSourceTables(cdm)) {
cdm <- CDMConnector::dropSourceTable(cdm = cdm, name = "tp_temp_tbl")
}

andromeda[[andromedaTableName]] <- andromeda[[andromedaTableName]] %>%
dplyr::mutate(r = dplyr::row_number()) %>%
Expand Down
Loading