@erosolaraijs/cure 2.3.1 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/dist/bin/cure.js +114 -1
- package/dist/bin/cure.js.map +1 -1
- package/dist/capabilities/clinicalTrialMatchingModule.d.ts +150 -0
- package/dist/capabilities/clinicalTrialMatchingModule.d.ts.map +1 -0
- package/dist/capabilities/clinicalTrialMatchingModule.js +436 -0
- package/dist/capabilities/clinicalTrialMatchingModule.js.map +1 -0
- package/dist/capabilities/emergencyOncology.d.ts +97 -0
- package/dist/capabilities/emergencyOncology.d.ts.map +1 -0
- package/dist/capabilities/emergencyOncology.js +1824 -0
- package/dist/capabilities/emergencyOncology.js.map +1 -0
- package/dist/capabilities/index.d.ts +10 -0
- package/dist/capabilities/index.d.ts.map +1 -1
- package/dist/capabilities/index.js +20 -0
- package/dist/capabilities/index.js.map +1 -1
- package/dist/capabilities/multimodalOncologyModule.d.ts +149 -0
- package/dist/capabilities/multimodalOncologyModule.d.ts.map +1 -0
- package/dist/capabilities/multimodalOncologyModule.js +701 -0
- package/dist/capabilities/multimodalOncologyModule.js.map +1 -0
- package/dist/capabilities/palliativeCareModule.d.ts +216 -0
- package/dist/capabilities/palliativeCareModule.d.ts.map +1 -0
- package/dist/capabilities/palliativeCareModule.js +1160 -0
- package/dist/capabilities/palliativeCareModule.js.map +1 -0
- package/dist/capabilities/precisionMedicineModule.d.ts +151 -0
- package/dist/capabilities/precisionMedicineModule.d.ts.map +1 -0
- package/dist/capabilities/precisionMedicineModule.js +758 -0
- package/dist/capabilities/precisionMedicineModule.js.map +1 -0
- package/dist/capabilities/specialPopulationsModule.d.ts +126 -0
- package/dist/capabilities/specialPopulationsModule.d.ts.map +1 -0
- package/dist/capabilities/specialPopulationsModule.js +574 -0
- package/dist/capabilities/specialPopulationsModule.js.map +1 -0
- package/dist/capabilities/survivorshipManagement.d.ts +178 -0
- package/dist/capabilities/survivorshipManagement.d.ts.map +1 -0
- package/dist/capabilities/survivorshipManagement.js +983 -0
- package/dist/capabilities/survivorshipManagement.js.map +1 -0
- package/dist/capabilities/treatmentSequencing.d.ts +140 -0
- package/dist/capabilities/treatmentSequencing.d.ts.map +1 -0
- package/dist/capabilities/treatmentSequencing.js +1689 -0
- package/dist/capabilities/treatmentSequencing.js.map +1 -0
- package/dist/capabilities/universalHealthFramework.d.ts +108 -0
- package/dist/capabilities/universalHealthFramework.d.ts.map +1 -0
- package/dist/capabilities/universalHealthFramework.js +615 -0
- package/dist/capabilities/universalHealthFramework.js.map +1 -0
- package/dist/compliance/hipaa.d.ts.map +1 -1
- package/dist/compliance/hipaa.js +7 -16
- package/dist/compliance/hipaa.js.map +1 -1
- package/dist/tools/index.d.ts +31 -0
- package/dist/tools/index.d.ts.map +1 -0
- package/dist/tools/index.js +1373 -0
- package/dist/tools/index.js.map +1 -0
- package/package.json +3 -2
- package/src/bin/cure.ts +130 -1
- package/src/capabilities/clinicalTrialMatchingModule.ts +600 -0
- package/src/capabilities/emergencyOncology.ts +1945 -0
- package/src/capabilities/index.ts +181 -0
- package/src/capabilities/multimodalOncologyModule.ts +873 -0
- package/src/capabilities/palliativeCareModule.ts +1438 -0
- package/src/capabilities/precisionMedicineModule.ts +952 -0
- package/src/capabilities/specialPopulationsModule.ts +711 -0
- package/src/capabilities/survivorshipManagement.ts +1213 -0
- package/src/capabilities/treatmentSequencing.ts +1878 -0
- package/src/capabilities/universalHealthFramework.ts +739 -0
- package/src/compliance/hipaa.ts +7 -15
- package/src/tools/index.ts +1628 -0
|
@@ -0,0 +1,758 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Precision Medicine and Genomic Interpretation Module
|
|
3
|
+
*
|
|
4
|
+
* ╔═══════════════════════════════════════════════════════════════════════════════╗
|
|
5
|
+
* ║ PRECISION ONCOLOGY - BIOMARKER-DRIVEN TREATMENT SELECTION ║
|
|
6
|
+
* ╠═══════════════════════════════════════════════════════════════════════════════╣
|
|
7
|
+
* ║ This module provides: ║
|
|
8
|
+
* ║ - Comprehensive genomic interpretation ║
|
|
9
|
+
* ║ - Actionable mutation databases ║
|
|
10
|
+
* ║ - Pharmacogenomics for toxicity prediction ║
|
|
11
|
+
* ║ - Tumor microenvironment analysis ║
|
|
12
|
+
* ║ - ctDNA/liquid biopsy interpretation ║
|
|
13
|
+
* ║ - Variant actionability scoring ║
|
|
14
|
+
* ╚═══════════════════════════════════════════════════════════════════════════════╝
|
|
15
|
+
*/
|
|
16
|
+
// ═══════════════════════════════════════════════════════════════════════════════
|
|
17
|
+
// ACTIONABLE GENOMIC DATABASE
|
|
18
|
+
// ═══════════════════════════════════════════════════════════════════════════════
|
|
19
|
+
export const ACTIONABLE_GENOMIC_DATABASE = [
|
|
20
|
+
// EGFR Mutations
|
|
21
|
+
{
|
|
22
|
+
gene: 'EGFR',
|
|
23
|
+
alteration: 'Exon 19 deletion',
|
|
24
|
+
alterationType: 'In-frame Deletion',
|
|
25
|
+
frequency: '45% of EGFR mutations',
|
|
26
|
+
cancerTypes: ['NSCLC Adenocarcinoma'],
|
|
27
|
+
actionability: {
|
|
28
|
+
level: 'Level 1',
|
|
29
|
+
description: 'FDA-approved therapy exists',
|
|
30
|
+
source: 'OncoKB, NCCN'
|
|
31
|
+
},
|
|
32
|
+
therapies: [
|
|
33
|
+
{
|
|
34
|
+
drug: 'Osimertinib',
|
|
35
|
+
class: 'Third-generation EGFR TKI',
|
|
36
|
+
approvalStatus: 'FDA-Approved',
|
|
37
|
+
indication: 'First-line metastatic NSCLC',
|
|
38
|
+
responseRate: '80%',
|
|
39
|
+
medianPFS: '18.9 months',
|
|
40
|
+
keyTrial: 'FLAURA'
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
drug: 'Erlotinib',
|
|
44
|
+
class: 'First-generation EGFR TKI',
|
|
45
|
+
approvalStatus: 'FDA-Approved',
|
|
46
|
+
indication: 'First-line (less preferred)',
|
|
47
|
+
responseRate: '65%',
|
|
48
|
+
medianPFS: '10.4 months',
|
|
49
|
+
keyTrial: 'EURTAC'
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
clinicalTrials: ['Amivantamab combinations', 'EGFR-MET bispecifics'],
|
|
53
|
+
resistance: [
|
|
54
|
+
{ mutation: 'T790M', frequency: '50-60%', overcomingStrategy: ['Osimertinib'] },
|
|
55
|
+
{ mutation: 'C797S', frequency: '10-25%', overcomingStrategy: ['Amivantamab', 'BLU-945 (investigational)'] },
|
|
56
|
+
{ mutation: 'MET amplification', frequency: '5-20%', overcomingStrategy: ['EGFR TKI + MET inhibitor'] }
|
|
57
|
+
],
|
|
58
|
+
prognosticValue: { impact: 'Favorable', description: 'Better outcomes with TKI therapy' }
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
gene: 'EGFR',
|
|
62
|
+
alteration: 'L858R',
|
|
63
|
+
alterationType: 'Missense Mutation',
|
|
64
|
+
frequency: '40% of EGFR mutations',
|
|
65
|
+
cancerTypes: ['NSCLC Adenocarcinoma'],
|
|
66
|
+
actionability: {
|
|
67
|
+
level: 'Level 1',
|
|
68
|
+
description: 'FDA-approved therapy exists',
|
|
69
|
+
source: 'OncoKB, NCCN'
|
|
70
|
+
},
|
|
71
|
+
therapies: [
|
|
72
|
+
{
|
|
73
|
+
drug: 'Osimertinib',
|
|
74
|
+
class: 'Third-generation EGFR TKI',
|
|
75
|
+
approvalStatus: 'FDA-Approved',
|
|
76
|
+
indication: 'First-line metastatic NSCLC',
|
|
77
|
+
responseRate: '77%',
|
|
78
|
+
medianPFS: '18.9 months',
|
|
79
|
+
keyTrial: 'FLAURA'
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
clinicalTrials: ['Same as exon 19 del'],
|
|
83
|
+
resistance: [
|
|
84
|
+
{ mutation: 'T790M', frequency: '50-60%', overcomingStrategy: ['Osimertinib'] },
|
|
85
|
+
{ mutation: 'C797S', frequency: '10-25%', overcomingStrategy: ['Amivantamab'] }
|
|
86
|
+
],
|
|
87
|
+
prognosticValue: { impact: 'Favorable', description: 'Response to EGFR TKI, slightly less favorable than exon 19 del' }
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
gene: 'EGFR',
|
|
91
|
+
alteration: 'Exon 20 insertion',
|
|
92
|
+
alterationType: 'In-frame Insertion',
|
|
93
|
+
frequency: '10% of EGFR mutations',
|
|
94
|
+
cancerTypes: ['NSCLC Adenocarcinoma'],
|
|
95
|
+
actionability: {
|
|
96
|
+
level: 'Level 1',
|
|
97
|
+
description: 'FDA-approved therapy exists',
|
|
98
|
+
source: 'OncoKB'
|
|
99
|
+
},
|
|
100
|
+
therapies: [
|
|
101
|
+
{
|
|
102
|
+
drug: 'Amivantamab',
|
|
103
|
+
class: 'EGFR-MET bispecific antibody',
|
|
104
|
+
approvalStatus: 'FDA-Approved',
|
|
105
|
+
indication: 'After platinum-based chemo',
|
|
106
|
+
responseRate: '40%',
|
|
107
|
+
medianPFS: '8.3 months',
|
|
108
|
+
keyTrial: 'CHRYSALIS'
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
drug: 'Mobocertinib',
|
|
112
|
+
class: 'EGFR exon 20-specific TKI',
|
|
113
|
+
approvalStatus: 'FDA-Approved',
|
|
114
|
+
indication: 'After platinum-based chemo',
|
|
115
|
+
responseRate: '28%',
|
|
116
|
+
medianPFS: '7.3 months',
|
|
117
|
+
keyTrial: 'EXCLAIM'
|
|
118
|
+
}
|
|
119
|
+
],
|
|
120
|
+
clinicalTrials: ['First-line amivantamab + lazertinib'],
|
|
121
|
+
resistance: [],
|
|
122
|
+
prognosticValue: { impact: 'Unfavorable', description: 'Resistant to standard EGFR TKIs, less favorable outcomes' }
|
|
123
|
+
},
|
|
124
|
+
// ALK Fusions
|
|
125
|
+
{
|
|
126
|
+
gene: 'ALK',
|
|
127
|
+
alteration: 'EML4-ALK fusion',
|
|
128
|
+
alterationType: 'Fusion',
|
|
129
|
+
frequency: '3-5% of NSCLC',
|
|
130
|
+
cancerTypes: ['NSCLC Adenocarcinoma'],
|
|
131
|
+
actionability: {
|
|
132
|
+
level: 'Level 1',
|
|
133
|
+
description: 'FDA-approved therapy exists',
|
|
134
|
+
source: 'OncoKB, NCCN'
|
|
135
|
+
},
|
|
136
|
+
therapies: [
|
|
137
|
+
{
|
|
138
|
+
drug: 'Lorlatinib',
|
|
139
|
+
class: 'Third-generation ALK TKI',
|
|
140
|
+
approvalStatus: 'FDA-Approved',
|
|
141
|
+
indication: 'First-line',
|
|
142
|
+
responseRate: '76%',
|
|
143
|
+
medianPFS: 'NR (60% at 3 years)',
|
|
144
|
+
keyTrial: 'CROWN'
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
drug: 'Alectinib',
|
|
148
|
+
class: 'Second-generation ALK TKI',
|
|
149
|
+
approvalStatus: 'FDA-Approved',
|
|
150
|
+
indication: 'First-line',
|
|
151
|
+
responseRate: '83%',
|
|
152
|
+
medianPFS: '34.8 months',
|
|
153
|
+
keyTrial: 'ALEX'
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
drug: 'Brigatinib',
|
|
157
|
+
class: 'Second-generation ALK TKI',
|
|
158
|
+
approvalStatus: 'FDA-Approved',
|
|
159
|
+
indication: 'First-line',
|
|
160
|
+
responseRate: '74%',
|
|
161
|
+
medianPFS: '24 months',
|
|
162
|
+
keyTrial: 'ALTA-1L'
|
|
163
|
+
}
|
|
164
|
+
],
|
|
165
|
+
clinicalTrials: ['Next-gen ALK inhibitors'],
|
|
166
|
+
resistance: [
|
|
167
|
+
{ mutation: 'G1202R', frequency: '20-30%', overcomingStrategy: ['Lorlatinib'] },
|
|
168
|
+
{ mutation: 'L1196M', frequency: '10%', overcomingStrategy: ['Lorlatinib', 'Brigatinib'] },
|
|
169
|
+
{ mutation: 'Compound mutations', frequency: '10-15%', overcomingStrategy: ['Lorlatinib (partial)', 'Clinical trial'] }
|
|
170
|
+
],
|
|
171
|
+
prognosticValue: { impact: 'Favorable', description: 'Excellent response to ALK TKIs, long-term survival possible' }
|
|
172
|
+
},
|
|
173
|
+
// KRAS G12C
|
|
174
|
+
{
|
|
175
|
+
gene: 'KRAS',
|
|
176
|
+
alteration: 'G12C',
|
|
177
|
+
alterationType: 'Missense Mutation',
|
|
178
|
+
frequency: '13% of NSCLC, 3% of CRC',
|
|
179
|
+
cancerTypes: ['NSCLC Adenocarcinoma', 'Colorectal Cancer'],
|
|
180
|
+
actionability: {
|
|
181
|
+
level: 'Level 1',
|
|
182
|
+
description: 'FDA-approved therapy exists',
|
|
183
|
+
source: 'OncoKB'
|
|
184
|
+
},
|
|
185
|
+
therapies: [
|
|
186
|
+
{
|
|
187
|
+
drug: 'Sotorasib',
|
|
188
|
+
class: 'KRAS G12C inhibitor',
|
|
189
|
+
approvalStatus: 'FDA-Approved',
|
|
190
|
+
indication: 'NSCLC after prior therapy',
|
|
191
|
+
responseRate: '37%',
|
|
192
|
+
medianPFS: '6.8 months',
|
|
193
|
+
keyTrial: 'CodeBreaK 100'
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
drug: 'Adagrasib',
|
|
197
|
+
class: 'KRAS G12C inhibitor',
|
|
198
|
+
approvalStatus: 'FDA-Approved',
|
|
199
|
+
indication: 'NSCLC after prior therapy',
|
|
200
|
+
responseRate: '43%',
|
|
201
|
+
medianPFS: '6.5 months',
|
|
202
|
+
keyTrial: 'KRYSTAL-1'
|
|
203
|
+
}
|
|
204
|
+
],
|
|
205
|
+
clinicalTrials: ['Combinations with SHP2 inhibitors', 'First-line combinations'],
|
|
206
|
+
resistance: [
|
|
207
|
+
{ mutation: 'Multiple mechanisms', frequency: '50%+ at progression', overcomingStrategy: ['Combination strategies', 'SHP2 inhibitors'] }
|
|
208
|
+
],
|
|
209
|
+
prognosticValue: { impact: 'Unfavorable', description: 'Historically poor prognosis, now improving with targeted therapy' }
|
|
210
|
+
},
|
|
211
|
+
// BRAF V600E
|
|
212
|
+
{
|
|
213
|
+
gene: 'BRAF',
|
|
214
|
+
alteration: 'V600E',
|
|
215
|
+
alterationType: 'Missense Mutation',
|
|
216
|
+
frequency: '50% melanoma, 8% CRC, 2% NSCLC',
|
|
217
|
+
cancerTypes: ['Melanoma', 'Colorectal Cancer', 'NSCLC', 'Thyroid Cancer'],
|
|
218
|
+
actionability: {
|
|
219
|
+
level: 'Level 1',
|
|
220
|
+
description: 'FDA-approved therapy exists',
|
|
221
|
+
source: 'OncoKB'
|
|
222
|
+
},
|
|
223
|
+
therapies: [
|
|
224
|
+
{
|
|
225
|
+
drug: 'Dabrafenib + Trametinib',
|
|
226
|
+
class: 'BRAF + MEK inhibitor',
|
|
227
|
+
approvalStatus: 'FDA-Approved',
|
|
228
|
+
indication: 'Melanoma, NSCLC, Anaplastic thyroid',
|
|
229
|
+
responseRate: '64-68%',
|
|
230
|
+
medianPFS: '11-14 months',
|
|
231
|
+
keyTrial: 'COMBI-d/v, BRF113928'
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
drug: 'Encorafenib + Binimetinib',
|
|
235
|
+
class: 'BRAF + MEK inhibitor',
|
|
236
|
+
approvalStatus: 'FDA-Approved',
|
|
237
|
+
indication: 'Melanoma',
|
|
238
|
+
responseRate: '63%',
|
|
239
|
+
medianPFS: '14.9 months',
|
|
240
|
+
keyTrial: 'COLUMBUS'
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
drug: 'Encorafenib + Cetuximab',
|
|
244
|
+
class: 'BRAF + EGFR inhibitor',
|
|
245
|
+
approvalStatus: 'FDA-Approved',
|
|
246
|
+
indication: 'CRC after prior therapy',
|
|
247
|
+
responseRate: '20%',
|
|
248
|
+
medianPFS: '4.3 months',
|
|
249
|
+
keyTrial: 'BEACON'
|
|
250
|
+
}
|
|
251
|
+
],
|
|
252
|
+
clinicalTrials: ['Triplet combinations', 'Immunotherapy combinations'],
|
|
253
|
+
resistance: [
|
|
254
|
+
{ mutation: 'MAPK reactivation', frequency: 'Common', overcomingStrategy: ['Add MEK inhibitor', 'Immunotherapy switch'] }
|
|
255
|
+
],
|
|
256
|
+
prognosticValue: { impact: 'Unfavorable', description: 'Poor prognosis especially in CRC; targetable' }
|
|
257
|
+
},
|
|
258
|
+
// HER2 Amplification/Mutation
|
|
259
|
+
{
|
|
260
|
+
gene: 'HER2/ERBB2',
|
|
261
|
+
alteration: 'Amplification',
|
|
262
|
+
alterationType: 'Amplification',
|
|
263
|
+
frequency: '15-20% breast, 10-15% gastric',
|
|
264
|
+
cancerTypes: ['Breast Cancer', 'Gastric Cancer', 'Esophageal Cancer'],
|
|
265
|
+
actionability: {
|
|
266
|
+
level: 'Level 1',
|
|
267
|
+
description: 'FDA-approved therapy exists',
|
|
268
|
+
source: 'OncoKB'
|
|
269
|
+
},
|
|
270
|
+
therapies: [
|
|
271
|
+
{
|
|
272
|
+
drug: 'Trastuzumab + Pertuzumab',
|
|
273
|
+
class: 'Anti-HER2 antibodies',
|
|
274
|
+
approvalStatus: 'FDA-Approved',
|
|
275
|
+
indication: 'HER2+ breast (first-line)',
|
|
276
|
+
responseRate: '80%',
|
|
277
|
+
medianPFS: '18.7 months',
|
|
278
|
+
keyTrial: 'CLEOPATRA'
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
drug: 'Trastuzumab Deruxtecan (T-DXd)',
|
|
282
|
+
class: 'HER2-directed ADC',
|
|
283
|
+
approvalStatus: 'FDA-Approved',
|
|
284
|
+
indication: 'HER2+ breast (second-line), HER2-low, gastric',
|
|
285
|
+
responseRate: '52-79%',
|
|
286
|
+
medianPFS: '10-29 months',
|
|
287
|
+
keyTrial: 'DESTINY-Breast01/03/04'
|
|
288
|
+
}
|
|
289
|
+
],
|
|
290
|
+
clinicalTrials: ['T-DXd combinations', 'Novel ADCs'],
|
|
291
|
+
resistance: [
|
|
292
|
+
{ mutation: 'Bypass pathways', frequency: 'Variable', overcomingStrategy: ['ADC therapy', 'TKI combinations'] }
|
|
293
|
+
],
|
|
294
|
+
prognosticValue: { impact: 'Context-Dependent', description: 'Historically poor prognosis, now favorable with anti-HER2 therapy' }
|
|
295
|
+
},
|
|
296
|
+
// PIK3CA Mutations
|
|
297
|
+
{
|
|
298
|
+
gene: 'PIK3CA',
|
|
299
|
+
alteration: 'H1047R/E545K/E542K',
|
|
300
|
+
alterationType: 'Missense Mutation',
|
|
301
|
+
frequency: '40% HR+ breast cancer',
|
|
302
|
+
cancerTypes: ['Breast Cancer'],
|
|
303
|
+
actionability: {
|
|
304
|
+
level: 'Level 1',
|
|
305
|
+
description: 'FDA-approved therapy exists',
|
|
306
|
+
source: 'OncoKB'
|
|
307
|
+
},
|
|
308
|
+
therapies: [
|
|
309
|
+
{
|
|
310
|
+
drug: 'Alpelisib',
|
|
311
|
+
class: 'PI3K alpha inhibitor',
|
|
312
|
+
approvalStatus: 'FDA-Approved',
|
|
313
|
+
indication: 'HR+/HER2- with PIK3CA mutation after prior ET',
|
|
314
|
+
responseRate: '26%',
|
|
315
|
+
medianPFS: '11 months',
|
|
316
|
+
keyTrial: 'SOLAR-1'
|
|
317
|
+
}
|
|
318
|
+
],
|
|
319
|
+
clinicalTrials: ['Next-gen PI3K inhibitors'],
|
|
320
|
+
resistance: [],
|
|
321
|
+
prognosticValue: { impact: 'Neutral', description: 'Predictive of response to PI3K inhibitor' }
|
|
322
|
+
},
|
|
323
|
+
// ROS1 Fusion
|
|
324
|
+
{
|
|
325
|
+
gene: 'ROS1',
|
|
326
|
+
alteration: 'Various fusions',
|
|
327
|
+
alterationType: 'Fusion',
|
|
328
|
+
frequency: '1-2% of NSCLC',
|
|
329
|
+
cancerTypes: ['NSCLC Adenocarcinoma'],
|
|
330
|
+
actionability: {
|
|
331
|
+
level: 'Level 1',
|
|
332
|
+
description: 'FDA-approved therapy exists',
|
|
333
|
+
source: 'OncoKB'
|
|
334
|
+
},
|
|
335
|
+
therapies: [
|
|
336
|
+
{
|
|
337
|
+
drug: 'Entrectinib',
|
|
338
|
+
class: 'ROS1/TRK inhibitor',
|
|
339
|
+
approvalStatus: 'FDA-Approved',
|
|
340
|
+
indication: 'First-line ROS1+ NSCLC',
|
|
341
|
+
responseRate: '77%',
|
|
342
|
+
medianPFS: '19 months',
|
|
343
|
+
keyTrial: 'STARTRK-2, ALKA-372-001'
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
drug: 'Crizotinib',
|
|
347
|
+
class: 'ROS1/ALK/MET inhibitor',
|
|
348
|
+
approvalStatus: 'FDA-Approved',
|
|
349
|
+
indication: 'First-line ROS1+ NSCLC',
|
|
350
|
+
responseRate: '72%',
|
|
351
|
+
medianPFS: '19.3 months',
|
|
352
|
+
keyTrial: 'PROFILE 1001'
|
|
353
|
+
}
|
|
354
|
+
],
|
|
355
|
+
clinicalTrials: ['Repotrectinib', 'Next-gen ROS1 TKIs'],
|
|
356
|
+
resistance: [
|
|
357
|
+
{ mutation: 'G2032R', frequency: '30-40%', overcomingStrategy: ['Repotrectinib (investigational)', 'Lorlatinib'] }
|
|
358
|
+
],
|
|
359
|
+
prognosticValue: { impact: 'Favorable', description: 'Excellent response to ROS1 inhibitors' }
|
|
360
|
+
},
|
|
361
|
+
// NTRK Fusions (Tissue-agnostic)
|
|
362
|
+
{
|
|
363
|
+
gene: 'NTRK1/2/3',
|
|
364
|
+
alteration: 'Various fusions',
|
|
365
|
+
alterationType: 'Fusion',
|
|
366
|
+
frequency: '<1% of common cancers, higher in rare cancers',
|
|
367
|
+
cancerTypes: ['Tissue-agnostic', 'Infantile Fibrosarcoma', 'Secretory Breast', 'Thyroid'],
|
|
368
|
+
actionability: {
|
|
369
|
+
level: 'Level 1',
|
|
370
|
+
description: 'FDA tissue-agnostic approval',
|
|
371
|
+
source: 'OncoKB'
|
|
372
|
+
},
|
|
373
|
+
therapies: [
|
|
374
|
+
{
|
|
375
|
+
drug: 'Larotrectinib',
|
|
376
|
+
class: 'TRK inhibitor',
|
|
377
|
+
approvalStatus: 'FDA-Approved',
|
|
378
|
+
indication: 'NTRK fusion-positive solid tumors',
|
|
379
|
+
responseRate: '75%',
|
|
380
|
+
medianPFS: '28.3 months',
|
|
381
|
+
keyTrial: 'NAVIGATE, SCOUT, LOXO-TRK-14001'
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
drug: 'Entrectinib',
|
|
385
|
+
class: 'TRK/ROS1 inhibitor',
|
|
386
|
+
approvalStatus: 'FDA-Approved',
|
|
387
|
+
indication: 'NTRK fusion-positive solid tumors',
|
|
388
|
+
responseRate: '57%',
|
|
389
|
+
medianPFS: '11.2 months',
|
|
390
|
+
keyTrial: 'STARTRK-1/2, ALKA-372-001'
|
|
391
|
+
}
|
|
392
|
+
],
|
|
393
|
+
clinicalTrials: ['Next-gen TRK inhibitors for resistance'],
|
|
394
|
+
resistance: [
|
|
395
|
+
{ mutation: 'Solvent front mutations', frequency: '10-20%', overcomingStrategy: ['Selitrectinib', 'Repotrectinib'] }
|
|
396
|
+
],
|
|
397
|
+
prognosticValue: { impact: 'Favorable', description: 'Excellent durable responses across tumor types' }
|
|
398
|
+
},
|
|
399
|
+
// RET Alterations
|
|
400
|
+
{
|
|
401
|
+
gene: 'RET',
|
|
402
|
+
alteration: 'Fusion or Mutation',
|
|
403
|
+
alterationType: 'Fusion',
|
|
404
|
+
frequency: '1-2% NSCLC, 10-20% thyroid',
|
|
405
|
+
cancerTypes: ['NSCLC', 'Thyroid Cancer (MTC, PTC)'],
|
|
406
|
+
actionability: {
|
|
407
|
+
level: 'Level 1',
|
|
408
|
+
description: 'FDA-approved therapy exists',
|
|
409
|
+
source: 'OncoKB'
|
|
410
|
+
},
|
|
411
|
+
therapies: [
|
|
412
|
+
{
|
|
413
|
+
drug: 'Selpercatinib',
|
|
414
|
+
class: 'Selective RET inhibitor',
|
|
415
|
+
approvalStatus: 'FDA-Approved',
|
|
416
|
+
indication: 'RET-altered NSCLC and thyroid',
|
|
417
|
+
responseRate: '64-85%',
|
|
418
|
+
medianPFS: '16.5-24.9 months',
|
|
419
|
+
keyTrial: 'LIBRETTO-001'
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
drug: 'Pralsetinib',
|
|
423
|
+
class: 'Selective RET inhibitor',
|
|
424
|
+
approvalStatus: 'FDA-Approved',
|
|
425
|
+
indication: 'RET-altered NSCLC and thyroid',
|
|
426
|
+
responseRate: '57-72%',
|
|
427
|
+
medianPFS: '13-17 months',
|
|
428
|
+
keyTrial: 'ARROW'
|
|
429
|
+
}
|
|
430
|
+
],
|
|
431
|
+
clinicalTrials: ['Resistance mutation-targeting agents'],
|
|
432
|
+
resistance: [
|
|
433
|
+
{ mutation: 'G810X solvent front', frequency: '10-20%', overcomingStrategy: ['Investigational agents'] }
|
|
434
|
+
],
|
|
435
|
+
prognosticValue: { impact: 'Favorable', description: 'Excellent response to selective RET inhibitors' }
|
|
436
|
+
},
|
|
437
|
+
// MSI-H/dMMR (Tissue-agnostic)
|
|
438
|
+
{
|
|
439
|
+
gene: 'MSI-H/dMMR',
|
|
440
|
+
alteration: 'Microsatellite Instability High',
|
|
441
|
+
alterationType: 'Frameshift',
|
|
442
|
+
frequency: '15% CRC, 20-30% endometrial, variable others',
|
|
443
|
+
cancerTypes: ['Tissue-agnostic'],
|
|
444
|
+
actionability: {
|
|
445
|
+
level: 'Level 1',
|
|
446
|
+
description: 'FDA tissue-agnostic approval',
|
|
447
|
+
source: 'OncoKB'
|
|
448
|
+
},
|
|
449
|
+
therapies: [
|
|
450
|
+
{
|
|
451
|
+
drug: 'Pembrolizumab',
|
|
452
|
+
class: 'Anti-PD-1',
|
|
453
|
+
approvalStatus: 'FDA-Approved',
|
|
454
|
+
indication: 'MSI-H/dMMR solid tumors',
|
|
455
|
+
responseRate: '39-45%',
|
|
456
|
+
medianPFS: '16.5 months (CRC)',
|
|
457
|
+
keyTrial: 'KEYNOTE-158, KEYNOTE-177'
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
drug: 'Dostarlimab',
|
|
461
|
+
class: 'Anti-PD-1',
|
|
462
|
+
approvalStatus: 'FDA-Approved',
|
|
463
|
+
indication: 'dMMR solid tumors',
|
|
464
|
+
responseRate: '42%',
|
|
465
|
+
medianPFS: 'Not reached',
|
|
466
|
+
keyTrial: 'GARNET'
|
|
467
|
+
}
|
|
468
|
+
],
|
|
469
|
+
clinicalTrials: ['Neoadjuvant immunotherapy'],
|
|
470
|
+
resistance: [
|
|
471
|
+
{ mutation: 'Beta-2-microglobulin loss', frequency: '5-10%', overcomingStrategy: ['Combination immunotherapy'] }
|
|
472
|
+
],
|
|
473
|
+
prognosticValue: { impact: 'Favorable', description: 'Excellent response to immunotherapy' }
|
|
474
|
+
},
|
|
475
|
+
// TMB-High
|
|
476
|
+
{
|
|
477
|
+
gene: 'TMB-High',
|
|
478
|
+
alteration: 'Tumor Mutational Burden ≥10 mut/Mb',
|
|
479
|
+
alterationType: 'Missense Mutation',
|
|
480
|
+
frequency: 'Variable by cancer type',
|
|
481
|
+
cancerTypes: ['Tissue-agnostic'],
|
|
482
|
+
actionability: {
|
|
483
|
+
level: 'Level 1',
|
|
484
|
+
description: 'FDA tissue-agnostic approval',
|
|
485
|
+
source: 'OncoKB'
|
|
486
|
+
},
|
|
487
|
+
therapies: [
|
|
488
|
+
{
|
|
489
|
+
drug: 'Pembrolizumab',
|
|
490
|
+
class: 'Anti-PD-1',
|
|
491
|
+
approvalStatus: 'FDA-Approved',
|
|
492
|
+
indication: 'TMB-H (≥10 mut/Mb) solid tumors',
|
|
493
|
+
responseRate: '29%',
|
|
494
|
+
medianPFS: 'Variable',
|
|
495
|
+
keyTrial: 'KEYNOTE-158'
|
|
496
|
+
}
|
|
497
|
+
],
|
|
498
|
+
clinicalTrials: ['Combination strategies'],
|
|
499
|
+
resistance: [],
|
|
500
|
+
prognosticValue: { impact: 'Context-Dependent', description: 'Predictive of immunotherapy response' }
|
|
501
|
+
}
|
|
502
|
+
];
|
|
503
|
+
export const PHARMACOGENOMIC_MARKERS = [
|
|
504
|
+
{
|
|
505
|
+
gene: 'DPYD',
|
|
506
|
+
variant: 'DPYD*2A, *13, c.2846A>T, HapB3',
|
|
507
|
+
affectedDrugs: [
|
|
508
|
+
{
|
|
509
|
+
drug: '5-Fluorouracil (5-FU)',
|
|
510
|
+
effect: 'Reduced DPD enzyme activity, increased toxicity risk',
|
|
511
|
+
recommendation: 'Test before initiating fluoropyrimidines',
|
|
512
|
+
doseAdjustment: '*2A/*2A: Avoid; Heterozygous: 50% dose reduction'
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
drug: 'Capecitabine',
|
|
516
|
+
effect: 'Same as 5-FU',
|
|
517
|
+
recommendation: 'Same as 5-FU',
|
|
518
|
+
doseAdjustment: 'Same as 5-FU'
|
|
519
|
+
}
|
|
520
|
+
],
|
|
521
|
+
testingRecommendation: 'Strongly Recommended',
|
|
522
|
+
guidelineSource: 'CPIC, EMA'
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
gene: 'UGT1A1',
|
|
526
|
+
variant: 'UGT1A1*28, *6',
|
|
527
|
+
affectedDrugs: [
|
|
528
|
+
{
|
|
529
|
+
drug: 'Irinotecan',
|
|
530
|
+
effect: 'Reduced glucuronidation, increased SN-38 toxicity',
|
|
531
|
+
recommendation: 'Consider testing for high-dose irinotecan',
|
|
532
|
+
doseAdjustment: '*28/*28: Reduce dose 30%; *28/*6 or *6/*6: Reduce dose'
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
drug: 'Sacituzumab govitecan',
|
|
536
|
+
effect: 'Contains SN-38, similar toxicity risk',
|
|
537
|
+
recommendation: 'Consider testing',
|
|
538
|
+
doseAdjustment: '*28/*28: Monitor closely, consider dose reduction'
|
|
539
|
+
}
|
|
540
|
+
],
|
|
541
|
+
testingRecommendation: 'Consider',
|
|
542
|
+
guidelineSource: 'CPIC, FDA label'
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
gene: 'TPMT/NUDT15',
|
|
546
|
+
variant: 'TPMT*2, *3A, *3B, *3C; NUDT15*3',
|
|
547
|
+
affectedDrugs: [
|
|
548
|
+
{
|
|
549
|
+
drug: '6-Mercaptopurine',
|
|
550
|
+
effect: 'Reduced thiopurine metabolism, severe myelosuppression',
|
|
551
|
+
recommendation: 'Test before initiating thiopurines',
|
|
552
|
+
doseAdjustment: 'Poor metabolizer: 10% of normal dose'
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
drug: 'Azathioprine',
|
|
556
|
+
effect: 'Same as 6-MP',
|
|
557
|
+
recommendation: 'Same',
|
|
558
|
+
doseAdjustment: 'Same'
|
|
559
|
+
}
|
|
560
|
+
],
|
|
561
|
+
testingRecommendation: 'Required',
|
|
562
|
+
guidelineSource: 'CPIC, FDA label'
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
gene: 'G6PD',
|
|
566
|
+
variant: 'G6PD deficiency',
|
|
567
|
+
affectedDrugs: [
|
|
568
|
+
{
|
|
569
|
+
drug: 'Rasburicase',
|
|
570
|
+
effect: 'Hemolytic anemia, methemoglobinemia',
|
|
571
|
+
recommendation: 'Screen before use',
|
|
572
|
+
doseAdjustment: 'Contraindicated in G6PD deficiency'
|
|
573
|
+
}
|
|
574
|
+
],
|
|
575
|
+
testingRecommendation: 'Required',
|
|
576
|
+
guidelineSource: 'FDA label'
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
gene: 'CYP2D6',
|
|
580
|
+
variant: 'Poor metabolizer',
|
|
581
|
+
affectedDrugs: [
|
|
582
|
+
{
|
|
583
|
+
drug: 'Tamoxifen',
|
|
584
|
+
effect: 'Reduced conversion to active metabolite endoxifen',
|
|
585
|
+
recommendation: 'Consider testing, especially if concurrent CYP2D6 inhibitors',
|
|
586
|
+
doseAdjustment: 'PM: Consider alternative (aromatase inhibitor if postmenopausal)'
|
|
587
|
+
}
|
|
588
|
+
],
|
|
589
|
+
testingRecommendation: 'Consider',
|
|
590
|
+
guidelineSource: 'CPIC'
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
gene: 'HLA-B*57:01',
|
|
594
|
+
variant: 'Presence of allele',
|
|
595
|
+
affectedDrugs: [
|
|
596
|
+
{
|
|
597
|
+
drug: 'Abacavir',
|
|
598
|
+
effect: 'Hypersensitivity reaction',
|
|
599
|
+
recommendation: 'Test before initiating',
|
|
600
|
+
doseAdjustment: 'Do not use if positive'
|
|
601
|
+
}
|
|
602
|
+
],
|
|
603
|
+
testingRecommendation: 'Required',
|
|
604
|
+
guidelineSource: 'FDA label, CPIC'
|
|
605
|
+
}
|
|
606
|
+
];
|
|
607
|
+
export const TME_THERAPEUTIC_IMPLICATIONS = {
|
|
608
|
+
'Inflamed': [
|
|
609
|
+
{
|
|
610
|
+
finding: 'High CD8+ TIL infiltration with PD-L1 expression',
|
|
611
|
+
implication: 'Likely responsive to PD-1/PD-L1 blockade',
|
|
612
|
+
recommendation: 'First-line immunotherapy appropriate'
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
finding: 'Tertiary lymphoid structures (TLS) present',
|
|
616
|
+
implication: 'Associated with improved immunotherapy response',
|
|
617
|
+
recommendation: 'Immunotherapy highly recommended'
|
|
618
|
+
}
|
|
619
|
+
],
|
|
620
|
+
'Excluded': [
|
|
621
|
+
{
|
|
622
|
+
finding: 'T cells present at tumor margin but not infiltrating',
|
|
623
|
+
implication: 'Physical or immunological barrier to T cell entry',
|
|
624
|
+
recommendation: 'Consider anti-TGF-beta, CAF-targeting, or combination approaches'
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
finding: 'Dense fibrotic stroma',
|
|
628
|
+
implication: 'Stromal barrier limiting drug penetration',
|
|
629
|
+
recommendation: 'Consider stromal-targeting agents or chemotherapy to disrupt'
|
|
630
|
+
}
|
|
631
|
+
],
|
|
632
|
+
'Desert': [
|
|
633
|
+
{
|
|
634
|
+
finding: 'Absence of immune infiltrate',
|
|
635
|
+
implication: 'Poor immunogenicity or immune evasion',
|
|
636
|
+
recommendation: 'Consider chemotherapy to induce immunogenic cell death, oncolytic viruses, or vaccines'
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
finding: 'Low TMB, no neoantigens',
|
|
640
|
+
implication: 'Limited targets for immune recognition',
|
|
641
|
+
recommendation: 'Chemotherapy or targeted therapy may be more appropriate than immunotherapy'
|
|
642
|
+
}
|
|
643
|
+
]
|
|
644
|
+
};
|
|
645
|
+
export function interpretCtDNA(result) {
|
|
646
|
+
const actionableFindings = [];
|
|
647
|
+
const resistanceMutations = [];
|
|
648
|
+
for (const alt of result.alterationsDetected) {
|
|
649
|
+
if (alt.clinicalSignificance === 'Actionable') {
|
|
650
|
+
actionableFindings.push(`${alt.gene} ${alt.alteration} (VAF: ${alt.vaf}%)`);
|
|
651
|
+
}
|
|
652
|
+
if (alt.clinicalSignificance === 'Resistance') {
|
|
653
|
+
resistanceMutations.push(`${alt.gene} ${alt.alteration}`);
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
let summary = '';
|
|
657
|
+
if (result.ctdnaFraction < 0.5) {
|
|
658
|
+
summary = 'Low ctDNA fraction - may indicate low tumor burden or shedding; consider repeat testing or tissue biopsy';
|
|
659
|
+
}
|
|
660
|
+
else if (result.ctdnaFraction > 10) {
|
|
661
|
+
summary = 'High ctDNA fraction - indicates significant tumor burden';
|
|
662
|
+
}
|
|
663
|
+
else {
|
|
664
|
+
summary = 'Detectable ctDNA with interpretable results';
|
|
665
|
+
}
|
|
666
|
+
const tissueConfirmationNeeded = result.ctdnaFraction < 1 && actionableFindings.length > 0;
|
|
667
|
+
let monitoringRecommendation = 'Repeat ctDNA in 8-12 weeks or at clinical/radiographic progression';
|
|
668
|
+
if (resistanceMutations.length > 0) {
|
|
669
|
+
monitoringRecommendation = 'Resistance mutations detected - consider treatment change; repeat ctDNA after new therapy started';
|
|
670
|
+
}
|
|
671
|
+
return {
|
|
672
|
+
summary,
|
|
673
|
+
actionableFindings,
|
|
674
|
+
resistanceMutations,
|
|
675
|
+
monitoringRecommendation,
|
|
676
|
+
tissueConfirmationNeeded
|
|
677
|
+
};
|
|
678
|
+
}
|
|
679
|
+
// ═══════════════════════════════════════════════════════════════════════════════
|
|
680
|
+
// PRECISION MEDICINE ENGINE
|
|
681
|
+
// ═══════════════════════════════════════════════════════════════════════════════
|
|
682
|
+
export class PrecisionMedicineEngine {
|
|
683
|
+
getActionableAlterations(gene) {
|
|
684
|
+
return ACTIONABLE_GENOMIC_DATABASE.filter(a => a.gene.toLowerCase() === gene.toLowerCase());
|
|
685
|
+
}
|
|
686
|
+
getAlterationByType(alteration) {
|
|
687
|
+
return ACTIONABLE_GENOMIC_DATABASE.find(a => a.alteration.toLowerCase().includes(alteration.toLowerCase()) ||
|
|
688
|
+
alteration.toLowerCase().includes(a.alteration.toLowerCase()));
|
|
689
|
+
}
|
|
690
|
+
getTherapiesForAlteration(gene, alteration) {
|
|
691
|
+
const genomicAlt = ACTIONABLE_GENOMIC_DATABASE.find(a => a.gene.toLowerCase() === gene.toLowerCase() &&
|
|
692
|
+
a.alteration.toLowerCase().includes(alteration.toLowerCase()));
|
|
693
|
+
return genomicAlt?.therapies || [];
|
|
694
|
+
}
|
|
695
|
+
getPharmacogenomicRecommendation(drug) {
|
|
696
|
+
return PHARMACOGENOMIC_MARKERS.find(p => p.affectedDrugs.some(d => d.drug.toLowerCase().includes(drug.toLowerCase())));
|
|
697
|
+
}
|
|
698
|
+
assessActionability(alterations) {
|
|
699
|
+
const result = {
|
|
700
|
+
level1: [],
|
|
701
|
+
level2: [],
|
|
702
|
+
level3: [],
|
|
703
|
+
notActionable: []
|
|
704
|
+
};
|
|
705
|
+
for (const alt of alterations) {
|
|
706
|
+
const match = ACTIONABLE_GENOMIC_DATABASE.find(a => a.gene.toLowerCase() === alt.gene.toLowerCase());
|
|
707
|
+
if (match) {
|
|
708
|
+
if (match.actionability.level === 'Level 1') {
|
|
709
|
+
result.level1.push(match);
|
|
710
|
+
}
|
|
711
|
+
else if (match.actionability.level === 'Level 2') {
|
|
712
|
+
result.level2.push(match);
|
|
713
|
+
}
|
|
714
|
+
else if (match.actionability.level.includes('3')) {
|
|
715
|
+
result.level3.push(match);
|
|
716
|
+
}
|
|
717
|
+
}
|
|
718
|
+
else {
|
|
719
|
+
result.notActionable.push(`${alt.gene} ${alt.alteration}`);
|
|
720
|
+
}
|
|
721
|
+
}
|
|
722
|
+
return result;
|
|
723
|
+
}
|
|
724
|
+
getTMEImplications(phenotype) {
|
|
725
|
+
return TME_THERAPEUTIC_IMPLICATIONS[phenotype] || [];
|
|
726
|
+
}
|
|
727
|
+
interpretLiquidBiopsy(result) {
|
|
728
|
+
return interpretCtDNA(result);
|
|
729
|
+
}
|
|
730
|
+
generatePrecisionReport(patientId, genomicProfile, pharmacogenomics, tmeIfAvailable) {
|
|
731
|
+
const actionability = this.assessActionability(genomicProfile);
|
|
732
|
+
const pgxRecommendations = [];
|
|
733
|
+
for (const gene of pharmacogenomics) {
|
|
734
|
+
const pgx = PHARMACOGENOMIC_MARKERS.find(p => p.gene === gene);
|
|
735
|
+
if (pgx)
|
|
736
|
+
pgxRecommendations.push(pgx);
|
|
737
|
+
}
|
|
738
|
+
const tmeImplications = tmeIfAvailable
|
|
739
|
+
? this.getTMEImplications(tmeIfAvailable.immunePhenotype)
|
|
740
|
+
: [];
|
|
741
|
+
const clinicalTrialTargets = [
|
|
742
|
+
...actionability.level1.flatMap(a => a.clinicalTrials),
|
|
743
|
+
...actionability.level2.flatMap(a => a.clinicalTrials),
|
|
744
|
+
...actionability.level3.flatMap(a => a.clinicalTrials)
|
|
745
|
+
];
|
|
746
|
+
const summary = `Found ${actionability.level1.length} Level 1, ${actionability.level2.length} Level 2, and ${actionability.level3.length} Level 3 actionable alterations. ${pgxRecommendations.length} pharmacogenomic considerations identified.`;
|
|
747
|
+
return {
|
|
748
|
+
actionableTargets: [...actionability.level1, ...actionability.level2],
|
|
749
|
+
pgxRecommendations,
|
|
750
|
+
tmeImplications,
|
|
751
|
+
clinicalTrialTargets: [...new Set(clinicalTrialTargets)],
|
|
752
|
+
summary
|
|
753
|
+
};
|
|
754
|
+
}
|
|
755
|
+
}
|
|
756
|
+
// Export singleton
|
|
757
|
+
export const precisionMedicineEngine = new PrecisionMedicineEngine();
|
|
758
|
+
//# sourceMappingURL=precisionMedicineModule.js.map
|