avantikalal commited on
Commit
8be8ceb
·
verified ·
1 Parent(s): 2a0e2fc

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. .gitattributes +1 -0
  2. README.md +61 -3
  3. fragment_file.bed +3 -0
  4. peak_file.narrowPeak +0 -0
.gitattributes CHANGED
@@ -57,3 +57,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
60
+ fragment_file.bed filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,3 +1,61 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - tabular-regression
5
+ tags:
6
+ - biology
7
+ - genomics
8
+ pretty_name: "gReLU tutorial 3 dataset (Microglia scATAC-seq)"
9
+ size_categories:
10
+ - 10K<n<100K
11
+ configs:
12
+ - config_name: peaks
13
+ data_files:
14
+ - split: train
15
+ path: "peak_file.narrowPeak"
16
+ - config_name: fragments
17
+ data_files:
18
+ - split: train
19
+ path: "fragment_file.bed"
20
+ ---
21
+
22
+ # tutorial-3-data (Microglia scATAC pseudobulk)
23
+
24
+ ## Dataset Summary
25
+ This dataset contains pseudobulk scATAC-seq data for human microglia, derived from the study by Corces et al. (2020) (https://www.nature.com/articles/s41588-020-00721-x). Genome coordinates correspond to the hg38 reference genome. This data is used in tutorial 3 of gReLU (https://github.com/Genentech/gReLU/blob/main/docs/tutorials/3_train.ipynb).
26
+
27
+ ## Dataset Structure
28
+
29
+ The dataset is divided into two configurations: `peaks` and `fragments`.
30
+
31
+ ### 1. Peaks Configuration (`peak_file.narrowPeak`)
32
+ Standard ENCODE narrowPeak format (tab-separated).
33
+ - `chrom`: Chromosome / Contig name.
34
+ - `start`: 0-based start position.
35
+ - `end`: End position.
36
+ - `name`: Peak identifier.
37
+ - `score`: Integer score for display.
38
+ - `strand`: Orientation.
39
+ - `signalValue`: Measurement of overall enrichment.
40
+ - `pValue`: Statistical significance (-log10).
41
+ - `qValue`: False discovery rate (-log10).
42
+ - `peak`: Point-source (summit) relative to start.
43
+
44
+ ### 2. Fragments Configuration (`fragment_file.bed`)
45
+ Standard BED6 format representing individual ATAC-seq fragments.
46
+ - `chrom`: Chromosome.
47
+ - `start`: Start position.
48
+ - `end`: End position.
49
+ - `source`: Sequencing run identifier (e.g., `SRR11442505`).
50
+ - `score`: Placeholder (0).
51
+ - `strand`: Orientation.
52
+
53
+ ## Usage
54
+
55
+ ### Loading Peaks
56
+ ```python
57
+ from datasets import load_dataset
58
+
59
+ dataset = load_dataset("Genentech/tutorial-3-data", "peaks", split="train", delimiter="\t")
60
+ dataset = load_dataset("Genentech/tutorial-3-data", "fragments", split="train", delimiter="\t")
61
+ ```
fragment_file.bed ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36fc2c3a6f2ee31636d7ae4711f92ecc0ced0be6c1c4c7ee3ce3871852603771
3
+ size 2310456946
peak_file.narrowPeak ADDED
The diff for this file is too large to render. See raw diff