gongjing commited on
Commit
e090c34
·
verified ·
1 Parent(s): c0a2e86

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +52 -0
README.md CHANGED
@@ -6,6 +6,32 @@ Niche is the microenvironment in which each cell exists and is able to keep its
6
 
7
  The task is to predict niche type of each cell given spatial expression data (in total 6 types). The raw dataset is from [human liver sample](https://nanostring.com/products/cosmx-spatial-molecular-imager/ffpe-dataset/human-liver-rna-ffpe-dataset), including a healthy sample slide. We collected the data and randomly split the total set into train, valid and split.
8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
 
10
  ## cell density
11
 
@@ -13,6 +39,32 @@ The task is to predict neighbor cell number of a target cell given the expressio
13
 
14
  The raw dataset is from [human liver sample](https://nanostring.com/products/cosmx-spatial-molecular-imager/ffpe-dataset/human-liver-rna-ffpe-dataset), including a healthy and tumor sample slide. We collected the data and curated ground truth neighbor number as in [Schaar et al.](https://www.biorxiv.org/content/10.1101/2024.04.15.589472v2). Then we randomly split the total set into train, valid and split.
15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  ## other files
17
 
18
  `scRNA_genename_and_index.tsv`: gene name and index corresponds to .h5ad file
 
6
 
7
  The task is to predict niche type of each cell given spatial expression data (in total 6 types). The raw dataset is from [human liver sample](https://nanostring.com/products/cosmx-spatial-molecular-imager/ffpe-dataset/human-liver-rna-ffpe-dataset), including a healthy sample slide. We collected the data and randomly split the total set into train, valid and split.
8
 
9
+ Each `.h5ad` file contains spatial coordinate information (`x`, `y`) and niche type (`niche_label`). The obs `niche` is exact name and `niche_label` is corresponding name index (this is input label column for running modelgenerator).
10
+
11
+ ```bash
12
+ >>> import anndata as ad
13
+ >>> file = 'niche_type_classification/cosmx_liver_for_celltype_niche.test.h5ad'
14
+ >>> adata = ad.read_h5ad(file)
15
+ >>> adata
16
+ AnnData object with n_obs × n_vars = 34573 × 19264
17
+ obs: 'cellType', 'niche', 'split', 'x', 'y', 'cellType_label', 'niche_label'
18
+ >>> adata.obs
19
+ cellType niche split x y cellType_label niche_label
20
+ obs_id
21
+ c_1_103_1 Hep.5 Zone_2b test 10.25828 9.73440 1 0
22
+ c_1_103_10 Hep.6 Zone_3a test 10.61444 9.73356 7 2
23
+ c_1_103_100 Hep.1 Zone_3a test 10.57556 9.67620 3 2
24
+ c_1_103_1000 Hep.5 Zone_2a test 10.64528 9.24828 1 1
25
+ c_1_103_1001 Hep.4 Zone_2b test 10.70828 9.24180 0 0
26
+ ... ... ... ... ... ... ... ...
27
+ c_1_99_995 Hep.5 Zone_2a test 8.24356 9.31284 1 1
28
+ c_1_99_996 Hep.5 Zone_2b test 8.28724 9.31428 1 0
29
+ c_1_99_997 Hep.4 Zone_2a test 8.41696 9.31512 0 1
30
+ c_1_99_998 Hep.4 Zone_2b test 8.57044 9.31524 0 0
31
+ c_1_99_999 Inflammatory.macrophages Zone_2a test 8.25976 9.31596 9 1
32
+
33
+ [34573 rows x 7 columns]
34
+ ```
35
 
36
  ## cell density
37
 
 
39
 
40
  The raw dataset is from [human liver sample](https://nanostring.com/products/cosmx-spatial-molecular-imager/ffpe-dataset/human-liver-rna-ffpe-dataset), including a healthy and tumor sample slide. We collected the data and curated ground truth neighbor number as in [Schaar et al.](https://www.biorxiv.org/content/10.1101/2024.04.15.589472v2). Then we randomly split the total set into train, valid and split.
41
 
42
+ Each `.h5ad` file contains spatial coordinate information (`x`, `y`) and density value (`density`).
43
+
44
+ ```bash
45
+ >>> file = 'cell_density/xenium_lung_for_density.test.h5ad'
46
+ >>> adata = ad.read_h5ad(file)
47
+ >>> adata
48
+ AnnData object with n_obs × n_vars = 124058 × 19264
49
+ obs: 'density', 'split', 'x', 'y'
50
+ >>> adata.obs
51
+ density split x y
52
+ cell_id
53
+ aaaaaahk-1-0 7.0 test 497.832559 855.178702
54
+ aaaandcd-1-0 21.0 test 1732.162622 856.926639
55
+ aaabfmfn-1-0 21.0 test 1718.817560 853.211935
56
+ aaabmojc-1-0 24.0 test 1724.924030 860.927252
57
+ aaadaeog-1-0 19.0 test 2248.489685 862.145029
58
+ ... ... ... ... ...
59
+ oilcikef-1-1 4.0 test 10815.658984 8476.788525
60
+ oilfbafk-1-1 5.0 test 11116.310791 8524.649170
61
+ oilfpbmk-1-1 6.0 test 11128.255615 8538.087305
62
+ oilgfkkb-1-1 2.0 test 11051.862695 8556.525830
63
+ oilgkofb-1-1 4.0 test 11085.344727 8522.173047
64
+
65
+ [124058 rows x 4 columns]
66
+ ```
67
+
68
  ## other files
69
 
70
  `scRNA_genename_and_index.tsv`: gene name and index corresponds to .h5ad file