Skip to content

Commit 1ce5668

Browse files
authored
Update cohort filtering and replace ODP tracks
1 parent 873fc2d commit 1ce5668

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

src/generate_odp_conformance_csv.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def get_provisions(selected_cohorts, all_cohorts):
9797
filtered_cohorts = [
9898
x
9999
for x in selected_cohorts
100-
if selected_cohorts[0] in [cohort["id"] for cohort in all_cohorts]
100+
if x in [cohort["id"] for cohort in all_cohorts]
101101
]
102102
cohort_clause = (
103103
"AND ("
@@ -165,10 +165,12 @@ def get_provisions(selected_cohorts, all_cohorts):
165165
COHORTS = [
166166
{"name": "RIPA Beta", "id": "RIPA-Beta"},
167167
{"name": "RIPA BOPS", "id": "RIPA-BOPS"},
168-
{"name": "ODP Track 1", "id": "ODP-Track1"},
169-
{"name": "ODP Track 2", "id": "ODP-Track2"},
170-
{"name": "ODP Track 3", "id": "ODP-Track3"},
171-
{"name": "ODP Track 4", "id": "ODP-Track4"},
168+
{"name": "PSIF Track 1", "id": "psif-Track1"},
169+
{"name": "PSIF Track 2", "id": "psif-Track2"},
170+
{"name": "PSIF Track 3", "id": "psif-Track3"},
171+
{"name": "DPIF Round 2", "id": "dpif-round-2"},
172+
{"name": "DPIF Round 3", "id": "dpif-round-3"},
173+
{"name": "DPIF Round 4.1", "id": "dpif-round-4.1"},
172174
]
173175

174176

0 commit comments

Comments
 (0)