File size: 13,332 Bytes
2982159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
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
{
  "TRIAL-GD-001": {
    "disease": "Gaucher Disease Type 1",
    "disease_group": "Rare metabolic",
    "phase": "Phase 3",
    "intervention": "Imiglucerase ERT vs Eliglustat SRT",
    "n_target": 120,
    "duration_months": 24,
    "primary_endpoint": "Enzyme activity normalization at 12 months",
    "secondary_endpoints": [
      "Spleen volume reduction",
      "Hemoglobin normalization",
      "Platelet count normalization"
    ],
    "inclusion": {
      "min_age": 2,
      "max_age": 70,
      "required_acmg": [
        "Pathogenic",
        "Likely pathogenic"
      ],
      "required_gene": "GBA1",
      "max_functional_status": 3,
      "min_eligibility_score": 0.55
    },
    "exclusion": {
      "ae_grade_cutoff": 4,
      "required_prior_treatment": false
    },
    "arm_allocation": {
      "Imiglucerase": 0.5,
      "Eliglustat": 0.5
    },
    "biomarker_response_threshold": 0.4
  },
  "TRIAL-SMA-001": {
    "disease": "Spinal Muscular Atrophy",
    "disease_group": "Rare neurological",
    "phase": "Phase 3",
    "intervention": "Nusinersen ASO vs Onasemnogene gene therapy",
    "n_target": 80,
    "duration_months": 24,
    "primary_endpoint": "Motor milestone achievement at 14 months",
    "secondary_endpoints": [
      "Ventilator-free survival",
      "HINE-2 motor score",
      "Caregiver burden reduction"
    ],
    "inclusion": {
      "min_age": 0,
      "max_age": 18,
      "required_acmg": [
        "Pathogenic"
      ],
      "required_gene": "SMN1",
      "max_functional_status": 3,
      "min_eligibility_score": 0.6
    },
    "exclusion": {
      "ae_grade_cutoff": 3,
      "required_prior_treatment": false
    },
    "arm_allocation": {
      "Nusinersen": 0.5,
      "Onasemnogene": 0.5
    },
    "biomarker_response_threshold": 0.35
  },
  "TRIAL-CF-001": {
    "disease": "Cystic Fibrosis",
    "disease_group": "Rare pulmonary",
    "phase": "Phase 3",
    "intervention": "Elexacaftor/Tezacaftor/Ivacaftor triple therapy",
    "n_target": 200,
    "duration_months": 24,
    "primary_endpoint": "ppFEV1 change from baseline at 24 weeks",
    "secondary_endpoints": [
      "Sweat chloride reduction",
      "CFQ-R score improvement",
      "Pulmonary exacerbation rate"
    ],
    "inclusion": {
      "min_age": 6,
      "max_age": 65,
      "required_acmg": [
        "Pathogenic",
        "Likely pathogenic"
      ],
      "required_gene": "CFTR",
      "max_functional_status": 2,
      "min_eligibility_score": 0.6
    },
    "exclusion": {
      "ae_grade_cutoff": 3,
      "required_prior_treatment": true
    },
    "arm_allocation": {
      "ETI-triple": 0.67,
      "Placebo": 0.33
    },
    "biomarker_response_threshold": 0.45
  },
  "TRIAL-DMD-001": {
    "disease": "Duchenne Muscular Dystrophy",
    "disease_group": "Rare muscular",
    "phase": "Phase 2/3",
    "intervention": "Exon 51 skipping ASO therapy",
    "n_target": 60,
    "duration_months": 18,
    "primary_endpoint": "6MWT distance change at 48 weeks",
    "secondary_endpoints": [
      "NSAA score",
      "EK score",
      "Respiratory function (FVC)",
      "Dystrophin expression"
    ],
    "inclusion": {
      "min_age": 5,
      "max_age": 18,
      "required_acmg": [
        "Pathogenic"
      ],
      "required_gene": "DMD",
      "max_functional_status": 3,
      "min_eligibility_score": 0.55
    },
    "exclusion": {
      "ae_grade_cutoff": 3,
      "required_prior_treatment": false
    },
    "arm_allocation": {
      "ASO-active": 0.67,
      "Placebo": 0.33
    },
    "biomarker_response_threshold": 0.3
  },
  "TRIAL-HD-001": {
    "disease": "Huntington Disease",
    "disease_group": "Rare neurological",
    "phase": "Phase 2/3",
    "intervention": "HTT-lowering ASO intrathecal therapy",
    "n_target": 100,
    "duration_months": 24,
    "primary_endpoint": "mHTT concentration reduction in CSF at 13 months",
    "secondary_endpoints": [
      "UHDRS motor score",
      "Cognitive composite",
      "Brain volume preservation"
    ],
    "inclusion": {
      "min_age": 25,
      "max_age": 65,
      "required_acmg": [
        "Pathogenic"
      ],
      "required_gene": "HTT",
      "max_functional_status": 2,
      "min_eligibility_score": 0.6
    },
    "exclusion": {
      "ae_grade_cutoff": 3,
      "required_prior_treatment": false
    },
    "arm_allocation": {
      "HTT-ASO": 0.67,
      "Placebo": 0.33
    },
    "biomarker_response_threshold": 0.4
  },
  "TRIAL-FAB-001": {
    "disease": "Fabry Disease",
    "disease_group": "Rare metabolic",
    "phase": "Phase 3",
    "intervention": "Agalsidase beta ERT vs Migalastat chaperone",
    "n_target": 90,
    "duration_months": 24,
    "primary_endpoint": "GFR stabilization and lyso-Gb3 reduction at 24 months",
    "secondary_endpoints": [
      "Neuropathic pain (BPI)",
      "Cardiac mass reduction",
      "Quality of life"
    ],
    "inclusion": {
      "min_age": 18,
      "max_age": 65,
      "required_acmg": [
        "Pathogenic",
        "Likely pathogenic"
      ],
      "required_gene": "GLA",
      "max_functional_status": 3,
      "min_eligibility_score": 0.55
    },
    "exclusion": {
      "ae_grade_cutoff": 4,
      "required_prior_treatment": false
    },
    "arm_allocation": {
      "Agalsidase-beta": 0.5,
      "Migalastat": 0.5
    },
    "biomarker_response_threshold": 0.35
  },
  "TRIAL-MFS-001": {
    "disease": "Marfan Syndrome",
    "disease_group": "Rare cardiac",
    "phase": "Phase 3",
    "intervention": "Losartan vs Atenolol for aortic root dilation",
    "n_target": 150,
    "duration_months": 36,
    "primary_endpoint": "Aortic root z-score change at 36 months",
    "secondary_endpoints": [
      "Aortic dissection rate",
      "Systolic/diastolic function",
      "QoL"
    ],
    "inclusion": {
      "min_age": 6,
      "max_age": 60,
      "required_acmg": [
        "Pathogenic",
        "Likely pathogenic"
      ],
      "required_gene": "FBN1",
      "max_functional_status": 2,
      "min_eligibility_score": 0.55
    },
    "exclusion": {
      "ae_grade_cutoff": 3,
      "required_prior_treatment": true
    },
    "arm_allocation": {
      "Losartan": 0.5,
      "Atenolol": 0.5
    },
    "biomarker_response_threshold": 0.3
  },
  "TRIAL-HEM-001": {
    "disease": "Hemophilia A",
    "disease_group": "Rare hematological",
    "phase": "Phase 3",
    "intervention": "Gene therapy (AAV5-F8) vs Factor VIII prophylaxis",
    "n_target": 70,
    "duration_months": 36,
    "primary_endpoint": "ABR reduction \u226580% from baseline at 12 months",
    "secondary_endpoints": [
      "Factor VIII activity",
      "Joint health score",
      "Treatment burden"
    ],
    "inclusion": {
      "min_age": 18,
      "max_age": 70,
      "required_acmg": [
        "Pathogenic"
      ],
      "required_gene": "F8",
      "max_functional_status": 2,
      "min_eligibility_score": 0.6
    },
    "exclusion": {
      "ae_grade_cutoff": 3,
      "required_prior_treatment": true
    },
    "arm_allocation": {
      "AAV5-F8": 0.67,
      "Factor-VIII-prophylaxis": 0.33
    },
    "biomarker_response_threshold": 0.5
  },
  "TRIAL-PKD-001": {
    "disease": "ADPKD",
    "disease_group": "Rare renal",
    "phase": "Phase 3",
    "intervention": "Tolvaptan vs placebo for TKV reduction",
    "n_target": 180,
    "duration_months": 36,
    "primary_endpoint": "TKV change from baseline at 36 months",
    "secondary_endpoints": [
      "eGFR decline rate",
      "Kidney pain events",
      "Osmolality"
    ],
    "inclusion": {
      "min_age": 18,
      "max_age": 55,
      "required_acmg": [
        "Pathogenic",
        "Likely pathogenic"
      ],
      "required_gene": "PKD1",
      "max_functional_status": 2,
      "min_eligibility_score": 0.55
    },
    "exclusion": {
      "ae_grade_cutoff": 3,
      "required_prior_treatment": false
    },
    "arm_allocation": {
      "Tolvaptan": 0.67,
      "Placebo": 0.33
    },
    "biomarker_response_threshold": 0.35
  },
  "TRIAL-OI-001": {
    "disease": "Osteogenesis Imperfecta",
    "disease_group": "Rare skeletal",
    "phase": "Phase 2/3",
    "intervention": "Setrusumab anti-sclerostin vs bisphosphonate",
    "n_target": 100,
    "duration_months": 24,
    "primary_endpoint": "Lumbar spine BMD change at 24 months",
    "secondary_endpoints": [
      "Fracture rate",
      "Height velocity",
      "Pain score"
    ],
    "inclusion": {
      "min_age": 5,
      "max_age": 50,
      "required_acmg": [
        "Pathogenic",
        "Likely pathogenic"
      ],
      "required_gene": "COL1A1",
      "max_functional_status": 3,
      "min_eligibility_score": 0.5
    },
    "exclusion": {
      "ae_grade_cutoff": 3,
      "required_prior_treatment": true
    },
    "arm_allocation": {
      "Setrusumab": 0.67,
      "Bisphosphonate": 0.33
    },
    "biomarker_response_threshold": 0.3
  },
  "TRIAL-TS-001": {
    "disease": "Tuberous Sclerosis",
    "disease_group": "Rare neurological",
    "phase": "Phase 3",
    "intervention": "Everolimus mTOR inhibitor",
    "n_target": 80,
    "duration_months": 18,
    "primary_endpoint": "SEGA volume reduction \u226550% at 9 months",
    "secondary_endpoints": [
      "Angiomyolipoma response",
      "Seizure frequency",
      "Skin lesion response"
    ],
    "inclusion": {
      "min_age": 3,
      "max_age": 65,
      "required_acmg": [
        "Pathogenic",
        "Likely pathogenic"
      ],
      "required_gene": "TSC1",
      "max_functional_status": 3,
      "min_eligibility_score": 0.55
    },
    "exclusion": {
      "ae_grade_cutoff": 3,
      "required_prior_treatment": true
    },
    "arm_allocation": {
      "Everolimus": 0.67,
      "Placebo": 0.33
    },
    "biomarker_response_threshold": 0.4
  },
  "TRIAL-SCD-001": {
    "disease": "Sickle Cell Disease",
    "disease_group": "Rare hematological",
    "phase": "Phase 3",
    "intervention": "Betibeglogene gene therapy vs Voxelotor",
    "n_target": 75,
    "duration_months": 24,
    "primary_endpoint": "VOC rate reduction \u226550% at 24 months",
    "secondary_endpoints": [
      "Hemoglobin level",
      "Transfusion independence",
      "Quality of life"
    ],
    "inclusion": {
      "min_age": 12,
      "max_age": 50,
      "required_acmg": [
        "Pathogenic"
      ],
      "required_gene": "HBB",
      "max_functional_status": 3,
      "min_eligibility_score": 0.55
    },
    "exclusion": {
      "ae_grade_cutoff": 4,
      "required_prior_treatment": true
    },
    "arm_allocation": {
      "Betibeglogene": 0.67,
      "Voxelotor": 0.33
    },
    "biomarker_response_threshold": 0.45
  },
  "TRIAL-NPC-001": {
    "disease": "Niemann-Pick Type C",
    "disease_group": "Rare metabolic",
    "phase": "Phase 2/3",
    "intervention": "Arimoclomol HSP inducer",
    "n_target": 50,
    "duration_months": 18,
    "primary_endpoint": "NPC-CSS score stabilization at 12 months",
    "secondary_endpoints": [
      "Oculomotor function",
      "Cerebellar ataxia",
      "Swallowing function"
    ],
    "inclusion": {
      "min_age": 4,
      "max_age": 45,
      "required_acmg": [
        "Pathogenic",
        "Likely pathogenic"
      ],
      "required_gene": "NPC1",
      "max_functional_status": 3,
      "min_eligibility_score": 0.5
    },
    "exclusion": {
      "ae_grade_cutoff": 3,
      "required_prior_treatment": true
    },
    "arm_allocation": {
      "Arimoclomol": 0.67,
      "Placebo": 0.33
    },
    "biomarker_response_threshold": 0.25
  },
  "TRIAL-LCA-001": {
    "disease": "Leber Congenital Amaurosis",
    "disease_group": "Rare ophthalmic",
    "phase": "Phase 3",
    "intervention": "Voretigene neparvovec gene therapy",
    "n_target": 40,
    "duration_months": 12,
    "primary_endpoint": "MLMT performance score improvement at 1 year",
    "secondary_endpoints": [
      "Full-field light sensitivity",
      "Visual acuity",
      "Visual field"
    ],
    "inclusion": {
      "min_age": 3,
      "max_age": 65,
      "required_acmg": [
        "Pathogenic",
        "Likely pathogenic"
      ],
      "required_gene": "CEP290",
      "max_functional_status": 2,
      "min_eligibility_score": 0.6
    },
    "exclusion": {
      "ae_grade_cutoff": 3,
      "required_prior_treatment": false
    },
    "arm_allocation": {
      "Voretigene": 0.67,
      "Sham-control": 0.33
    },
    "biomarker_response_threshold": 0.5
  },
  "TRIAL-CAH-001": {
    "disease": "Congenital Adrenal Hyperplasia",
    "disease_group": "Rare endocrine",
    "phase": "Phase 3",
    "intervention": "Crinecerfont (CRF1 receptor antagonist)",
    "n_target": 110,
    "duration_months": 24,
    "primary_endpoint": "Androstenedione normalization at 24 weeks",
    "secondary_endpoints": [
      "Cortisol sufficiency",
      "Corticosteroid dose reduction",
      "Growth velocity"
    ],
    "inclusion": {
      "min_age": 4,
      "max_age": 50,
      "required_acmg": [
        "Pathogenic",
        "Likely pathogenic"
      ],
      "required_gene": "CYP21A2",
      "max_functional_status": 2,
      "min_eligibility_score": 0.55
    },
    "exclusion": {
      "ae_grade_cutoff": 3,
      "required_prior_treatment": true
    },
    "arm_allocation": {
      "Crinecerfont": 0.67,
      "Placebo": 0.33
    },
    "biomarker_response_threshold": 0.4
  }
}