Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -34,6 +34,44 @@ Each `.bw` file contains:
|
|
| 34 |
- Header string (variable length)
|
| 35 |
- Packed 2-bit bases
|
| 36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
## Datasets
|
| 38 |
|
| 39 |
### cancer-genes/
|
|
@@ -158,9 +196,7 @@ Code: MPL-2.0
|
|
| 158 |
| chrY | 57,227,415 | 14 MB |
|
| 159 |
| chrM | 16,569 | 4.1 KB |
|
| 160 |
|
| 161 |
-
|
| 162 |
-
|
| 163 |
-
Or reproduce locally:
|
| 164 |
|
| 165 |
```bash
|
| 166 |
# Download and convert (requires ~4GB disk)
|
|
|
|
| 34 |
- Header string (variable length)
|
| 35 |
- Packed 2-bit bases
|
| 36 |
|
| 37 |
+
## Tools
|
| 38 |
+
|
| 39 |
+
### `bw` -- DNA ripgrep
|
| 40 |
+
|
| 41 |
+
Install the [Bitwise](https://github.com/forkjoin-ai/bitwise) CLI to search these datasets:
|
| 42 |
+
|
| 43 |
+
```bash
|
| 44 |
+
cargo install --path . # from the bitwise repo
|
| 45 |
+
|
| 46 |
+
# Search for a pattern across a gene
|
| 47 |
+
bw grep GGTGGCGTAGGC cancer-genes/fasta/KRAS.fasta
|
| 48 |
+
|
| 49 |
+
# Count mutations between reference and tumor
|
| 50 |
+
bw count reference.fasta tumor.fasta
|
| 51 |
+
|
| 52 |
+
# Compression stats
|
| 53 |
+
bw stats cancer-genes/fasta/BRCA1.fasta
|
| 54 |
+
```
|
| 55 |
+
|
| 56 |
+
Search speed: **90 million bases per second** on a single CPU core.
|
| 57 |
+
|
| 58 |
+
### Aeon FlowFrame Protocol
|
| 59 |
+
|
| 60 |
+
These datasets stream natively as [Aeon FlowFrames](https://github.com/forkjoin-ai/aeon-flux):
|
| 61 |
+
|
| 62 |
+
```
|
| 63 |
+
stream_id = chromosome (1-25)
|
| 64 |
+
sequence = genomic position
|
| 65 |
+
flags = FORK | FOLD | VENT (structure type)
|
| 66 |
+
payload = 2-bit packed bases
|
| 67 |
+
```
|
| 68 |
+
|
| 69 |
+
Wire = storage = memory. No serialization boundary.
|
| 70 |
+
|
| 71 |
+
### helix.repair
|
| 72 |
+
|
| 73 |
+
Search these datasets live at **[helix.repair](https://helix.repair)** -- a DNA topology search engine powered by Bitwise encoding and 402 Lean theorems.
|
| 74 |
+
|
| 75 |
## Datasets
|
| 76 |
|
| 77 |
### cancer-genes/
|
|
|
|
| 196 |
| chrY | 57,227,415 | 14 MB |
|
| 197 |
| chrM | 16,569 | 4.1 KB |
|
| 198 |
|
| 199 |
+
**Too large for GitHub.** Reproduce locally:
|
|
|
|
|
|
|
| 200 |
|
| 201 |
```bash
|
| 202 |
# Download and convert (requires ~4GB disk)
|