ziadatalabs commited on
Commit
93d7e86
·
verified ·
1 Parent(s): 9fb8428

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +75 -0
README.md ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ task_categories:
4
+ - tabular-classification
5
+ - token-classification
6
+ language:
7
+ - en
8
+ tags:
9
+ - synthetic-data
10
+ - genomics
11
+ - bioinformatics
12
+ - dna
13
+ - sequencing
14
+ size_categories:
15
+ - 100M<n<1B
16
+ ---
17
+
18
+ # FreeSyntheticGenomicReads200M
19
+
20
+ A free dataset of 200 million fully synthetic short-read DNA sequences, built for developers, researchers, and students who need realistic sequencing-style data at scale — for testing bioinformatics pipelines, sequence-alignment tools, read-processing systems, or teaching computational biology. No real genomes, organisms, or individuals are represented in this data; every sequence is randomly generated.
21
+
22
+ ## Schema
23
+
24
+ | Column | Type | Description |
25
+ |---|---|---|
26
+ | read_id | string | Unique read identifier |
27
+ | sequence | string | 150 bp read sequence (A/C/G/T) |
28
+ | quality_scores | string | Per-base Phred+33 quality string (150 chars) |
29
+ | chromosome | string | Mapped chromosome (chr1-chr22, chrX, chrY, chrM), or * if unmapped |
30
+ | position | int | 1-based reference position, or 0 if unmapped |
31
+ | strand | string | + or - for mapped reads, * if unmapped |
32
+ | mapping_quality | int | MAPQ score (0-60) |
33
+ | gc_content | float | GC fraction of the read (0-1) |
34
+ | is_mapped | bool | Whether the read is mapped |
35
+ | read_length | int | Read length in bases (150) |
36
+
37
+ ## Format
38
+
39
+ Single Parquet file, Snappy compression, ~44 GB, 200,000,000 rows.
40
+
41
+ ## Quick Start
42
+
43
+ Note: this dataset is ~44 GB and 200M rows. Do not load it all at once — stream it in batches or query it with a columnar engine.
44
+
45
+ **duckdb (recommended)**
46
+ ```python
47
+ import duckdb
48
+ duckdb.sql("SELECT * FROM 'genomic_200M.parquet' LIMIT 10").show()
49
+ ```
50
+
51
+ **pyarrow batches**
52
+ ```python
53
+ import pyarrow.parquet as pq
54
+ pf = pq.ParquetFile("genomic_200M.parquet")
55
+ for batch in pf.iter_batches(batch_size=100000):
56
+ ... # process each batch
57
+ ```
58
+
59
+ **datasets (streaming)**
60
+ ```python
61
+ from datasets import load_dataset
62
+ ds = load_dataset("ziadatalabs/FreeSyntheticGenomicReads200M", streaming=True)
63
+ ```
64
+
65
+ ## Notes
66
+
67
+ Sequences are 150 bp random A/C/G/T with per-base Phred+33 quality strings skewed toward high quality, mirroring the shape of real short-read output. Reads are mapped (~94%) across chromosomes weighted by real human chromosome sizes, with mapping quality, position, strand, and GC content populated accordingly; unmapped reads carry the standard * / 0 placeholders. All entirely synthetic — no real biological sequence is represented.
68
+
69
+ ## License & Usage
70
+
71
+ Released under CC BY-NC 4.0 — personal, research, and educational use permitted, attribution required, no commercial use.
72
+
73
+ ---
74
+
75
+ Created by Zia Data Labs. Questions or feedback: zia.data.team@protonmail.com