Datasets:
docs: add Hugo_symbols.tsv to file table + molecular tags
Browse files
README.md
CHANGED
|
@@ -7,6 +7,8 @@ tags:
|
|
| 7 |
- pathology
|
| 8 |
- radiology
|
| 9 |
- clinical
|
|
|
|
|
|
|
| 10 |
- oncology
|
| 11 |
- whole-slide-image
|
| 12 |
- dicom
|
|
@@ -18,9 +20,9 @@ pretty_name: HoneyBee Sample Files
|
|
| 18 |
|
| 19 |
# HoneyBee Sample Files
|
| 20 |
|
| 21 |
-
Sample data for the [HoneyBee](https://github.com/Lab-Rasool/HoneyBee) framework — a scalable, modular toolkit for multimodal AI in oncology.
|
| 22 |
|
| 23 |
-
These files are used by the HoneyBee example notebooks
|
| 24 |
|
| 25 |
**Paper**: [HoneyBee: A Scalable Modular Framework for Creating Multimodal Oncology Datasets with Foundational Embedding Models](https://arxiv.org/abs/2405.07460)
|
| 26 |
**Package**: [`pip install honeybee-ml`](https://pypi.org/project/honeybee-ml/)
|
|
@@ -32,6 +34,7 @@ These files are used by the HoneyBee example notebooks to demonstrate clinical,
|
|
| 32 |
| `sample.PDF` | Clinical | 70 KB | De-identified clinical report (PDF) for NLP extraction |
|
| 33 |
| `sample.svs` | Pathology | 146 MB | Whole-slide image (Aperio SVS) for tissue detection, patch extraction, and embedding |
|
| 34 |
| `CT/` | Radiology | 105 MB | CT scan with 2 DICOM series (205 slices total) for radiology preprocessing |
|
|
|
|
| 35 |
|
| 36 |
### CT Directory Structure
|
| 37 |
|
|
@@ -47,4 +50,12 @@ CT/
|
|
| 47 |
Tripathi, A., Waqas, A., Schabath, M.B. et al. HONeYBEE: enabling scalable multimodal AI in
|
| 48 |
oncology through foundation model-driven embeddings. npj Digit. Med. 8, 622 (2025).
|
| 49 |
https://doi.org/10.1038/s41746-025-02003-4
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
```
|
|
|
|
| 7 |
- pathology
|
| 8 |
- radiology
|
| 9 |
- clinical
|
| 10 |
+
- molecular
|
| 11 |
+
- multi-omics
|
| 12 |
- oncology
|
| 13 |
- whole-slide-image
|
| 14 |
- dicom
|
|
|
|
| 20 |
|
| 21 |
# HoneyBee Sample Files
|
| 22 |
|
| 23 |
+
Sample data and resource files for the [HoneyBee](https://github.com/Lab-Rasool/HoneyBee) framework — a scalable, modular toolkit for multimodal AI in oncology.
|
| 24 |
|
| 25 |
+
These files are used by the HoneyBee example notebooks (clinical, pathology, radiology) and by HoneyBee's molecular processing code at runtime (`Hugo_symbols.tsv` is fetched on first use of DNA mutation preprocessing).
|
| 26 |
|
| 27 |
**Paper**: [HoneyBee: A Scalable Modular Framework for Creating Multimodal Oncology Datasets with Foundational Embedding Models](https://arxiv.org/abs/2405.07460)
|
| 28 |
**Package**: [`pip install honeybee-ml`](https://pypi.org/project/honeybee-ml/)
|
|
|
|
| 34 |
| `sample.PDF` | Clinical | 70 KB | De-identified clinical report (PDF) for NLP extraction |
|
| 35 |
| `sample.svs` | Pathology | 146 MB | Whole-slide image (Aperio SVS) for tissue detection, patch extraction, and embedding |
|
| 36 |
| `CT/` | Radiology | 105 MB | CT scan with 2 DICOM series (205 slices total) for radiology preprocessing |
|
| 37 |
+
| `Hugo_symbols.tsv` | Molecular | 128 KB | Hugo Gene Symbol vocabulary (17,312 symbols, one per line, no header) used by SeNMo's DNA mutation preprocessing. Ported from [lab-rasool/SeNMo](https://github.com/lab-rasool/SeNMo). Fetched automatically by `honeybee.processors.molecular.preprocessing.preprocess_dna_mutation()` on first use. |
|
| 38 |
|
| 39 |
### CT Directory Structure
|
| 40 |
|
|
|
|
| 50 |
Tripathi, A., Waqas, A., Schabath, M.B. et al. HONeYBEE: enabling scalable multimodal AI in
|
| 51 |
oncology through foundation model-driven embeddings. npj Digit. Med. 8, 622 (2025).
|
| 52 |
https://doi.org/10.1038/s41746-025-02003-4
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
If your work uses `Hugo_symbols.tsv` (the molecular sample), also cite the SeNMo paper that originally curated this vocabulary:
|
| 56 |
+
|
| 57 |
+
```bibtex
|
| 58 |
+
Waqas, A., Tripathi, A., Ahmed, S. et al. Self-Normalizing Multi-Omics Neural Network for
|
| 59 |
+
Pan-Cancer Prognostication. Int. J. Mol. Sci. 26, 7358 (2025).
|
| 60 |
+
https://doi.org/10.3390/ijms26157358
|
| 61 |
```
|