timmers commited on
Commit
bcdf443
·
verified ·
1 Parent(s): 70f5e45

Upload genomic_scorer.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. genomic_scorer.py +4 -2
genomic_scorer.py CHANGED
@@ -26,9 +26,11 @@ PATHO_THRESH = 0.564 # AlphaMissense likely-pathogenic cut (Cheng et al., Scien
26
  # Validated VEP performance on REAL ClinVar variants (coords verified vs GRCh37).
27
  # Scaled benchmark: 451 variants across 20 rare-disease genes (236 path/215 benign);
28
  # see benchmark/results/evo2_bench_multigene.json. (FBN1-only pilot: n=30.)
29
- VEP_VALIDATION = {"benchmark": "ClinVar missense, 20 genes", "n": 451,
30
- "alphamissense_auroc": 0.928, "evo2_7b_auroc": 0.816,
 
31
  "evo2_per_gene_median_auroc": 0.854,
 
32
  "fbn1_pilot": {"n": 30, "alphamissense_auroc": 0.96, "evo2_7b_auroc": 0.88}}
33
 
34
 
 
26
  # Validated VEP performance on REAL ClinVar variants (coords verified vs GRCh37).
27
  # Scaled benchmark: 451 variants across 20 rare-disease genes (236 path/215 benign);
28
  # see benchmark/results/evo2_bench_multigene.json. (FBN1-only pilot: n=30.)
29
+ VEP_VALIDATION = {"missense_benchmark": "ClinVar, 20 genes, n=451",
30
+ "alphamissense_auroc": 0.928, # missense
31
+ "evo2_7b_auroc": 0.816, # coding/global, zero-shot
32
  "evo2_per_gene_median_auroc": 0.854,
33
+ "alphagenome_splice_auroc": 0.734, # splice (ClinVar splice, n=40)
34
  "fbn1_pilot": {"n": 30, "alphamissense_auroc": 0.96, "evo2_7b_auroc": 0.88}}
35
 
36