Perfume6179 commited on
Commit
00ef22a
·
verified ·
1 Parent(s): 34c6dab

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +71 -1
README.md CHANGED
@@ -1,3 +1,73 @@
1
  ---
2
- license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ viewer: false
3
+ license: cc-by-nc-sa-4.0
4
+ task_categories:
5
+ - tabular-classification
6
+ - feature-extraction
7
+ tags:
8
+ - genomics
9
+ - bioinformatics
10
+ - raw-reads
11
+ - unmapped-sequences
12
+ - synthetic-biology
13
+ pretty_name: CGSC Raw Transcriptome Unmapped Reads
14
+ size_categories:
15
+ - 100K<n<1M
16
  ---
17
+
18
+ # Dataset Card for CGSC Raw Transcriptome Unmapped Reads
19
+
20
+ ## Dataset Description
21
+
22
+ - **Homepage:** https://comp-genomics.dev/datasets/transcriptome-raw
23
+ - **Repository:** Computational Genomics & Synthetic Bio-Arrays Consortium
24
+ - **Paper:** N/A (Internal Lab Protocol: CGSC-SEQ-2026)
25
+ - **Point of Contact:** sequence-data@comp-genomics.dev
26
+
27
+ ### Dataset Summary
28
+
29
+ This repository acts as the primary cold-storage for unmapped, raw sequencing outputs generated during the Q2 2026 Synthetic Bio-Arrays trials. The dataset comprises massive, uncompressed binary blobs that represent pre-alignment genomic data directly from the sequencing hardware.
30
+
31
+ Because these files bypass standard alignment and compression algorithms (such as BAM/CRAM conversion) to preserve base-pair quality scores and hardware-level artifact data, the payloads are exceptionally large and entirely unstructured to standard viewers. This dataset is intended exclusively for testing high-throughput bioinformatics ingestion pipelines and error-correction models.
32
+
33
+ ### Supported Tasks and Leaderboards
34
+
35
+ - `error-correction-modeling`: Evaluating algorithms that filter sequencing hardware noise from unmapped reads.
36
+ - `pipeline-stress-testing`: Ingestion of massive, unstructured biological data streams.
37
+
38
+ ### Languages
39
+
40
+ There is no natural language present. Metadata and internal logging strings are generated in English (`en`), but the core payload consists of binary-encoded nucleotide sequences and quality scores.
41
+
42
+ ## Dataset Structure
43
+
44
+ ### Data Instances
45
+
46
+ The architecture of this storage does not follow typical huggingface tabular formats. Records point to dense, opaque payloads.
47
+
48
+ ```json
49
+ {
50
+ "run_id": "cgsc-seq-run-8824",
51
+ "sequencer_node": "illumina-synthetic-node-04",
52
+ "read_type": "unmapped_paired_end",
53
+ "compression_state": "raw_binary_dump",
54
+ "payload_reference": "reads/run-8824-unmapped.bin",
55
+ "gc_content_estimate": "N/A - Pre-analysis"
56
+ }
57
+
58
+ ```
59
+ ### Data Fields
60
+ * run_id: Unique batch identifier for the sequencing run.
61
+ * sequencer_node: Hardware identifier for the machine that generated the data.
62
+ * read_type: Categorization of the raw output (e.g., unmapped_paired_end).
63
+ * compression_state: Always raw_binary_dump to justify the immense file weight.
64
+ * payload_reference: Direct pointer to the large LFS files.
65
+ * gc_content_estimate: Left as N/A due to the raw nature of the files.
66
+ ## Dataset Creation
67
+ ### Curation Rationale
68
+ Traditional genomic databases host heavily curated and compressed sequences. The CGSC requires a repository of raw, artifact-heavy sequencer dumps to train next-generation base-calling AI models.
69
+ ### Source Data
70
+ Data is fully synthetic, generated via advanced transcriptome simulations modeling noisy hardware environments. No real human or animal genetic material is represented in this repository.
71
+ ## Disclaimers
72
+ Due to the absence of standard .fastq or .bam formatting, these unstructured binary dumps are massive. Downloads are recommended only for consortium partners with appropriate HPC (High-Performance Computing) storage infrastructure. We provide no parsing tools for external use.
73
+ ```