Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# STimage-1K4M Dataset
|
2 |
+
|
3 |
+
Welcome to the STimage-1K4M Dataset repository. This dataset is designed to foster research in the field of spatial transcriptomics, combining high-resolution histopathology images with detailed gene expression data.
|
4 |
+
|
5 |
+
![teaser](aux/f1.png "teaser")
|
6 |
+
|
7 |
+
|
8 |
+
## Dataset Description
|
9 |
+
|
10 |
+
STimage-1K4M consists of 1,149 spatial transcriptomics slides, totaling over 4 million spots with paired gene expression data. This dataset includes:
|
11 |
+
|
12 |
+
- Images.
|
13 |
+
- Gene expression profiles matched with high-resolution histopathology images.
|
14 |
+
- Spatial coordinates for each spot.
|
15 |
+
|
16 |
+
## Data structure
|
17 |
+
The data structure is organized as follows:
|
18 |
+
|
19 |
+
```bash
|
20 |
+
βββ annotation # Pathologist annotation
|
21 |
+
βββ meta # Test files (alternatively `spec` or `tests`)
|
22 |
+
β βββ bib.txt # the bibtex for all studies with pmid included in the dataset
|
23 |
+
β βββ meta_all_gene.csv # The meta information
|
24 |
+
βββ ST # Include all data for tech: Spatial Transcriptomics
|
25 |
+
β βββ coord # Include the spot coordinates & spot radius of each slide
|
26 |
+
β βββ gene_exp # Include the gene expression of each slide
|
27 |
+
β βββ image # Include the image each slide
|
28 |
+
βββ Visium # Include all data for tech: Visium, same structure as ST
|
29 |
+
βββ VisiumHD # Include all data for tech: VisiumHD, same structure as ST
|
30 |
+
```
|
31 |
+
## Repository structure
|
32 |
+
|
33 |
+
The code for data processing and reproducing evaluation result in the paper are in [Document](https://jiawenchenn.github.io/STimage-1K4M/docs/01-make-meta).
|
34 |
+
|
35 |
+
## Acknowledgement
|
36 |
+
The fine-tuning and evaluation codes borrows heavily from [CLIP](https://github.com/openai/CLIP/issues/83) and [PLIP](https://github.com/PathologyFoundation/plip/).
|
37 |
+
|
38 |
+
## Citation
|
39 |
+
|
40 |
+
```
|
41 |
+
@misc{chen2024stimage1k4m,
|
42 |
+
title={STimage-1K4M: A histopathology image-gene expression dataset for spatial transcriptomics},
|
43 |
+
author={Jiawen Chen and Muqing Zhou and Wenrong Wu and Jinwei Zhang and Yun Li and Didong Li},
|
44 |
+
year={2024},
|
45 |
+
eprint={2406.06393},
|
46 |
+
archivePrefix={arXiv},
|
47 |
+
primaryClass={cs.CV}
|
48 |
+
}
|
49 |
+
```
|
50 |
+
|
51 |
+
## License
|
52 |
+
|
53 |
+
All code is licensed under the MIT License - see the LICENSE.md file for details.
|