File size: 620 Bytes
9b22bc2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: mit
tags:
  - dna
  - variant-effect-prediction
  - biology
  - genomics
---
# gnomAD variants
For more information check out our [paper](https://doi.org/10.1101/2023.10.10.561776) and [repository](https://github.com/songlab-cal/gpn).

## Usage
* Pandas
```python
import pandas as pd
df = pd.read_parquet("hf://datasets/songlab/gnomad/test.parquet")
```
* Polars
```python
import polars as pl
df = pl.read_parquet("https://huggingface.co/datasets/songlab/gnomad/resolve/main/test.parquet")
```
* Datasets
```python
from datasets import load_dataset
dataset = load_dataset("songlab/gnomad", split="test")
```