|
--- |
|
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") |
|
``` |