jiawennnn commited on
Commit
3d9c7e7
β€’
1 Parent(s): 08d418b

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -0
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.