Variant Input

Un variant par ligne — format : chrN:POS:REF>ALT (ex: chr17:43094692:G>A)

📂 Importer un fichier VCF
Cliquez ou glissez un fichier .vcf / .txt

5 variants ClinVar — BRCA1 / BRCA2 / TP53 — 3 pathogènes + 2 bénins

GèneChrPosRefAltAttendu
BRCA11743094692GAPathogenic
BRCA21332340300ATPathogenic
TP53177675088CTPathogenic
BRCA11743115726TCBenign
BRCA21332370402CTBenign

Lancez une Variant Analysis (onglet 1) pour peupler cette vue.

DeltaVar Model Architecture
┌──────────────────────────────────────────────────────────────────┐
│                    DeltaVar Architecture                            │
├──────────────────────────────────────────────────────────────────┤
│                                                                  │
│  Input: WES variants   chrN:pos:REF>ALT                         │
│              │                                                   │
│              ▼                                                   │
│  Ensembl REST API  →  ±128 bp DNA context                        │
│              │              │                                    │
│          ref_seq         alt_seq                                 │
│              │              │                                    │
│              ▼              ▼                                    │
│  ┌───────────────────────────────────┐                          │
│  │  Nucleotide Transformer v2 (50M)  │  InstaDeepAI / EMBL-EBI  │
│  │  6-mer tokenisation               │                          │
│  │  CLS embedding  → [512-dim]       │                          │
│  └───────────────────────────────────┘                          │
│              │              │                                    │
│         embed(ref)      embed(alt)                               │
│              └──────┬───────┘                                    │
│                     ▼                                            │
│           Δ = embed(alt) − embed(ref)   [512-dim]               │
│                     │                                            │
│                     ▼                                            │
│  ┌───────────────────────────────────┐                          │
│  │  DeltaVar TransformerEncoder         │                          │
│  │  Linear(512 → 256)                │                          │
│  │  [CLS_token] ++ variant_tokens    │                          │
│  │  Pre-LN TransformerEncoder 2L 4H  │  d_ff = 1024            │
│  └───────────────────────────────────┘                          │
│                     │                                            │
│                     ▼                                            │
│   LayerNorm → Linear → GELU → Dropout → Linear(1) → σ          │
│                     │                                            │
│                     ▼                                            │
│           Pathogenicity ∈ [0, 1]                                │
│                                                                  │
│   XAI:  gradient × Δ attribution  →  per-variant importance     │
│                                                                  │
└──────────────────────────────────────────────────────────────────┘
NT backboneNT-v2-50M (InstaDeepAI)
NT embedding dim512
Δ = embed(alt)−embed(ref)512-dim
DeltaVar hidden dim256
Transformer layers2
Attention heads4
Feed-forward dim1 024
DNA context window±128 bp
XAI methodGradient × input