Skip to content

Cohort

The Cohort computes a cohort of individuals based on specified entry criteria, inclusions, exclusions, and computes baseline characteristics and outcomes from the extracted index dates.

Parameters:

Name Type Description Default
name str

A descriptive name for the cohort.

required
entry_criterion Phenotype

The phenotype used to define index date for the cohort.

required
inclusions Optional[List[Phenotype]]

A list of phenotypes that must evaluate to True for patients to be included in the cohort.

None
exclusions Optional[List[Phenotype]]

A list of phenotypes that must evaluate to False for patients to be included in the cohort.

None
characteristics Optional[List[Phenotype]]

A list of phenotypes representing baseline characteristics of the cohort to be computed for all patients passing the inclusion and exclusion criteria.

None
derived_tables Optional[List[DerivedTable]]

A list of derived tables to compute before the entry stage. Their outputs are available as domains for all subsequent stages.

None
derived_tables_post_entry Optional[List[DerivedTable]]

A list of derived tables to compute after the index stage, using index-subset tables. Their outputs are available as domains for the reporting stage.

None
outcomes Optional[List[Phenotype]]

A list of phenotypes representing outcomes of the cohort.

None
description Optional[str]

A plain text description of the cohort.

None
database Optional[Database]

Optional Database object bundling a connector, mapper, and optional data_period. If provided, tables and connector are retrieved from this object at execute() time. A database defined at the cohort level overrides a database defined at the study level. Either the cohort or its parent study must have a database configured before execution.

None
custom_reporters Optional[List]

Additional reporter instances to run on this cohort only, after the default Waterfall and Table1 reporters. Each reporter must implement execute(cohort) and to_json(path).

None
write_subset_tables_entry bool

If True (default), materialize the entry-subset tables to the destination database. If False, keep them as lazy expressions instead.

True
write_subset_tables_index bool

If True (default), materialize the index-subset tables to the destination database. If False, keep them as lazy expressions instead.

True

Attributes:

Name Type Description
table PhenotypeTable

The resulting index table after filtering (None until execute is called)

inclusions_table Table

The patient-level result of all inclusion criteria calculations (None until execute is called)

exclusions_table Table

The patient-level result of all exclusion criteria calculations (None until execute is called)

characteristics_table Table

The patient-level result of all baseline characteristics caclulations. (None until execute is called)

outcomes_table Table

The patient-level result of all outcomes caclulations. (None until execute is called)

subset_tables_entry Dict[str, PhenexTable]

Tables that have been subset by those patients satisfying the entry criterion.

subset_tables_index Dict[str, PhenexTable]

Tables that have been subset by those patients satisfying the entry, inclusion and exclusion criteria.

Source code in phenex/core/cohort.py
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
class Cohort:
    """
    The Cohort computes a cohort of individuals based on specified entry criteria, inclusions, exclusions, and computes baseline characteristics and outcomes from the extracted index dates.

    Parameters:
        name: A descriptive name for the cohort.
        entry_criterion: The phenotype used to define index date for the cohort.
        inclusions: A list of phenotypes that must evaluate to True for patients to be included in the cohort.
        exclusions: A list of phenotypes that must evaluate to False for patients to be included in the cohort.
        characteristics: A list of phenotypes representing baseline characteristics of the cohort to be computed for all patients passing the inclusion and exclusion criteria.
        derived_tables: A list of derived tables to compute before the entry stage. Their outputs are available as domains for all subsequent stages.
        derived_tables_post_entry: A list of derived tables to compute after the index stage, using index-subset tables. Their outputs are available as domains for the reporting stage.
        outcomes: A list of phenotypes representing outcomes of the cohort.
        description: A plain text description of the cohort.
        database: Optional Database object bundling a connector, mapper, and optional data_period. If provided, tables and connector are retrieved from this object at execute() time. A database defined at the cohort level overrides a database defined at the study level. Either the cohort or its parent study must have a database configured before execution.
        custom_reporters: Additional reporter instances to run on this cohort only, after the default Waterfall and Table1 reporters. Each reporter must implement ``execute(cohort)`` and ``to_json(path)``.
        write_subset_tables_entry: If True (default), materialize the entry-subset tables to the destination database. If False, keep them as lazy expressions instead.
        write_subset_tables_index: If True (default), materialize the index-subset tables to the destination database. If False, keep them as lazy expressions instead.

    Attributes:
        table (PhenotypeTable): The resulting index table after filtering (None until execute is called)
        inclusions_table (Table): The patient-level result of all inclusion criteria calculations (None until execute is called)
        exclusions_table (Table): The patient-level result of all exclusion criteria calculations (None until execute is called)
        characteristics_table (Table): The patient-level result of all baseline characteristics caclulations. (None until execute is called)
        outcomes_table (Table): The patient-level result of all outcomes caclulations. (None until execute is called)
        subset_tables_entry (Dict[str, PhenexTable]): Tables that have been subset by those patients satisfying the entry criterion.
        subset_tables_index (Dict[str, PhenexTable]): Tables that have been subset by those patients satisfying the entry, inclusion and exclusion criteria.
    """

    def __init__(
        self,
        name: str,
        entry_criterion: Phenotype,
        inclusions: Optional[List[Phenotype]] = None,
        exclusions: Optional[List[Phenotype]] = None,
        characteristics: Optional[List[Phenotype]] = None,
        derived_tables: Optional[List["DerivedTable"]] = None,
        derived_tables_post_entry: Optional[List["DerivedTable"]] = None,
        outcomes: Optional[List[Phenotype]] = None,
        description: Optional[str] = None,
        database: Optional[Database] = None,
        custom_reporters: Optional[List] = None,
        return_index: str = "first",
        max_index_dates: Optional[int] = None,
        write_subset_tables_entry: bool = True,
        write_subset_tables_index: bool = True,
        write_characteristics_table: bool = True,
        write_outcomes_table: bool = True,
    ):
        self.name = name
        self.description = description
        self.database = database
        self.return_index = return_index
        self.max_index_dates = max_index_dates

        assert return_index in (
            "first",
            "last",
            "all",
        ), f"return_index must be 'first', 'last', or 'all', got '{return_index}'"
        if max_index_dates is not None:
            assert (
                isinstance(max_index_dates, int) and max_index_dates > 0
            ), f"max_index_dates must be a positive integer, got {max_index_dates}"

        # When return_index requires multiple candidate dates, auto-set entry criterion
        if return_index in ("last", "all"):
            if (
                hasattr(entry_criterion, "return_date")
                and entry_criterion.return_date != "all"
            ):
                logger.info(
                    f"Cohort '{name}': return_index='{return_index}' requires entry criterion "
                    f"return_date='all'. Auto-setting from '{entry_criterion.return_date}'."
                )
                entry_criterion.return_date = "all"

        self.write_subset_tables_entry = write_subset_tables_entry
        self.write_subset_tables_index = write_subset_tables_index
        self.write_characteristics_table = write_characteristics_table
        self.write_outcomes_table = write_outcomes_table
        self.table = None  # Will be set during execution to index table
        self.subset_tables_entry = None  # Will be set during execution
        self.subset_tables_index = None  # Will be set during execution
        self.entry_criterion = entry_criterion
        self.inclusions = self._flatten(inclusions)
        self.exclusions = self._flatten(exclusions)

        # characteristics may be a flat list or a dict of {section_name: [phenotypes]}
        if isinstance(characteristics, dict):
            self.characteristic_sections = {
                section: [p.display_name for p in phenos]
                for section, phenos in characteristics.items()
            }
            self.characteristics = [
                p for phenos in characteristics.values() for p in phenos
            ]
        else:
            self.characteristic_sections = None
            self.characteristics = self._flatten(characteristics)

        self.derived_tables = derived_tables
        self.derived_tables_post_entry = derived_tables_post_entry

        # outcomes may be a flat list or a dict of {section_name: [phenotypes]}
        if isinstance(outcomes, dict):
            self.outcome_sections = {
                section: [p.display_name for p in phenos]
                for section, phenos in outcomes.items()
            }
            self.outcomes = [p for phenos in outcomes.values() for p in phenos]
        else:
            self.outcome_sections = None
            self.outcomes = self._flatten(outcomes)

        self.custom_reporters = custom_reporters or []
        self.n_persons_in_source_database = None

        self.phenotypes = (
            [self.entry_criterion]
            + self.inclusions
            + self.exclusions
            + self.characteristics
            + self.outcomes
        )

        self._validate_node_uniqueness()

        # stages: set at execute() time
        self.data_period_filter_stage = None
        self.derived_tables_stage = None
        self.entry_stage = None
        self.index_stage = None
        self.subset_index_stage = None
        self.derived_tables_post_entry_stage = None
        self.reporting_stage = None
        self.sampler_stage = self._build_sampler_stage(self._get_domains())

        # special Nodes that Cohort builds (later, in build_stages())
        # need to be able to refer to later to get outputs
        self.inclusions_table_node = None
        self.exclusions_table_node = None
        self.characteristics_table_node = None
        self.outcomes_table_node = None
        self.index_table_node = None
        self.subset_tables_entry_nodes = None
        self.subset_tables_index_nodes = None
        self.table1_node = None
        self.table1_detailed_node = None
        self.table1_outcomes_node = None
        self.table1_outcomes_detailed_node = None
        self.waterfall_node = None
        self.waterfall_detailed_node = None
        self.custom_reporter_nodes = []

        self._apply_table_name_prefix(self.phenotypes)

        logger.info(
            f"Cohort '{self.name}' initialized with entry criterion '{self.entry_criterion.name}'"
        )

    def _build_sampler_stage(self, domains: List[str]) -> Optional["NodeGroup"]:
        """Create the sampler NodeGroup. Returns None when no sampler is configured."""
        if not (self.database and self.database.sampler):
            return None
        _frac = self.database.sampler.fraction
        _seed = self.database.sampler.seed
        _frac_tag = f"f{int(_frac * 100)}_s{_seed}"
        sampler_nodes = [
            DatabaseSamplerNode(
                name=f"{self.name}__sampler_{domain}__{_frac_tag}".upper(),
                domain=domain,
                sampler=self.database.sampler,
            )
            for domain in domains
        ]
        return NodeGroup(
            name=f"{self.name}__sampler_stage__{_frac_tag}".upper(),
            nodes=sampler_nodes,
        )

    @property
    def _table_prefix(self) -> str:
        """Table name prefix for dest DB — appends frac+seed when a sampler is present so same-name cohorts with different sampler params don't collide."""
        if self.database is not None and self.database.sampler is not None:
            frac = int(self.database.sampler.fraction * 100)
            seed = self.database.sampler.seed
            return f"{self.name}_frac{frac}_seed{seed}"
        return self.name

    @property
    def _clean_prefix(self) -> str:
        """`_table_prefix` with non-alphanumerics collapsed to `_` and upper-cased — the exact
        prefix baked into node table names and their saved `.sql` filenames."""
        return re.sub(r"[^A-Za-z0-9_]", "_", self._table_prefix).upper()

    @staticmethod
    def _flatten(items: Optional[List]) -> List:
        """Flatten one level of nesting, so both [p1, p2] and [[p1, p2]] work."""
        if not items:
            return []
        result = []
        for item in items:
            if isinstance(item, list):
                result.extend(item)
            else:
                result.append(item)
        return result

    def _apply_table_name_prefix(self, phenotypes) -> None:
        """Set _table_name_prefix on phenotypes and their dependencies."""
        prefix = self._clean_prefix
        if not isinstance(phenotypes, list):
            phenotypes = [phenotypes]
        for p in phenotypes:
            p._table_name_prefix = prefix
            for dep in p.dependencies:
                dep._table_name_prefix = prefix

    def add_inclusions(self, phenotypes):
        """Add phenotypes to the inclusion criteria."""
        if not isinstance(phenotypes, list):
            phenotypes = [phenotypes]
        self._apply_table_name_prefix(phenotypes)
        self.inclusions.extend(phenotypes)
        self.phenotypes.extend(phenotypes)

    def add_exclusions(self, phenotypes):
        """Add phenotypes to the exclusion criteria."""
        if not isinstance(phenotypes, list):
            phenotypes = [phenotypes]
        self._apply_table_name_prefix(phenotypes)
        self.exclusions.extend(phenotypes)
        self.phenotypes.extend(phenotypes)

    def add_characteristics(self, phenotypes):
        """Add phenotypes to the baseline characteristics."""
        if not isinstance(phenotypes, list):
            phenotypes = [phenotypes]
        self._apply_table_name_prefix(phenotypes)
        self.characteristics.extend(phenotypes)
        self.phenotypes.extend(phenotypes)

    def add_outcomes(self, phenotypes):
        """Add phenotypes to the outcomes."""
        if not isinstance(phenotypes, list):
            phenotypes = [phenotypes]
        self._apply_table_name_prefix(phenotypes)
        self.outcomes.extend(phenotypes)
        self.phenotypes.extend(phenotypes)

    def _validate_node_uniqueness(self):
        # Use Node's capability to check for node uniqueness rather than reimplementing it here
        Node().add_children(self.phenotypes)

    def build_stages(self, tables: Dict[str, PhenexTable]):
        """
        Build the computational stages for cohort execution.

        This method constructs the directed acyclic graph (DAG) of computational stages required to execute the cohort. The stages are built in dependency order and include:

        1. **Derived Tables Stage** (optional): Executes any derived table computations
        2. **Entry Stage**: Computes entry phenotype and subsets tables filtered by the entry criterion phenotype
        3. **Index Stage**: Applies inclusion/exclusion criteria and creates the final index table
        4. **Reporting Stage** (optional): Computes characteristics and outcomes tables

        Parameters:
            tables: Dictionary mapping domain names to PhenexTable objects containing the source data tables required for phenotype computation.

        Raises:
            ValueError: If required domains are missing from the input tables.

        Side Effects:
            Sets the following instance attributes:
            - self.entry_stage: NodeGroup for entry criterion processing
            - self.derived_tables_stage: NodeGroup for derived tables (if any)
            - self.index_stage: NodeGroup for inclusion/exclusion processing
            - self.reporting_stage: NodeGroup for characteristics/outcomes (if any)
            - Various table nodes for accessing intermediate results

        Note:
            This method must be called before execute() to initialize the computation graph.
            Node uniqueness is validated across all stages to prevent naming conflicts.
        """
        # Check required domains are present to fail early (note this check is not perfect as _get_domains() doesn't catch everything, e.g., intermediate tables in autojoins, but this is better than nothing)
        # Filter out None tables (tables not found in source data)
        available_tables = {k: v for k, v in tables.items() if v is not None}

        # If a derived table has the same name as a mapped table, the mapped table must be
        # discarded — otherwise _get_subset_tables_nodes would produce two SubsetTable nodes
        # with identical names, causing a duplicate-node error in the execution graph.
        all_derived = list(self.derived_tables or []) + list(
            self.derived_tables_post_entry or []
        )
        for dt in all_derived:
            if dt.name in available_tables:
                logger.warning(
                    f"Derived table '{dt.name}' has the same name as a provided mapped table. "
                    f"The mapped table will be discarded and the derived table will be used for domain '{dt.name}'."
                )
                del available_tables[dt.name]

        domains = list(available_tables.keys())
        required_domains = self._get_domains()

        missing_domains = [d for d in required_domains if d not in domains]
        if missing_domains:
            logger.warning(
                f"Some required domains are not present in input tables: {missing_domains}. "
                f"Phenotypes requiring these domains may fail during execution."
            )

        #
        # Sampler stage: OPTIONAL
        #
        self.sampler_stage = self._build_sampler_stage(domains)

        #
        # Data period filter stage: OPTIONAL
        #
        self.data_period_filter_stage = None
        self.derived_tables_stage = None
        self.derived_tables_post_entry_stage = None
        if self.database and self.database.data_period:
            data_period_filter_nodes = [
                DataPeriodFilterNode(
                    name=f"{self.name}__data_period_filter_{domain}".upper(),
                    domain=domain,
                    date_filter=self.database.data_period,
                )
                for domain in domains
            ]
            self.data_period_filter_stage = NodeGroup(
                name="data_period_filter", nodes=data_period_filter_nodes
            )

        #
        # Derived tables pre-entry stage: OPTIONAL
        #
        if self.derived_tables:
            self.derived_tables_stage = NodeGroup(
                name="derived_tables_stage", nodes=self.derived_tables
            )

        #
        # Entry stage: REQUIRED
        #
        # Pre-entry derived table outputs become new domains available from the entry stage onward.
        pre_entry_derived_domains = [x.name for x in (self.derived_tables or [])]
        entry_domains = domains + pre_entry_derived_domains
        self.subset_tables_entry_nodes = self._get_subset_tables_nodes(
            stage="subset_entry",
            domains=entry_domains,
            index_phenotype=self.entry_criterion,
        )
        self.entry_stage = NodeGroup(
            name="entry_stage", nodes=self.subset_tables_entry_nodes
        )
        #

        # Derived tables post-entry stage: OPTIONAL
        #
        if self.derived_tables_post_entry:
            self.derived_tables_post_entry_stage = NodeGroup(
                name="derived_tables_post_entry_stage",
                nodes=self.derived_tables_post_entry,
            )

        #
        # Index stage: REQUIRED
        #
        index_nodes = []
        if self.inclusions:
            self.inclusions_table_node = InclusionsTableNode(
                name=f"{self.name}__inclusions".upper(),
                index_phenotype=self.entry_criterion,
                phenotypes=self.inclusions,
            )
            index_nodes.append(self.inclusions_table_node)
        if self.exclusions:
            self.exclusions_table_node = ExclusionsTableNode(
                name=f"{self.name}__exclusions".upper(),
                index_phenotype=self.entry_criterion,
                phenotypes=self.exclusions,
            )
            index_nodes.append(self.exclusions_table_node)

        self.index_table_node = IndexPhenotype(
            f"{self.name}__index".upper(),
            entry_phenotype=self.entry_criterion,
            inclusion_table_node=self.inclusions_table_node,
            exclusion_table_node=self.exclusions_table_node,
            return_index=self.return_index,
            max_index_dates=self.max_index_dates,
        )
        index_nodes.append(self.index_table_node)

        # Add Waterfall node after index table (depends on index_table_node)
        self.waterfall_node = WaterfallNode(
            name=f"{self.name}__waterfall".upper(),
            cohort=self,
            index_table_node=self.index_table_node,
        )
        index_nodes.append(self.waterfall_node)
        self.waterfall_detailed_node = WaterfallNode(
            name=f"{self.name}__waterfall_detailed".upper(),
            cohort=self,
            index_table_node=self.index_table_node,
            include_component_phenotypes_level=100,  # include all component phenotypes in the detailed waterfall report
        )
        index_nodes.append(self.waterfall_detailed_node)

        self.subset_tables_index_nodes = self._get_subset_tables_nodes(
            stage="subset_index",
            domains=entry_domains,
            index_phenotype=self.index_table_node,
        )
        if self.write_subset_tables_index:
            # Default: materialize the index-subset tables together with the
            # index nodes in a single multithreaded stage.
            self.subset_index_stage = None
            self.index_stage = NodeGroup(
                name="index_stage",
                nodes=self.subset_tables_index_nodes + index_nodes,
            )
        else:
            # Keep the index-subset tables in a separate stage so they can be
            # executed without materializing to the destination database
            # (see execute()).
            self.index_stage = NodeGroup(
                name="index_stage",
                nodes=index_nodes,
            )
            self.subset_index_stage = NodeGroup(
                name="subset_index_stage",
                nodes=self.subset_tables_index_nodes,
            )

        #
        # Post-index / reporting stage: OPTIONAL
        #
        reporting_nodes = []

        if self.characteristics and self.write_characteristics_table:
            self.characteristics_table_node = HStackNode(
                name=f"{self.name}__characteristics".upper(),
                phenotypes=self.characteristics,
                join_table=self.index_table_node,
            )
            reporting_nodes.append(self.characteristics_table_node)
        if self.outcomes and self.write_outcomes_table:
            self.outcomes_table_node = HStackNode(
                name=f"{self.name}__outcomes".upper(),
                phenotypes=self.outcomes,
                join_table=self.index_table_node,
            )
            reporting_nodes.append(self.outcomes_table_node)

        # Add Table1 node if there are characteristics
        if self.characteristics:
            self.table1_node = Table1Node(
                name=f"{self.name}__table1".upper(),
                cohort=self,
            )
            reporting_nodes.append(self.table1_node)
            self.table1_detailed_node = Table1Node(
                name=f"{self.name}__table1_detailed".upper(),
                cohort=self,
                include_component_phenotypes_level=100,
            )
            reporting_nodes.append(self.table1_detailed_node)

        # Add Table1OutcomesNode if there are outcomes
        if self.outcomes:
            self.table1_outcomes_node = Table1OutcomesNode(
                name=f"{self.name}__table1_outcomes".upper(),
                cohort=self,
            )
            reporting_nodes.append(self.table1_outcomes_node)
            self.table1_outcomes_detailed_node = Table1OutcomesNode(
                name=f"{self.name}__table1_outcomes_detailed".upper(),
                cohort=self,
                include_component_phenotypes_level=100,
            )
            reporting_nodes.append(self.table1_outcomes_detailed_node)

        # Add CustomReporterNodes for each custom reporter
        self.custom_reporter_nodes = []
        for reporter in self.custom_reporters:
            node = CustomReporterNode(
                name=f"{self.name}__custom__{reporter.name}".upper(),
                cohort=self,
                reporter=reporter,
            )
            self.custom_reporter_nodes.append(node)
            reporting_nodes.append(node)

        if reporting_nodes:
            self.reporting_stage = NodeGroup(
                name="reporting_stage", nodes=reporting_nodes
            )

    def _get_domains(self):
        """
        Get a list of all domains used by any phenotype in this cohort.
        """
        top_level_nodes = (
            [self.entry_criterion]
            + self.inclusions
            + self.exclusions
            + self.characteristics
            + self.outcomes
        )
        all_nodes = top_level_nodes + sum([t.dependencies for t in top_level_nodes], [])

        # FIXME Person domain should not be HARD CODED; however, it IS hardcoded in SCORE phenotype. Remove hardcoding!
        domains = ["PERSON"] + [
            getattr(pt, "domain", None)
            for pt in all_nodes
            if getattr(pt, "domain", None) is not None
        ]

        domains += [
            getattr(getattr(pt, "categorical_filter", None), "domain", None)
            for pt in all_nodes
            if getattr(getattr(pt, "categorical_filter", None), "domain", None)
            is not None
        ]
        domains = list(set(domains))
        return domains

    def _get_subset_tables_nodes(
        self, stage: str, domains: List[str], index_phenotype: Phenotype
    ):
        """
        Get the nodes for subsetting tables for all domains in this cohort subsetting by the given index_phenotype.

        stage: A string for naming the nodes.
        domains: List of domains to subset.
        index_phenotype: The phenotype to use for subsetting patients.
        """
        return [
            SubsetTable(
                name=f"{self.name}__{stage}_{domain}".upper(),
                domain=domain,
                index_phenotype=index_phenotype,
            )
            for domain in domains
        ]

    @property
    def inclusions_table(self):
        if self.inclusions_table_node:
            return self.inclusions_table_node.table

    @property
    def exclusions_table(self):
        if self.exclusions_table_node:
            return self.exclusions_table_node.table

    @property
    def index_table(self):
        return self.index_table_node.table

    @property
    def characteristics_table(self):
        if self.characteristics_table_node:
            return self.characteristics_table_node.table

    @property
    def outcomes_table(self):
        if self.outcomes_table_node:
            return self.outcomes_table_node.table

    def get_subset_tables_entry(self, tables):
        """
        Get the PhenexTable from the ibis Table for subsetting tables for all domains in this cohort subsetting by the given entry_phenotype.
        """
        subset_tables_entry = {}
        for node in self.subset_tables_entry_nodes:
            # Skip if table is None (not found in source data)
            if node.table is None:
                continue
            if tables[node.domain] is None:
                continue
            subset_tables_entry[node.domain] = type(tables[node.domain])(node.table)
        return subset_tables_entry

    def get_subset_tables_index(self, tables):
        """
        Get the PhenexTable from the ibis Table for subsetting tables for all domains in this cohort subsetting by the given index_phenotype.
        """
        subset_tables_index = {}
        for node in self.subset_tables_index_nodes:
            # Skip if table is None (not found in source data)
            if node.table is None:
                continue
            if tables.get(node.domain) is None:
                continue
            subset_tables_index[node.domain] = type(tables[node.domain])(node.table)
        return subset_tables_index

    def execute(
        self,
        tables: Dict[str, PhenexTable] = None,
        con: Optional["SnowflakeConnector"] = None,
        overwrite: Optional[bool] = False,
        n_threads: Optional[int] = 1,
        lazy_execution: Optional[bool] = False,
        sql_dir: Optional[str] = "./sql",
    ):
        """
        The execute method executes the full cohort in order of computation. The order is data period filter -> derived tables -> entry criterion -> inclusion -> exclusion -> baseline characteristics. Tables are subset at two points, after entry criterion and after full inclusion/exclusion calculation to result in subset_entry data (contains all source data for patients that fulfill the entry criterion, with a possible index date) and subset_index data (contains all source data for patients that fulfill all in/ex criteria, with a set index date). Additionally, default reporters are executed such as table 1 for baseline characteristics.

        There are two ways to use the execute method and thus execute a cohort:

        1. Directly passing source data in the `tables` dictionary
        ```python
        tables = con.get_mapped_tables(mapper)
        cohort.execute(tables)
        ```
        2. Indirectly by defining the data source using the con and mapped_tables keyword arguments at initialization. The source data `tables` is then retrieved at execution time
        ```python
        cohort = Cohort(
            con=SnowflakeConnector(),
            mapper= OMOPDomains,
            ...
        )
        cohort.execute()
        ````

        Parameters:
            tables: A dictionary mapping domains to Table objects. This is optional if the Cohort was initialized with a con and mapper. If passed, this takes precedence over the con and mapper defined at initialization.
            con: Database connector for materializing outputs. If passed, this takes precedence over the con defined at initialization.
            overwrite: Whether to overwrite existing tables
            lazy_execution: Whether to use lazy execution with change detection
            n_threads: Max number of jobs to run simultaneously.
            sql_dir: Directory to write one .sql file per node (named {NODE_NAME}.sql). These files let node.to_sql() return the executed SQL in a later session. Pass None to disable file writing.

        Returns:
            PhenotypeTable: The index table corresponding the cohort.
        """
        logger.info(f"Cohort '{self.name}': executing cohort execution...")

        con = self._prepare_database_connector_for_execution(con)
        tables = dict(self._prepare_tables_for_execution(con, tables))
        logger.info(
            f"Cohort '{self.name}': tables prepared. Counting persons in source database..."
        )

        self.n_persons_in_source_database = (
            tables["PERSON"].distinct().count().execute()
        )
        logger.info(
            f"Cohort '{self.name}': {self.n_persons_in_source_database} persons in source database. Building stages..."
        )

        self.build_stages(tables)
        logger.info(f"Cohort '{self.name}': stages built. Executing sampler stage...")

        if self.sampler_stage:
            logger.info(
                f"Cohort '{self.name}': executing sampler stage. Sampling {self.n_persons_in_source_database} persons..."
            )
            self.sampler_stage.execute(
                tables=tables,
                con=con,
                overwrite=overwrite,
                n_threads=n_threads,
                lazy_execution=lazy_execution,
                table_name_prefix=self._table_prefix,
            )
            # If the tables were already cached, we reuse them and skip sample(),
            # list never gets saved.
            # Build it again here so fetch_person_ids() always works.
            sampler = self.database.sampler
            if sampler._person_ids_expr is None:
                person_tbl = tables.get("PERSON")
                if person_tbl is not None:
                    person_ibis = (
                        person_tbl.table
                        if isinstance(person_tbl, PhenexTable)
                        else person_tbl
                    )
                    sampler._person_ids_expr = sampler._sampled_person_ids(person_ibis)

            # Swap in the sampled table for each domain, so the later steps use the smaller
            # sampled data instead of the full tables.
            for node in self.sampler_stage.children:
                if node.table is not None:
                    original = tables.get(node.domain)
                    sampled = node.table
                    if isinstance(original, PhenexTable) and not isinstance(
                        sampled, PhenexTable
                    ):
                        sampled = type(original)(
                            sampled, name=original.NAME_TABLE, column_mapping={}
                        )
                    node.table = sampled
                    tables[node.domain] = sampled
            logger.info(f"Cohort '{self.name}': completed sampler stage.")

        # Apply data period filter first if specified
        if self.data_period_filter_stage:
            logger.info(f"Cohort '{self.name}': executing data period filter stage ...")
            self.data_period_filter_stage.execute(
                tables=tables,
                con=con,
                overwrite=overwrite,
                n_threads=n_threads,
                lazy_execution=lazy_execution,
                table_name_prefix=self._table_prefix,
            )
            # Update tables with filtered versions (only when the node actually modified the table;
            # nodes with no relevant date columns return None and the original table is kept)
            for node in self.data_period_filter_stage.children:
                if node.table is not None:
                    original = tables.get(node.domain)
                    filtered = node.table
                    if isinstance(original, PhenexTable) and not isinstance(
                        filtered, PhenexTable
                    ):
                        filtered = type(original)(
                            filtered, name=original.NAME_TABLE, column_mapping={}
                        )
                    node.table = filtered
                    tables[node.domain] = filtered
            logger.info(f"Cohort '{self.name}': completed data period filter stage.")

        if self.derived_tables_stage:
            logger.info(
                f"Cohort '{self.name}': executing derived tables pre-entry stage ..."
            )
            self.derived_tables_stage.execute(
                tables=tables,
                con=con,
                overwrite=overwrite,
                n_threads=n_threads,
                lazy_execution=lazy_execution,
                table_name_prefix=self._table_prefix,
            )
            logger.info(
                f"Cohort '{self.name}': completed derived tables pre-entry stage."
            )
            for node in self.derived_tables:
                tables[node.name] = PhenexTable(node.table)

        logger.info(f"Cohort '{self.name}': executing entry stage ...")

        if self.write_subset_tables_entry:
            self.entry_stage.execute(
                tables=tables,
                con=con,
                overwrite=overwrite,
                n_threads=n_threads,
                lazy_execution=lazy_execution,
                table_name_prefix=self._table_prefix,
            )
        else:
            # Execute entry criterion in-memory so .table stays on the source
            # backend, avoiding cross-backend joins with subset tables.
            self.entry_criterion.execute(
                tables=tables,
                con=con,
                overwrite=overwrite,
                n_threads=n_threads,
                table_name_prefix=self._table_prefix,
                lazy_execution=lazy_execution,
            )

            # Remove entry_criterion from subset table children so it won't be
            # re-executed; its .table is already set and SubsetTable._execute
            # accesses it via self.index_phenotype.table.
            for node in self.subset_tables_entry_nodes:
                node._children = [
                    c for c in node._children if c is not self.entry_criterion
                ]
            self.entry_stage.execute(
                tables=tables,
                con=None,
                overwrite=overwrite,
                n_threads=n_threads,
                table_name_prefix=self._table_prefix,
            )
            # Restore children for correct dependency graphs in later stages
            for node in self.subset_tables_entry_nodes:
                node._children.insert(0, self.entry_criterion)

        self.subset_tables_entry = tables = self.get_subset_tables_entry(tables)

        logger.info(f"Cohort '{self.name}': completed entry stage.")

        if self.derived_tables_post_entry_stage:
            logger.info(
                f"Cohort '{self.name}': executing derived tables post-entry stage ..."
            )
            self.derived_tables_post_entry_stage.execute(
                tables=self.subset_tables_entry,
                con=con,
                overwrite=overwrite,
                n_threads=n_threads,
                lazy_execution=lazy_execution,
                table_name_prefix=self._table_prefix,
            )
            logger.info(
                f"Cohort '{self.name}': completed derived tables post-entry stage."
            )
            entry_dates = self.entry_criterion.table.select(
                "PERSON_ID", "EVENT_DATE"
            ).rename({"INDEX_DATE": "EVENT_DATE"})
            # TODO this is a bit hacky, consider a cleaner way to handle this if we want to support post-entry derived tables in the long term i.e. a DERIVED_TABLES class that adds index table automatically if present in the source derived table.
            for node in self.derived_tables_post_entry:
                table_with_index = node.table.join(entry_dates, "PERSON_ID")
                self.subset_tables_entry[node.name] = PhenexTable(table_with_index)
            tables = self.subset_tables_entry

        logger.info(f"Cohort '{self.name}': executing index stage ...")

        index_membership_changed = lazy_execution and Node._node_manager.node_changed(
            self.index_table_node, con
        )

        self.index_stage.execute(
            tables=self.subset_tables_entry,
            con=con,
            overwrite=overwrite,
            n_threads=n_threads,
            lazy_execution=lazy_execution,
            table_name_prefix=self._table_prefix,
        )
        self.table = self.index_table_node.table

        if not self.write_subset_tables_index:
            # Execute the index-subset tables in-memory so they are not
            # materialized to the destination database. The index table is
            # already computed, so detach it from the subset nodes' children to
            # avoid re-executing it; SubsetTable accesses it via
            # self.index_phenotype.table.
            for node in self.subset_tables_index_nodes:
                node._children = [
                    c for c in node._children if c is not self.index_table_node
                ]
            self.subset_index_stage.execute(
                tables=self.subset_tables_entry,
                con=None,
                overwrite=overwrite,
                n_threads=n_threads,
                table_name_prefix=self._table_prefix,
            )
            # Restore children for correct dependency graphs in later stages
            for node in self.subset_tables_index_nodes:
                node._children.insert(0, self.index_table_node)

        logger.info(f"Cohort '{self.name}': completed index stage.")
        logger.info(f"Cohort '{self.name}': executing reporting stage ...")

        self.subset_tables_index = self.get_subset_tables_index(tables)

        # Also add derived post-entry tables to subset_tables_index, further filtered
        # to only include persons that passed all inclusion/exclusion criteria.
        if self.derived_tables_post_entry:
            index_person_ids = self.index_table_node.table.select("PERSON_ID")
            for node in self.derived_tables_post_entry:
                if node.name in self.subset_tables_entry:
                    entry_tbl = self.subset_tables_entry[node.name]
                    filtered_ibis = entry_tbl.table.semi_join(
                        index_person_ids, "PERSON_ID"
                    )
                    self.subset_tables_index[node.name] = type(entry_tbl)(filtered_ibis)

        if self.reporting_stage:
            # If the index population changed, clear characteristics/outcomes
            if index_membership_changed:
                logger.info(
                    f"Cohort '{self.name}': index population changed; invalidating cached "
                    f"characteristics/outcomes so they recompute against the new index."
                )
                # Clear only reporting-only nodes. Entry/index-stage nodes
                # don't depend on the index, so their caches are still valid
                _protected = set()
                for _stage in (self.entry_stage, self.index_stage):
                    if _stage is not None:
                        _protected.add(_stage.name)
                        _protected.update(n.name for n in _stage.dependencies)

                _seen = set()

                def _clear_reporting_only(node):
                    if node.name in _protected or node.name in _seen:
                        return
                    _seen.add(node.name)
                    Node._node_manager.clear_cache(node, con=con, recursive=False)
                    for _child in node.children:
                        _clear_reporting_only(_child)

                for _node in list(self.characteristics or []) + list(
                    self.outcomes or []
                ):
                    _clear_reporting_only(_node)
            logger.info(f"Cohort '{self.name}': executing reporting stage ...")
            self.reporting_stage.execute(
                tables=self.subset_tables_index,
                con=con,
                overwrite=overwrite,
                n_threads=n_threads,
                lazy_execution=lazy_execution,
                table_name_prefix=self._table_prefix,
            )

        self._write_node_sql_files(sql_dir, con, overwrite)

        return self.index_table

    def _write_node_sql_files(self, sql_dir, con, overwrite):
        """Write one .sql per node (+ codelist sidecars) into `sql_dir`, named by get_table_name().
        Overwrite drops this cohort's orphan .sql, lazy hits restore from phenex.db.
        """
        if sql_dir is not None:
            # Remember where we wrote so a later to_sql() can default to it.
            self._last_sql_dir = sql_dir
            try:
                os.makedirs(sql_dir, exist_ok=True)
            except OSError as e:
                logger.warning(
                    f"Cohort '{self.name}': could not create SQL directory '{sql_dir}': {e}. "
                    f"Skipping SQL file output."
                )
            else:
                all_nodes = self._collect_all_nodes()
                if overwrite:
                    # Drop this cohort's orphan .sql (nodes removed since an earlier run), prefix-scoped.
                    current_files = {n.get_sql_filename() for n in all_nodes}
                    prefix = self._clean_prefix + "__"
                    for fname in os.listdir(sql_dir):
                        if (
                            fname.endswith(".sql")
                            and fname.startswith(prefix)
                            and fname not in current_files
                        ):
                            try:
                                os.remove(os.path.join(sql_dir, fname))
                            except OSError:
                                pass
                from phenex.core.sql_view import (
                    REUSED_CODELIST_NOTE,
                    referenced_sidecars,
                )

                target_dialect = ibis_dialect_of_connector(con)
                cache_hit_missing_sidecars = (
                    0  # nodes restored from cache with a sidecar gap
                )
                # Lazy hits below read their SQL back from phenex.db. Fetch them all in one read
                _cached_sql = Node._node_manager.get_sql_bulk(
                    [n for n in all_nodes if n._expression is None], con=con
                )
                for node in all_nodes:
                    filename = node.get_sql_filename()
                    filepath = os.path.join(sql_dir, filename)
                    if node._expression is not None:
                        try:
                            # Compile in the connector's dialect, stamped.
                            # Reuse already compiled for this same expression and dialect.
                            memo = node._compiled_sql
                            if (
                                memo is not None
                                and memo[0] is node._expression
                                and memo[1] == target_dialect
                            ):
                                node_sql = memo[2]
                            else:
                                node_sql = compile_sql(
                                    node._expression, dialect=target_dialect
                                )
                            write_sql_file(filepath, node_sql)
                            # Also dump any codelist this node uses as a sidecar.
                            self._write_codelist_sidecars(node._expression, sql_dir)
                        except Exception as e:
                            logger.warning(
                                f"Cohort '{self.name}': could not write SQL file for node "
                                f"'{node.name}': {e}. Skipping."
                            )
                    else:
                        # Lazy hit (no live expression): restore from phenex.db if missing or wrong-dialect.
                        needs_restore = not os.path.exists(filepath)
                        if not needs_restore and target_dialect is not None:
                            try:
                                existing_stamp = read_dialect_stamp(
                                    read_sql_file(filepath)
                                )
                            except Exception:
                                existing_stamp = None
                            if (
                                existing_stamp is not None
                                and existing_stamp != target_dialect
                            ):
                                needs_restore = True
                        if not needs_restore:
                            continue
                        # Dialect-aware lookup: only accept SQL cached for this backend.
                        sql = _cached_sql.get(node.name)
                        if sql is not None:
                            try:
                                write_sql_file(filepath, sql)
                            except Exception as e:
                                logger.warning(
                                    f"Cohort '{self.name}': could not restore SQL file for node "
                                    f"'{node.name}' from phenex.db: {e}. Skipping."
                                )
                            else:
                                # Cache hits restore node SQL but not sidecars. Tally nodes
                                # whose restored query needs a memtable file this folder lacks,
                                # so we can warn once after the loop instead of per node.
                                if any(
                                    not os.path.exists(
                                        os.path.join(sql_dir, f"{m}.sql")
                                    )
                                    for m in referenced_sidecars(sql)
                                ):
                                    cache_hit_missing_sidecars += 1
                        elif not os.path.exists(filepath):
                            logger.warning(
                                f"Cohort '{self.name}': no saved SQL found for node "
                                f"'{node.name}' — its file is missing and nothing is cached. "
                                f"Call node.to_sql() to rebuild it from its dependencies, or "
                                f"re-run the cohort with a full (non-incremental) execution to "
                                f"regenerate every SQL file."
                            )
                if cache_hit_missing_sidecars:
                    logger.info(f"Cohort '{self.name}': {REUSED_CODELIST_NOTE}")
                # Count .sql present now (accurate on a lazy hit). A shortfall means a warning above.
                n_present = sum(
                    1
                    for node in all_nodes
                    if os.path.exists(os.path.join(sql_dir, node.get_sql_filename()))
                )
                logger.info(
                    f"Cohort '{self.name}': {n_present}/{len(all_nodes)} node SQL "
                    f"file(s) available in '{sql_dir}'"
                )

    @staticmethod
    def _codelist_values_sql(frame) -> str:
        """Render a codelist DataFrame as a self-contained `VALUES` subquery."""

        def lit(v):
            if v is None or v != v:  # None or NaN
                return "NULL"
            if isinstance(v, bool):
                return "TRUE" if v else "FALSE"
            if isinstance(v, (int, float)):
                return repr(v)
            return "'" + str(v).replace("'", "''") + "'"

        # Quote each column so the alias matches ibis's quoted-lowercase refs (e.g. "t3"."code") on any backend.
        cols = ", ".join('"' + str(c) + '"' for c in frame.columns)
        rows = [
            "(" + ", ".join(lit(v) for v in row) + ")"
            for row in frame.itertuples(index=False, name=None)
        ]
        body = (
            ",\n  ".join(rows)
            if rows
            else "(" + ", ".join("NULL" for _ in frame.columns) + ")"
        )
        return (
            "-- Self-contained codelist contents: a drop-in for the in-memory table that the\n"
            '-- codelist node SQL joins to. Replace  FROM "ibis_pandas_memtable_..."  with\n'
            "-- FROM ( this query ) to make that node SQL portable across sessions.\n"
            f"SELECT * FROM (VALUES\n  {body}\n) AS t({cols})\n"
        )

    def _write_codelist_sidecars(self, expression, sql_dir: str) -> None:
        """Write a self-contained `VALUES` sidecar (`{memtable_name}.sql`) for each codelist the
        node references, so the codes stay on disk, deduped."""
        import ibis.expr.operations as ops

        try:
            memtables = list(expression.op().find(ops.InMemoryTable))
        except Exception:
            return
        for memtable in memtables:
            name = getattr(memtable, "name", "") or ""
            if not name.startswith("ibis_pandas_memtable"):
                continue  # a named table (e.g. a mock source table), not a codelist
            path = os.path.join(sql_dir, f"{name}.sql")
            if os.path.exists(path):
                continue  # already written for another node referencing the same codelist
            try:
                write_sql_file(
                    path, self._codelist_values_sql(memtable.data.to_frame())
                )
            except Exception as e:
                logger.warning(
                    f"Cohort '{self.name}': could not write codelist sidecar "
                    f"'{name}.sql': {e}. Skipping."
                )

    def _collect_all_nodes(self) -> List[Node]:
        """Every SQL artifact this cohort produces, deduped and order preserving."""
        seen, ordered = set(), []

        def add(node):
            if (
                node is not None
                and not isinstance(node, NodeGroup)
                and id(node) not in seen
            ):
                seen.add(id(node))
                ordered.append(node)

        roots = []
        for stage in (
            self.data_period_filter_stage,
            self.derived_tables_stage,
            self.entry_stage,
            self.derived_tables_post_entry_stage,
            self.index_stage,
            self.subset_index_stage,
            self.reporting_stage,
            self.sampler_stage,
        ):
            if stage is not None:
                roots.extend(stage.nodes)
        roots += [
            self.entry_criterion,
            *self.inclusions,
            *self.exclusions,
            *self.characteristics,
            *self.outcomes,
            self.index_table_node,
            self.inclusions_table_node,
            self.exclusions_table_node,
        ]
        for root in roots:
            if root is not None:
                for node in [*root.dependencies, root]:
                    add(node)
        return ordered

    def to_sql(self, sql_dir: Optional[str] = None, connector=None):
        """Return a lazy, dict-like view of this cohort's SQL, keyed by node table name.

        Pass `sql_dir=".../sql"` for a guaranteed read of the saved files on any
        machine. Zero-arg reads from memory (same session) or the `phenex.db` cache
        (fresh session, only after a lazy `execute()` here). Indexing a node resolves
        just that query, returning `None` with a warning if it is nowhere.

        Parameters:
            sql_dir: Directory of saved `.sql` files, defaults to the last `execute()` run.
            connector: Pins the SQL dialect, defaults to the cohort's database connector.
        """
        from phenex.core.sql_view import announce_sql_source, build_sql_view

        connector = connector or (
            self.database.connector if self.database is not None else None
        )
        sql_dir = sql_dir or getattr(self, "_last_sql_dir", None)

        # index/inclusions/exclusions become objects only inside execute(). In a fresh
        # session they are None, so rebuild those three from the phenotypes (no query).
        if self.index_table_node is None:
            self._build_rollup_nodes()
        # Say up front where the SQL is read from, so a short or surprising list is traceable.
        announce_sql_source(
            f"Cohort '{self.name}'",
            sql_dir,
            "phenotypes only, no subset tables, reporters, or sidecars",
        )
        return build_sql_view(self._collect_all_nodes(), sql_dir, connector)

    def _build_rollup_nodes(self):
        """Re-create the index, inclusions, and exclusions node objects with no database
        query. execute() normally builds these, a fresh session has them as None. They
        come only from the cohort's own phenotypes (already in memory), and get the
        cohort prefix so their names match the .sql files execute() wrote."""
        if self.inclusions:
            self.inclusions_table_node = InclusionsTableNode(
                name=f"{self.name}__inclusions".upper(),
                index_phenotype=self.entry_criterion,
                phenotypes=self.inclusions,
            )
        if self.exclusions:
            self.exclusions_table_node = ExclusionsTableNode(
                name=f"{self.name}__exclusions".upper(),
                index_phenotype=self.entry_criterion,
                phenotypes=self.exclusions,
            )
        self.index_table_node = IndexPhenotype(
            f"{self.name}__index".upper(),
            entry_phenotype=self.entry_criterion,
            inclusion_table_node=self.inclusions_table_node,
            exclusion_table_node=self.exclusions_table_node,
            return_index=self.return_index,
            max_index_dates=self.max_index_dates,
        )
        # Match the cohort-prefixed names execute() writes to disk.
        prefix = self._clean_prefix
        for node in (
            self.index_table_node,
            self.inclusions_table_node,
            self.exclusions_table_node,
        ):
            if node is not None:
                node._table_name_prefix = prefix

    def _prepare_database_connector_for_execution(self, con):
        """
        identify correct connector for cohort execution. If a connector is passed to execute(), use that. Else, if a connector was defined at initialization, use that. Else, raise an error since no connector was provided.
        Parameters:
            con: A database connector passed to execute(). This takes precedence over any connector defined at initialization.
        """
        if con is not None:
            if self.database is not None and con != self.database.connector:
                logger.warning(
                    "Cohort was initialized with a different connector than the one passed to execute(). Using the passed connector."
                )
            return con
        elif self.database is not None:
            logger.warning(
                "Cohort was initialized with a connector but none was passed to execute(). Using the connector from initialization."
            )
            return self.database.connector
        else:
            logger.warning("No database connector provided for cohort execution!")

    def _prepare_tables_for_execution(self, con, tables):
        """
        Docstring for _prepare_tables_for_execution

        Parameters:
            con: A database connector to use for retrieving tables if tables are not passed directly. This is required if tables are not passed directly and the Cohort was initialized with a database.
            tables: Tables passed to execute(). This takes precedence over any tables retrieved from the database defined at initialization.
        """
        if tables is not None:
            return tables
        elif self.database is not None:
            if self.database.mapper is not None:
                logger.warning(
                    "Cohort was initialized with a mapper but no tables were passed to execute(). Using the mapper to retrieve tables for execution."
                )
                tables = self.database.mapper.get_mapped_tables(con)
                return tables
            else:
                raise ValueError(
                    "Cohort was initialized with a database but no tables were passed to execute() and no mapper was defined in the database to retrieve tables for execution!"
                )
        else:
            raise ValueError(
                "No tables provided for cohort execution and no database defined to retrieve tables for execution!"
            )

    @property
    def table1(self):
        """Get the Table1 report DataFrame from the table1_node if it exists."""
        if self.table1_node:
            return self.table1_node.df_report
        return None

    @property
    def waterfall(self):
        """Get the Waterfall report DataFrame from the waterfall_node if it exists."""
        if self.waterfall_node:
            return self.waterfall_node.df_report
        return None

    @property
    def waterfall_detailed(self):
        """Get the detailed Waterfall report DataFrame from the waterfall_node if it exists."""
        if self.waterfall_detailed_node:
            return self.waterfall_detailed_node.df_report
        return None

    def write_reports_to_excel(self, path: str):
        """Write all available reports (table1, waterfall, waterfall_detailed) to Excel files in the given directory."""
        if self.table1_node:
            self.table1_node.to_excel(os.path.join(path, "table1.xlsx"))
        if self.table1_detailed_node:
            self.table1_detailed_node.to_excel(
                os.path.join(path, "table1_detailed.xlsx")
            )
        if self.table1_outcomes_node:
            self.table1_outcomes_node.to_excel(
                os.path.join(path, "table1_outcomes.xlsx")
            )
        if self.table1_outcomes_detailed_node:
            self.table1_outcomes_detailed_node.to_excel(
                os.path.join(path, "table1_outcomes_detailed.xlsx")
            )
        if self.waterfall_node:
            self.waterfall_node.to_excel(os.path.join(path, "waterfall.xlsx"))
        if self.waterfall_detailed_node:
            self.waterfall_detailed_node.to_excel(
                os.path.join(path, "waterfall_detailed.xlsx")
            )
        for custom_reporter_node in self.custom_reporter_nodes:
            report_filename = custom_reporter_node.reporter.name
            custom_reporter_node.to_excel(os.path.join(path, report_filename + ".xlsx"))

    def write_reports_to_json(self, path: str):
        """Write all available reports as JSON files (machine-readable intermediate format)."""
        if self.table1_node:
            self.table1_node.to_json(os.path.join(path, "table1.json"))
        if self.table1_detailed_node:
            self.table1_detailed_node.to_json(
                os.path.join(path, "table1_detailed.json")
            )
        if self.table1_outcomes_node:
            self.table1_outcomes_node.to_json(
                os.path.join(path, "table1_outcomes.json")
            )
        if self.table1_outcomes_detailed_node:
            self.table1_outcomes_detailed_node.to_json(
                os.path.join(path, "table1_outcomes_detailed.json")
            )
        if self.waterfall_node:
            self.waterfall_node.to_json(os.path.join(path, "waterfall.json"))
        if self.waterfall_detailed_node:
            self.waterfall_detailed_node.to_json(
                os.path.join(path, "waterfall_detailed.json")
            )
        for custom_reporter_node in self.custom_reporter_nodes:
            report_filename = custom_reporter_node.reporter.name
            custom_reporter_node.to_json(os.path.join(path, report_filename + ".json"))

    def write_reports_to_html(self, path: str):
        """Write HTML reports for custom reporters that implement to_html."""
        for custom_reporter_node in self.custom_reporter_nodes:
            if hasattr(custom_reporter_node.reporter, "to_html"):
                report_filename = custom_reporter_node.reporter.name
                custom_reporter_node.to_html(
                    os.path.join(path, report_filename + ".html")
                )

    def delete_tables(self, con, sections=None):
        """
        Delete materialized tables from the destination database.

        Parameters:
            con: Database connector.
            sections: List of section names to delete. If None, deletes all sections.
                Valid section names: 'entry_inclusion_exclusion', 'subset_tables_entry',
                'subset_tables_index', 'characteristics', 'outcomes', 'reporters'.
        """
        all_sections = {
            "entry_inclusion_exclusion": self.delete_entry_inclusion_exclusion,
            "subset_tables_entry": self.delete_subset_tables_entry,
            "subset_tables_index": self.delete_subset_tables_index,
            "characteristics": self.delete_characteristics,
            "outcomes": self.delete_outcomes,
            "reporters": self.delete_reporters,
        }
        if sections is None:
            sections = list(all_sections.keys())
        for section in sections:
            if section not in all_sections:
                raise ValueError(
                    f"Unknown section '{section}'. Valid sections: {list(all_sections.keys())}"
                )
            all_sections[section](con)

    def delete_entry_inclusion_exclusion(self, con):
        """Delete entry criterion, inclusion, and exclusion phenotype tables."""
        nodes = [self.entry_criterion] + self.inclusions + self.exclusions

        for node in nodes:
            node.delete_table(con)
            for dep in node.dependencies:
                dep.delete_table(con)
        if self.inclusions_table_node:
            self.inclusions_table_node.delete_table(con)
        if self.exclusions_table_node:
            self.exclusions_table_node.delete_table(con)
        if self.index_table_node:
            self.index_table_node.delete_table(con)

    def _get_tables_and_build_stages(self, con, tables=None):
        con = self._prepare_database_connector_for_execution(con)
        tables = self._prepare_tables_for_execution(con, tables)
        self.build_stages(tables)
        return con, tables

    def delete_subset_tables_entry(self, con):
        """Delete subset tables created after entry filtering."""
        if not self.subset_tables_entry_nodes:
            self._get_tables_and_build_stages(con)

        for node in self.subset_tables_entry_nodes:
            node.delete_table(con)

    def delete_subset_tables_index(self, con):
        """Delete subset tables created after index filtering."""
        if not self.subset_tables_index_nodes:
            self._get_tables_and_build_stages(con)

        for node in self.subset_tables_index_nodes:
            node.delete_table(con)

    def delete_characteristics(self, con):
        """Delete baseline characteristics phenotype tables."""
        for node in self.characteristics:
            node.delete_table(con)
            for dep in node.dependencies:
                dep.delete_table(con)
        if self.characteristics_table_node:
            self.characteristics_table_node.delete_table(con)

    def delete_outcomes(self, con):
        """Delete outcome phenotype tables."""
        for node in self.outcomes:
            node.delete_table(con)
            for dep in node.dependencies:
                dep.delete_table(con)
        if self.outcomes_table_node:
            self.outcomes_table_node.delete_table(con)

    def delete_reporters(self, con):
        """Delete reporter tables (table1, waterfall, custom reporters)."""

        if not self.waterfall_node:
            self._get_tables_and_build_stages(con)

        reporter_nodes = [
            self.table1_node,
            self.table1_detailed_node,
            self.table1_outcomes_node,
            self.table1_outcomes_detailed_node,
            self.waterfall_node,
            self.waterfall_detailed_node,
        ] + self.custom_reporter_nodes
        for node in reporter_nodes:
            if node:
                node.delete_table(con)

    def to_dict(self):
        """
        Return a dictionary representation of the Node. The dictionary must contain all dependencies of the Node such that if anything in self.to_dict() changes, the Node must be recomputed.
        """
        d = to_dict(self)
        # custom_reporters are runtime execution objects and cannot be meaningfully
        # serialized; drop them from the frozen cohort definition.
        d.pop("custom_reporters", None)
        return d

    def get_codelists(self, as_dataframe=False):
        """
        Get a dictionary of all codelists used in any phenotype in this cohort. The keys are the codelist names and the values are the codelist objects.
        """
        top_level_nodes = (
            [self.entry_criterion]
            + self.inclusions
            + self.exclusions
            + self.characteristics
            + self.outcomes
        )
        all_nodes = top_level_nodes + sum([t.dependencies for t in top_level_nodes], [])
        codelists = {
            pt.display_name: pt.codelist
            for pt in all_nodes
            if getattr(pt, "codelist", None) is not None
        }
        if as_dataframe:
            import pandas as pd

            _dfs = []
            for name_pt, codelist in codelists.items():
                codelist_df = codelist.df
                codelist_df["phenotype"] = name_pt
                _dfs.append(codelist_df)
            codelists_df = pd.concat(_dfs, ignore_index=True)
            return codelists_df

        return codelists

table1 property

Get the Table1 report DataFrame from the table1_node if it exists.

waterfall property

Get the Waterfall report DataFrame from the waterfall_node if it exists.

waterfall_detailed property

Get the detailed Waterfall report DataFrame from the waterfall_node if it exists.

add_characteristics(phenotypes)

Add phenotypes to the baseline characteristics.

Source code in phenex/core/cohort.py
def add_characteristics(self, phenotypes):
    """Add phenotypes to the baseline characteristics."""
    if not isinstance(phenotypes, list):
        phenotypes = [phenotypes]
    self._apply_table_name_prefix(phenotypes)
    self.characteristics.extend(phenotypes)
    self.phenotypes.extend(phenotypes)

add_exclusions(phenotypes)

Add phenotypes to the exclusion criteria.

Source code in phenex/core/cohort.py
def add_exclusions(self, phenotypes):
    """Add phenotypes to the exclusion criteria."""
    if not isinstance(phenotypes, list):
        phenotypes = [phenotypes]
    self._apply_table_name_prefix(phenotypes)
    self.exclusions.extend(phenotypes)
    self.phenotypes.extend(phenotypes)

add_inclusions(phenotypes)

Add phenotypes to the inclusion criteria.

Source code in phenex/core/cohort.py
def add_inclusions(self, phenotypes):
    """Add phenotypes to the inclusion criteria."""
    if not isinstance(phenotypes, list):
        phenotypes = [phenotypes]
    self._apply_table_name_prefix(phenotypes)
    self.inclusions.extend(phenotypes)
    self.phenotypes.extend(phenotypes)

add_outcomes(phenotypes)

Add phenotypes to the outcomes.

Source code in phenex/core/cohort.py
def add_outcomes(self, phenotypes):
    """Add phenotypes to the outcomes."""
    if not isinstance(phenotypes, list):
        phenotypes = [phenotypes]
    self._apply_table_name_prefix(phenotypes)
    self.outcomes.extend(phenotypes)
    self.phenotypes.extend(phenotypes)

build_stages(tables)

Build the computational stages for cohort execution.

This method constructs the directed acyclic graph (DAG) of computational stages required to execute the cohort. The stages are built in dependency order and include:

  1. Derived Tables Stage (optional): Executes any derived table computations
  2. Entry Stage: Computes entry phenotype and subsets tables filtered by the entry criterion phenotype
  3. Index Stage: Applies inclusion/exclusion criteria and creates the final index table
  4. Reporting Stage (optional): Computes characteristics and outcomes tables

Parameters:

Name Type Description Default
tables Dict[str, PhenexTable]

Dictionary mapping domain names to PhenexTable objects containing the source data tables required for phenotype computation.

required

Raises:

Type Description
ValueError

If required domains are missing from the input tables.

Side Effects

Sets the following instance attributes: - self.entry_stage: NodeGroup for entry criterion processing - self.derived_tables_stage: NodeGroup for derived tables (if any) - self.index_stage: NodeGroup for inclusion/exclusion processing - self.reporting_stage: NodeGroup for characteristics/outcomes (if any) - Various table nodes for accessing intermediate results

Note

This method must be called before execute() to initialize the computation graph. Node uniqueness is validated across all stages to prevent naming conflicts.

Source code in phenex/core/cohort.py
def build_stages(self, tables: Dict[str, PhenexTable]):
    """
    Build the computational stages for cohort execution.

    This method constructs the directed acyclic graph (DAG) of computational stages required to execute the cohort. The stages are built in dependency order and include:

    1. **Derived Tables Stage** (optional): Executes any derived table computations
    2. **Entry Stage**: Computes entry phenotype and subsets tables filtered by the entry criterion phenotype
    3. **Index Stage**: Applies inclusion/exclusion criteria and creates the final index table
    4. **Reporting Stage** (optional): Computes characteristics and outcomes tables

    Parameters:
        tables: Dictionary mapping domain names to PhenexTable objects containing the source data tables required for phenotype computation.

    Raises:
        ValueError: If required domains are missing from the input tables.

    Side Effects:
        Sets the following instance attributes:
        - self.entry_stage: NodeGroup for entry criterion processing
        - self.derived_tables_stage: NodeGroup for derived tables (if any)
        - self.index_stage: NodeGroup for inclusion/exclusion processing
        - self.reporting_stage: NodeGroup for characteristics/outcomes (if any)
        - Various table nodes for accessing intermediate results

    Note:
        This method must be called before execute() to initialize the computation graph.
        Node uniqueness is validated across all stages to prevent naming conflicts.
    """
    # Check required domains are present to fail early (note this check is not perfect as _get_domains() doesn't catch everything, e.g., intermediate tables in autojoins, but this is better than nothing)
    # Filter out None tables (tables not found in source data)
    available_tables = {k: v for k, v in tables.items() if v is not None}

    # If a derived table has the same name as a mapped table, the mapped table must be
    # discarded — otherwise _get_subset_tables_nodes would produce two SubsetTable nodes
    # with identical names, causing a duplicate-node error in the execution graph.
    all_derived = list(self.derived_tables or []) + list(
        self.derived_tables_post_entry or []
    )
    for dt in all_derived:
        if dt.name in available_tables:
            logger.warning(
                f"Derived table '{dt.name}' has the same name as a provided mapped table. "
                f"The mapped table will be discarded and the derived table will be used for domain '{dt.name}'."
            )
            del available_tables[dt.name]

    domains = list(available_tables.keys())
    required_domains = self._get_domains()

    missing_domains = [d for d in required_domains if d not in domains]
    if missing_domains:
        logger.warning(
            f"Some required domains are not present in input tables: {missing_domains}. "
            f"Phenotypes requiring these domains may fail during execution."
        )

    #
    # Sampler stage: OPTIONAL
    #
    self.sampler_stage = self._build_sampler_stage(domains)

    #
    # Data period filter stage: OPTIONAL
    #
    self.data_period_filter_stage = None
    self.derived_tables_stage = None
    self.derived_tables_post_entry_stage = None
    if self.database and self.database.data_period:
        data_period_filter_nodes = [
            DataPeriodFilterNode(
                name=f"{self.name}__data_period_filter_{domain}".upper(),
                domain=domain,
                date_filter=self.database.data_period,
            )
            for domain in domains
        ]
        self.data_period_filter_stage = NodeGroup(
            name="data_period_filter", nodes=data_period_filter_nodes
        )

    #
    # Derived tables pre-entry stage: OPTIONAL
    #
    if self.derived_tables:
        self.derived_tables_stage = NodeGroup(
            name="derived_tables_stage", nodes=self.derived_tables
        )

    #
    # Entry stage: REQUIRED
    #
    # Pre-entry derived table outputs become new domains available from the entry stage onward.
    pre_entry_derived_domains = [x.name for x in (self.derived_tables or [])]
    entry_domains = domains + pre_entry_derived_domains
    self.subset_tables_entry_nodes = self._get_subset_tables_nodes(
        stage="subset_entry",
        domains=entry_domains,
        index_phenotype=self.entry_criterion,
    )
    self.entry_stage = NodeGroup(
        name="entry_stage", nodes=self.subset_tables_entry_nodes
    )
    #

    # Derived tables post-entry stage: OPTIONAL
    #
    if self.derived_tables_post_entry:
        self.derived_tables_post_entry_stage = NodeGroup(
            name="derived_tables_post_entry_stage",
            nodes=self.derived_tables_post_entry,
        )

    #
    # Index stage: REQUIRED
    #
    index_nodes = []
    if self.inclusions:
        self.inclusions_table_node = InclusionsTableNode(
            name=f"{self.name}__inclusions".upper(),
            index_phenotype=self.entry_criterion,
            phenotypes=self.inclusions,
        )
        index_nodes.append(self.inclusions_table_node)
    if self.exclusions:
        self.exclusions_table_node = ExclusionsTableNode(
            name=f"{self.name}__exclusions".upper(),
            index_phenotype=self.entry_criterion,
            phenotypes=self.exclusions,
        )
        index_nodes.append(self.exclusions_table_node)

    self.index_table_node = IndexPhenotype(
        f"{self.name}__index".upper(),
        entry_phenotype=self.entry_criterion,
        inclusion_table_node=self.inclusions_table_node,
        exclusion_table_node=self.exclusions_table_node,
        return_index=self.return_index,
        max_index_dates=self.max_index_dates,
    )
    index_nodes.append(self.index_table_node)

    # Add Waterfall node after index table (depends on index_table_node)
    self.waterfall_node = WaterfallNode(
        name=f"{self.name}__waterfall".upper(),
        cohort=self,
        index_table_node=self.index_table_node,
    )
    index_nodes.append(self.waterfall_node)
    self.waterfall_detailed_node = WaterfallNode(
        name=f"{self.name}__waterfall_detailed".upper(),
        cohort=self,
        index_table_node=self.index_table_node,
        include_component_phenotypes_level=100,  # include all component phenotypes in the detailed waterfall report
    )
    index_nodes.append(self.waterfall_detailed_node)

    self.subset_tables_index_nodes = self._get_subset_tables_nodes(
        stage="subset_index",
        domains=entry_domains,
        index_phenotype=self.index_table_node,
    )
    if self.write_subset_tables_index:
        # Default: materialize the index-subset tables together with the
        # index nodes in a single multithreaded stage.
        self.subset_index_stage = None
        self.index_stage = NodeGroup(
            name="index_stage",
            nodes=self.subset_tables_index_nodes + index_nodes,
        )
    else:
        # Keep the index-subset tables in a separate stage so they can be
        # executed without materializing to the destination database
        # (see execute()).
        self.index_stage = NodeGroup(
            name="index_stage",
            nodes=index_nodes,
        )
        self.subset_index_stage = NodeGroup(
            name="subset_index_stage",
            nodes=self.subset_tables_index_nodes,
        )

    #
    # Post-index / reporting stage: OPTIONAL
    #
    reporting_nodes = []

    if self.characteristics and self.write_characteristics_table:
        self.characteristics_table_node = HStackNode(
            name=f"{self.name}__characteristics".upper(),
            phenotypes=self.characteristics,
            join_table=self.index_table_node,
        )
        reporting_nodes.append(self.characteristics_table_node)
    if self.outcomes and self.write_outcomes_table:
        self.outcomes_table_node = HStackNode(
            name=f"{self.name}__outcomes".upper(),
            phenotypes=self.outcomes,
            join_table=self.index_table_node,
        )
        reporting_nodes.append(self.outcomes_table_node)

    # Add Table1 node if there are characteristics
    if self.characteristics:
        self.table1_node = Table1Node(
            name=f"{self.name}__table1".upper(),
            cohort=self,
        )
        reporting_nodes.append(self.table1_node)
        self.table1_detailed_node = Table1Node(
            name=f"{self.name}__table1_detailed".upper(),
            cohort=self,
            include_component_phenotypes_level=100,
        )
        reporting_nodes.append(self.table1_detailed_node)

    # Add Table1OutcomesNode if there are outcomes
    if self.outcomes:
        self.table1_outcomes_node = Table1OutcomesNode(
            name=f"{self.name}__table1_outcomes".upper(),
            cohort=self,
        )
        reporting_nodes.append(self.table1_outcomes_node)
        self.table1_outcomes_detailed_node = Table1OutcomesNode(
            name=f"{self.name}__table1_outcomes_detailed".upper(),
            cohort=self,
            include_component_phenotypes_level=100,
        )
        reporting_nodes.append(self.table1_outcomes_detailed_node)

    # Add CustomReporterNodes for each custom reporter
    self.custom_reporter_nodes = []
    for reporter in self.custom_reporters:
        node = CustomReporterNode(
            name=f"{self.name}__custom__{reporter.name}".upper(),
            cohort=self,
            reporter=reporter,
        )
        self.custom_reporter_nodes.append(node)
        reporting_nodes.append(node)

    if reporting_nodes:
        self.reporting_stage = NodeGroup(
            name="reporting_stage", nodes=reporting_nodes
        )

delete_characteristics(con)

Delete baseline characteristics phenotype tables.

Source code in phenex/core/cohort.py
def delete_characteristics(self, con):
    """Delete baseline characteristics phenotype tables."""
    for node in self.characteristics:
        node.delete_table(con)
        for dep in node.dependencies:
            dep.delete_table(con)
    if self.characteristics_table_node:
        self.characteristics_table_node.delete_table(con)

delete_entry_inclusion_exclusion(con)

Delete entry criterion, inclusion, and exclusion phenotype tables.

Source code in phenex/core/cohort.py
def delete_entry_inclusion_exclusion(self, con):
    """Delete entry criterion, inclusion, and exclusion phenotype tables."""
    nodes = [self.entry_criterion] + self.inclusions + self.exclusions

    for node in nodes:
        node.delete_table(con)
        for dep in node.dependencies:
            dep.delete_table(con)
    if self.inclusions_table_node:
        self.inclusions_table_node.delete_table(con)
    if self.exclusions_table_node:
        self.exclusions_table_node.delete_table(con)
    if self.index_table_node:
        self.index_table_node.delete_table(con)

delete_outcomes(con)

Delete outcome phenotype tables.

Source code in phenex/core/cohort.py
def delete_outcomes(self, con):
    """Delete outcome phenotype tables."""
    for node in self.outcomes:
        node.delete_table(con)
        for dep in node.dependencies:
            dep.delete_table(con)
    if self.outcomes_table_node:
        self.outcomes_table_node.delete_table(con)

delete_reporters(con)

Delete reporter tables (table1, waterfall, custom reporters).

Source code in phenex/core/cohort.py
def delete_reporters(self, con):
    """Delete reporter tables (table1, waterfall, custom reporters)."""

    if not self.waterfall_node:
        self._get_tables_and_build_stages(con)

    reporter_nodes = [
        self.table1_node,
        self.table1_detailed_node,
        self.table1_outcomes_node,
        self.table1_outcomes_detailed_node,
        self.waterfall_node,
        self.waterfall_detailed_node,
    ] + self.custom_reporter_nodes
    for node in reporter_nodes:
        if node:
            node.delete_table(con)

delete_subset_tables_entry(con)

Delete subset tables created after entry filtering.

Source code in phenex/core/cohort.py
def delete_subset_tables_entry(self, con):
    """Delete subset tables created after entry filtering."""
    if not self.subset_tables_entry_nodes:
        self._get_tables_and_build_stages(con)

    for node in self.subset_tables_entry_nodes:
        node.delete_table(con)

delete_subset_tables_index(con)

Delete subset tables created after index filtering.

Source code in phenex/core/cohort.py
def delete_subset_tables_index(self, con):
    """Delete subset tables created after index filtering."""
    if not self.subset_tables_index_nodes:
        self._get_tables_and_build_stages(con)

    for node in self.subset_tables_index_nodes:
        node.delete_table(con)

delete_tables(con, sections=None)

Delete materialized tables from the destination database.

Parameters:

Name Type Description Default
con

Database connector.

required
sections

List of section names to delete. If None, deletes all sections. Valid section names: 'entry_inclusion_exclusion', 'subset_tables_entry', 'subset_tables_index', 'characteristics', 'outcomes', 'reporters'.

None
Source code in phenex/core/cohort.py
def delete_tables(self, con, sections=None):
    """
    Delete materialized tables from the destination database.

    Parameters:
        con: Database connector.
        sections: List of section names to delete. If None, deletes all sections.
            Valid section names: 'entry_inclusion_exclusion', 'subset_tables_entry',
            'subset_tables_index', 'characteristics', 'outcomes', 'reporters'.
    """
    all_sections = {
        "entry_inclusion_exclusion": self.delete_entry_inclusion_exclusion,
        "subset_tables_entry": self.delete_subset_tables_entry,
        "subset_tables_index": self.delete_subset_tables_index,
        "characteristics": self.delete_characteristics,
        "outcomes": self.delete_outcomes,
        "reporters": self.delete_reporters,
    }
    if sections is None:
        sections = list(all_sections.keys())
    for section in sections:
        if section not in all_sections:
            raise ValueError(
                f"Unknown section '{section}'. Valid sections: {list(all_sections.keys())}"
            )
        all_sections[section](con)

execute(tables=None, con=None, overwrite=False, n_threads=1, lazy_execution=False, sql_dir='./sql')

The execute method executes the full cohort in order of computation. The order is data period filter -> derived tables -> entry criterion -> inclusion -> exclusion -> baseline characteristics. Tables are subset at two points, after entry criterion and after full inclusion/exclusion calculation to result in subset_entry data (contains all source data for patients that fulfill the entry criterion, with a possible index date) and subset_index data (contains all source data for patients that fulfill all in/ex criteria, with a set index date). Additionally, default reporters are executed such as table 1 for baseline characteristics.

There are two ways to use the execute method and thus execute a cohort:

  1. Directly passing source data in the tables dictionary
    tables = con.get_mapped_tables(mapper)
    cohort.execute(tables)
    
  2. Indirectly by defining the data source using the con and mapped_tables keyword arguments at initialization. The source data tables is then retrieved at execution time ```python cohort = Cohort( con=SnowflakeConnector(), mapper= OMOPDomains, ... ) cohort.execute() ````

Parameters:

Name Type Description Default
tables Dict[str, PhenexTable]

A dictionary mapping domains to Table objects. This is optional if the Cohort was initialized with a con and mapper. If passed, this takes precedence over the con and mapper defined at initialization.

None
con Optional[SnowflakeConnector]

Database connector for materializing outputs. If passed, this takes precedence over the con defined at initialization.

None
overwrite Optional[bool]

Whether to overwrite existing tables

False
lazy_execution Optional[bool]

Whether to use lazy execution with change detection

False
n_threads Optional[int]

Max number of jobs to run simultaneously.

1
sql_dir Optional[str]

Directory to write one .sql file per node (named {NODE_NAME}.sql). These files let node.to_sql() return the executed SQL in a later session. Pass None to disable file writing.

'./sql'

Returns:

Name Type Description
PhenotypeTable

The index table corresponding the cohort.

Source code in phenex/core/cohort.py
def execute(
    self,
    tables: Dict[str, PhenexTable] = None,
    con: Optional["SnowflakeConnector"] = None,
    overwrite: Optional[bool] = False,
    n_threads: Optional[int] = 1,
    lazy_execution: Optional[bool] = False,
    sql_dir: Optional[str] = "./sql",
):
    """
    The execute method executes the full cohort in order of computation. The order is data period filter -> derived tables -> entry criterion -> inclusion -> exclusion -> baseline characteristics. Tables are subset at two points, after entry criterion and after full inclusion/exclusion calculation to result in subset_entry data (contains all source data for patients that fulfill the entry criterion, with a possible index date) and subset_index data (contains all source data for patients that fulfill all in/ex criteria, with a set index date). Additionally, default reporters are executed such as table 1 for baseline characteristics.

    There are two ways to use the execute method and thus execute a cohort:

    1. Directly passing source data in the `tables` dictionary
    ```python
    tables = con.get_mapped_tables(mapper)
    cohort.execute(tables)
    ```
    2. Indirectly by defining the data source using the con and mapped_tables keyword arguments at initialization. The source data `tables` is then retrieved at execution time
    ```python
    cohort = Cohort(
        con=SnowflakeConnector(),
        mapper= OMOPDomains,
        ...
    )
    cohort.execute()
    ````

    Parameters:
        tables: A dictionary mapping domains to Table objects. This is optional if the Cohort was initialized with a con and mapper. If passed, this takes precedence over the con and mapper defined at initialization.
        con: Database connector for materializing outputs. If passed, this takes precedence over the con defined at initialization.
        overwrite: Whether to overwrite existing tables
        lazy_execution: Whether to use lazy execution with change detection
        n_threads: Max number of jobs to run simultaneously.
        sql_dir: Directory to write one .sql file per node (named {NODE_NAME}.sql). These files let node.to_sql() return the executed SQL in a later session. Pass None to disable file writing.

    Returns:
        PhenotypeTable: The index table corresponding the cohort.
    """
    logger.info(f"Cohort '{self.name}': executing cohort execution...")

    con = self._prepare_database_connector_for_execution(con)
    tables = dict(self._prepare_tables_for_execution(con, tables))
    logger.info(
        f"Cohort '{self.name}': tables prepared. Counting persons in source database..."
    )

    self.n_persons_in_source_database = (
        tables["PERSON"].distinct().count().execute()
    )
    logger.info(
        f"Cohort '{self.name}': {self.n_persons_in_source_database} persons in source database. Building stages..."
    )

    self.build_stages(tables)
    logger.info(f"Cohort '{self.name}': stages built. Executing sampler stage...")

    if self.sampler_stage:
        logger.info(
            f"Cohort '{self.name}': executing sampler stage. Sampling {self.n_persons_in_source_database} persons..."
        )
        self.sampler_stage.execute(
            tables=tables,
            con=con,
            overwrite=overwrite,
            n_threads=n_threads,
            lazy_execution=lazy_execution,
            table_name_prefix=self._table_prefix,
        )
        # If the tables were already cached, we reuse them and skip sample(),
        # list never gets saved.
        # Build it again here so fetch_person_ids() always works.
        sampler = self.database.sampler
        if sampler._person_ids_expr is None:
            person_tbl = tables.get("PERSON")
            if person_tbl is not None:
                person_ibis = (
                    person_tbl.table
                    if isinstance(person_tbl, PhenexTable)
                    else person_tbl
                )
                sampler._person_ids_expr = sampler._sampled_person_ids(person_ibis)

        # Swap in the sampled table for each domain, so the later steps use the smaller
        # sampled data instead of the full tables.
        for node in self.sampler_stage.children:
            if node.table is not None:
                original = tables.get(node.domain)
                sampled = node.table
                if isinstance(original, PhenexTable) and not isinstance(
                    sampled, PhenexTable
                ):
                    sampled = type(original)(
                        sampled, name=original.NAME_TABLE, column_mapping={}
                    )
                node.table = sampled
                tables[node.domain] = sampled
        logger.info(f"Cohort '{self.name}': completed sampler stage.")

    # Apply data period filter first if specified
    if self.data_period_filter_stage:
        logger.info(f"Cohort '{self.name}': executing data period filter stage ...")
        self.data_period_filter_stage.execute(
            tables=tables,
            con=con,
            overwrite=overwrite,
            n_threads=n_threads,
            lazy_execution=lazy_execution,
            table_name_prefix=self._table_prefix,
        )
        # Update tables with filtered versions (only when the node actually modified the table;
        # nodes with no relevant date columns return None and the original table is kept)
        for node in self.data_period_filter_stage.children:
            if node.table is not None:
                original = tables.get(node.domain)
                filtered = node.table
                if isinstance(original, PhenexTable) and not isinstance(
                    filtered, PhenexTable
                ):
                    filtered = type(original)(
                        filtered, name=original.NAME_TABLE, column_mapping={}
                    )
                node.table = filtered
                tables[node.domain] = filtered
        logger.info(f"Cohort '{self.name}': completed data period filter stage.")

    if self.derived_tables_stage:
        logger.info(
            f"Cohort '{self.name}': executing derived tables pre-entry stage ..."
        )
        self.derived_tables_stage.execute(
            tables=tables,
            con=con,
            overwrite=overwrite,
            n_threads=n_threads,
            lazy_execution=lazy_execution,
            table_name_prefix=self._table_prefix,
        )
        logger.info(
            f"Cohort '{self.name}': completed derived tables pre-entry stage."
        )
        for node in self.derived_tables:
            tables[node.name] = PhenexTable(node.table)

    logger.info(f"Cohort '{self.name}': executing entry stage ...")

    if self.write_subset_tables_entry:
        self.entry_stage.execute(
            tables=tables,
            con=con,
            overwrite=overwrite,
            n_threads=n_threads,
            lazy_execution=lazy_execution,
            table_name_prefix=self._table_prefix,
        )
    else:
        # Execute entry criterion in-memory so .table stays on the source
        # backend, avoiding cross-backend joins with subset tables.
        self.entry_criterion.execute(
            tables=tables,
            con=con,
            overwrite=overwrite,
            n_threads=n_threads,
            table_name_prefix=self._table_prefix,
            lazy_execution=lazy_execution,
        )

        # Remove entry_criterion from subset table children so it won't be
        # re-executed; its .table is already set and SubsetTable._execute
        # accesses it via self.index_phenotype.table.
        for node in self.subset_tables_entry_nodes:
            node._children = [
                c for c in node._children if c is not self.entry_criterion
            ]
        self.entry_stage.execute(
            tables=tables,
            con=None,
            overwrite=overwrite,
            n_threads=n_threads,
            table_name_prefix=self._table_prefix,
        )
        # Restore children for correct dependency graphs in later stages
        for node in self.subset_tables_entry_nodes:
            node._children.insert(0, self.entry_criterion)

    self.subset_tables_entry = tables = self.get_subset_tables_entry(tables)

    logger.info(f"Cohort '{self.name}': completed entry stage.")

    if self.derived_tables_post_entry_stage:
        logger.info(
            f"Cohort '{self.name}': executing derived tables post-entry stage ..."
        )
        self.derived_tables_post_entry_stage.execute(
            tables=self.subset_tables_entry,
            con=con,
            overwrite=overwrite,
            n_threads=n_threads,
            lazy_execution=lazy_execution,
            table_name_prefix=self._table_prefix,
        )
        logger.info(
            f"Cohort '{self.name}': completed derived tables post-entry stage."
        )
        entry_dates = self.entry_criterion.table.select(
            "PERSON_ID", "EVENT_DATE"
        ).rename({"INDEX_DATE": "EVENT_DATE"})
        # TODO this is a bit hacky, consider a cleaner way to handle this if we want to support post-entry derived tables in the long term i.e. a DERIVED_TABLES class that adds index table automatically if present in the source derived table.
        for node in self.derived_tables_post_entry:
            table_with_index = node.table.join(entry_dates, "PERSON_ID")
            self.subset_tables_entry[node.name] = PhenexTable(table_with_index)
        tables = self.subset_tables_entry

    logger.info(f"Cohort '{self.name}': executing index stage ...")

    index_membership_changed = lazy_execution and Node._node_manager.node_changed(
        self.index_table_node, con
    )

    self.index_stage.execute(
        tables=self.subset_tables_entry,
        con=con,
        overwrite=overwrite,
        n_threads=n_threads,
        lazy_execution=lazy_execution,
        table_name_prefix=self._table_prefix,
    )
    self.table = self.index_table_node.table

    if not self.write_subset_tables_index:
        # Execute the index-subset tables in-memory so they are not
        # materialized to the destination database. The index table is
        # already computed, so detach it from the subset nodes' children to
        # avoid re-executing it; SubsetTable accesses it via
        # self.index_phenotype.table.
        for node in self.subset_tables_index_nodes:
            node._children = [
                c for c in node._children if c is not self.index_table_node
            ]
        self.subset_index_stage.execute(
            tables=self.subset_tables_entry,
            con=None,
            overwrite=overwrite,
            n_threads=n_threads,
            table_name_prefix=self._table_prefix,
        )
        # Restore children for correct dependency graphs in later stages
        for node in self.subset_tables_index_nodes:
            node._children.insert(0, self.index_table_node)

    logger.info(f"Cohort '{self.name}': completed index stage.")
    logger.info(f"Cohort '{self.name}': executing reporting stage ...")

    self.subset_tables_index = self.get_subset_tables_index(tables)

    # Also add derived post-entry tables to subset_tables_index, further filtered
    # to only include persons that passed all inclusion/exclusion criteria.
    if self.derived_tables_post_entry:
        index_person_ids = self.index_table_node.table.select("PERSON_ID")
        for node in self.derived_tables_post_entry:
            if node.name in self.subset_tables_entry:
                entry_tbl = self.subset_tables_entry[node.name]
                filtered_ibis = entry_tbl.table.semi_join(
                    index_person_ids, "PERSON_ID"
                )
                self.subset_tables_index[node.name] = type(entry_tbl)(filtered_ibis)

    if self.reporting_stage:
        # If the index population changed, clear characteristics/outcomes
        if index_membership_changed:
            logger.info(
                f"Cohort '{self.name}': index population changed; invalidating cached "
                f"characteristics/outcomes so they recompute against the new index."
            )
            # Clear only reporting-only nodes. Entry/index-stage nodes
            # don't depend on the index, so their caches are still valid
            _protected = set()
            for _stage in (self.entry_stage, self.index_stage):
                if _stage is not None:
                    _protected.add(_stage.name)
                    _protected.update(n.name for n in _stage.dependencies)

            _seen = set()

            def _clear_reporting_only(node):
                if node.name in _protected or node.name in _seen:
                    return
                _seen.add(node.name)
                Node._node_manager.clear_cache(node, con=con, recursive=False)
                for _child in node.children:
                    _clear_reporting_only(_child)

            for _node in list(self.characteristics or []) + list(
                self.outcomes or []
            ):
                _clear_reporting_only(_node)
        logger.info(f"Cohort '{self.name}': executing reporting stage ...")
        self.reporting_stage.execute(
            tables=self.subset_tables_index,
            con=con,
            overwrite=overwrite,
            n_threads=n_threads,
            lazy_execution=lazy_execution,
            table_name_prefix=self._table_prefix,
        )

    self._write_node_sql_files(sql_dir, con, overwrite)

    return self.index_table

get_codelists(as_dataframe=False)

Get a dictionary of all codelists used in any phenotype in this cohort. The keys are the codelist names and the values are the codelist objects.

Source code in phenex/core/cohort.py
def get_codelists(self, as_dataframe=False):
    """
    Get a dictionary of all codelists used in any phenotype in this cohort. The keys are the codelist names and the values are the codelist objects.
    """
    top_level_nodes = (
        [self.entry_criterion]
        + self.inclusions
        + self.exclusions
        + self.characteristics
        + self.outcomes
    )
    all_nodes = top_level_nodes + sum([t.dependencies for t in top_level_nodes], [])
    codelists = {
        pt.display_name: pt.codelist
        for pt in all_nodes
        if getattr(pt, "codelist", None) is not None
    }
    if as_dataframe:
        import pandas as pd

        _dfs = []
        for name_pt, codelist in codelists.items():
            codelist_df = codelist.df
            codelist_df["phenotype"] = name_pt
            _dfs.append(codelist_df)
        codelists_df = pd.concat(_dfs, ignore_index=True)
        return codelists_df

    return codelists

get_subset_tables_entry(tables)

Get the PhenexTable from the ibis Table for subsetting tables for all domains in this cohort subsetting by the given entry_phenotype.

Source code in phenex/core/cohort.py
def get_subset_tables_entry(self, tables):
    """
    Get the PhenexTable from the ibis Table for subsetting tables for all domains in this cohort subsetting by the given entry_phenotype.
    """
    subset_tables_entry = {}
    for node in self.subset_tables_entry_nodes:
        # Skip if table is None (not found in source data)
        if node.table is None:
            continue
        if tables[node.domain] is None:
            continue
        subset_tables_entry[node.domain] = type(tables[node.domain])(node.table)
    return subset_tables_entry

get_subset_tables_index(tables)

Get the PhenexTable from the ibis Table for subsetting tables for all domains in this cohort subsetting by the given index_phenotype.

Source code in phenex/core/cohort.py
def get_subset_tables_index(self, tables):
    """
    Get the PhenexTable from the ibis Table for subsetting tables for all domains in this cohort subsetting by the given index_phenotype.
    """
    subset_tables_index = {}
    for node in self.subset_tables_index_nodes:
        # Skip if table is None (not found in source data)
        if node.table is None:
            continue
        if tables.get(node.domain) is None:
            continue
        subset_tables_index[node.domain] = type(tables[node.domain])(node.table)
    return subset_tables_index

to_dict()

Return a dictionary representation of the Node. The dictionary must contain all dependencies of the Node such that if anything in self.to_dict() changes, the Node must be recomputed.

Source code in phenex/core/cohort.py
def to_dict(self):
    """
    Return a dictionary representation of the Node. The dictionary must contain all dependencies of the Node such that if anything in self.to_dict() changes, the Node must be recomputed.
    """
    d = to_dict(self)
    # custom_reporters are runtime execution objects and cannot be meaningfully
    # serialized; drop them from the frozen cohort definition.
    d.pop("custom_reporters", None)
    return d

to_sql(sql_dir=None, connector=None)

Return a lazy, dict-like view of this cohort's SQL, keyed by node table name.

Pass sql_dir=".../sql" for a guaranteed read of the saved files on any machine. Zero-arg reads from memory (same session) or the phenex.db cache (fresh session, only after a lazy execute() here). Indexing a node resolves just that query, returning None with a warning if it is nowhere.

Parameters:

Name Type Description Default
sql_dir Optional[str]

Directory of saved .sql files, defaults to the last execute() run.

None
connector

Pins the SQL dialect, defaults to the cohort's database connector.

None
Source code in phenex/core/cohort.py
def to_sql(self, sql_dir: Optional[str] = None, connector=None):
    """Return a lazy, dict-like view of this cohort's SQL, keyed by node table name.

    Pass `sql_dir=".../sql"` for a guaranteed read of the saved files on any
    machine. Zero-arg reads from memory (same session) or the `phenex.db` cache
    (fresh session, only after a lazy `execute()` here). Indexing a node resolves
    just that query, returning `None` with a warning if it is nowhere.

    Parameters:
        sql_dir: Directory of saved `.sql` files, defaults to the last `execute()` run.
        connector: Pins the SQL dialect, defaults to the cohort's database connector.
    """
    from phenex.core.sql_view import announce_sql_source, build_sql_view

    connector = connector or (
        self.database.connector if self.database is not None else None
    )
    sql_dir = sql_dir or getattr(self, "_last_sql_dir", None)

    # index/inclusions/exclusions become objects only inside execute(). In a fresh
    # session they are None, so rebuild those three from the phenotypes (no query).
    if self.index_table_node is None:
        self._build_rollup_nodes()
    # Say up front where the SQL is read from, so a short or surprising list is traceable.
    announce_sql_source(
        f"Cohort '{self.name}'",
        sql_dir,
        "phenotypes only, no subset tables, reporters, or sidecars",
    )
    return build_sql_view(self._collect_all_nodes(), sql_dir, connector)

write_reports_to_excel(path)

Write all available reports (table1, waterfall, waterfall_detailed) to Excel files in the given directory.

Source code in phenex/core/cohort.py
def write_reports_to_excel(self, path: str):
    """Write all available reports (table1, waterfall, waterfall_detailed) to Excel files in the given directory."""
    if self.table1_node:
        self.table1_node.to_excel(os.path.join(path, "table1.xlsx"))
    if self.table1_detailed_node:
        self.table1_detailed_node.to_excel(
            os.path.join(path, "table1_detailed.xlsx")
        )
    if self.table1_outcomes_node:
        self.table1_outcomes_node.to_excel(
            os.path.join(path, "table1_outcomes.xlsx")
        )
    if self.table1_outcomes_detailed_node:
        self.table1_outcomes_detailed_node.to_excel(
            os.path.join(path, "table1_outcomes_detailed.xlsx")
        )
    if self.waterfall_node:
        self.waterfall_node.to_excel(os.path.join(path, "waterfall.xlsx"))
    if self.waterfall_detailed_node:
        self.waterfall_detailed_node.to_excel(
            os.path.join(path, "waterfall_detailed.xlsx")
        )
    for custom_reporter_node in self.custom_reporter_nodes:
        report_filename = custom_reporter_node.reporter.name
        custom_reporter_node.to_excel(os.path.join(path, report_filename + ".xlsx"))

write_reports_to_html(path)

Write HTML reports for custom reporters that implement to_html.

Source code in phenex/core/cohort.py
def write_reports_to_html(self, path: str):
    """Write HTML reports for custom reporters that implement to_html."""
    for custom_reporter_node in self.custom_reporter_nodes:
        if hasattr(custom_reporter_node.reporter, "to_html"):
            report_filename = custom_reporter_node.reporter.name
            custom_reporter_node.to_html(
                os.path.join(path, report_filename + ".html")
            )

write_reports_to_json(path)

Write all available reports as JSON files (machine-readable intermediate format).

Source code in phenex/core/cohort.py
def write_reports_to_json(self, path: str):
    """Write all available reports as JSON files (machine-readable intermediate format)."""
    if self.table1_node:
        self.table1_node.to_json(os.path.join(path, "table1.json"))
    if self.table1_detailed_node:
        self.table1_detailed_node.to_json(
            os.path.join(path, "table1_detailed.json")
        )
    if self.table1_outcomes_node:
        self.table1_outcomes_node.to_json(
            os.path.join(path, "table1_outcomes.json")
        )
    if self.table1_outcomes_detailed_node:
        self.table1_outcomes_detailed_node.to_json(
            os.path.join(path, "table1_outcomes_detailed.json")
        )
    if self.waterfall_node:
        self.waterfall_node.to_json(os.path.join(path, "waterfall.json"))
    if self.waterfall_detailed_node:
        self.waterfall_detailed_node.to_json(
            os.path.join(path, "waterfall_detailed.json")
        )
    for custom_reporter_node in self.custom_reporter_nodes:
        report_filename = custom_reporter_node.reporter.name
        custom_reporter_node.to_json(os.path.join(path, report_filename + ".json"))