File size: 1,322 Bytes
69685fe
 
 
 
 
 
 
5b0d0f4
69685fe
 
 
 
 
 
 
5b0d0f4
69685fe
 
 
 
 
 
 
 
5b0d0f4
 
 
 
 
 
 
 
 
 
69685fe
 
 
 
 
 
 
5b0d0f4
 
 
 
 
 
 
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
---
license: mit
task_categories:
- tabular-regression
tags:
- biology
- genomics
pretty_name: "GM12878 DNase regression data"
size_categories:
- 100K<n<1M
---

# GM12878_dnase-data

## Dataset Summary
This dataset contains genomic intervals used to train a regression model on GM12878 DNase data, described in Lal et al. 2025 (https://www.nature.com/articles/s41592-025-02868-z). Genome coordinates correspond to the hg38 reference genome.

## Repository Content
The repository includes one BED file and one Jupyter notebook:
1. `intervals.bed`: Genomic intervals stored in BED format.
2. `1_process_GM12878_data.ipynb`: Jupyter notebook containing the preprocessing steps used to generate the `intervals.bed` file.

## Dataset Structure

### Statistics
- **Number of intervals:** 435,055
- **Interval length:** 2,114 bp (all intervals)
- **Genome build:** hg38

### Intervals file (`intervals.bed`)
BED format (tab-separated). There are three columns with no header:
- Chromosome name
- Start position
- End position

## Usage

```python
from huggingface_hub import hf_hub_download
import pandas as pd

file_path = hf_hub_download(
    repo_id="Genentech/GM12878_dnase-data",
    filename="intervals.bed",
    repo_type="dataset"
)
df = pd.read_csv(file_path, sep='\t', header=None, names=['chrom', 'start', 'end'])
```