File size: 1,311 Bytes
7d4ce9d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
822c0a4
7d4ce9d
 
 
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
---
# 1. Metadata Block
license: mit
task_categories:
- tabular-regression
tags:
- biology
- genomics
pretty_name: "Alzheimer's GWAS variants (hg19)"
size_categories:
- 1K<n<10K

# 2. Config & Split Management
configs:
- config_name: default
  data_files:
  - split: test
    path: "variants.csv"
---

# alzheimer's-variant-tutorial-data

## Dataset Summary
This dataset contains summary statistics for 1,000 genomic variants. Each row represents a single-nucleotide polymorphism (SNP) mapped to the hg19 reference genome.

## Dataset Structure

### Data Fields
Based on the header of `variants.csv`:

| Column | Type | Description |
| :--- | :--- | :--- |
| `snpid` | string | Unique identifier in `chr:pos_ref_alt` format |
| `chrom` | string | Chromosome (e.g., `chr6`) |
| `pos` | int | Genomic position (hg19) |
| `alt` | string | Alternate allele (effect allele) |
| `ref` | string | Reference allele (non-effect allele) |
| `rsid` | string | Reference SNP cluster ID |
| `pval` | float | P-value of the association |
| `beta` | float | Regression coefficient (effect size) |
| `se` | float | Standard error of the beta |

## Usage

```python
from datasets import load_dataset
dataset = load_dataset("Genentech/alzheimers-variant-tutorial-data", split="test")
df = dataset.to_pandas()
print(df.head())
```