File size: 869 Bytes
0fff343
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
"""DSL for OncoDSL.

A small typed language of data operations (Load, Select, Reduce, Split, Associate,
Effect, Search, Fit, Apply) that the GP engine will later compose into candidate
programs. The operators are label-agnostic — `Select` picks columns by whatever
labels the passed matrix has — so the same program runs over the NAMED matrix
(H1 fixture) and the ANONYMISED matrix (blind discovery) without modification.

No gene names, no pathway names, no MSI-specific constants live here.
"""

from dsl.operators import (
    Apply,
    Associate,
    Cohort,
    Effect,
    EffectResult,
    Fit,
    FitResult,
    Load,
    Reduce,
    Search,
    Select,
    Split,
)

__all__ = [
    "Apply",
    "Associate",
    "Cohort",
    "Effect",
    "EffectResult",
    "Fit",
    "FitResult",
    "Load",
    "Reduce",
    "Search",
    "Select",
    "Split",
]