Upload folder using huggingface_hub

#1
Files changed (3) hide show
  1. README.md +59 -3
  2. human_intervals.tsv +0 -0
  3. mouse_intervals.tsv +0 -0
README.md CHANGED
@@ -1,3 +1,59 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - tabular-regression
5
+ tags:
6
+ - biology
7
+ - genomics
8
+ pretty_name: "Enformer Intervals"
9
+ size_categories:
10
+ - 10K<n<100K
11
+ ---
12
+
13
+ # Enformer Training Intervals
14
+
15
+ ## Dataset Summary
16
+ This dataset contains the specific genomic intervals used for training, validating, and testing the Enformer model, a deep learning architecture for predicting functional genomic tracks from DNA sequence. The intervals are provided for both human and mouse genomes.
17
+
18
+ - **Source Publication:** [Avsec, Ž., et al. "Effective gene expression prediction from sequence by integrating long-range interactions." Nat Methods 18, 1196–1203 (2021).](https://www.nature.com/articles/s41592-021-01252-x)
19
+ - **Genome Builds:**
20
+ - Human: hg38
21
+ - Mouse: mm10
22
+
23
+
24
+
25
+ ## Repository Content
26
+ The repository includes two tab-separated values (TSV) files:
27
+ 1. `human_intervals.tsv`: 38,171 genomic regions (excluding header).
28
+ 2. `mouse_intervals.tsv`: 33,521 genomic regions (excluding header).
29
+
30
+ ## Dataset Structure
31
+
32
+ ### Data Fields
33
+ Both files follow a standard genomic interval format:
34
+
35
+ | Column | Type | Description |
36
+ | :--- | :--- | :--- |
37
+ | `chrom` | string | Chromosome identifier (e.g., `chr18`, `chr4`) |
38
+ | `start` | int | Start coordinate of the interval |
39
+ | `end` | int | End coordinate of the interval |
40
+ | `split` | string | Data partition assignment (`train`, `test`, or `val`) |
41
+
42
+ ### Statistics
43
+ | File | Number of Regions | Genome Build |
44
+ | :--- | :--- | :--- |
45
+ | `human_intervals.tsv` | 38,171 | hg38 |
46
+ | `mouse_intervals.tsv` | 33,521 | mm10 |
47
+
48
+ ## Usage
49
+
50
+ ```python
51
+ from huggingface_hub import hf_hub_download
52
+ import pandas as pd
53
+
54
+ file_path = hf_hub_download(repo_id="Genentech/enformer-data", filename="human_intervals.tsv")
55
+ df_human = pd.read_csv(file_path, sep='\t')
56
+
57
+ file_path = hf_hub_download(repo_id="Genentech/enformer-data", filename="mouse_intervals.tsv")
58
+ df_mouse = pd.read_csv(file_path, sep='\t')
59
+ ```
human_intervals.tsv ADDED
The diff for this file is too large to render. See raw diff
 
mouse_intervals.tsv ADDED
The diff for this file is too large to render. See raw diff