Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- genetics
|
| 7 |
+
- LLM
|
| 8 |
+
- embeddings
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Variant Foundation Embeddings
|
| 12 |
+
Here we present the variant level embeddings for large-scale genetic analyis as described in 'Incorporating LLM Embeddings for Variation Across the Human Genome,' based on curated annotations using high quality functional data from FAVOR, ClinVar, and GWAS Catalog. We currently present two versions of embeddings for the 1.5 million genetic variant HapMap3 & MEGA datasets using OpenAI's text-embedding-3-large (3072-dimensional) and Qwen3-embedding-0.6B (1024-dimensional) embeddings, with others coming soon.
|
| 13 |
+
|
| 14 |
+
Genetic variants are identified with their chromosome, position (hg38 build), reference allele based on UKB coding, alternate allele based on UKB coding, and their respective LLM embeddings.
|
| 15 |
+
|
| 16 |
+
### Dataset Schema (OpenAI text-embedding-3-large)
|
| 17 |
+
|
| 18 |
+
| Field | Type | Description |
|
| 19 |
+
|-------------|------------|-------------|
|
| 20 |
+
| `chrom` | string | Chromosome (e.g., `"1"`, `"X"`) |
|
| 21 |
+
| `pos` |string | Base-pair position (hg38 coordinate system) |
|
| 22 |
+
| `ref_UKB` | string | Reference allele (A, C, G, T) |
|
| 23 |
+
| `alt_UKB` | string | Alternate allele (A, C, G, T) |
|
| 24 |
+
| `embedding` | list[float]| Embedding vector (dimension 3072, float32) |
|