wli13 commited on
Commit
b3aee98
·
verified ·
1 Parent(s): 6d28001

Publish HistAgent tutorial and Agent Module data

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +1 -0
  2. README.md +69 -0
  3. chat/config.example.env +3 -0
  4. chat/slice_images/GSE175540_GSM5924034.jpg +3 -0
  5. chat/slice_images/GSE175540_GSM5924036.jpg +3 -0
  6. chat/slice_images/GSE175540_GSM5924039.jpg +3 -0
  7. chat/spots.jsonl +3 -0
  8. manifest.json +263 -0
  9. tutorials/fig2b_pcc.json +1 -0
  10. tutorials/fig2b_spots.json +0 -0
  11. tutorials/fig2c_metrics.json +1 -0
  12. tutorials/fig2c_spots.json +0 -0
  13. tutorials/fig2e.json +1 -0
  14. tutorials/fig3b.json +1 -0
  15. tutorials/fig3c.json +0 -0
  16. tutorials/fig3d.json +1 -0
  17. tutorials/fig4c_brca.json +1 -0
  18. tutorials/fig4c_stad.json +0 -0
  19. tutorials/fig4d_summary.json +1 -0
  20. tutorials/fig5_query_sets.json +1 -0
  21. tutorials/fig5_summary.json +1 -0
  22. tutorials/fig5_units.json +0 -0
  23. tutorials/figure2b_expression_for_pcc.csv +0 -0
  24. tutorials/figure3_examples.json +156 -0
  25. tutorials/figure3_examples.npz +3 -0
  26. tutorials/figure3b_rank_metrics_per_section.csv +406 -0
  27. tutorials/figure4_abmil_fold00.pt +3 -0
  28. tutorials/figure4_artifact_sample.json +88 -0
  29. tutorials/figure4_embedding_sample.npz +3 -0
  30. tutorials/figure4_survival_oof.csv +844 -0
  31. tutorials/figure4_wsi/brca_roi.png +3 -0
  32. tutorials/figure4_wsi/brca_roi_region.png +3 -0
  33. tutorials/figure4_wsi/brca_roi_score.png +3 -0
  34. tutorials/figure4_wsi/brca_wsi.png +3 -0
  35. tutorials/figure4_wsi/brca_wsi_score.png +3 -0
  36. tutorials/figure4_wsi/stad1_region.png +3 -0
  37. tutorials/figure4_wsi/stad1_score.png +3 -0
  38. tutorials/figure4_wsi/stad1_wsi.png +3 -0
  39. tutorials/figure4_wsi/stad2_region.png +3 -0
  40. tutorials/figure4_wsi/stad2_score.png +3 -0
  41. tutorials/figure4_wsi/stad2_wsi.png +3 -0
  42. tutorials/figure5_embedding_queries.json +118 -0
  43. tutorials/figure5_embedding_subset.csv +0 -0
  44. tutorials/figure5_embedding_subset.npz +3 -0
  45. tutorials/figure5_he_query_brain_context.png +3 -0
  46. tutorials/figure5_he_query_brain_local.png +3 -0
  47. tutorials/figure5_he_query_breast.png +3 -0
  48. tutorials/figure5_he_query_breast_context.png +3 -0
  49. tutorials/figure5_he_query_breast_local.png +3 -0
  50. tutorials/quickstart_expression_maps.json +547 -0
.gitattributes CHANGED
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
+ chat/spots.jsonl filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: HistAgent tutorial and Chat data
3
+ license: other
4
+ task_categories:
5
+ - image-to-text
6
+ - text-retrieval
7
+ language:
8
+ - en
9
+ ---
10
+
11
+ # HistAgent tutorial and Chat data
12
+
13
+ This repository contains the public data used by the HistAgent tutorials and
14
+ the configurable Chat example.
15
+
16
+ ## Contents
17
+
18
+ ```text
19
+ HistAgent-data/
20
+ ├── tutorials/ # data loaded by the five tutorial notebooks
21
+ ├── chat/
22
+ │ ├── spots.jsonl # 9,150 spatial transcriptomics spot records
23
+ │ ├── config.example.env # Chat data-path configuration
24
+ │ └── slice_images/ # three RCC tissue images for the slice selector
25
+ └── manifest.json # byte sizes and SHA-256 checksums
26
+ ```
27
+
28
+ The tutorial files include benchmark summaries, spot-level examples, plotted
29
+ WSI panels, a pretrained ABMIL example and the atlas-retrieval examples.
30
+
31
+ The Chat JSONL contains ranked genes, cell-state summaries, pathways and
32
+ spatial context for each public demo spot. The tissue images use public study
33
+ accessions as filenames so the Chat server can match them to their slices.
34
+
35
+ ## Download
36
+
37
+ ```python
38
+ from huggingface_hub import snapshot_download
39
+
40
+ root = snapshot_download(
41
+ "wli13/HistAgent-data",
42
+ repo_type="dataset",
43
+ )
44
+ ```
45
+
46
+ Tutorial notebooks expect:
47
+
48
+ ```python
49
+ DATA_DIR = root / "tutorials"
50
+ ```
51
+
52
+ For Chat:
53
+
54
+ ```text
55
+ HISTAGENT_INPUT_JSONL=<root>/chat/spots.jsonl
56
+ HISTAGENT_ATLAS_SQLITE=
57
+ HISTAGENT_SLICE_IMAGE_DIRS=<root>/chat/slice_images
58
+ ```
59
+
60
+ The public Chat bundle does not require the optional full-atlas SQLite file.
61
+ Natural-language retrieval uses the 9,150 rich spot records in `spots.jsonl`.
62
+
63
+ ## Provenance and use
64
+
65
+ The bundle contains derived research outputs and examples assembled from the
66
+ public studies cited by the HistAgent manuscript. Source-study terms continue
67
+ to apply to the underlying data. HistAgent molecular readouts are predictions
68
+ and must not be treated as measured transcript counts or used for clinical
69
+ decision-making without independent validation.
chat/config.example.env ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ HISTAGENT_INPUT_JSONL=chat/spots.jsonl
2
+ HISTAGENT_ATLAS_SQLITE=
3
+ HISTAGENT_SLICE_IMAGE_DIRS=chat/slice_images
chat/slice_images/GSE175540_GSM5924034.jpg ADDED

Git LFS Details

  • SHA256: eca25457369e9330b12f8be41df518e3ed3534b48fe71dc0fc8339079b038826
  • Pointer size: 132 Bytes
  • Size of remote file: 2.9 MB
chat/slice_images/GSE175540_GSM5924036.jpg ADDED

Git LFS Details

  • SHA256: 9536c3c64f21e1bbdde6d73df5e3eee4932f6bf3108caffc52ca7ed55bc83e23
  • Pointer size: 132 Bytes
  • Size of remote file: 2.51 MB
chat/slice_images/GSE175540_GSM5924039.jpg ADDED

Git LFS Details

  • SHA256: 41b65fa3c64254382799624fde1f8a2d7277b443b57cb5e35ff9935f6a080532
  • Pointer size: 132 Bytes
  • Size of remote file: 2.78 MB
chat/spots.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf0a3197ecf67884741275c19d20d1240cfc393d2a4a4b67e9d0e0c344544504
3
+ size 57736044
manifest.json ADDED
@@ -0,0 +1,263 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "format_version": 1,
3
+ "release": "2026-07-26",
4
+ "file_count": 51,
5
+ "total_bytes": 91980132,
6
+ "files": [
7
+ {
8
+ "path": "README.md",
9
+ "bytes": 2007,
10
+ "sha256": "eb49a45b160b56f606afc11aab8350ce94443088440672e8e14b5d37cf18d295"
11
+ },
12
+ {
13
+ "path": "chat/config.example.env",
14
+ "bytes": 108,
15
+ "sha256": "f03c107999d9e4ecf2cd0fdc52cd08a79f90f40e76a5cdb7cf69419196066ec9"
16
+ },
17
+ {
18
+ "path": "chat/slice_images/GSE175540_GSM5924034.jpg",
19
+ "bytes": 2904278,
20
+ "sha256": "eca25457369e9330b12f8be41df518e3ed3534b48fe71dc0fc8339079b038826"
21
+ },
22
+ {
23
+ "path": "chat/slice_images/GSE175540_GSM5924036.jpg",
24
+ "bytes": 2514500,
25
+ "sha256": "9536c3c64f21e1bbdde6d73df5e3eee4932f6bf3108caffc52ca7ed55bc83e23"
26
+ },
27
+ {
28
+ "path": "chat/slice_images/GSE175540_GSM5924039.jpg",
29
+ "bytes": 2782541,
30
+ "sha256": "41b65fa3c64254382799624fde1f8a2d7277b443b57cb5e35ff9935f6a080532"
31
+ },
32
+ {
33
+ "path": "chat/spots.jsonl",
34
+ "bytes": 57736044,
35
+ "sha256": "cf0a3197ecf67884741275c19d20d1240cfc393d2a4a4b67e9d0e0c344544504"
36
+ },
37
+ {
38
+ "path": "tutorials/fig2b_pcc.json",
39
+ "bytes": 1280,
40
+ "sha256": "e730fd41a75bded130befc0f283fcd4f0bd4c1c45f9a96b8e132faa351990519"
41
+ },
42
+ {
43
+ "path": "tutorials/fig2b_spots.json",
44
+ "bytes": 2693033,
45
+ "sha256": "bee499c4316e473f980bb6aae3cb2820636b38623759f95b6e565586bb33e3a1"
46
+ },
47
+ {
48
+ "path": "tutorials/fig2c_metrics.json",
49
+ "bytes": 510,
50
+ "sha256": "f7ac5cf2113ce69e8ced6023c94faee287a92a518d523ee7243b938ff8d5cd84"
51
+ },
52
+ {
53
+ "path": "tutorials/fig2c_spots.json",
54
+ "bytes": 934433,
55
+ "sha256": "6beb798a16ce7baa799076cc7c6e5faac78e97b0ce18ee165a471736f5b4263e"
56
+ },
57
+ {
58
+ "path": "tutorials/fig2e.json",
59
+ "bytes": 22837,
60
+ "sha256": "97c7ce4660306128c32b2478652ca7f71ed3814983edcf8b9e72edb40123703c"
61
+ },
62
+ {
63
+ "path": "tutorials/fig3b.json",
64
+ "bytes": 70231,
65
+ "sha256": "477c230875d967b4b2ca5d50f0aa4034d0a1a7bae5b4db98406251f8a471afc9"
66
+ },
67
+ {
68
+ "path": "tutorials/fig3c.json",
69
+ "bytes": 106097,
70
+ "sha256": "8d2e87557448d87fcb580ee869e93e3d2724b9d2e8f1c4035fa51c305ff093e0"
71
+ },
72
+ {
73
+ "path": "tutorials/fig3d.json",
74
+ "bytes": 3899,
75
+ "sha256": "e95d9e3b8cf80848b72a6ccdbb710b154e994062d3f83c8e30ae2d1ee1381a4f"
76
+ },
77
+ {
78
+ "path": "tutorials/fig4c_brca.json",
79
+ "bytes": 44337,
80
+ "sha256": "19fde43ce2a5991dae1f0658af821f5853332a0d25ee97bcd779000edb93ed30"
81
+ },
82
+ {
83
+ "path": "tutorials/fig4c_stad.json",
84
+ "bytes": 9560142,
85
+ "sha256": "76f9962e1b92cae74bdae0b315005a4190be6c318db2d69af7a4d8c22cf23f56"
86
+ },
87
+ {
88
+ "path": "tutorials/fig4d_summary.json",
89
+ "bytes": 2310,
90
+ "sha256": "11f136dcebd1eca6f6241408b68f3439b4ae89d0043438e2287ad6ecf4a15558"
91
+ },
92
+ {
93
+ "path": "tutorials/fig5_query_sets.json",
94
+ "bytes": 2096,
95
+ "sha256": "e72d011b5e704ae25ea2a64cab8cb4a391baa09b1e8b114ecdfcc6989aad3068"
96
+ },
97
+ {
98
+ "path": "tutorials/fig5_summary.json",
99
+ "bytes": 6859,
100
+ "sha256": "ac073a11c78b64a4f649888ccb45708fe995db0d600e8ec9c42b949276eb6875"
101
+ },
102
+ {
103
+ "path": "tutorials/fig5_units.json",
104
+ "bytes": 210879,
105
+ "sha256": "0ea97706d227aecac6ab623c29b588f5f3aec429ffb7d2d08e0aa9db176283e6"
106
+ },
107
+ {
108
+ "path": "tutorials/figure2b_expression_for_pcc.csv",
109
+ "bytes": 1129903,
110
+ "sha256": "199e1aa2a8bb13a367817b4016c330823b24b099ee6100a5844acbf3fc0a89a5"
111
+ },
112
+ {
113
+ "path": "tutorials/figure3_examples.json",
114
+ "bytes": 4167,
115
+ "sha256": "292a26e267bd5887385a4f0a0415ccf783a793b63824d264251ba177f66a9b9f"
116
+ },
117
+ {
118
+ "path": "tutorials/figure3_examples.npz",
119
+ "bytes": 283441,
120
+ "sha256": "54c45d7da787faa5fef2d781a566b81f6ac8a9b62a7dcd4abba69cda19236272"
121
+ },
122
+ {
123
+ "path": "tutorials/figure3b_rank_metrics_per_section.csv",
124
+ "bytes": 36227,
125
+ "sha256": "def172536cb1af10cb763c60a6a8254c19d88360cacf92ea4d52cc42cb54e7c7"
126
+ },
127
+ {
128
+ "path": "tutorials/figure4_abmil_fold00.pt",
129
+ "bytes": 2112573,
130
+ "sha256": "ca7dd339fc3aab3828342668dcf1dfacc3f6f34d8a6ef8e3f9d8e580f6a0db73"
131
+ },
132
+ {
133
+ "path": "tutorials/figure4_artifact_sample.json",
134
+ "bytes": 1803,
135
+ "sha256": "ba6242d566701bb77f3c754c9eec6a114e94ff6d0b9a1eb64eb1eb2120d20b23"
136
+ },
137
+ {
138
+ "path": "tutorials/figure4_embedding_sample.npz",
139
+ "bytes": 1950243,
140
+ "sha256": "3184bdecfff4acd6de3f970a2487f06c3ebca51b0d8f08c962116b5dda7175ca"
141
+ },
142
+ {
143
+ "path": "tutorials/figure4_survival_oof.csv",
144
+ "bytes": 52106,
145
+ "sha256": "138e9c3f42bd183eb5e194a015ef93914abb3dbffd9285a36827ec7b36793ac4"
146
+ },
147
+ {
148
+ "path": "tutorials/figure4_wsi/brca_roi.png",
149
+ "bytes": 553763,
150
+ "sha256": "695e649baa6b6e6e3271cc19b162a7cb7bbe08c7a88c3cec87404dffc61c36dd"
151
+ },
152
+ {
153
+ "path": "tutorials/figure4_wsi/brca_roi_region.png",
154
+ "bytes": 31838,
155
+ "sha256": "c473d98a8e8e204cdd8275cf0aee435000c4e5c333080ba02200566510a161aa"
156
+ },
157
+ {
158
+ "path": "tutorials/figure4_wsi/brca_roi_score.png",
159
+ "bytes": 138955,
160
+ "sha256": "2ed8a804090a7db6923fe208e5c83efce2195490d155b66887a5e621fef2be52"
161
+ },
162
+ {
163
+ "path": "tutorials/figure4_wsi/brca_wsi.png",
164
+ "bytes": 329864,
165
+ "sha256": "2e08ee77a2b9878961932d16f6982610e492ae551cbe75109ff28c99cfc841bc"
166
+ },
167
+ {
168
+ "path": "tutorials/figure4_wsi/brca_wsi_score.png",
169
+ "bytes": 249427,
170
+ "sha256": "70c0248e652032943a2df765a20d19d9607facf5fcd98975a34d2bcd24755057"
171
+ },
172
+ {
173
+ "path": "tutorials/figure4_wsi/stad1_region.png",
174
+ "bytes": 21835,
175
+ "sha256": "afba2fa04246bee5cbc9c2bbc47c47be8b3a76c8d1166f78a050fe24d9a9eba0"
176
+ },
177
+ {
178
+ "path": "tutorials/figure4_wsi/stad1_score.png",
179
+ "bytes": 321169,
180
+ "sha256": "a1fc90a812a73b9fe316790019f1cbc2c0859c00738d944abe4c1f929005ed86"
181
+ },
182
+ {
183
+ "path": "tutorials/figure4_wsi/stad1_wsi.png",
184
+ "bytes": 568218,
185
+ "sha256": "8bdabaca157363ce4ffa196f8f00bad8f7318fa6cb8ddd41bef4f8a13c7824d3"
186
+ },
187
+ {
188
+ "path": "tutorials/figure4_wsi/stad2_region.png",
189
+ "bytes": 23244,
190
+ "sha256": "47c97e3d2fb95627f3635deeabfa7fdb650a6f4bc4e1dc49a8984a8a314e4c37"
191
+ },
192
+ {
193
+ "path": "tutorials/figure4_wsi/stad2_score.png",
194
+ "bytes": 366007,
195
+ "sha256": "49d91e246a02802c3dba060e22ff522120bb8f66cfaa4fb318513a1f7e428739"
196
+ },
197
+ {
198
+ "path": "tutorials/figure4_wsi/stad2_wsi.png",
199
+ "bytes": 562886,
200
+ "sha256": "3403ba74d6d3e6c8e480b370a7fba3c745a091b0afbd78721fcb8ea25ccfb817"
201
+ },
202
+ {
203
+ "path": "tutorials/figure5_embedding_queries.json",
204
+ "bytes": 3454,
205
+ "sha256": "f0ef12e31e0c93578db4f10ce9c1969f3b886ee6433299d4b9667466346d4346"
206
+ },
207
+ {
208
+ "path": "tutorials/figure5_embedding_subset.csv",
209
+ "bytes": 1451864,
210
+ "sha256": "23e4876bf49f379c0dbb548154902f77d557f02b04b33459625364895f272372"
211
+ },
212
+ {
213
+ "path": "tutorials/figure5_embedding_subset.npz",
214
+ "bytes": 416526,
215
+ "sha256": "1ff266f29c6902a99aa645825469b167c4975a24800a5c60b751d6577ef029f2"
216
+ },
217
+ {
218
+ "path": "tutorials/figure5_he_query_brain_context.png",
219
+ "bytes": 182933,
220
+ "sha256": "ffc91ad6e4cce9e92e7fe4eb6da3d6865806f2319c72ea9e9919403a66bbaefc"
221
+ },
222
+ {
223
+ "path": "tutorials/figure5_he_query_brain_local.png",
224
+ "bytes": 102827,
225
+ "sha256": "15adcc5e1c7f569c8dcadcfdb33af0ab8ab2ffdac0a8e8451d2e9d6aaf165be1"
226
+ },
227
+ {
228
+ "path": "tutorials/figure5_he_query_breast.png",
229
+ "bytes": 550577,
230
+ "sha256": "d3673a8a919db8b1d39f3406fbbb773e8bef74cd7af4a52df3c92e3e91664ef2"
231
+ },
232
+ {
233
+ "path": "tutorials/figure5_he_query_breast_context.png",
234
+ "bytes": 84063,
235
+ "sha256": "673dcadef9daa9e71082de3fbd6d8eca9776d543efd2eec7401cd4e5e6ca0cde"
236
+ },
237
+ {
238
+ "path": "tutorials/figure5_he_query_breast_local.png",
239
+ "bytes": 30395,
240
+ "sha256": "79f3eba363f04e5cd11e2e8f0afa4460e4b159cf3b992d8823d03906833ade1d"
241
+ },
242
+ {
243
+ "path": "tutorials/quickstart_expression_maps.json",
244
+ "bytes": 10006,
245
+ "sha256": "049a067805bec95dc309feffadcffe0fbb82d5db8e432c460a5e2ebdf9bb4734"
246
+ },
247
+ {
248
+ "path": "tutorials/quickstart_expression_maps.npz",
249
+ "bytes": 166381,
250
+ "sha256": "f6e8571b80a3a12615aa01f26e8a03fa236d7643ccd1153d4128223b5bcffb80"
251
+ },
252
+ {
253
+ "path": "tutorials/section_hvg_pcc_summary.csv",
254
+ "bytes": 643693,
255
+ "sha256": "a5f4cdc618e5db1450df369e454ea9f43fc0b9be2498e59cd5f666e3cc6a08b5"
256
+ },
257
+ {
258
+ "path": "tutorials/tls_worked_example.json",
259
+ "bytes": 1323,
260
+ "sha256": "39555f156b4c5767c3264b1603eceb72cc65cb3de06c99c447a1524ef578c5cd"
261
+ }
262
+ ]
263
+ }
tutorials/fig2b_pcc.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"gene":"IGHG2","pcc":0.4913263748914002,"pcc_log1p":0.4913263748914002,"pcc_linear":0.6064117580026522,"auroc":0.5173583318359279,"measured_positive_spots":2652},{"gene":"IGHG4","pcc":0.4984018404695056,"pcc_log1p":0.4984018404695056,"pcc_linear":0.2728693857562891,"auroc":0.6359454172009924,"measured_positive_spots":827},{"gene":"IGLV3-1","pcc":0.5092009020975292,"pcc_log1p":0.5092009020975292,"pcc_linear":0.4951528686999731,"auroc":0.639303910761619,"measured_positive_spots":1761},{"gene":"C7","pcc":0.644626341439992,"pcc_log1p":0.644626341439992,"pcc_linear":0.6382708525093396,"auroc":0.7104248111960597,"measured_positive_spots":2583},{"gene":"COL1A1","pcc":0.5720242880865434,"pcc_log1p":0.5720242880865434,"pcc_linear":0.5426028621997872,"auroc":0.9581903276131044,"measured_positive_spots":3205},{"gene":"DCN","pcc":0.6130157172540917,"pcc_log1p":0.6130157172540917,"pcc_linear":0.6123377350234483,"auroc":0.7888319194555794,"measured_positive_spots":3155},{"gene":"FN1","pcc":0.6685027809949017,"pcc_log1p":0.6685027809949017,"pcc_linear":0.6383083960382748,"auroc":"","measured_positive_spots":3206},{"gene":"TGFBI","pcc":0.6113167758711094,"pcc_log1p":0.6113167758711094,"pcc_linear":0.7259719862686368,"auroc":0.821882001493652,"measured_positive_spots":3193}]
tutorials/fig2b_spots.json ADDED
The diff for this file is too large to render. See raw diff
 
tutorials/fig2c_metrics.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"method":"HistAgent","n_spots":3206,"n_tls":255,"n_non_tls":2951,"auprc":0.5858872581099254,"mannwhitney_u_two_sided_p":7.432189780802971e-122,"raw_min":-1.2808652741650106,"raw_max":3.763307148282692,"p01":-0.7865193638149323,"p99":2.771183049907766},{"method":"Measured ST","n_spots":3206,"n_tls":255,"n_non_tls":2951,"auprc":0.5916157111446854,"mannwhitney_u_two_sided_p":1.7325053141503608e-109,"raw_min":-0.5806938329437044,"raw_max":3.994517247439768,"p01":-0.5095592295339132,"p99":1.869314894279866}]
tutorials/fig2c_spots.json ADDED
The diff for this file is too large to render. See raw diff
 
tutorials/fig2e.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"Section":"GSE175540_GSM5924032","GEO Series":"GSE175540","GEO Sample":"GSM5924032","Repository accession":"GSM5924032","Species":"Human","Organ":"Kidney","Study":"Meylan 2022","Study reference":"Meylan, M. et al. Tertiary lymphoid structures generate and propagate anti-tumor antibody-producing plasma cells in renal cell cancer. Immunity 55, 527–541.e5 (2022).","Biological category":"Immune microenvironment","Biological target":"RCC TLS regions","Marker reference":"Meylan et al. 29-gene TLS imprint","Markers used":"IGHA1;IGHG1;IGHG2;IGHG3;IGHG4;IGHM;IGKC;IGLC1;JCHAIN;CD79A;FCRL5;MZB1;SSR4;XBP1;TRBC2;IL7R;CXCL12;LUM;C1QA;C7;CD52;APOE;PTGDS;PIM2;DERL3","Measured ST AUPRC":0.3245601669520188,"HistAgent AUPRC":0.3355731053952719,"STPath AUPRC":0.0918393311402195,"OmiCLIP AUPRC":0.0489870608274966},{"Section":"GSE175540_GSM5924038","GEO Series":"GSE175540","GEO Sample":"GSM5924038","Repository accession":"GSM5924038","Species":"Human","Organ":"Kidney","Study":"Meylan 2022","Study reference":"Meylan, M. et al. Tertiary lymphoid structures generate and propagate anti-tumor antibody-producing plasma cells in renal cell cancer. Immunity 55, 527–541.e5 (2022).","Biological category":"Immune microenvironment","Biological target":"RCC TLS regions","Marker reference":"Meylan et al. 29-gene TLS imprint","Markers used":"IGHA1;IGHG1;IGHG2;IGHG3;IGHG4;IGHM;IGKC;IGLC1;JCHAIN;CD79A;FCRL5;MZB1;SSR4;XBP1;TRBC2;IL7R;CXCL12;LUM;C1QA;C7;CD52;APOE;PTGDS;PIM2;DERL3","Measured ST AUPRC":0.5916157111446855,"HistAgent AUPRC":0.5858872581099256,"STPath AUPRC":0.1274888192482297,"OmiCLIP AUPRC":0.5134783314514242},{"Section":"GSE175540_GSM5924041","GEO Series":"GSE175540","GEO Sample":"GSM5924041","Repository accession":"GSM5924041","Species":"Human","Organ":"Kidney","Study":"Meylan 2022","Study reference":"Meylan, M. et al. Tertiary lymphoid structures generate and propagate anti-tumor antibody-producing plasma cells in renal cell cancer. Immunity 55, 527–541.e5 (2022).","Biological category":"Immune microenvironment","Biological target":"RCC TLS regions","Marker reference":"Meylan et al. 29-gene TLS imprint","Markers used":"IGHA1;IGHG1;IGHG2;IGHG3;IGHG4;IGHM;IGKC;IGLC1;JCHAIN;CD79A;FCRL5;MZB1;SSR4;XBP1;TRBC2;IL7R;CXCL12;LUM;C1QA;C7;CD52;APOE;PTGDS;PIM2;DERL3","Measured ST AUPRC":0.5677869607479896,"HistAgent AUPRC":0.2164468733496585,"STPath AUPRC":0.2874892109572736,"OmiCLIP AUPRC":0.2147015543286485},{"Section":"GSE175540_GSM5924044","GEO Series":"GSE175540","GEO Sample":"GSM5924044","Repository accession":"GSM5924044","Species":"Human","Organ":"Kidney","Study":"Meylan 2022","Study reference":"Meylan, M. et al. Tertiary lymphoid structures generate and propagate anti-tumor antibody-producing plasma cells in renal cell cancer. Immunity 55, 527–541.e5 (2022).","Biological category":"Immune microenvironment","Biological target":"RCC TLS regions","Marker reference":"Meylan et al. 29-gene TLS imprint","Markers used":"IGHA1;IGHG1;IGHG2;IGHG3;IGHG4;IGHM;IGKC;IGLC1;JCHAIN;CD79A;FCRL5;MZB1;SSR4;XBP1;TRBC2;IL7R;CXCL12;LUM;C1QA;C7;CD52;APOE;PTGDS;PIM2;DERL3","Measured ST AUPRC":0.4698010181952017,"HistAgent AUPRC":0.299444957580776,"STPath AUPRC":0.052984231461785,"OmiCLIP AUPRC":0.0531524940980637},{"Section":"GSE175540_GSM5924046","GEO Series":"GSE175540","GEO Sample":"GSM5924046","Repository accession":"GSM5924046","Species":"Human","Organ":"Kidney","Study":"Meylan 2022","Study reference":"Meylan, M. et al. Tertiary lymphoid structures generate and propagate anti-tumor antibody-producing plasma cells in renal cell cancer. Immunity 55, 527–541.e5 (2022).","Biological category":"Immune microenvironment","Biological target":"RCC TLS regions","Marker reference":"Meylan et al. 29-gene TLS imprint","Markers used":"IGHA1;IGHG1;IGHG2;IGHG3;IGHG4;IGHM;IGKC;IGLC1;JCHAIN;CD79A;FCRL5;MZB1;SSR4;XBP1;TRBC2;IL7R;CXCL12;LUM;C1QA;C7;CD52;APOE;PTGDS;PIM2;DERL3","Measured ST AUPRC":0.6079634933642918,"HistAgent AUPRC":0.743032435032611,"STPath AUPRC":0.1807023284665895,"OmiCLIP AUPRC":0.2178663241938052},{"Section":"GSE213688_GSM6592052","GEO Series":"GSE213688","GEO Sample":"GSM6592052","Repository accession":"GSM6592052","Species":"Human","Organ":"Breast","Study":"Coutant 2023","Study reference":"Coutant, A. et al. Spatial Transcriptomics Reveal Pitfalls and Opportunities for the Detection of Rare High-Plasticity Breast Cancer Subtypes. Laboratory Investigation 103, 100258 (2023).","Biological category":"Immune microenvironment","Biological target":"Breast TIL / lymphoid compartment","Marker reference":"Published positive T-cell marker component from the breast-cancer TME classifier","Markers used":"CD3D;CD3E;CD3G","Measured ST AUPRC":0.3951369146823507,"HistAgent AUPRC":0.6256978419174334,"STPath AUPRC":0.4058741116540961,"OmiCLIP AUPRC":0.5275338195208694},{"Section":"GSE213688_GSM6592054","GEO Series":"GSE213688","GEO Sample":"GSM6592054","Repository accession":"GSM6592054","Species":"Human","Organ":"Breast","Study":"Coutant 2023","Study reference":"Coutant, A. et al. Spatial Transcriptomics Reveal Pitfalls and Opportunities for the Detection of Rare High-Plasticity Breast Cancer Subtypes. Laboratory Investigation 103, 100258 (2023).","Biological category":"Immune microenvironment","Biological target":"Breast TIL / lymphoid compartment","Marker reference":"Published positive T-cell marker component from the breast-cancer TME classifier","Markers used":"CD3D;CD3E;CD3G","Measured ST AUPRC":0.5434819308805219,"HistAgent AUPRC":0.7927631563791024,"STPath AUPRC":0.472038698059974,"OmiCLIP AUPRC":0.4350745140974631},{"Section":"Human_Prostate_Erickson_08102022_Visium_Patient_1_H2_1","GEO Series":"","GEO Sample":"","Repository accession":"10.17632/svw96g68dv.1 | Patient_1_H2_1","Species":"Human","Organ":"Prostate","Study":"Erickson 2022","Study reference":"Erickson, A. et al. Spatially resolved clonal copy number alterations in benign and malignant tissue. Nature 608, 360–367 (2022).","Biological category":"Stromal / fibrotic microenvironment","Biological target":"Prostate stromal compartment","Marker reference":"Composite of the published fibroblast and pericyte marker sets","Markers used":"DCN;LUM;PTN;IGF1;APOD;COL1A2;FBLN1;MEG3;CXCL12;RGS5;ACTA2;MYH11;MT1M;FRZB;MT1A;NDUFA4L2;PPP1R14A;MYLK;PHLDA1","Measured ST AUPRC":0.6454658467418909,"HistAgent AUPRC":0.8098626740035776,"STPath AUPRC":0.282197274269499,"OmiCLIP AUPRC":0.7325925302433924},{"Section":"Human_Prostate_Erickson_08102022_Visium_Patient_1_H2_2","GEO Series":"","GEO Sample":"","Repository accession":"10.17632/svw96g68dv.1 | Patient_1_H2_2","Species":"Human","Organ":"Prostate","Study":"Erickson 2022","Study reference":"Erickson, A. et al. Spatially resolved clonal copy number alterations in benign and malignant tissue. Nature 608, 360–367 (2022).","Biological category":"Stromal / fibrotic microenvironment","Biological target":"Prostate stromal compartment","Marker reference":"Composite of the published fibroblast and pericyte marker sets","Markers used":"DCN;LUM;PTN;IGF1;APOD;COL1A2;FBLN1;MEG3;CXCL12;RGS5;ACTA2;MYH11;MT1M;FRZB;MT1A;NDUFA4L2;PPP1R14A;MYLK;PHLDA1","Measured ST AUPRC":0.6813464403017034,"HistAgent AUPRC":0.9479273231153827,"STPath AUPRC":0.479604656611474,"OmiCLIP AUPRC":0.9707621359391516},{"Section":"Human_Prostate_Erickson_08102022_Visium_Patient_1_V1_2","GEO Series":"","GEO Sample":"","Repository accession":"10.17632/svw96g68dv.1 | Patient_1_V1_2","Species":"Human","Organ":"Prostate","Study":"Erickson 2022","Study reference":"Erickson, A. et al. Spatially resolved clonal copy number alterations in benign and malignant tissue. Nature 608, 360–367 (2022).","Biological category":"Stromal / fibrotic microenvironment","Biological target":"Prostate stromal compartment","Marker reference":"Composite of the published fibroblast and pericyte marker sets","Markers used":"DCN;LUM;PTN;IGF1;APOD;COL1A2;FBLN1;MEG3;CXCL12;RGS5;ACTA2;MYH11;MT1M;FRZB;MT1A;NDUFA4L2;PPP1R14A;MYLK;PHLDA1","Measured ST AUPRC":0.66351131103667,"HistAgent AUPRC":0.9305924296175988,"STPath AUPRC":0.5802491516471776,"OmiCLIP AUPRC":0.9325284677790344},{"Section":"GSE213688_GSM6592049","GEO Series":"GSE213688","GEO Sample":"GSM6592049","Repository accession":"GSM6592049","Species":"Human","Organ":"Breast","Study":"Coutant 2023","Study reference":"Coutant, A. et al. Spatial Transcriptomics Reveal Pitfalls and Opportunities for the Detection of Rare High-Plasticity Breast Cancer Subtypes. Laboratory Investigation 103, 100258 (2023).","Biological category":"Stromal / fibrotic microenvironment","Biological target":"Breast CAF / stromal compartment","Marker reference":"Published positive CAF marker component from the breast-cancer TME classifier","Markers used":"PDGFRB;PDGFRA;PDPN;DCN;COL1A1;COL1A2;FAP;THY1;CXCL12;MCAM;ACTA2;MYLK;MYL9;TAGLN;CALD1;CAV1;MEF2C;NOTCH3;RGS5","Measured ST AUPRC":0.3215091704522756,"HistAgent AUPRC":0.583980156300487,"STPath AUPRC":0.4479413445180808,"OmiCLIP AUPRC":0.6594440217800369},{"Section":"GSE213688_GSM6592051","GEO Series":"GSE213688","GEO Sample":"GSM6592051","Repository accession":"GSM6592051","Species":"Human","Organ":"Breast","Study":"Coutant 2023","Study reference":"Coutant, A. et al. Spatial Transcriptomics Reveal Pitfalls and Opportunities for the Detection of Rare High-Plasticity Breast Cancer Subtypes. Laboratory Investigation 103, 100258 (2023).","Biological category":"Stromal / fibrotic microenvironment","Biological target":"Breast CAF / stromal compartment","Marker reference":"Published positive CAF marker component from the breast-cancer TME classifier","Markers used":"PDGFRB;PDGFRA;PDPN;DCN;COL1A1;COL1A2;FAP;THY1;CXCL12;MCAM;ACTA2;MYLK;MYL9;TAGLN;CALD1;CAV1;MEF2C;NOTCH3;RGS5","Measured ST AUPRC":0.6348500639395558,"HistAgent AUPRC":0.9473764516398884,"STPath AUPRC":0.8107071158270132,"OmiCLIP AUPRC":0.9768425227145556},{"Section":"GSE213688_GSM6592052","GEO Series":"GSE213688","GEO Sample":"GSM6592052","Repository accession":"GSM6592052","Species":"Human","Organ":"Breast","Study":"Coutant 2023","Study reference":"Coutant, A. et al. Spatial Transcriptomics Reveal Pitfalls and Opportunities for the Detection of Rare High-Plasticity Breast Cancer Subtypes. Laboratory Investigation 103, 100258 (2023).","Biological category":"Stromal / fibrotic microenvironment","Biological target":"Breast CAF / stromal compartment","Marker reference":"Published positive CAF marker component from the breast-cancer TME classifier","Markers used":"PDGFRB;PDGFRA;PDPN;DCN;COL1A1;COL1A2;FAP;THY1;CXCL12;MCAM;ACTA2;MYLK;MYL9;TAGLN;CALD1;CAV1;MEF2C;NOTCH3;RGS5","Measured ST AUPRC":0.2765661952275118,"HistAgent AUPRC":0.625497347313072,"STPath AUPRC":0.3441745655825215,"OmiCLIP AUPRC":0.5049590252663657},{"Section":"GSE193460_GSM5808054","GEO Series":"GSE193460","GEO Sample":"GSM5808054","Repository accession":"GSM5808054","Species":"Mouse","Organ":"Lung","Study":"Dhainaut 2022","Study reference":"Dhainaut, M. et al. Spatial CRISPR genomics identifies regulators of the tumor microenvironment. Cell 185, 1223–1239.e20 (2022).","Biological category":"Tumour / epithelial state","Biological target":"WPRE-positive lung tumour","Marker reference":"Krt8, Krt18 and Epcam explicitly reported as tumour-lesion-enriched keratin and epithelial genes","Markers used":"Krt8;Krt18;Epcam","Measured ST AUPRC":0.8524757119378117,"HistAgent AUPRC":0.6417219014323887,"STPath AUPRC":0.2707631686069724,"OmiCLIP AUPRC":0.2415083998999807},{"Section":"GSE193460_GSM5808055","GEO Series":"GSE193460","GEO Sample":"GSM5808055","Repository accession":"GSM5808055","Species":"Mouse","Organ":"Lung","Study":"Dhainaut 2022","Study reference":"Dhainaut, M. et al. Spatial CRISPR genomics identifies regulators of the tumor microenvironment. Cell 185, 1223–1239.e20 (2022).","Biological category":"Tumour / epithelial state","Biological target":"WPRE-positive lung tumour","Marker reference":"Krt8, Krt18 and Epcam explicitly reported as tumour-lesion-enriched keratin and epithelial genes","Markers used":"Krt8;Krt18;Epcam","Measured ST AUPRC":0.8400711324733409,"HistAgent AUPRC":0.7381596410816733,"STPath AUPRC":0.3076329103976639,"OmiCLIP AUPRC":0.3421999888767961},{"Section":"GSE193460_GSM5808056","GEO Series":"GSE193460","GEO Sample":"GSM5808056","Repository accession":"GSM5808056","Species":"Mouse","Organ":"Lung","Study":"Dhainaut 2022","Study reference":"Dhainaut, M. et al. Spatial CRISPR genomics identifies regulators of the tumor microenvironment. Cell 185, 1223–1239.e20 (2022).","Biological category":"Tumour / epithelial state","Biological target":"WPRE-positive lung tumour","Marker reference":"Krt8, Krt18 and Epcam explicitly reported as tumour-lesion-enriched keratin and epithelial genes","Markers used":"Krt8;Krt18;Epcam","Measured ST AUPRC":0.8854232391771233,"HistAgent AUPRC":0.7389527199351767,"STPath AUPRC":0.3772879429817578,"OmiCLIP AUPRC":0.4196074185968733},{"Section":"GSE193460_GSM5808057","GEO Series":"GSE193460","GEO Sample":"GSM5808057","Repository accession":"GSM5808057","Species":"Mouse","Organ":"Lung","Study":"Dhainaut 2022","Study reference":"Dhainaut, M. et al. Spatial CRISPR genomics identifies regulators of the tumor microenvironment. Cell 185, 1223–1239.e20 (2022).","Biological category":"Tumour / epithelial state","Biological target":"WPRE-positive lung tumour","Marker reference":"Krt8, Krt18 and Epcam explicitly reported as tumour-lesion-enriched keratin and epithelial genes","Markers used":"Krt8;Krt18;Epcam","Measured ST AUPRC":0.7733351798223841,"HistAgent AUPRC":0.613434083356211,"STPath AUPRC":0.1536836783276255,"OmiCLIP AUPRC":0.1674456799998194},{"Section":"Human_Prostate_Erickson_08102022_Visium_Patient_1_H2_1","GEO Series":"","GEO Sample":"","Repository accession":"10.17632/svw96g68dv.1 | Patient_1_H2_1","Species":"Human","Organ":"Prostate","Study":"Erickson 2022","Study reference":"Erickson, A. et al. Spatially resolved clonal copy number alterations in benign and malignant tissue. Nature 608, 360–367 (2022).","Biological category":"Tumour / epithelial state","Biological target":"Prostate malignant versus benign epithelium","Marker reference":"Externally validated eight-gene Prostate Tumor Gene Signature","Markers used":"PCA3;AMACR;ERG;CACNA1D;FABP5;COL9A2;PHGR1;GCNT1","Measured ST AUPRC":0.4164578606076237,"HistAgent AUPRC":0.4686630883446406,"STPath AUPRC":0.2210123522927035,"OmiCLIP AUPRC":0.1880900866299258},{"Section":"Human_Prostate_Erickson_08102022_Visium_Patient_1_H2_2","GEO Series":"","GEO Sample":"","Repository accession":"10.17632/svw96g68dv.1 | Patient_1_H2_2","Species":"Human","Organ":"Prostate","Study":"Erickson 2022","Study reference":"Erickson, A. et al. Spatially resolved clonal copy number alterations in benign and malignant tissue. Nature 608, 360–367 (2022).","Biological category":"Tumour / epithelial state","Biological target":"Prostate malignant versus benign epithelium","Marker reference":"Externally validated eight-gene Prostate Tumor Gene Signature","Markers used":"PCA3;AMACR;ERG;CACNA1D;FABP5;COL9A2;PHGR1;GCNT1","Measured ST AUPRC":0.205095885676921,"HistAgent AUPRC":0.1184270240263498,"STPath AUPRC":0.0138738497517259,"OmiCLIP AUPRC":0.0224560601682868},{"Section":"GSE213688_GSM6592054","GEO Series":"GSE213688","GEO Sample":"GSM6592054","Repository accession":"GSM6592054","Species":"Human","Organ":"Breast","Study":"Coutant 2023","Study reference":"Coutant, A. et al. Spatial Transcriptomics Reveal Pitfalls and Opportunities for the Detection of Rare High-Plasticity Breast Cancer Subtypes. Laboratory Investigation 103, 100258 (2023).","Biological category":"Tumour / epithelial state","Biological target":"Breast normal epithelium","Marker reference":"Fixed human breast epithelial-component panel","Markers used":"EPCAM;KRT8;KRT18;CLDN4;DSC2;ELF3;SFN;ITGB4;ITGB6;KRT6A;KRT7;LAD1;LAMA3;LAMB3;SLPI;ST14;TGFA;SCEL;PTGES;SH2D3A;AP1M2;MPZL2;EHF;G0S2;LSR;S100A14","Measured ST AUPRC":0.9197102175039256,"HistAgent AUPRC":0.917191345687214,"STPath AUPRC":0.8298331726268193,"OmiCLIP AUPRC":0.570400072514115},{"Section":"Human_Brain_Maynard_02082021_Visium_151508","GEO Series":"","GEO Sample":"","Repository accession":"spatialLIBD sample 151508","Species":"Human","Organ":"Brain","Study":"Maynard 2021","Study reference":"Maynard, K. R. et al. Transcriptome-scale spatial gene expression in the human dorsolateral prefrontal cortex. Nature Neuroscience 24, 425–436 (2021).","Biological category":"Tissue anatomy","Biological target":"DLPFC white matter","Marker reference":"Independent known myelin transcript panel","Markers used":"CNP;PLP1;MAG;CLDN11","Measured ST AUPRC":0.3492274803091549,"HistAgent AUPRC":0.9001070361140725,"STPath AUPRC":0.0823911116714834,"OmiCLIP AUPRC":0.0274460610864636},{"Section":"Human_Brain_Maynard_02082021_Visium_151673","GEO Series":"","GEO Sample":"","Repository accession":"spatialLIBD sample 151673","Species":"Human","Organ":"Brain","Study":"Maynard 2021","Study reference":"Maynard, K. R. et al. Transcriptome-scale spatial gene expression in the human dorsolateral prefrontal cortex. Nature Neuroscience 24, 425–436 (2021).","Biological category":"Tissue anatomy","Biological target":"DLPFC white matter","Marker reference":"Independent known myelin transcript panel","Markers used":"CNP;PLP1;MAG;CLDN11","Measured ST AUPRC":0.8902736507070603,"HistAgent AUPRC":0.9400415547487908,"STPath AUPRC":0.65332741739147,"OmiCLIP AUPRC":0.5481470299952124},{"Section":"Human_Brain_Maynard_02082021_Visium_151674","GEO Series":"","GEO Sample":"","Repository accession":"spatialLIBD sample 151674","Species":"Human","Organ":"Brain","Study":"Maynard 2021","Study reference":"Maynard, K. R. et al. Transcriptome-scale spatial gene expression in the human dorsolateral prefrontal cortex. Nature Neuroscience 24, 425–436 (2021).","Biological category":"Tissue anatomy","Biological target":"DLPFC white matter","Marker reference":"Independent known myelin transcript panel","Markers used":"CNP;PLP1;MAG;CLDN11","Measured ST AUPRC":0.9288673654333514,"HistAgent AUPRC":0.985623975605608,"STPath AUPRC":0.3869527187536975,"OmiCLIP AUPRC":0.107501458121605},{"Section":"Human_Brain_Maynard_02082021_Visium_151675","GEO Series":"","GEO Sample":"","Repository accession":"spatialLIBD sample 151675","Species":"Human","Organ":"Brain","Study":"Maynard 2021","Study reference":"Maynard, K. R. et al. Transcriptome-scale spatial gene expression in the human dorsolateral prefrontal cortex. Nature Neuroscience 24, 425–436 (2021).","Biological category":"Tissue anatomy","Biological target":"DLPFC white matter","Marker reference":"Independent known myelin transcript panel","Markers used":"CNP;PLP1;MAG;CLDN11","Measured ST AUPRC":0.9185675368671627,"HistAgent AUPRC":0.9767052573788167,"STPath AUPRC":0.3614549083298954,"OmiCLIP AUPRC":0.1116136491866433},{"Section":"Human_Brain_Maynard_02082021_Visium_151676","GEO Series":"","GEO Sample":"","Repository accession":"spatialLIBD sample 151676","Species":"Human","Organ":"Brain","Study":"Maynard 2021","Study reference":"Maynard, K. R. et al. Transcriptome-scale spatial gene expression in the human dorsolateral prefrontal cortex. Nature Neuroscience 24, 425–436 (2021).","Biological category":"Tissue anatomy","Biological target":"DLPFC white matter","Marker reference":"Independent known myelin transcript panel","Markers used":"CNP;PLP1;MAG;CLDN11","Measured ST AUPRC":0.9094454317369068,"HistAgent AUPRC":0.9620889465504032,"STPath AUPRC":0.3111667645885169,"OmiCLIP AUPRC":0.0933240826363496},{"Section":"Mouse_Brain_10X_06232020_Visium_Sagittal_Anterior_Section_1","GEO Series":"","GEO Sample":"","Repository accession":"10.5281/zenodo.10698931 | mMAMP/MA | V1_Mouse_Brain_Sagittal_Anterior","Species":"Mouse","Organ":"Brain","Study":"GraphST annotation / BenchmarkST redistribution","Study reference":"Long, Y. et al. Spatially informed clustering, integration, and deconvolution of spatial transcriptomics with GraphST. Nature Communications 14, 1155 (2023).","Biological category":"Tissue anatomy","Biological target":"Mouse corpus callosum","Marker reference":"Independent mouse CNS spatial-atlas fibre-tract marker set","Markers used":"Mbp;Cldn11;Mal","Measured ST AUPRC":0.2554053194765088,"HistAgent AUPRC":0.167256027008141,"STPath AUPRC":0.057485448721897,"OmiCLIP AUPRC":0.032293986636971},{"Section":"Mouse_Brain_10X_06232020_Visium_Sagittal_Anterior_Section_1","GEO Series":"","GEO Sample":"","Repository accession":"10.5281/zenodo.10698931 | mMAMP/MA | V1_Mouse_Brain_Sagittal_Anterior","Species":"Mouse","Organ":"Brain","Study":"GraphST annotation / BenchmarkST redistribution","Study reference":"Long, Y. et al. Spatially informed clustering, integration, and deconvolution of spatial transcriptomics with GraphST. Nature Communications 14, 1155 (2023).","Biological category":"Tissue anatomy","Biological target":"Mouse cerebral cortex","Marker reference":"Shi et al., Nature 2023, Supplementary Table 5, https://doi.org/10.1038/s41586-023-06569-5","Markers used":"Nrgn;Slc17a7;Satb2;Cck;Pde1a","Measured ST AUPRC":0.8924834974292258,"HistAgent AUPRC":0.938707474286144,"STPath AUPRC":0.5436933678760899,"OmiCLIP AUPRC":0.5233846614069615},{"Section":"Mouse_Brain_10X_06232020_Visium_Sagittal_Anterior_Section_1","GEO Series":"","GEO Sample":"","Repository accession":"10.5281/zenodo.10698931 | mMAMP/MA | V1_Mouse_Brain_Sagittal_Anterior","Species":"Mouse","Organ":"Brain","Study":"GraphST annotation / BenchmarkST redistribution","Study reference":"Long, Y. et al. Spatially informed clustering, integration, and deconvolution of spatial transcriptomics with GraphST. Nature Communications 14, 1155 (2023).","Biological category":"Tissue anatomy","Biological target":"Mouse olfactory bulb","Marker reference":"Independent mouse CNS spatial-atlas OB_1 and OB_2 marker union","Markers used":"Gad1;Gng4;Meis2;Pbx3;Synpr;Th;Cdhr1;Kctd12","Measured ST AUPRC":0.880638410686903,"HistAgent AUPRC":0.9323627885250688,"STPath AUPRC":0.1970722768966918,"OmiCLIP AUPRC":0.5515111615495936},{"Section":"Mouse_Brain_10X_06232020_Visium_Sagittal_Anterior_Section_1","GEO Series":"","GEO Sample":"","Repository accession":"10.5281/zenodo.10698931 | mMAMP/MA | V1_Mouse_Brain_Sagittal_Anterior","Species":"Mouse","Organ":"Brain","Study":"GraphST annotation / BenchmarkST redistribution","Study reference":"Long, Y. et al. Spatially informed clustering, integration, and deconvolution of spatial transcriptomics with GraphST. Nature Communications 14, 1155 (2023).","Biological category":"Tissue anatomy","Biological target":"Mouse striatum","Marker reference":"Independent mouse CNS spatial-atlas STR marker set","Markers used":"Ppp1r1b;Gpr88;Scn4b;Rgs9;Penk","Measured ST AUPRC":0.831030303064979,"HistAgent AUPRC":0.7523077852481168,"STPath AUPRC":0.2408224764271848,"OmiCLIP AUPRC":0.3496659242761692}]
tutorials/fig3b.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"section":"GSE235672_GSM7507320","species":"human","organ":"brain","method":"HistAgent","n_spots":2253,"hit_rate_top50":0.7047359076786507,"ap_top50":0.6578258469607665},{"section":"GSE235672_GSM7507320","species":"human","organ":"brain","method":"OmiCLIP","n_spots":2253,"hit_rate_top50":0.5065823346648913,"ap_top50":0.4169278368065889},{"section":"GSE235672_GSM7507320","species":"human","organ":"brain","method":"STPath","n_spots":2253,"hit_rate_top50":0.2481624500665779,"ap_top50":0.1433677133971875},{"section":"Human_Brain_10X_02132023_Visium","species":"human","organ":"brain","method":"HistAgent","n_spots":10878,"hit_rate_top50":0.6112316957966797,"ap_top50":0.5643419636856672},{"section":"Human_Brain_10X_02132023_Visium","species":"human","organ":"brain","method":"OmiCLIP","n_spots":10878,"hit_rate_top50":0.2454241782061331,"ap_top50":0.1420895924570122},{"section":"Human_Brain_10X_02132023_Visium","species":"human","organ":"brain","method":"STPath","n_spots":10878,"hit_rate_top50":0.2730154260444271,"ap_top50":0.1599276290842932},{"section":"Human_Brain_Kwon_10162023_Visium_V10A27106_D1_Br3880","species":"human","organ":"brain","method":"HistAgent","n_spots":4552,"hit_rate_top50":0.504832645767925,"ap_top50":0.4111848012648788},{"section":"Human_Brain_Kwon_10162023_Visium_V10A27106_D1_Br3880","species":"human","organ":"brain","method":"OmiCLIP","n_spots":4552,"hit_rate_top50":0.3997601980938498,"ap_top50":0.2678098626259964},{"section":"Human_Brain_Kwon_10162023_Visium_V10A27106_D1_Br3880","species":"human","organ":"brain","method":"STPath","n_spots":4552,"hit_rate_top50":0.3302994737108743,"ap_top50":0.1995825205914238},{"section":"Human_Brain_Louise_02152023_Visium_Br6423_ant","species":"human","organ":"brain","method":"HistAgent","n_spots":3906,"hit_rate_top50":0.4306619069143323,"ap_top50":0.3393212792148926},{"section":"Human_Brain_Louise_02152023_Visium_Br6423_ant","species":"human","organ":"brain","method":"OmiCLIP","n_spots":3906,"hit_rate_top50":0.364462064893183,"ap_top50":0.2306395628918564},{"section":"Human_Brain_Louise_02152023_Visium_Br6423_ant","species":"human","organ":"brain","method":"STPath","n_spots":3906,"hit_rate_top50":0.266548224867511,"ap_top50":0.1097590665260185},{"section":"Human_Brain_Louise_02152023_Visium_Br8492_ant","species":"human","organ":"brain","method":"HistAgent","n_spots":4793,"hit_rate_top50":0.4867716407333633,"ap_top50":0.3714279003368757},{"section":"Human_Brain_Louise_02152023_Visium_Br8492_ant","species":"human","organ":"brain","method":"OmiCLIP","n_spots":4793,"hit_rate_top50":0.3730599778917193,"ap_top50":0.1865330860368397},{"section":"Human_Brain_Louise_02152023_Visium_Br8492_ant","species":"human","organ":"brain","method":"STPath","n_spots":4793,"hit_rate_top50":0.25141862028124,"ap_top50":0.0756810161295828},{"section":"Human_Brain_Maynard_02082021_Visium_151508","species":"human","organ":"brain","method":"HistAgent","n_spots":4384,"hit_rate_top50":0.459493557785273,"ap_top50":0.3517749774042801},{"section":"Human_Brain_Maynard_02082021_Visium_151508","species":"human","organ":"brain","method":"OmiCLIP","n_spots":4384,"hit_rate_top50":0.384923234041611,"ap_top50":0.2485135358179528},{"section":"Human_Brain_Maynard_02082021_Visium_151508","species":"human","organ":"brain","method":"STPath","n_spots":4384,"hit_rate_top50":0.162979752644048,"ap_top50":0.0644802010478331},{"section":"Human_Brain_Maynard_02082021_Visium_151673","species":"human","organ":"brain","method":"HistAgent","n_spots":3639,"hit_rate_top50":0.6107062379774663,"ap_top50":0.5335256582821755},{"section":"Human_Brain_Maynard_02082021_Visium_151673","species":"human","organ":"brain","method":"OmiCLIP","n_spots":3639,"hit_rate_top50":0.492888156086837,"ap_top50":0.3536639366656131},{"section":"Human_Brain_Maynard_02082021_Visium_151673","species":"human","organ":"brain","method":"STPath","n_spots":3639,"hit_rate_top50":0.209700467161308,"ap_top50":0.1045749589288474},{"section":"Human_Brain_Maynard_02082021_Visium_151674","species":"human","organ":"brain","method":"HistAgent","n_spots":3673,"hit_rate_top50":0.6467465287231147,"ap_top50":0.5783320327406374},{"section":"Human_Brain_Maynard_02082021_Visium_151674","species":"human","organ":"brain","method":"OmiCLIP","n_spots":3673,"hit_rate_top50":0.5276177511570923,"ap_top50":0.3950761619725582},{"section":"Human_Brain_Maynard_02082021_Visium_151674","species":"human","organ":"brain","method":"STPath","n_spots":3673,"hit_rate_top50":0.1883909610672474,"ap_top50":0.0814939424511417},{"section":"Human_Brain_Maynard_02082021_Visium_151675","species":"human","organ":"brain","method":"HistAgent","n_spots":3592,"hit_rate_top50":0.5452561247216036,"ap_top50":0.4442045942811936},{"section":"Human_Brain_Maynard_02082021_Visium_151675","species":"human","organ":"brain","method":"OmiCLIP","n_spots":3592,"hit_rate_top50":0.4535467706013363,"ap_top50":0.3152891498135541},{"section":"Human_Brain_Maynard_02082021_Visium_151675","species":"human","organ":"brain","method":"STPath","n_spots":3592,"hit_rate_top50":0.1755846325167038,"ap_top50":0.07052326948731},{"section":"Human_Brain_Maynard_02082021_Visium_151676","species":"human","organ":"brain","method":"HistAgent","n_spots":3460,"hit_rate_top50":0.5806416184971098,"ap_top50":0.49851507118721},{"section":"Human_Brain_Maynard_02082021_Visium_151676","species":"human","organ":"brain","method":"OmiCLIP","n_spots":3460,"hit_rate_top50":0.4811156069364162,"ap_top50":0.3441879555900728},{"section":"Human_Brain_Maynard_02082021_Visium_151676","species":"human","organ":"brain","method":"STPath","n_spots":3460,"hit_rate_top50":0.185907514450867,"ap_top50":0.0740434640990889},{"section":"GSE210616_GSM6433617","species":"human","organ":"breast","method":"HistAgent","n_spots":554,"hit_rate_top50":0.5633574007220217,"ap_top50":0.5093774710061906},{"section":"GSE210616_GSM6433617","species":"human","organ":"breast","method":"OmiCLIP","n_spots":554,"hit_rate_top50":0.2820577617328519,"ap_top50":0.152214593609071},{"section":"GSE210616_GSM6433617","species":"human","organ":"breast","method":"STPath","n_spots":554,"hit_rate_top50":0.2580505415162454,"ap_top50":0.1329217691754446},{"section":"GSE210616_GSM6433622","species":"human","organ":"breast","method":"HistAgent","n_spots":1298,"hit_rate_top50":0.7517873651771957,"ap_top50":0.7170450844863421},{"section":"GSE210616_GSM6433622","species":"human","organ":"breast","method":"OmiCLIP","n_spots":1298,"hit_rate_top50":0.4540215716486903,"ap_top50":0.2824203788032853},{"section":"GSE210616_GSM6433622","species":"human","organ":"breast","method":"STPath","n_spots":1298,"hit_rate_top50":0.4193682588597842,"ap_top50":0.2637635650896607},{"section":"GSE210616_GSM6433623","species":"human","organ":"breast","method":"HistAgent","n_spots":901,"hit_rate_top50":0.5658823529411765,"ap_top50":0.5169091946447353},{"section":"GSE210616_GSM6433623","species":"human","organ":"breast","method":"OmiCLIP","n_spots":901,"hit_rate_top50":0.3148057713651498,"ap_top50":0.1771293049537145},{"section":"GSE210616_GSM6433623","species":"human","organ":"breast","method":"STPath","n_spots":901,"hit_rate_top50":0.3265260821309655,"ap_top50":0.2106595337872371},{"section":"GSE210616_GSM6433624","species":"human","organ":"breast","method":"HistAgent","n_spots":1266,"hit_rate_top50":0.4264652130723165,"ap_top50":0.3595943851697576},{"section":"GSE210616_GSM6433624","species":"human","organ":"breast","method":"OmiCLIP","n_spots":1266,"hit_rate_top50":0.2248314478668276,"ap_top50":0.1331797287754934},{"section":"GSE210616_GSM6433624","species":"human","organ":"breast","method":"STPath","n_spots":1266,"hit_rate_top50":0.2075636656992052,"ap_top50":0.1106068757814794},{"section":"GSE213688_GSM6592049","species":"human","organ":"breast","method":"HistAgent","n_spots":1848,"hit_rate_top50":0.4316243604879969,"ap_top50":0.3021426650632305},{"section":"GSE213688_GSM6592049","species":"human","organ":"breast","method":"OmiCLIP","n_spots":1848,"hit_rate_top50":0.3773573396300669,"ap_top50":0.2489601293468637},{"section":"GSE213688_GSM6592049","species":"human","organ":"breast","method":"STPath","n_spots":1848,"hit_rate_top50":0.345336481700118,"ap_top50":0.2107189238421589},{"section":"GSE213688_GSM6592051","species":"human","organ":"breast","method":"HistAgent","n_spots":1564,"hit_rate_top50":0.5995524296675191,"ap_top50":0.5458137104087571},{"section":"GSE213688_GSM6592051","species":"human","organ":"breast","method":"OmiCLIP","n_spots":1564,"hit_rate_top50":0.3443989769820971,"ap_top50":0.2010347135798326},{"section":"GSE213688_GSM6592051","species":"human","organ":"breast","method":"STPath","n_spots":1564,"hit_rate_top50":0.2706649616368287,"ap_top50":0.1572731106248805},{"section":"GSE213688_GSM6592052","species":"human","organ":"breast","method":"HistAgent","n_spots":2104,"hit_rate_top50":0.574653349273615,"ap_top50":0.5141539824885519},{"section":"GSE213688_GSM6592052","species":"human","organ":"breast","method":"OmiCLIP","n_spots":2104,"hit_rate_top50":0.3399154365365773,"ap_top50":0.2131608436903155},{"section":"GSE213688_GSM6592052","species":"human","organ":"breast","method":"STPath","n_spots":2104,"hit_rate_top50":0.2927317909833917,"ap_top50":0.1750028325766024},{"section":"GSE213688_GSM6592054","species":"human","organ":"breast","method":"HistAgent","n_spots":1596,"hit_rate_top50":0.5763540796435533,"ap_top50":0.511885541311608},{"section":"GSE213688_GSM6592054","species":"human","organ":"breast","method":"OmiCLIP","n_spots":1596,"hit_rate_top50":0.259599693678641,"ap_top50":0.1435154062226896},{"section":"GSE213688_GSM6592054","species":"human","organ":"breast","method":"STPath","n_spots":1596,"hit_rate_top50":0.2995620996936786,"ap_top50":0.1667601629704562},{"section":"GSE242311_GSM7757980","species":"human","organ":"breast","method":"HistAgent","n_spots":2302,"hit_rate_top50":0.6927193744569938,"ap_top50":0.6508102147460485},{"section":"GSE242311_GSM7757980","species":"human","organ":"breast","method":"OmiCLIP","n_spots":2302,"hit_rate_top50":0.4282971329278888,"ap_top50":0.3320800444696759},{"section":"GSE242311_GSM7757980","species":"human","organ":"breast","method":"STPath","n_spots":2302,"hit_rate_top50":0.4354995655951346,"ap_top50":0.3311268689774854},{"section":"GSE242311_GSM7757982","species":"human","organ":"breast","method":"HistAgent","n_spots":2434,"hit_rate_top50":0.7059572719802794,"ap_top50":0.6653829555051664},{"section":"GSE242311_GSM7757982","species":"human","organ":"breast","method":"OmiCLIP","n_spots":2434,"hit_rate_top50":0.4657107641741988,"ap_top50":0.3356617470607929},{"section":"GSE242311_GSM7757982","species":"human","organ":"breast","method":"STPath","n_spots":2434,"hit_rate_top50":0.4727855382087099,"ap_top50":0.3575703478685908},{"section":"GSE243179_GSM7780297","species":"human","organ":"heart","method":"HistAgent","n_spots":1283,"hit_rate_top50":0.3014886983632112,"ap_top50":0.2070735020713313},{"section":"GSE243179_GSM7780297","species":"human","organ":"heart","method":"OmiCLIP","n_spots":1283,"hit_rate_top50":0.1622408417770849,"ap_top50":0.0484204656980635},{"section":"GSE243179_GSM7780297","species":"human","organ":"heart","method":"STPath","n_spots":1283,"hit_rate_top50":0.2210093530787218,"ap_top50":0.1298137159383898},{"section":"Human_Heart_10X_06232020_Visium","species":"human","organ":"heart","method":"HistAgent","n_spots":4247,"hit_rate_top50":0.8150862128553944,"ap_top50":0.7919666104642161},{"section":"Human_Heart_10X_06232020_Visium","species":"human","organ":"heart","method":"OmiCLIP","n_spots":4247,"hit_rate_top50":0.5172879011958698,"ap_top50":0.3863492720716103},{"section":"Human_Heart_10X_06232020_Visium","species":"human","organ":"heart","method":"STPath","n_spots":4247,"hit_rate_top50":0.5745162312991705,"ap_top50":0.4211237819524025},{"section":"Human_Heart_Kuppe_10082022_Visium_AKK002_157782","species":"human","organ":"heart","method":"HistAgent","n_spots":2995,"hit_rate_top50":0.8045943238731219,"ap_top50":0.7813156041277025},{"section":"Human_Heart_Kuppe_10082022_Visium_AKK002_157782","species":"human","organ":"heart","method":"OmiCLIP","n_spots":2995,"hit_rate_top50":0.584500834724541,"ap_top50":0.4934411794374173},{"section":"Human_Heart_Kuppe_10082022_Visium_AKK002_157782","species":"human","organ":"heart","method":"STPath","n_spots":2995,"hit_rate_top50":0.6123472454090151,"ap_top50":0.5110491812476881},{"section":"Human_Heart_Kuppe_10082022_Visium_Visium_12_CK290","species":"human","organ":"heart","method":"HistAgent","n_spots":3193,"hit_rate_top50":0.7092201691199499,"ap_top50":0.6678276558696471},{"section":"Human_Heart_Kuppe_10082022_Visium_Visium_12_CK290","species":"human","organ":"heart","method":"OmiCLIP","n_spots":3193,"hit_rate_top50":0.5497776385844034,"ap_top50":0.4635605012715721},{"section":"Human_Heart_Kuppe_10082022_Visium_Visium_12_CK290","species":"human","organ":"heart","method":"STPath","n_spots":3193,"hit_rate_top50":0.4501659880989665,"ap_top50":0.324890617995912},{"section":"Human_Heart_Kuppe_10082022_Visium_Visium_17_CK295","species":"human","organ":"heart","method":"HistAgent","n_spots":3535,"hit_rate_top50":0.729763950238692,"ap_top50":0.6867810481628963},{"section":"Human_Heart_Kuppe_10082022_Visium_Visium_17_CK295","species":"human","organ":"heart","method":"OmiCLIP","n_spots":3535,"hit_rate_top50":0.5669676274910317,"ap_top50":0.4497806793961554},{"section":"Human_Heart_Kuppe_10082022_Visium_Visium_17_CK295","species":"human","organ":"heart","method":"STPath","n_spots":3535,"hit_rate_top50":0.601938928324457,"ap_top50":0.5209206527029084},{"section":"Human_Heart_Kuppe_10082022_Visium_Visium_19_CK297","species":"human","organ":"heart","method":"HistAgent","n_spots":4281,"hit_rate_top50":0.7731995139062664,"ap_top50":0.745114349304495},{"section":"Human_Heart_Kuppe_10082022_Visium_Visium_19_CK297","species":"human","organ":"heart","method":"OmiCLIP","n_spots":4281,"hit_rate_top50":0.4655257747947933,"ap_top50":0.2792992923150394},{"section":"Human_Heart_Kuppe_10082022_Visium_Visium_19_CK297","species":"human","organ":"heart","method":"STPath","n_spots":4281,"hit_rate_top50":0.4526859451468232,"ap_top50":0.3112790448647535},{"section":"Human_Heart_Kuppe_10082022_Visium_Visium_1_CK279","species":"human","organ":"heart","method":"HistAgent","n_spots":2049,"hit_rate_top50":0.7640312347486579,"ap_top50":0.7287179046740446},{"section":"Human_Heart_Kuppe_10082022_Visium_Visium_1_CK279","species":"human","organ":"heart","method":"OmiCLIP","n_spots":2049,"hit_rate_top50":0.4916935090287945,"ap_top50":0.375774285010307},{"section":"Human_Heart_Kuppe_10082022_Visium_Visium_1_CK279","species":"human","organ":"heart","method":"STPath","n_spots":2049,"hit_rate_top50":0.5988677403611518,"ap_top50":0.5110366184963056},{"section":"Human_Heart_Kuppe_10082022_Visium_Visium_2_CK280","species":"human","organ":"heart","method":"HistAgent","n_spots":2822,"hit_rate_top50":0.7039829907866761,"ap_top50":0.6583809986463196},{"section":"Human_Heart_Kuppe_10082022_Visium_Visium_2_CK280","species":"human","organ":"heart","method":"OmiCLIP","n_spots":2822,"hit_rate_top50":0.5189014883061658,"ap_top50":0.4045619527359185},{"section":"Human_Heart_Kuppe_10082022_Visium_Visium_2_CK280","species":"human","organ":"heart","method":"STPath","n_spots":2822,"hit_rate_top50":0.575272856130404,"ap_top50":0.4802120373402173},{"section":"Human_Heart_Kuppe_10082022_Visium_Visium_7_CK285","species":"human","organ":"heart","method":"HistAgent","n_spots":3656,"hit_rate_top50":0.7338566739606126,"ap_top50":0.6976388951818577},{"section":"Human_Heart_Kuppe_10082022_Visium_Visium_7_CK285","species":"human","organ":"heart","method":"OmiCLIP","n_spots":3656,"hit_rate_top50":0.5949617067833699,"ap_top50":0.5184178228861541},{"section":"Human_Heart_Kuppe_10082022_Visium_Visium_7_CK285","species":"human","organ":"heart","method":"STPath","n_spots":3656,"hit_rate_top50":0.5371936542669584,"ap_top50":0.4420600335891124},{"section":"GSE175540_GSM5924032","species":"human","organ":"kidney","method":"HistAgent","n_spots":3829,"hit_rate_top50":0.7688430399582136,"ap_top50":0.7352184226614351},{"section":"GSE175540_GSM5924032","species":"human","organ":"kidney","method":"OmiCLIP","n_spots":3829,"hit_rate_top50":0.4765944110733873,"ap_top50":0.3742203100776402},{"section":"GSE175540_GSM5924032","species":"human","organ":"kidney","method":"STPath","n_spots":3829,"hit_rate_top50":0.3400470096630974,"ap_top50":0.2093220062001278},{"section":"GSE175540_GSM5924038","species":"human","organ":"kidney","method":"HistAgent","n_spots":3206,"hit_rate_top50":0.7390393013100437,"ap_top50":0.7056359574333964},{"section":"GSE175540_GSM5924038","species":"human","organ":"kidney","method":"OmiCLIP","n_spots":3206,"hit_rate_top50":0.4780536494073611,"ap_top50":0.3510053025661168},{"section":"GSE175540_GSM5924038","species":"human","organ":"kidney","method":"STPath","n_spots":3206,"hit_rate_top50":0.3780286961946351,"ap_top50":0.2591838251690093},{"section":"GSE175540_GSM5924041","species":"human","organ":"kidney","method":"HistAgent","n_spots":4359,"hit_rate_top50":0.5149053484269566,"ap_top50":0.4344289366221002},{"section":"GSE175540_GSM5924041","species":"human","organ":"kidney","method":"OmiCLIP","n_spots":4359,"hit_rate_top50":0.4780069772409047,"ap_top50":0.3381982082349375},{"section":"GSE175540_GSM5924041","species":"human","organ":"kidney","method":"STPath","n_spots":4359,"hit_rate_top50":0.3185338301255428,"ap_top50":0.210811238656279},{"section":"GSE175540_GSM5924044","species":"human","organ":"kidney","method":"HistAgent","n_spots":1983,"hit_rate_top50":0.737990948137539,"ap_top50":0.6998919470504843},{"section":"GSE175540_GSM5924044","species":"human","organ":"kidney","method":"OmiCLIP","n_spots":1983,"hit_rate_top50":0.4562537577770506,"ap_top50":0.3483429672911546},{"section":"GSE175540_GSM5924044","species":"human","organ":"kidney","method":"STPath","n_spots":1983,"hit_rate_top50":0.3445170574754799,"ap_top50":0.1872320122588672},{"section":"GSE175540_GSM5924046","species":"human","organ":"kidney","method":"HistAgent","n_spots":1949,"hit_rate_top50":0.8111544381734223,"ap_top50":0.7868712905697666},{"section":"GSE175540_GSM5924046","species":"human","organ":"kidney","method":"OmiCLIP","n_spots":1949,"hit_rate_top50":0.5375987685992818,"ap_top50":0.4329859458616478},{"section":"GSE175540_GSM5924046","species":"human","organ":"kidney","method":"STPath","n_spots":1949,"hit_rate_top50":0.3504976911236531,"ap_top50":0.1769216395253136},{"section":"GSE183456_GSM6047784","species":"human","organ":"kidney","method":"HistAgent","n_spots":534,"hit_rate_top50":0.6462945511658814,"ap_top50":0.590788191070166},{"section":"GSE183456_GSM6047784","species":"human","organ":"kidney","method":"OmiCLIP","n_spots":534,"hit_rate_top50":0.4095759333091699,"ap_top50":0.2987473291189922},{"section":"GSE183456_GSM6047784","species":"human","organ":"kidney","method":"STPath","n_spots":534,"hit_rate_top50":0.3689996375498369,"ap_top50":0.2190321963615481},{"section":"GSE183456_GSM6047788","species":"human","organ":"kidney","method":"HistAgent","n_spots":601,"hit_rate_top50":0.6669217970049918,"ap_top50":0.6159864075706631},{"section":"GSE183456_GSM6047788","species":"human","organ":"kidney","method":"OmiCLIP","n_spots":601,"hit_rate_top50":0.5084193011647256,"ap_top50":0.4087250538628556},{"section":"GSE183456_GSM6047788","species":"human","organ":"kidney","method":"STPath","n_spots":601,"hit_rate_top50":0.4198003327787021,"ap_top50":0.2840815362917478},{"section":"GSE183456_GSM6047791","species":"human","organ":"kidney","method":"HistAgent","n_spots":317,"hit_rate_top50":0.6766561514195584,"ap_top50":0.6297686872885068},{"section":"GSE183456_GSM6047791","species":"human","organ":"kidney","method":"OmiCLIP","n_spots":317,"hit_rate_top50":0.4830914826498422,"ap_top50":0.3762589102815311},{"section":"GSE183456_GSM6047791","species":"human","organ":"kidney","method":"STPath","n_spots":317,"hit_rate_top50":0.4029652996845426,"ap_top50":0.251067239328724},{"section":"GSE183456_GSM6047792","species":"human","organ":"kidney","method":"HistAgent","n_spots":645,"hit_rate_top50":0.7048062015503875,"ap_top50":0.6640845508174382},{"section":"GSE183456_GSM6047792","species":"human","organ":"kidney","method":"OmiCLIP","n_spots":645,"hit_rate_top50":0.5298708010335917,"ap_top50":0.4421792043127984},{"section":"GSE183456_GSM6047792","species":"human","organ":"kidney","method":"STPath","n_spots":645,"hit_rate_top50":0.4258811369509043,"ap_top50":0.2687478941702052},{"section":"GSE183456_GSM6047794","species":"human","organ":"kidney","method":"HistAgent","n_spots":640,"hit_rate_top50":0.6520416666666666,"ap_top50":0.5998386086406442},{"section":"GSE183456_GSM6047794","species":"human","organ":"kidney","method":"OmiCLIP","n_spots":640,"hit_rate_top50":0.4026111111111111,"ap_top50":0.3030762424835481},{"section":"GSE183456_GSM6047794","species":"human","organ":"kidney","method":"STPath","n_spots":640,"hit_rate_top50":0.3327118055555555,"ap_top50":0.1834128781480204},{"section":"GSE217414_GSM6716963","species":"human","organ":"liver","method":"HistAgent","n_spots":2887,"hit_rate_top50":0.6143985046335372,"ap_top50":0.5409986604725479},{"section":"GSE217414_GSM6716963","species":"human","organ":"liver","method":"OmiCLIP","n_spots":2887,"hit_rate_top50":0.0341946657429858,"ap_top50":0.0064102269302679},{"section":"GSE217414_GSM6716963","species":"human","organ":"liver","method":"STPath","n_spots":2887,"hit_rate_top50":0.3222448340208514,"ap_top50":0.1610905936297489},{"section":"GSE217414_GSM6716965","species":"human","organ":"liver","method":"HistAgent","n_spots":2091,"hit_rate_top50":0.701497649748292,"ap_top50":0.6519999454443746},{"section":"GSE217414_GSM6716965","species":"human","organ":"liver","method":"OmiCLIP","n_spots":2091,"hit_rate_top50":0.0468866571018651,"ap_top50":0.0063414459964289},{"section":"GSE217414_GSM6716965","species":"human","organ":"liver","method":"STPath","n_spots":2091,"hit_rate_top50":0.3051743756338197,"ap_top50":0.1484194857426295},{"section":"GSE217414_GSM6716966","species":"human","organ":"liver","method":"HistAgent","n_spots":2317,"hit_rate_top50":0.51390220722547,"ap_top50":0.4365885977135079},{"section":"GSE217414_GSM6716966","species":"human","organ":"liver","method":"OmiCLIP","n_spots":2317,"hit_rate_top50":0.1375914082560608,"ap_top50":0.0509705935722284},{"section":"GSE217414_GSM6716966","species":"human","organ":"liver","method":"STPath","n_spots":2317,"hit_rate_top50":0.228528400099397,"ap_top50":0.0881538640415327},{"section":"GSE223559_GSM6963120","species":"human","organ":"liver","method":"HistAgent","n_spots":4350,"hit_rate_top50":0.9034436781609194,"ap_top50":0.8966865268670617},{"section":"GSE223559_GSM6963120","species":"human","organ":"liver","method":"OmiCLIP","n_spots":4350,"hit_rate_top50":0.7681379310344828,"ap_top50":0.7367373119033217},{"section":"GSE223559_GSM6963120","species":"human","organ":"liver","method":"STPath","n_spots":4350,"hit_rate_top50":0.5885885057471265,"ap_top50":0.5228056943550824},{"section":"GSE223559_GSM6963121","species":"human","organ":"liver","method":"HistAgent","n_spots":2618,"hit_rate_top50":0.8616818447783725,"ap_top50":0.8491761361360028},{"section":"GSE223559_GSM6963121","species":"human","organ":"liver","method":"OmiCLIP","n_spots":2618,"hit_rate_top50":0.7882612063110567,"ap_top50":0.7572230247102731},{"section":"GSE223559_GSM6963121","species":"human","organ":"liver","method":"STPath","n_spots":2618,"hit_rate_top50":0.614351526102678,"ap_top50":0.5286986024942906},{"section":"GSE223559_GSM6963123","species":"human","organ":"liver","method":"HistAgent","n_spots":3645,"hit_rate_top50":0.7609529035208047,"ap_top50":0.7352956338307427},{"section":"GSE223559_GSM6963123","species":"human","organ":"liver","method":"OmiCLIP","n_spots":3645,"hit_rate_top50":0.6700993750952599,"ap_top50":0.6187402038025787},{"section":"GSE223559_GSM6963123","species":"human","organ":"liver","method":"STPath","n_spots":3645,"hit_rate_top50":0.4773833257125438,"ap_top50":0.3314698570181801},{"section":"GSE240429_GSM7697869","species":"human","organ":"liver","method":"HistAgent","n_spots":2349,"hit_rate_top50":0.8946775496056412,"ap_top50":0.8854231667797814},{"section":"GSE240429_GSM7697869","species":"human","organ":"liver","method":"OmiCLIP","n_spots":2349,"hit_rate_top50":0.7805000632975535,"ap_top50":0.7365812198926993},{"section":"GSE240429_GSM7697869","species":"human","organ":"liver","method":"STPath","n_spots":2349,"hit_rate_top50":0.2622396815955591,"ap_top50":0.1346600318787312},{"section":"GSE243367_GSM7784329","species":"human","organ":"liver","method":"HistAgent","n_spots":1928,"hit_rate_top50":0.7689107883817428,"ap_top50":0.7390494453838294},{"section":"GSE243367_GSM7784329","species":"human","organ":"liver","method":"OmiCLIP","n_spots":1928,"hit_rate_top50":0.6676970954356845,"ap_top50":0.6146771638558635},{"section":"GSE243367_GSM7784329","species":"human","organ":"liver","method":"STPath","n_spots":1928,"hit_rate_top50":0.4857053941908714,"ap_top50":0.3572766200247897},{"section":"GSE245908_GSM7850822","species":"human","organ":"liver","method":"HistAgent","n_spots":2261,"hit_rate_top50":0.874312251216276,"ap_top50":0.8630058895938882},{"section":"GSE245908_GSM7850822","species":"human","organ":"liver","method":"OmiCLIP","n_spots":2261,"hit_rate_top50":0.5927288810260946,"ap_top50":0.5174715618831407},{"section":"GSE245908_GSM7850822","species":"human","organ":"liver","method":"STPath","n_spots":2261,"hit_rate_top50":0.1842547545333923,"ap_top50":0.0527606133370706},{"section":"GSE254364_GSM8041062","species":"human","organ":"liver","method":"HistAgent","n_spots":3070,"hit_rate_top50":0.7202392033727538,"ap_top50":0.681905676419868},{"section":"GSE254364_GSM8041062","species":"human","organ":"liver","method":"OmiCLIP","n_spots":3070,"hit_rate_top50":0.2635420371511577,"ap_top50":0.1893631436270252},{"section":"GSE254364_GSM8041062","species":"human","organ":"liver","method":"STPath","n_spots":3070,"hit_rate_top50":0.3822593603375362,"ap_top50":0.2557099256590637},{"section":"GSE206621_GSM6258255","species":"human","organ":"mouth","method":"HistAgent","n_spots":1088,"hit_rate_top50":0.7426654411764706,"ap_top50":0.7140177007078095},{"section":"GSE206621_GSM6258255","species":"human","organ":"mouth","method":"OmiCLIP","n_spots":1088,"hit_rate_top50":0.380533088235294,"ap_top50":0.2506509502534282},{"section":"GSE206621_GSM6258255","species":"human","organ":"mouth","method":"STPath","n_spots":1088,"hit_rate_top50":0.4322426470588235,"ap_top50":0.3056109016109605},{"section":"GSE206621_GSM6258257","species":"human","organ":"mouth","method":"HistAgent","n_spots":160,"hit_rate_top50":0.8212500000000003,"ap_top50":0.8058580646372245},{"section":"GSE206621_GSM6258257","species":"human","organ":"mouth","method":"OmiCLIP","n_spots":160,"hit_rate_top50":0.3808749999999999,"ap_top50":0.2484704111957329},{"section":"GSE206621_GSM6258257","species":"human","organ":"mouth","method":"STPath","n_spots":160,"hit_rate_top50":0.46125,"ap_top50":0.3480434168301364},{"section":"GSE208253_GSM6339633","species":"human","organ":"mouth","method":"HistAgent","n_spots":969,"hit_rate_top50":0.7634969401174387,"ap_top50":0.7330516793845859},{"section":"GSE208253_GSM6339633","species":"human","organ":"mouth","method":"OmiCLIP","n_spots":969,"hit_rate_top50":0.5589492964985877,"ap_top50":0.4566915904972387},{"section":"GSE208253_GSM6339633","species":"human","organ":"mouth","method":"STPath","n_spots":969,"hit_rate_top50":0.2804794235330328,"ap_top50":0.1484970661923272},{"section":"GSE208253_GSM6339635","species":"human","organ":"mouth","method":"HistAgent","n_spots":1678,"hit_rate_top50":0.7497386680310199,"ap_top50":0.7205332525464607},{"section":"GSE208253_GSM6339635","species":"human","organ":"mouth","method":"OmiCLIP","n_spots":1678,"hit_rate_top50":0.5446397801239603,"ap_top50":0.4910599159773003},{"section":"GSE208253_GSM6339635","species":"human","organ":"mouth","method":"STPath","n_spots":1678,"hit_rate_top50":0.333876178497374,"ap_top50":0.1742007549651368},{"section":"GSE208253_GSM6339636","species":"human","organ":"mouth","method":"HistAgent","n_spots":3311,"hit_rate_top50":0.6911224562863204,"ap_top50":0.6528362122456527},{"section":"GSE208253_GSM6339636","species":"human","organ":"mouth","method":"OmiCLIP","n_spots":3311,"hit_rate_top50":0.5173680012297078,"ap_top50":0.4263796588397217},{"section":"GSE208253_GSM6339636","species":"human","organ":"mouth","method":"STPath","n_spots":3311,"hit_rate_top50":0.3579176873217125,"ap_top50":0.1835474320807655},{"section":"GSE208253_GSM6339637","species":"human","organ":"mouth","method":"HistAgent","n_spots":2860,"hit_rate_top50":0.578714976304989,"ap_top50":0.5265451427404764},{"section":"GSE208253_GSM6339637","species":"human","organ":"mouth","method":"OmiCLIP","n_spots":2860,"hit_rate_top50":0.4247913388631237,"ap_top50":0.3285649558104004},{"section":"GSE208253_GSM6339637","species":"human","organ":"mouth","method":"STPath","n_spots":2860,"hit_rate_top50":0.2223694453691518,"ap_top50":0.0966956444677568},{"section":"GSE208253_GSM6339641","species":"human","organ":"mouth","method":"HistAgent","n_spots":2130,"hit_rate_top50":0.7335241745592069,"ap_top50":0.7060972850913205},{"section":"GSE208253_GSM6339641","species":"human","organ":"mouth","method":"OmiCLIP","n_spots":2130,"hit_rate_top50":0.5452988067411024,"ap_top50":0.4793261325182138},{"section":"GSE208253_GSM6339641","species":"human","organ":"mouth","method":"STPath","n_spots":2130,"hit_rate_top50":0.3244294510056567,"ap_top50":0.1737094635207613},{"section":"GSE220978_GSM6833484","species":"human","organ":"mouth","method":"HistAgent","n_spots":4199,"hit_rate_top50":0.8057894736842106,"ap_top50":0.7864384848682068},{"section":"GSE220978_GSM6833484","species":"human","organ":"mouth","method":"OmiCLIP","n_spots":4199,"hit_rate_top50":0.4331191950464396,"ap_top50":0.3133965746101859},{"section":"GSE220978_GSM6833484","species":"human","organ":"mouth","method":"STPath","n_spots":4199,"hit_rate_top50":0.3306467809795983,"ap_top50":0.1859078375315771},{"section":"GSE220978_GSM6833486","species":"human","organ":"mouth","method":"HistAgent","n_spots":4514,"hit_rate_top50":0.7335108336214269,"ap_top50":0.7043002250166651},{"section":"GSE220978_GSM6833486","species":"human","organ":"mouth","method":"OmiCLIP","n_spots":4514,"hit_rate_top50":0.4998729560604289,"ap_top50":0.4197854882382083},{"section":"GSE220978_GSM6833486","species":"human","organ":"mouth","method":"STPath","n_spots":4514,"hit_rate_top50":0.2945215428859124,"ap_top50":0.1292692949494923},{"section":"GSE203612_GSM6177614","species":"human","organ":"ovary","method":"HistAgent","n_spots":1762,"hit_rate_top50":0.7107150964812714,"ap_top50":0.6684261177132812},{"section":"GSE203612_GSM6177614","species":"human","organ":"ovary","method":"OmiCLIP","n_spots":1762,"hit_rate_top50":0.3395005675368899,"ap_top50":0.2280724981717447},{"section":"GSE203612_GSM6177614","species":"human","organ":"ovary","method":"STPath","n_spots":1762,"hit_rate_top50":0.3654597048808173,"ap_top50":0.2357339885056278},{"section":"GSE203612_GSM6177618","species":"human","organ":"ovary","method":"HistAgent","n_spots":1789,"hit_rate_top50":0.6132121088214101,"ap_top50":0.5589125552360156},{"section":"GSE203612_GSM6177618","species":"human","organ":"ovary","method":"OmiCLIP","n_spots":1789,"hit_rate_top50":0.2723960575032556,"ap_top50":0.1624723804366166},{"section":"GSE203612_GSM6177618","species":"human","organ":"ovary","method":"STPath","n_spots":1789,"hit_rate_top50":0.2979515329399784,"ap_top50":0.1910513163749418},{"section":"GSE213699_GSM6592131","species":"human","organ":"ovary","method":"HistAgent","n_spots":3356,"hit_rate_top50":0.7200715137067939,"ap_top50":0.675038332008105},{"section":"GSE213699_GSM6592131","species":"human","organ":"ovary","method":"OmiCLIP","n_spots":3356,"hit_rate_top50":0.4743682955899881,"ap_top50":0.3467899608249756},{"section":"GSE213699_GSM6592131","species":"human","organ":"ovary","method":"STPath","n_spots":3356,"hit_rate_top50":0.3440643623361144,"ap_top50":0.2020671232959399},{"section":"GSE213699_GSM6592132","species":"human","organ":"ovary","method":"HistAgent","n_spots":2272,"hit_rate_top50":0.8220598591549295,"ap_top50":0.8026576599274003},{"section":"GSE213699_GSM6592132","species":"human","organ":"ovary","method":"OmiCLIP","n_spots":2272,"hit_rate_top50":0.4214524647887324,"ap_top50":0.3535018662336699},{"section":"GSE213699_GSM6592132","species":"human","organ":"ovary","method":"STPath","n_spots":2272,"hit_rate_top50":0.292068661971831,"ap_top50":0.180599176140832},{"section":"GSE213699_GSM6592134","species":"human","organ":"ovary","method":"HistAgent","n_spots":3139,"hit_rate_top50":0.7724052245938197,"ap_top50":0.7456247414412102},{"section":"GSE213699_GSM6592134","species":"human","organ":"ovary","method":"OmiCLIP","n_spots":3139,"hit_rate_top50":0.4537304874163747,"ap_top50":0.3182390399374885},{"section":"GSE213699_GSM6592134","species":"human","organ":"ovary","method":"STPath","n_spots":3139,"hit_rate_top50":0.2993182542210895,"ap_top50":0.1952278123982359},{"section":"GSE213699_GSM6592135","species":"human","organ":"ovary","method":"HistAgent","n_spots":2142,"hit_rate_top50":0.7572642390289449,"ap_top50":0.7249606209278158},{"section":"GSE213699_GSM6592135","species":"human","organ":"ovary","method":"OmiCLIP","n_spots":2142,"hit_rate_top50":0.4764985994397759,"ap_top50":0.3337748473585314},{"section":"GSE213699_GSM6592135","species":"human","organ":"ovary","method":"STPath","n_spots":2142,"hit_rate_top50":0.3652287581699346,"ap_top50":0.2430370898654935},{"section":"GSE227019_GSM7090086","species":"human","organ":"ovary","method":"HistAgent","n_spots":2584,"hit_rate_top50":0.6479953560371517,"ap_top50":0.595385372746411},{"section":"GSE227019_GSM7090086","species":"human","organ":"ovary","method":"OmiCLIP","n_spots":2584,"hit_rate_top50":0.4012925696594427,"ap_top50":0.2495383636272921},{"section":"GSE227019_GSM7090086","species":"human","organ":"ovary","method":"STPath","n_spots":2584,"hit_rate_top50":0.3226393188854489,"ap_top50":0.1996012543898029},{"section":"GSE227019_GSM7090088","species":"human","organ":"ovary","method":"HistAgent","n_spots":1977,"hit_rate_top50":0.7509458775923117,"ap_top50":0.7194980888755115},{"section":"GSE227019_GSM7090088","species":"human","organ":"ovary","method":"OmiCLIP","n_spots":1977,"hit_rate_top50":0.4452604957005564,"ap_top50":0.3134180665188763},{"section":"GSE227019_GSM7090088","species":"human","organ":"ovary","method":"STPath","n_spots":1977,"hit_rate_top50":0.4477288821446636,"ap_top50":0.3408047102121214},{"section":"Human_Ovary_10X_03282022_Visium","species":"human","organ":"ovary","method":"HistAgent","n_spots":3455,"hit_rate_top50":0.8318784370477569,"ap_top50":0.8118446750414717},{"section":"Human_Ovary_10X_03282022_Visium","species":"human","organ":"ovary","method":"OmiCLIP","n_spots":3455,"hit_rate_top50":0.4986454413892908,"ap_top50":0.369314972631749},{"section":"Human_Ovary_10X_03282022_Visium","species":"human","organ":"ovary","method":"STPath","n_spots":3455,"hit_rate_top50":0.5140781476121563,"ap_top50":0.4259451230486857},{"section":"Human_Prostate_Erickson_08102022_Visium_Patient_1_H2_1","species":"human","organ":"prostate","method":"HistAgent","n_spots":2997,"hit_rate_top50":0.5175175950709756,"ap_top50":0.4630478663287369},{"section":"Human_Prostate_Erickson_08102022_Visium_Patient_1_H2_1","species":"human","organ":"prostate","method":"OmiCLIP","n_spots":2997,"hit_rate_top50":0.2574798587133659,"ap_top50":0.1374057117195584},{"section":"Human_Prostate_Erickson_08102022_Visium_Patient_1_H2_1","species":"human","organ":"prostate","method":"STPath","n_spots":2997,"hit_rate_top50":0.2462684334642063,"ap_top50":0.1247455909992635},{"section":"Human_Prostate_Erickson_08102022_Visium_Patient_1_H2_2","species":"human","organ":"prostate","method":"HistAgent","n_spots":3147,"hit_rate_top50":0.4841162108600934,"ap_top50":0.3782405683237531},{"section":"Human_Prostate_Erickson_08102022_Visium_Patient_1_H2_2","species":"human","organ":"prostate","method":"OmiCLIP","n_spots":3147,"hit_rate_top50":0.3172730809559946,"ap_top50":0.1759639607333949},{"section":"Human_Prostate_Erickson_08102022_Visium_Patient_1_H2_2","species":"human","organ":"prostate","method":"STPath","n_spots":3147,"hit_rate_top50":0.3052831148938948,"ap_top50":0.1813344357734511},{"section":"Human_Prostate_Erickson_08102022_Visium_Patient_1_V1_2","species":"human","organ":"prostate","method":"HistAgent","n_spots":2716,"hit_rate_top50":0.6425995419520368,"ap_top50":0.5901502621894451},{"section":"Human_Prostate_Erickson_08102022_Visium_Patient_1_V1_2","species":"human","organ":"prostate","method":"OmiCLIP","n_spots":2716,"hit_rate_top50":0.3099696151714977,"ap_top50":0.1734314422885658},{"section":"Human_Prostate_Erickson_08102022_Visium_Patient_1_V1_2","species":"human","organ":"prostate","method":"STPath","n_spots":2716,"hit_rate_top50":0.3528447245412708,"ap_top50":0.2296765768409479},{"section":"GSE203612_GSM6177607","species":"human","organ":"stomach","method":"HistAgent","n_spots":2624,"hit_rate_top50":0.5332368863352095,"ap_top50":0.4658820019895153},{"section":"GSE203612_GSM6177607","species":"human","organ":"stomach","method":"OmiCLIP","n_spots":2624,"hit_rate_top50":0.2065963753387534,"ap_top50":0.1008000774903033},{"section":"GSE203612_GSM6177607","species":"human","organ":"stomach","method":"STPath","n_spots":2624,"hit_rate_top50":0.2457173102981029,"ap_top50":0.1453096538167938},{"section":"GSE251950_GSM7990473","species":"human","organ":"stomach","method":"HistAgent","n_spots":3834,"hit_rate_top50":0.4096454259931599,"ap_top50":0.3338802932288394},{"section":"GSE251950_GSM7990473","species":"human","organ":"stomach","method":"OmiCLIP","n_spots":3834,"hit_rate_top50":0.1359349283785297,"ap_top50":0.057383569245608},{"section":"GSE251950_GSM7990473","species":"human","organ":"stomach","method":"STPath","n_spots":3834,"hit_rate_top50":0.1783488137737567,"ap_top50":0.0821926433397657},{"section":"GSE251950_GSM7990475","species":"human","organ":"stomach","method":"HistAgent","n_spots":3043,"hit_rate_top50":0.727702924745317,"ap_top50":0.6921730172243891},{"section":"GSE251950_GSM7990475","species":"human","organ":"stomach","method":"OmiCLIP","n_spots":3043,"hit_rate_top50":0.2655274400262898,"ap_top50":0.1606130865424102},{"section":"GSE251950_GSM7990475","species":"human","organ":"stomach","method":"STPath","n_spots":3043,"hit_rate_top50":0.3546434439697666,"ap_top50":0.2133558634960975},{"section":"GSE251950_GSM7990477","species":"human","organ":"stomach","method":"HistAgent","n_spots":3577,"hit_rate_top50":0.7130388593793682,"ap_top50":0.6716589840987068},{"section":"GSE251950_GSM7990477","species":"human","organ":"stomach","method":"OmiCLIP","n_spots":3577,"hit_rate_top50":0.2597428012300811,"ap_top50":0.1669348335671712},{"section":"GSE251950_GSM7990477","species":"human","organ":"stomach","method":"STPath","n_spots":3577,"hit_rate_top50":0.3077551020408163,"ap_top50":0.1633591801715151},{"section":"GSE251950_GSM7990478","species":"human","organ":"stomach","method":"HistAgent","n_spots":2426,"hit_rate_top50":0.657182648962481,"ap_top50":0.592868729955765},{"section":"GSE251950_GSM7990478","species":"human","organ":"stomach","method":"OmiCLIP","n_spots":2426,"hit_rate_top50":0.2943467050218378,"ap_top50":0.1658389155378143},{"section":"GSE251950_GSM7990478","species":"human","organ":"stomach","method":"STPath","n_spots":2426,"hit_rate_top50":0.4013129045271965,"ap_top50":0.2565438308962555},{"section":"GSE251950_GSM7990479","species":"human","organ":"stomach","method":"HistAgent","n_spots":2483,"hit_rate_top50":0.5436035872628991,"ap_top50":0.4726437374100637},{"section":"GSE251950_GSM7990479","species":"human","organ":"stomach","method":"OmiCLIP","n_spots":2483,"hit_rate_top50":0.2437781434471786,"ap_top50":0.1278028899001936},{"section":"GSE251950_GSM7990479","species":"human","organ":"stomach","method":"STPath","n_spots":2483,"hit_rate_top50":0.277090997384565,"ap_top50":0.1309237443072011},{"section":"GSE251950_GSM7990480","species":"human","organ":"stomach","method":"HistAgent","n_spots":1882,"hit_rate_top50":0.6585653560042508,"ap_top50":0.6046910191799857},{"section":"GSE251950_GSM7990480","species":"human","organ":"stomach","method":"OmiCLIP","n_spots":1882,"hit_rate_top50":0.2666312433581296,"ap_top50":0.1489221346355173},{"section":"GSE251950_GSM7990480","species":"human","organ":"stomach","method":"STPath","n_spots":1882,"hit_rate_top50":0.2991498405951115,"ap_top50":0.1712211719528294},{"section":"GSE251950_GSM7990481","species":"human","organ":"stomach","method":"HistAgent","n_spots":3037,"hit_rate_top50":0.5688982349008691,"ap_top50":0.5067959655002705},{"section":"GSE251950_GSM7990481","species":"human","organ":"stomach","method":"OmiCLIP","n_spots":3037,"hit_rate_top50":0.1754409754442682,"ap_top50":0.064126580974965},{"section":"GSE251950_GSM7990481","species":"human","organ":"stomach","method":"STPath","n_spots":3037,"hit_rate_top50":0.2170412388621147,"ap_top50":0.0993574413563939},{"section":"GSE251950_GSM7990482","species":"human","organ":"stomach","method":"HistAgent","n_spots":3491,"hit_rate_top50":0.6953022056717274,"ap_top50":0.6530107848236227},{"section":"GSE251950_GSM7990482","species":"human","organ":"stomach","method":"OmiCLIP","n_spots":3491,"hit_rate_top50":0.2375995416786021,"ap_top50":0.1260509388083288},{"section":"GSE251950_GSM7990482","species":"human","organ":"stomach","method":"STPath","n_spots":3491,"hit_rate_top50":0.3106330564308221,"ap_top50":0.1844539374152364},{"section":"GSE203424_GSM6171787","species":"mouse","organ":"brain","method":"HistAgent","n_spots":3126,"hit_rate_top50":0.805866922584773,"ap_top50":0.7813958295187617},{"section":"GSE203424_GSM6171787","species":"mouse","organ":"brain","method":"OmiCLIP","n_spots":3126,"hit_rate_top50":0.5564555342290467,"ap_top50":0.4685197657538076},{"section":"GSE203424_GSM6171787","species":"mouse","organ":"brain","method":"STPath","n_spots":3126,"hit_rate_top50":0.2393282149712092,"ap_top50":0.0829892611728049},{"section":"GSE209583_GSM6380085","species":"mouse","organ":"brain","method":"HistAgent","n_spots":2732,"hit_rate_top50":0.6363909224011712,"ap_top50":0.5671768789458372},{"section":"GSE209583_GSM6380085","species":"mouse","organ":"brain","method":"OmiCLIP","n_spots":2732,"hit_rate_top50":0.4475695461200585,"ap_top50":0.3413651282554176},{"section":"GSE209583_GSM6380085","species":"mouse","organ":"brain","method":"STPath","n_spots":2732,"hit_rate_top50":0.2469985358711566,"ap_top50":0.1047187723845589},{"section":"GSE209583_GSM6380090","species":"mouse","organ":"brain","method":"HistAgent","n_spots":1723,"hit_rate_top50":0.3113150146224004,"ap_top50":0.2217192131584283},{"section":"GSE209583_GSM6380090","species":"mouse","organ":"brain","method":"OmiCLIP","n_spots":1723,"hit_rate_top50":0.2347723998856116,"ap_top50":0.1364042454741449},{"section":"GSE209583_GSM6380090","species":"mouse","organ":"brain","method":"STPath","n_spots":1723,"hit_rate_top50":0.1315155497387547,"ap_top50":0.0428227672374156},{"section":"GSE217058_GSM6704284","species":"mouse","organ":"brain","method":"HistAgent","n_spots":2108,"hit_rate_top50":0.6801542253419822,"ap_top50":0.6292137391733963},{"section":"GSE217058_GSM6704284","species":"mouse","organ":"brain","method":"OmiCLIP","n_spots":2108,"hit_rate_top50":0.4941531527829348,"ap_top50":0.3972913159435388},{"section":"GSE217058_GSM6704284","species":"mouse","organ":"brain","method":"STPath","n_spots":2108,"hit_rate_top50":0.240695691374688,"ap_top50":0.0906934590464518},{"section":"GSE217058_GSM6704287","species":"mouse","organ":"brain","method":"HistAgent","n_spots":3128,"hit_rate_top50":0.5794166016591372,"ap_top50":0.5062001723645065},{"section":"GSE217058_GSM6704287","species":"mouse","organ":"brain","method":"OmiCLIP","n_spots":3128,"hit_rate_top50":0.4301789960797499,"ap_top50":0.3173038602642303},{"section":"GSE217058_GSM6704287","species":"mouse","organ":"brain","method":"STPath","n_spots":3128,"hit_rate_top50":0.2333658037977984,"ap_top50":0.0918743869429774},{"section":"GSE222410_GSM6922991","species":"mouse","organ":"brain","method":"HistAgent","n_spots":1967,"hit_rate_top50":0.7917031011692933,"ap_top50":0.7630246490171377},{"section":"GSE222410_GSM6922991","species":"mouse","organ":"brain","method":"OmiCLIP","n_spots":1967,"hit_rate_top50":0.5510015251652263,"ap_top50":0.4683122279871444},{"section":"GSE222410_GSM6922991","species":"mouse","organ":"brain","method":"STPath","n_spots":1967,"hit_rate_top50":0.2619318759532282,"ap_top50":0.101396877492378},{"section":"GSE222981_GSM6937701","species":"mouse","organ":"brain","method":"HistAgent","n_spots":2962,"hit_rate_top50":0.8115192437542202,"ap_top50":0.7890939570579621},{"section":"GSE222981_GSM6937701","species":"mouse","organ":"brain","method":"OmiCLIP","n_spots":2962,"hit_rate_top50":0.5698717083051992,"ap_top50":0.4764120878039273},{"section":"GSE222981_GSM6937701","species":"mouse","organ":"brain","method":"STPath","n_spots":2962,"hit_rate_top50":0.2291289669142471,"ap_top50":0.0943643032239135},{"section":"GSE223066_GSM6939167","species":"mouse","organ":"brain","method":"HistAgent","n_spots":2778,"hit_rate_top50":0.78207343412527,"ap_top50":0.7524806293647837},{"section":"GSE223066_GSM6939167","species":"mouse","organ":"brain","method":"OmiCLIP","n_spots":2778,"hit_rate_top50":0.5741612670986321,"ap_top50":0.4878956737790361},{"section":"GSE223066_GSM6939167","species":"mouse","organ":"brain","method":"STPath","n_spots":2778,"hit_rate_top50":0.3024838012958963,"ap_top50":0.1233358650463399},{"section":"GSE232910_GSM7392320","species":"mouse","organ":"brain","method":"HistAgent","n_spots":3601,"hit_rate_top50":0.4551407194730381,"ap_top50":0.3663697527204554},{"section":"GSE232910_GSM7392320","species":"mouse","organ":"brain","method":"OmiCLIP","n_spots":3601,"hit_rate_top50":0.3136626730414074,"ap_top50":0.2088194747320435},{"section":"GSE232910_GSM7392320","species":"mouse","organ":"brain","method":"STPath","n_spots":3601,"hit_rate_top50":0.1824666620877265,"ap_top50":0.0641398471556774},{"section":"Mouse_Brain_10X_06232020_Visium_Sagittal_Anterior_Section_1","species":"mouse","organ":"brain","method":"HistAgent","n_spots":2695,"hit_rate_top50":0.8043933209647496,"ap_top50":0.778992165774839},{"section":"Mouse_Brain_10X_06232020_Visium_Sagittal_Anterior_Section_1","species":"mouse","organ":"brain","method":"OmiCLIP","n_spots":2695,"hit_rate_top50":0.5584192949907236,"ap_top50":0.4753227219230465},{"section":"Mouse_Brain_10X_06232020_Visium_Sagittal_Anterior_Section_1","species":"mouse","organ":"brain","method":"STPath","n_spots":2695,"hit_rate_top50":0.2068497217068645,"ap_top50":0.077393168210113},{"section":"GSE169749_GSM5213483","species":"mouse","organ":"colon","method":"HistAgent","n_spots":2604,"hit_rate_top50":0.7851766513056836,"ap_top50":0.7548790949872539},{"section":"GSE169749_GSM5213483","species":"mouse","organ":"colon","method":"OmiCLIP","n_spots":2604,"hit_rate_top50":0.1210061443932411,"ap_top50":0.0503251177814555},{"section":"GSE169749_GSM5213483","species":"mouse","organ":"colon","method":"STPath","n_spots":2604,"hit_rate_top50":0.153110599078341,"ap_top50":0.0663044452457444},{"section":"GSE169749_GSM5213484","species":"mouse","organ":"colon","method":"HistAgent","n_spots":3630,"hit_rate_top50":0.7813884297520661,"ap_top50":0.7506644852626186},{"section":"GSE169749_GSM5213484","species":"mouse","organ":"colon","method":"OmiCLIP","n_spots":3630,"hit_rate_top50":0.1242038567493113,"ap_top50":0.0578806218146129},{"section":"GSE169749_GSM5213484","species":"mouse","organ":"colon","method":"STPath","n_spots":3630,"hit_rate_top50":0.14932782369146,"ap_top50":0.0584793567524792},{"section":"GSE190595_GSM5726156","species":"mouse","organ":"colon","method":"HistAgent","n_spots":3934,"hit_rate_top50":0.7004652294778743,"ap_top50":0.6504980374230303},{"section":"GSE190595_GSM5726156","species":"mouse","organ":"colon","method":"OmiCLIP","n_spots":3934,"hit_rate_top50":0.0903717725448625,"ap_top50":0.0255676707144387},{"section":"GSE190595_GSM5726156","species":"mouse","organ":"colon","method":"STPath","n_spots":3934,"hit_rate_top50":0.1324412378716914,"ap_top50":0.0448145088098499},{"section":"GSE190595_GSM5726157","species":"mouse","organ":"colon","method":"HistAgent","n_spots":3547,"hit_rate_top50":0.7207330138144913,"ap_top50":0.6752844030125356},{"section":"GSE190595_GSM5726157","species":"mouse","organ":"colon","method":"OmiCLIP","n_spots":3547,"hit_rate_top50":0.0869636312376656,"ap_top50":0.0226881943530577},{"section":"GSE190595_GSM5726157","species":"mouse","organ":"colon","method":"STPath","n_spots":3547,"hit_rate_top50":0.0918917394981674,"ap_top50":0.0201854149588939},{"section":"GSE211895_GSM6505142","species":"mouse","organ":"colon","method":"HistAgent","n_spots":1378,"hit_rate_top50":0.6233671988388969,"ap_top50":0.5478580689772589},{"section":"GSE211895_GSM6505142","species":"mouse","organ":"colon","method":"OmiCLIP","n_spots":1378,"hit_rate_top50":0.2270246734397678,"ap_top50":0.1220443194667956},{"section":"GSE211895_GSM6505142","species":"mouse","organ":"colon","method":"STPath","n_spots":1378,"hit_rate_top50":0.2960087082728592,"ap_top50":0.1445298125708359},{"section":"GSE211895_GSM6505143","species":"mouse","organ":"colon","method":"HistAgent","n_spots":1372,"hit_rate_top50":0.7034402332361516,"ap_top50":0.6501076655179662},{"section":"GSE211895_GSM6505143","species":"mouse","organ":"colon","method":"OmiCLIP","n_spots":1372,"hit_rate_top50":0.2656559766763848,"ap_top50":0.15976649058886},{"section":"GSE211895_GSM6505143","species":"mouse","organ":"colon","method":"STPath","n_spots":1372,"hit_rate_top50":0.3069533527696793,"ap_top50":0.1552343138830888},{"section":"GSE211895_GSM6505144","species":"mouse","organ":"colon","method":"HistAgent","n_spots":1982,"hit_rate_top50":0.7909485368314834,"ap_top50":0.759525217440445},{"section":"GSE211895_GSM6505144","species":"mouse","organ":"colon","method":"OmiCLIP","n_spots":1982,"hit_rate_top50":0.2889303733602422,"ap_top50":0.1651947198166954},{"section":"GSE211895_GSM6505144","species":"mouse","organ":"colon","method":"STPath","n_spots":1982,"hit_rate_top50":0.2816851664984863,"ap_top50":0.1284755415509982},{"section":"GSE211895_GSM6505145","species":"mouse","organ":"colon","method":"HistAgent","n_spots":1909,"hit_rate_top50":0.7864745940282871,"ap_top50":0.7538705222960865},{"section":"GSE211895_GSM6505145","species":"mouse","organ":"colon","method":"OmiCLIP","n_spots":1909,"hit_rate_top50":0.266799371398638,"ap_top50":0.1576607802435707},{"section":"GSE211895_GSM6505145","species":"mouse","organ":"colon","method":"STPath","n_spots":1909,"hit_rate_top50":0.3110424305919329,"ap_top50":0.1657559009417287},{"section":"GSE235742_GSM7508784","species":"mouse","organ":"colon","method":"HistAgent","n_spots":640,"hit_rate_top50":0.77534375,"ap_top50":0.7454366511883453},{"section":"GSE235742_GSM7508784","species":"mouse","organ":"colon","method":"OmiCLIP","n_spots":640,"hit_rate_top50":0.1695625,"ap_top50":0.0886023201166814},{"section":"GSE235742_GSM7508784","species":"mouse","organ":"colon","method":"STPath","n_spots":640,"hit_rate_top50":0.20434375,"ap_top50":0.0814918680980558},{"section":"GSE235742_GSM7508785","species":"mouse","organ":"colon","method":"HistAgent","n_spots":572,"hit_rate_top50":0.7575524475524475,"ap_top50":0.7221397172098571},{"section":"GSE235742_GSM7508785","species":"mouse","organ":"colon","method":"OmiCLIP","n_spots":572,"hit_rate_top50":0.1709790209790209,"ap_top50":0.0869107914192572},{"section":"GSE235742_GSM7508785","species":"mouse","organ":"colon","method":"STPath","n_spots":572,"hit_rate_top50":0.2072727272727272,"ap_top50":0.0851013832096076},{"section":"GSE188888_GSM5691527","species":"mouse","organ":"heart","method":"HistAgent","n_spots":1374,"hit_rate_top50":0.8848471615720526,"ap_top50":0.8755722932388118},{"section":"GSE188888_GSM5691527","species":"mouse","organ":"heart","method":"OmiCLIP","n_spots":1374,"hit_rate_top50":0.5846724890829694,"ap_top50":0.5172793827120789},{"section":"GSE188888_GSM5691527","species":"mouse","organ":"heart","method":"STPath","n_spots":1374,"hit_rate_top50":0.2903056768558952,"ap_top50":0.1011845555441101},{"section":"GSE188888_GSM5691529","species":"mouse","organ":"heart","method":"HistAgent","n_spots":2095,"hit_rate_top50":0.8764295942720765,"ap_top50":0.8659230020000793},{"section":"GSE188888_GSM5691529","species":"mouse","organ":"heart","method":"OmiCLIP","n_spots":2095,"hit_rate_top50":0.5737183770883055,"ap_top50":0.520996860462366},{"section":"GSE188888_GSM5691529","species":"mouse","organ":"heart","method":"STPath","n_spots":2095,"hit_rate_top50":0.1872840095465394,"ap_top50":0.0405114665141401},{"section":"GSE206787_GSM7898096","species":"mouse","organ":"heart","method":"HistAgent","n_spots":591,"hit_rate_top50":0.8757698815566837,"ap_top50":0.8660533706621728},{"section":"GSE206787_GSM7898096","species":"mouse","organ":"heart","method":"OmiCLIP","n_spots":591,"hit_rate_top50":0.4748900169204737,"ap_top50":0.3764779512737772},{"section":"GSE206787_GSM7898096","species":"mouse","organ":"heart","method":"STPath","n_spots":591,"hit_rate_top50":0.350389170896785,"ap_top50":0.1995275773283393},{"section":"GSE206787_GSM7898098","species":"mouse","organ":"heart","method":"HistAgent","n_spots":1245,"hit_rate_top50":0.7692530120481927,"ap_top50":0.739669657943503},{"section":"GSE206787_GSM7898098","species":"mouse","organ":"heart","method":"OmiCLIP","n_spots":1245,"hit_rate_top50":0.4417349397590361,"ap_top50":0.3451418208875277},{"section":"GSE206787_GSM7898098","species":"mouse","organ":"heart","method":"STPath","n_spots":1245,"hit_rate_top50":0.3658313253012047,"ap_top50":0.1979158664759676},{"section":"GSE206787_GSM7898099","species":"mouse","organ":"heart","method":"HistAgent","n_spots":948,"hit_rate_top50":0.6570253164556961,"ap_top50":0.6076964544406595},{"section":"GSE206787_GSM7898099","species":"mouse","organ":"heart","method":"OmiCLIP","n_spots":948,"hit_rate_top50":0.3213291139240506,"ap_top50":0.231100008734203},{"section":"GSE206787_GSM7898099","species":"mouse","organ":"heart","method":"STPath","n_spots":948,"hit_rate_top50":0.3260970464135021,"ap_top50":0.1795585944740026},{"section":"GSE214611_GSM6613077","species":"mouse","organ":"heart","method":"HistAgent","n_spots":1917,"hit_rate_top50":0.7900573813249869,"ap_top50":0.7608674845663933},{"section":"GSE214611_GSM6613077","species":"mouse","organ":"heart","method":"OmiCLIP","n_spots":1917,"hit_rate_top50":0.5813875847678664,"ap_top50":0.5269096416126466},{"section":"GSE214611_GSM6613077","species":"mouse","organ":"heart","method":"STPath","n_spots":1917,"hit_rate_top50":0.1734689619196661,"ap_top50":0.0442227278680398},{"section":"GSE214611_GSM6613079","species":"mouse","organ":"heart","method":"HistAgent","n_spots":3123,"hit_rate_top50":0.7984166256648157,"ap_top50":0.7699777883784252},{"section":"GSE214611_GSM6613079","species":"mouse","organ":"heart","method":"OmiCLIP","n_spots":3123,"hit_rate_top50":0.5712760557000384,"ap_top50":0.533380773654127},{"section":"GSE214611_GSM6613079","species":"mouse","organ":"heart","method":"STPath","n_spots":3123,"hit_rate_top50":0.1240758182797966,"ap_top50":0.0252882791447948},{"section":"GSE214611_GSM6613080","species":"mouse","organ":"heart","method":"HistAgent","n_spots":3540,"hit_rate_top50":0.829542372881356,"ap_top50":0.8093444987028909},{"section":"GSE214611_GSM6613080","species":"mouse","organ":"heart","method":"OmiCLIP","n_spots":3540,"hit_rate_top50":0.5911581920903954,"ap_top50":0.54457256638523},{"section":"GSE214611_GSM6613080","species":"mouse","organ":"heart","method":"STPath","n_spots":3540,"hit_rate_top50":0.1116158192090395,"ap_top50":0.0197712687719039},{"section":"GSE214611_GSM6613082","species":"mouse","organ":"heart","method":"HistAgent","n_spots":2468,"hit_rate_top50":0.8286046256953874,"ap_top50":0.8071209510452683},{"section":"GSE214611_GSM6613082","species":"mouse","organ":"heart","method":"OmiCLIP","n_spots":2468,"hit_rate_top50":0.5973347496605196,"ap_top50":0.5554896013391818},{"section":"GSE214611_GSM6613082","species":"mouse","organ":"heart","method":"STPath","n_spots":2468,"hit_rate_top50":0.1079392439441062,"ap_top50":0.0226517193504276},{"section":"GSE214611_GSM6613086","species":"mouse","organ":"heart","method":"HistAgent","n_spots":2438,"hit_rate_top50":0.7816010878415088,"ap_top50":0.7490536957351399},{"section":"GSE214611_GSM6613086","species":"mouse","organ":"heart","method":"OmiCLIP","n_spots":2438,"hit_rate_top50":0.5419888199197509,"ap_top50":0.4554187241469301},{"section":"GSE214611_GSM6613086","species":"mouse","organ":"heart","method":"STPath","n_spots":2438,"hit_rate_top50":0.2156392761883068,"ap_top50":0.0928628346834941},{"section":"GSE193460_GSM5808054","species":"mouse","organ":"lung","method":"HistAgent","n_spots":1906,"hit_rate_top50":0.7278174186778593,"ap_top50":0.6898241151324328},{"section":"GSE193460_GSM5808054","species":"mouse","organ":"lung","method":"OmiCLIP","n_spots":1906,"hit_rate_top50":0.3898950682056664,"ap_top50":0.2962687088691},{"section":"GSE193460_GSM5808054","species":"mouse","organ":"lung","method":"STPath","n_spots":1906,"hit_rate_top50":0.2524554039874082,"ap_top50":0.0938664331094221},{"section":"GSE193460_GSM5808055","species":"mouse","organ":"lung","method":"HistAgent","n_spots":1931,"hit_rate_top50":0.7122157283420878,"ap_top50":0.6719059832529989},{"section":"GSE193460_GSM5808055","species":"mouse","organ":"lung","method":"OmiCLIP","n_spots":1931,"hit_rate_top50":0.3605400606643487,"ap_top50":0.2645583655472764},{"section":"GSE193460_GSM5808055","species":"mouse","organ":"lung","method":"STPath","n_spots":1931,"hit_rate_top50":0.2523629503588074,"ap_top50":0.0993201991530259},{"section":"GSE193460_GSM5808056","species":"mouse","organ":"lung","method":"HistAgent","n_spots":1244,"hit_rate_top50":0.717508038585209,"ap_top50":0.6741096774785673},{"section":"GSE193460_GSM5808056","species":"mouse","organ":"lung","method":"OmiCLIP","n_spots":1244,"hit_rate_top50":0.3245337620578777,"ap_top50":0.2088564301292917},{"section":"GSE193460_GSM5808056","species":"mouse","organ":"lung","method":"STPath","n_spots":1244,"hit_rate_top50":0.2526688102893891,"ap_top50":0.0994760907698851},{"section":"GSE193460_GSM5808057","species":"mouse","organ":"lung","method":"HistAgent","n_spots":2546,"hit_rate_top50":0.623503534956795,"ap_top50":0.5741612329270477},{"section":"GSE193460_GSM5808057","species":"mouse","organ":"lung","method":"OmiCLIP","n_spots":2546,"hit_rate_top50":0.2824037706205813,"ap_top50":0.1746781036286022},{"section":"GSE193460_GSM5808057","species":"mouse","organ":"lung","method":"STPath","n_spots":2546,"hit_rate_top50":0.2054595443833463,"ap_top50":0.0879839484041452},{"section":"GSE202322_GSM6108348","species":"mouse","organ":"lung","method":"HistAgent","n_spots":2486,"hit_rate_top50":0.7100884955752212,"ap_top50":0.6699823802735687},{"section":"GSE202322_GSM6108348","species":"mouse","organ":"lung","method":"OmiCLIP","n_spots":2486,"hit_rate_top50":0.4783668543845535,"ap_top50":0.4108458975182752},{"section":"GSE202322_GSM6108348","species":"mouse","organ":"lung","method":"STPath","n_spots":2486,"hit_rate_top50":0.1598551890587288,"ap_top50":0.0484543779671761},{"section":"GSE202322_GSM6108349","species":"mouse","organ":"lung","method":"HistAgent","n_spots":2520,"hit_rate_top50":0.6566825396825398,"ap_top50":0.6079632564815471},{"section":"GSE202322_GSM6108349","species":"mouse","organ":"lung","method":"OmiCLIP","n_spots":2520,"hit_rate_top50":0.4056269841269841,"ap_top50":0.3324802347527251},{"section":"GSE202322_GSM6108349","species":"mouse","organ":"lung","method":"STPath","n_spots":2520,"hit_rate_top50":0.1579682539682539,"ap_top50":0.0506402631405748},{"section":"GSE202322_GSM6108350","species":"mouse","organ":"lung","method":"HistAgent","n_spots":2847,"hit_rate_top50":0.6879381805409203,"ap_top50":0.6433537516873186},{"section":"GSE202322_GSM6108350","species":"mouse","organ":"lung","method":"OmiCLIP","n_spots":2847,"hit_rate_top50":0.3707130312609764,"ap_top50":0.2430744847267355},{"section":"GSE202322_GSM6108350","species":"mouse","organ":"lung","method":"STPath","n_spots":2847,"hit_rate_top50":0.2046575342465753,"ap_top50":0.0646995296345365},{"section":"GSE202322_GSM6108351","species":"mouse","organ":"lung","method":"HistAgent","n_spots":2969,"hit_rate_top50":0.6590175890483323,"ap_top50":0.6193104490978668},{"section":"GSE202322_GSM6108351","species":"mouse","organ":"lung","method":"OmiCLIP","n_spots":2969,"hit_rate_top50":0.3674105575239992,"ap_top50":0.2635314633183078},{"section":"GSE202322_GSM6108351","species":"mouse","organ":"lung","method":"STPath","n_spots":2969,"hit_rate_top50":0.1582819427908038,"ap_top50":0.0460524942646765},{"section":"GSE225766_GSM7055901","species":"mouse","organ":"muscle","method":"HistAgent","n_spots":1493,"hit_rate_top50":0.8668720696584059,"ap_top50":0.855160873533169},{"section":"GSE225766_GSM7055901","species":"mouse","organ":"muscle","method":"OmiCLIP","n_spots":1493,"hit_rate_top50":0.6085063630274615,"ap_top50":0.5516169964696814},{"section":"GSE225766_GSM7055901","species":"mouse","organ":"muscle","method":"STPath","n_spots":1493,"hit_rate_top50":0.1145880776959142,"ap_top50":0.0251672947027857},{"section":"GSE225766_GSM7055902","species":"mouse","organ":"muscle","method":"HistAgent","n_spots":1438,"hit_rate_top50":0.8626008344923506,"ap_top50":0.8507905503012896},{"section":"GSE225766_GSM7055902","species":"mouse","organ":"muscle","method":"OmiCLIP","n_spots":1438,"hit_rate_top50":0.6092489568845618,"ap_top50":0.5576100309193244},{"section":"GSE225766_GSM7055902","species":"mouse","organ":"muscle","method":"STPath","n_spots":1438,"hit_rate_top50":0.1156467315716272,"ap_top50":0.0268676731692775},{"section":"GSE225766_GSM7055903","species":"mouse","organ":"muscle","method":"HistAgent","n_spots":1064,"hit_rate_top50":0.8274812030075188,"ap_top50":0.811435372212454},{"section":"GSE225766_GSM7055903","species":"mouse","organ":"muscle","method":"OmiCLIP","n_spots":1064,"hit_rate_top50":0.5407330827067669,"ap_top50":0.4942651767687779},{"section":"GSE225766_GSM7055903","species":"mouse","organ":"muscle","method":"STPath","n_spots":1064,"hit_rate_top50":0.2132142857142857,"ap_top50":0.0701921520061044},{"section":"GSE225766_GSM7055904","species":"mouse","organ":"muscle","method":"HistAgent","n_spots":959,"hit_rate_top50":0.814786235662148,"ap_top50":0.7966406690573892},{"section":"GSE225766_GSM7055904","species":"mouse","organ":"muscle","method":"OmiCLIP","n_spots":959,"hit_rate_top50":0.5272367049009384,"ap_top50":0.4831840651866402},{"section":"GSE225766_GSM7055904","species":"mouse","organ":"muscle","method":"STPath","n_spots":959,"hit_rate_top50":0.2069864442127216,"ap_top50":0.0651168581749902},{"section":"GSE225766_GSM7055907","species":"mouse","organ":"muscle","method":"HistAgent","n_spots":1155,"hit_rate_top50":0.809044733044733,"ap_top50":0.7895478962225463},{"section":"GSE225766_GSM7055907","species":"mouse","organ":"muscle","method":"OmiCLIP","n_spots":1155,"hit_rate_top50":0.5473939393939394,"ap_top50":0.491922812782772},{"section":"GSE225766_GSM7055907","species":"mouse","organ":"muscle","method":"STPath","n_spots":1155,"hit_rate_top50":0.205029341029341,"ap_top50":0.0674560600587868},{"section":"GSE225766_GSM7055908","species":"mouse","organ":"muscle","method":"HistAgent","n_spots":1136,"hit_rate_top50":0.8125,"ap_top50":0.7928853877057288},{"section":"GSE225766_GSM7055908","species":"mouse","organ":"muscle","method":"OmiCLIP","n_spots":1136,"hit_rate_top50":0.5331338028169014,"ap_top50":0.4826638427541238},{"section":"GSE225766_GSM7055908","species":"mouse","organ":"muscle","method":"STPath","n_spots":1136,"hit_rate_top50":0.2164788732394366,"ap_top50":0.0744539415348703},{"section":"GSE225766_GSM7230944","species":"mouse","organ":"muscle","method":"HistAgent","n_spots":1854,"hit_rate_top50":0.7783387270765911,"ap_top50":0.7503004564537429},{"section":"GSE225766_GSM7230944","species":"mouse","organ":"muscle","method":"OmiCLIP","n_spots":1854,"hit_rate_top50":0.431715210355987,"ap_top50":0.3568309790065493},{"section":"GSE225766_GSM7230944","species":"mouse","organ":"muscle","method":"STPath","n_spots":1854,"hit_rate_top50":0.1777885652642934,"ap_top50":0.0527892688046821},{"section":"GSE225766_GSM7230945","species":"mouse","organ":"muscle","method":"HistAgent","n_spots":2283,"hit_rate_top50":0.7900043802014892,"ap_top50":0.7649056566059753},{"section":"GSE225766_GSM7230945","species":"mouse","organ":"muscle","method":"OmiCLIP","n_spots":2283,"hit_rate_top50":0.4247744196233026,"ap_top50":0.3457914487161736},{"section":"GSE225766_GSM7230945","species":"mouse","organ":"muscle","method":"STPath","n_spots":2283,"hit_rate_top50":0.1934296977660972,"ap_top50":0.0623244940136946},{"section":"GSE200720_GSM6042726","species":"mouse","organ":"spleen","method":"HistAgent","n_spots":2774,"hit_rate_top50":0.7558687815428984,"ap_top50":0.7181114161420628},{"section":"GSE200720_GSM6042726","species":"mouse","organ":"spleen","method":"OmiCLIP","n_spots":2774,"hit_rate_top50":0.3590338860850757,"ap_top50":0.2666404646549832},{"section":"GSE200720_GSM6042726","species":"mouse","organ":"spleen","method":"STPath","n_spots":2774,"hit_rate_top50":0.246113914924297,"ap_top50":0.1161960155757411},{"section":"GSE200720_GSM6042728","species":"mouse","organ":"spleen","method":"HistAgent","n_spots":2659,"hit_rate_top50":0.7628206092515984,"ap_top50":0.7308157721269629},{"section":"GSE200720_GSM6042728","species":"mouse","organ":"spleen","method":"OmiCLIP","n_spots":2659,"hit_rate_top50":0.3647987965400525,"ap_top50":0.2711724847430337},{"section":"GSE200720_GSM6042728","species":"mouse","organ":"spleen","method":"STPath","n_spots":2659,"hit_rate_top50":0.2610831139526138,"ap_top50":0.132579475413467},{"section":"GSE200720_GSM6042730","species":"mouse","organ":"spleen","method":"HistAgent","n_spots":2254,"hit_rate_top50":0.6765738971173754,"ap_top50":0.6340647887702814},{"section":"GSE200720_GSM6042730","species":"mouse","organ":"spleen","method":"OmiCLIP","n_spots":2254,"hit_rate_top50":0.3216506836848452,"ap_top50":0.2312195590892152},{"section":"GSE200720_GSM6042730","species":"mouse","organ":"spleen","method":"STPath","n_spots":2254,"hit_rate_top50":0.2345093053943985,"ap_top50":0.1155756280218848},{"section":"GSE254652_GSM8047864","species":"mouse","organ":"spleen","method":"HistAgent","n_spots":2207,"hit_rate_top50":0.5850566379700952,"ap_top50":0.5307099105110262},{"section":"GSE254652_GSM8047864","species":"mouse","organ":"spleen","method":"OmiCLIP","n_spots":2207,"hit_rate_top50":0.3177979157227005,"ap_top50":0.2310649431282929},{"section":"GSE254652_GSM8047864","species":"mouse","organ":"spleen","method":"STPath","n_spots":2207,"hit_rate_top50":0.2054825555052107,"ap_top50":0.1129775267455514},{"section":"GSE254652_GSM8047868","species":"mouse","organ":"spleen","method":"HistAgent","n_spots":592,"hit_rate_top50":0.8331756756756757,"ap_top50":0.8187131468963064},{"section":"GSE254652_GSM8047868","species":"mouse","organ":"spleen","method":"OmiCLIP","n_spots":592,"hit_rate_top50":0.3638175675675675,"ap_top50":0.2605849415360158},{"section":"GSE254652_GSM8047868","species":"mouse","organ":"spleen","method":"STPath","n_spots":592,"hit_rate_top50":0.15,"ap_top50":0.0753173118295102},{"section":"GSE254652_GSM8047870","species":"mouse","organ":"spleen","method":"HistAgent","n_spots":833,"hit_rate_top50":0.8184873949579833,"ap_top50":0.802176411382983},{"section":"GSE254652_GSM8047870","species":"mouse","organ":"spleen","method":"OmiCLIP","n_spots":833,"hit_rate_top50":0.3597118847539015,"ap_top50":0.2587008019723683},{"section":"GSE254652_GSM8047870","species":"mouse","organ":"spleen","method":"STPath","n_spots":833,"hit_rate_top50":0.1690516206482593,"ap_top50":0.0842706331152514},{"section":"GSE254652_GSM8047872","species":"mouse","organ":"spleen","method":"HistAgent","n_spots":2048,"hit_rate_top50":0.7192578125,"ap_top50":0.6792727154923823},{"section":"GSE254652_GSM8047872","species":"mouse","organ":"spleen","method":"OmiCLIP","n_spots":2048,"hit_rate_top50":0.398994140625,"ap_top50":0.3120262047291755},{"section":"GSE254652_GSM8047872","species":"mouse","organ":"spleen","method":"STPath","n_spots":2048,"hit_rate_top50":0.268486328125,"ap_top50":0.1460739768776827},{"section":"GSE254652_GSM8047877","species":"mouse","organ":"spleen","method":"HistAgent","n_spots":2244,"hit_rate_top50":0.6805436720142602,"ap_top50":0.6370517220276934},{"section":"GSE254652_GSM8047877","species":"mouse","organ":"spleen","method":"OmiCLIP","n_spots":2244,"hit_rate_top50":0.3687433155080213,"ap_top50":0.2736304651232851},{"section":"GSE254652_GSM8047877","species":"mouse","organ":"spleen","method":"STPath","n_spots":2244,"hit_rate_top50":0.233903743315508,"ap_top50":0.1248582155148234},{"section":"GSE254652_GSM8047883","species":"mouse","organ":"spleen","method":"HistAgent","n_spots":2553,"hit_rate_top50":0.810105757931845,"ap_top50":0.7885880077063735},{"section":"GSE254652_GSM8047883","species":"mouse","organ":"spleen","method":"OmiCLIP","n_spots":2553,"hit_rate_top50":0.3400940070505287,"ap_top50":0.2213011278936155},{"section":"GSE254652_GSM8047883","species":"mouse","organ":"spleen","method":"STPath","n_spots":2553,"hit_rate_top50":0.1842694868781825,"ap_top50":0.0795413409619834},{"section":"GSE254652_GSM8047885","species":"mouse","organ":"spleen","method":"HistAgent","n_spots":2001,"hit_rate_top50":0.7680992836914876,"ap_top50":0.7398962082289203},{"section":"GSE254652_GSM8047885","species":"mouse","organ":"spleen","method":"OmiCLIP","n_spots":2001,"hit_rate_top50":0.351304347826087,"ap_top50":0.2467905091217181},{"section":"GSE254652_GSM8047885","species":"mouse","organ":"spleen","method":"STPath","n_spots":2001,"hit_rate_top50":0.1870264867566217,"ap_top50":0.1089555688976927}]
tutorials/fig3c.json ADDED
The diff for this file is too large to render. See raw diff
 
tutorials/fig3d.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"section":"GSE251950_GSM7990478","species":"human","organ":"stomach","selection_score":0.1367047509452572,"mean_abs_distance_to_median":0.1344238040440572,"mean_task_percentile":0.5091237876048003,"near_median_rank":3,"svg_percentile":0.6835443037974683,"svg_formal_score":0.601981560993943,"svg_feature":"FOS","svg_display_rho":0.7869236224717086,"domain_percentile":0.6753246753246753,"domain_formal_score":0.4767961518942352,"domain_feature":"","domain_display_ari":0.3971757410203217,"domain_display_nmi":0.4767961518942352,"deconv_percentile":0.4556962025316455,"deconv_formal_score":0.8184900988685235,"deconv_feature":"Epithelial Cell","deconv_display_rho":0.8347170949661434,"deg_percentile":0.3766233766233766,"deg_formal_score":0.3075257486013129,"deg_feature":"H19","deg_display_rho":0.7588737867128205,"pathway_percentile":0.3544303797468354,"pathway_formal_score":0.8029221537114344,"pathway_feature":"Complement Cascade","pathway_display_rho":0.7609058427698668},{"section":"GSE213688_GSM6592052","species":"human","organ":"breast","selection_score":0.1870417557126418,"mean_abs_distance_to_median":0.1837744533947065,"mean_task_percentile":0.486930790728259,"near_median_rank":15,"svg_percentile":0.3417721518987341,"svg_formal_score":0.5247482984405315,"svg_feature":"MGP","svg_display_rho":0.7656250157795313,"domain_percentile":0.8571428571428571,"domain_formal_score":0.560563768299335,"domain_feature":"","domain_display_ari":0.3836677812184224,"domain_display_nmi":0.560563768299335,"deconv_percentile":0.3544303797468354,"deconv_formal_score":0.8006669181589885,"deconv_feature":"Basal Cell","deconv_display_rho":0.8389589481286326,"deg_percentile":0.3116883116883117,"deg_formal_score":0.2831063008387176,"deg_feature":"KRT5","deg_display_rho":0.6977446435105955,"pathway_percentile":0.569620253164557,"pathway_formal_score":0.8708121041796557,"pathway_feature":"ECM organization","pathway_display_rho":0.7910529283072627},{"section":"GSE202322_GSM6108350","species":"mouse","organ":"lung","selection_score":0.176510989010989,"mean_abs_distance_to_median":0.1483516483516483,"mean_task_percentile":0.3873626373626374,"near_median_rank":6,"svg_percentile":0.1785714285714285,"svg_formal_score":0.5015067933383933,"svg_feature":"Sftpc","svg_display_rho":0.86885899393092,"domain_percentile":0.5357142857142857,"domain_formal_score":0.4631263207443582,"domain_feature":"","domain_display_ari":0.5334684894858348,"domain_display_nmi":0.4631263207443582,"deconv_percentile":0.3653846153846153,"deconv_formal_score":0.867522829166379,"deconv_feature":"Type II Pneumocyte","deconv_display_rho":0.8876739337868067,"deg_percentile":0.5535714285714286,"deg_formal_score":0.4262661717593305,"deg_feature":"Scgb1a1","deg_display_rho":0.737132147400856,"pathway_percentile":0.3035714285714285,"pathway_formal_score":0.7879497685067385,"pathway_feature":"Surfactant Metabolism","pathway_display_rho":0.749509606649627},{"section":"GSE254652_GSM8047883","species":"mouse","organ":"spleen","selection_score":0.1831730769230769,"mean_abs_distance_to_median":0.1651098901098901,"mean_task_percentile":0.5722527472527472,"near_median_rank":9,"svg_percentile":0.5,"svg_formal_score":0.5663498943629608,"svg_feature":"Cd74","svg_display_rho":0.8780409547203167,"domain_percentile":0.5714285714285714,"domain_formal_score":0.4720062730868571,"domain_feature":"","domain_display_ari":0.4157674543538362,"domain_display_nmi":0.4720062730868571,"deconv_percentile":0.8076923076923077,"deconv_formal_score":0.9474446944716696,"deconv_feature":"Macrophage","deconv_display_rho":0.7084369199386519,"deg_percentile":0.7142857142857143,"deg_formal_score":0.4753362876291785,"deg_feature":"Coro1a","deg_display_rho":0.8181768749118279,"pathway_percentile":0.2678571428571428,"pathway_formal_score":0.7834343996368209,"pathway_feature":"Scavenger receptor uptake","pathway_display_rho":0.6916810106279611}]
tutorials/fig4c_brca.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":0.1830157041549682,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-5.580265998840332,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-3.4617066383361816,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-0.7728307247161865,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":0.4261062443256378,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":0.7768459320068359,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":0.04068373888731,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-1.951965093612671,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-5.28446626663208,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-2.267155647277832,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-4.377288818359375,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-2.8372771739959717,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-0.0276059806346893,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-2.296778917312622,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":0.1736019253730774,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-3.426832914352417,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.242177963256836,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-3.630998373031616,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-0.5341044068336487,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-2.8118014335632324,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":0.3653949797153473,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-1.5127917528152466,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-0.9200820922851562,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-4.627448558807373,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-4.496838569641113,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-0.9489073753356934,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-0.9450423121452332,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-0.1528586447238922,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.693962812423706,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.181117534637451,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.142340660095215,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-4.939940929412842,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-1.7138159275054932,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-4.554428577423096,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":2.7139432430267334,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-3.4423272609710693,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-2.0839157104492188,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-2.265270233154297,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-2.837941884994507,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-4.985393047332764,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-5.053396224975586,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-1.7213435173034668,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-0.3044618964195251,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-1.3739948272705078,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-0.8824400901794434,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":0.0885723531246185,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":1.592603087425232,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.0537829399108887,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.3828492164611816,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.9084439277648926,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-1.6762301921844482,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":1.5563764572143557,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-0.6133158206939697,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":1.1283460855484009,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":0.305345743894577,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-2.3892836570739746,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-4.238807678222656,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.82335352897644,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-4.880107879638672,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-5.203436851501465,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-4.066018581390381,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-2.320326328277588,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":0.5255686044692993,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.92832350730896,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.6871001720428462,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-1.9214569330215456,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-2.939732074737549,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.2901151180267334,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.700564384460449,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-4.436088562011719,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-4.499823093414307,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-2.9055685997009277,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.1732895374298096,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-4.02243709564209,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-2.2824087142944336,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":0.0363829880952835,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-1.466261863708496,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-1.3456257581710815,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.1400136947631836,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-4.700896739959717,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-4.02531099319458,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.745903968811035,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-5.119504451751709,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-4.552345275878906,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-4.672589302062988,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.648891687393189,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-1.9757980108261108,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-4.922891616821289,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.353659152984619,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-3.911806344985962,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":1.2313222885131836,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":1.6506710052490234,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-3.6492459774017334,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-5.084414958953857,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-4.134832382202148,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.6128432750701904,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-5.282658100128174,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-3.2478294372558594,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":0.1519687473773956,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-4.5548996925354,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-0.2724855244159698,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-4.308993816375732,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-2.9949164390563965,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-1.4635361433029177,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-2.51703143119812,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-1.2903473377227783,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-0.6101706624031067,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-1.0229395627975464,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-2.9897122383117676,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.3304972648620605,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":0.8638614416122437,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-0.9837051630020142,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":1.0250965356826782,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":0.7020323276519775,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.1087424755096436,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-0.6741248369216919,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-2.024341821670532,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":2.3399078845977783,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":1.6001598834991455,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-1.7265019416809082,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":2.6167092323303223,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-0.2907825410366058,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-1.6462429761886597,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-2.89509654045105,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.429396629333496,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":0.0798060670495033,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-0.6564599275588989,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-1.376195788383484,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":1.7212672233581543,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-0.9505382776260376,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":1.0352602005004885,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-0.3821821212768554,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-1.1629031896591189,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":0.7979797720909119,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-1.8798390626907349,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":1.1426419019699097,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-2.631364583969116,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":1.4413938522338867,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":1.4949778318405151,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-3.2405788898468018,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-1.2312016487121582,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":2.077845573425293,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Stroma","score":-0.1883163154125213,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-0.6295828223228455,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"},{"cohort":"BRCA","case":"TCGA-E2-A1LH","endpoint":"overall_survival_local_risk","region":"Tumor","score":-1.171721339225769,"selection_p_value":6.375774395500618e-12,"region_difference":2.285721631409864,"n_tumor":79,"n_stroma":66,"diagnostic_flags":"low_valid_bcss_label_fraction;little_or_no_necrosis"}]
tutorials/fig4c_stad.json ADDED
The diff for this file is too large to render. See raw diff
 
tutorials/fig4d_summary.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"cohort":"LIHC","analysis":"Kaplan–Meier","quantity_or_covariate":"patients","estimate":356,"hazard_ratio":"","ci_low":"","ci_high":"","complete_case_n":""},{"cohort":"LIHC","analysis":"Kaplan–Meier","quantity_or_covariate":"high-risk patients","estimate":178,"hazard_ratio":"","ci_low":"","ci_high":"","complete_case_n":""},{"cohort":"LIHC","analysis":"Kaplan–Meier","quantity_or_covariate":"low-risk patients","estimate":178,"hazard_ratio":"","ci_low":"","ci_high":"","complete_case_n":""},{"cohort":"LIHC","analysis":"Kaplan–Meier","quantity_or_covariate":"C-index","estimate":0.742,"hazard_ratio":"","ci_low":"","ci_high":"","complete_case_n":""},{"cohort":"LIHC","analysis":"Kaplan–Meier","quantity_or_covariate":"log-rank P","estimate":"<0.001","hazard_ratio":"","ci_low":"","ci_high":"","complete_case_n":""},{"cohort":"LIHC","analysis":"Cox","quantity_or_covariate":"HistAgent risk per 1 SD","estimate":"","hazard_ratio":2.18,"ci_low":1.8,"ci_high":2.65,"complete_case_n":336},{"cohort":"LIHC","analysis":"Cox","quantity_or_covariate":"AJCC stage III/IV","estimate":"","hazard_ratio":1.35,"ci_low":1.14,"ci_high":1.59,"complete_case_n":336},{"cohort":"LGG","analysis":"Kaplan–Meier","quantity_or_covariate":"patients","estimate":486,"hazard_ratio":"","ci_low":"","ci_high":"","complete_case_n":""},{"cohort":"LGG","analysis":"Kaplan–Meier","quantity_or_covariate":"high-risk patients","estimate":243,"hazard_ratio":"","ci_low":"","ci_high":"","complete_case_n":""},{"cohort":"LGG","analysis":"Kaplan–Meier","quantity_or_covariate":"low-risk patients","estimate":243,"hazard_ratio":"","ci_low":"","ci_high":"","complete_case_n":""},{"cohort":"LGG","analysis":"Kaplan–Meier","quantity_or_covariate":"C-index","estimate":0.749,"hazard_ratio":"","ci_low":"","ci_high":"","complete_case_n":""},{"cohort":"LGG","analysis":"Kaplan–Meier","quantity_or_covariate":"log-rank P","estimate":"<0.001","hazard_ratio":"","ci_low":"","ci_high":"","complete_case_n":""},{"cohort":"LGG","analysis":"Cox","quantity_or_covariate":"HistAgent risk per 1 SD","estimate":"","hazard_ratio":1.33,"ci_low":1.09,"ci_high":1.62,"complete_case_n":480},{"cohort":"LGG","analysis":"Cox","quantity_or_covariate":"IDH wildtype","estimate":"","hazard_ratio":1.94,"ci_low":1.65,"ci_high":2.29,"complete_case_n":480}]
tutorials/fig5_query_sets.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"biological_axis":"Tumor epithelium","sections":10,"query_section_units":30,"representative_query":"Retrieve breast cancer spatial spots annotated as malignant epithelial tumor regions or in situ carcinoma.","annotation_target":"Pathologist-annotated malignant epithelial tumor regions","source_dataset":"GSE213688 breast cancer","query_variant_notes":"Contrasts tumor epithelium against stroma, adipose and immune-dominant regions."},{"biological_axis":"Normal epithelium","sections":3,"query_section_units":9,"representative_query":"Retrieve breast tissue spots annotated as normal epithelium or benign epithelial glands.","annotation_target":"Pathologist-annotated normal epithelial regions","source_dataset":"GSE213688 breast cancer","query_variant_notes":"Contrasts benign epithelium against invasive tumor and stromal regions."},{"biological_axis":"Tumor pathology","sections":7,"query_section_units":21,"representative_query":"Retrieve malignant breast or prostate tumor regions, including invasive carcinoma and Gleason-grade cancer annotations.","annotation_target":"Tumor/invasive breast regions and malignant Gleason-grade prostate regions","source_dataset":"Human Breast 10X; Human Prostate Erickson","query_variant_notes":"Includes breast tumor annotations and prostate GG1, GG2, GG4 or cribriform malignant histology."},{"biological_axis":"Cortical layers","sections":36,"query_section_units":72,"representative_query":"Retrieve human DLPFC spatial spots annotated as cortical layer 3, 4 or 5.","annotation_target":"Published cortical layer III, IV and V labels","source_dataset":"Human DLPFC Maynard","query_variant_notes":"Layer III, IV and V evaluated separately; grouped only for display."},{"biological_axis":"TLS niche","sections":8,"query_section_units":32,"representative_query":"Retrieve renal cell carcinoma spatial spots annotated as tertiary lymphoid structure niches.","annotation_target":"Published tertiary lymphoid structure (TLS) spots","source_dataset":"GSE175540 renal cell carcinoma","query_variant_notes":"Contrasts TLS niches against non-TLS tumor tissue."}]
tutorials/fig5_summary.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"query_group":"TLS niche","metric":"average_precision","n_query_section_units":32,"n_sections":8,"HistAgent":0.1606720335028318,"HistAgent_ci_low":0.1322072204859355,"HistAgent_ci_high":0.1928706165014477,"CellWhisperer":0.0789663425569182,"CellWhisperer_ci_low":0.0675172072541437,"CellWhisperer_ci_high":0.0923802142165068,"delta":0.0817056909459136,"delta_ci_low":0.0526139376559065,"delta_ci_high":0.1141859466597748,"bootstrap_p_one_sided":0.0001999600079984},{"query_group":"TLS niche","metric":"ndcg@50","n_query_section_units":32,"n_sections":8,"HistAgent":0.1978006768932279,"HistAgent_ci_low":0.1445443074427571,"HistAgent_ci_high":0.257008383271734,"CellWhisperer":0.0714326193095656,"CellWhisperer_ci_low":0.0536077245208728,"CellWhisperer_ci_high":0.0923245969678489,"delta":0.1263680575836623,"delta_ci_low":0.0700763242054143,"delta_ci_high":0.1889193459070978,"bootstrap_p_one_sided":0.0001999600079984},{"query_group":"TLS niche","metric":"precision@50","n_query_section_units":32,"n_sections":8,"HistAgent":0.1987499999999999,"HistAgent_ci_low":0.14625,"HistAgent_ci_high":0.26,"CellWhisperer":0.07125,"CellWhisperer_ci_low":0.054375,"CellWhisperer_ci_high":0.0925,"delta":0.1275,"delta_ci_low":0.0725,"delta_ci_high":0.1918749999999999,"bootstrap_p_one_sided":0.0001999600079984},{"query_group":"Tumor epithelium","metric":"average_precision","n_query_section_units":30,"n_sections":10,"HistAgent":0.6407620677170339,"HistAgent_ci_low":0.5562811294616865,"HistAgent_ci_high":0.726324614973825,"CellWhisperer":0.4734372192349713,"CellWhisperer_ci_low":0.364158400108405,"CellWhisperer_ci_high":0.5882375969616636,"delta":0.1673248484820624,"delta_ci_low":0.1214178481464437,"delta_ci_high":0.2181428206853316,"bootstrap_p_one_sided":0.0001999600079984},{"query_group":"Tumor epithelium","metric":"ndcg@50","n_query_section_units":30,"n_sections":10,"HistAgent":0.6929851737175026,"HistAgent_ci_low":0.611113196606219,"HistAgent_ci_high":0.7713020306673615,"CellWhisperer":0.3208626982909103,"CellWhisperer_ci_low":0.1966810998279092,"CellWhisperer_ci_high":0.4504327332580348,"delta":0.3721224754265923,"delta_ci_low":0.2974584180210927,"delta_ci_high":0.4470025983852932,"bootstrap_p_one_sided":0.0001999600079984},{"query_group":"Tumor epithelium","metric":"precision@50","n_query_section_units":30,"n_sections":10,"HistAgent":0.6813333333333333,"HistAgent_ci_low":0.592,"HistAgent_ci_high":0.76335,"CellWhisperer":0.3346666666666666,"CellWhisperer_ci_low":0.208,"CellWhisperer_ci_high":0.4619999999999998,"delta":0.3466666666666666,"delta_ci_low":0.2753333333333333,"delta_ci_high":0.4199999999999999,"bootstrap_p_one_sided":0.0001999600079984},{"query_group":"Normal epithelium","metric":"average_precision","n_query_section_units":9,"n_sections":3,"HistAgent":0.6373673524103571,"HistAgent_ci_low":0.5369084458065928,"HistAgent_ci_high":0.7261125302967996,"CellWhisperer":0.1461680446113585,"CellWhisperer_ci_low":0.1064208880656079,"CellWhisperer_ci_high":0.1887865477422709,"delta":0.4911993077989984,"delta_ci_low":0.4209758559229988,"delta_ci_high":0.5636606409750435,"bootstrap_p_one_sided":0.0001999600079984},{"query_group":"Normal epithelium","metric":"ndcg@50","n_query_section_units":9,"n_sections":3,"HistAgent":0.7917080531471812,"HistAgent_ci_low":0.7295505497033912,"HistAgent_ci_high":0.8463610104356599,"CellWhisperer":0.0853127976805971,"CellWhisperer_ci_low":0.0255101675049628,"CellWhisperer_ci_high":0.1544469617245329,"delta":0.7063952554665841,"delta_ci_low":0.6522757399051701,"delta_ci_high":0.7686934628128428,"bootstrap_p_one_sided":0.0001999600079984},{"query_group":"Normal epithelium","metric":"precision@50","n_query_section_units":9,"n_sections":3,"HistAgent":0.6222222222222222,"HistAgent_ci_low":0.5400000000000001,"HistAgent_ci_high":0.7111111111111111,"CellWhisperer":0.0777777777777777,"CellWhisperer_ci_low":0.0266666666666666,"CellWhisperer_ci_high":0.1333888888888881,"delta":0.5444444444444445,"delta_ci_low":0.4133333333333334,"delta_ci_high":0.68,"bootstrap_p_one_sided":0.0001999600079984},{"query_group":"Tumor pathology","metric":"average_precision","n_query_section_units":21,"n_sections":7,"HistAgent":0.4942105411920271,"HistAgent_ci_low":0.3877252852271441,"HistAgent_ci_high":0.600000562340841,"CellWhisperer":0.3784445592503225,"CellWhisperer_ci_low":0.2816832783197795,"CellWhisperer_ci_high":0.4802020306562911,"delta":0.1157659819417046,"delta_ci_low":0.0605121687324433,"delta_ci_high":0.1700678713286227,"bootstrap_p_one_sided":0.0001999600079984},{"query_group":"Tumor pathology","metric":"ndcg@50","n_query_section_units":21,"n_sections":7,"HistAgent":0.5141280447325314,"HistAgent_ci_low":0.3876564089189791,"HistAgent_ci_high":0.6438700160206977,"CellWhisperer":0.2617950438195655,"CellWhisperer_ci_low":0.1433161062500879,"CellWhisperer_ci_high":0.4011357168026453,"delta":0.2523330009129659,"delta_ci_low":0.0974461628037499,"delta_ci_high":0.3966454001444979,"bootstrap_p_one_sided":0.0015996800639872},{"query_group":"Tumor pathology","metric":"precision@50","n_query_section_units":21,"n_sections":7,"HistAgent":0.5171428571428571,"HistAgent_ci_low":0.3923809523809524,"HistAgent_ci_high":0.6419047619047616,"CellWhisperer":0.2647619047619047,"CellWhisperer_ci_low":0.1485714285714286,"CellWhisperer_ci_high":0.3981190476190472,"delta":0.2523809523809523,"delta_ci_low":0.1066666666666667,"delta_ci_high":0.3895238095238095,"bootstrap_p_one_sided":0.0003999200159968},{"query_group":"Cortical layers","metric":"average_precision","n_query_section_units":72,"n_sections":36,"HistAgent":0.2615755169045157,"HistAgent_ci_low":0.2238504370423011,"HistAgent_ci_high":0.2998476371104738,"CellWhisperer":0.2134776033837571,"CellWhisperer_ci_low":0.1829787790871723,"CellWhisperer_ci_high":0.2439789191936576,"delta":0.0480979135207585,"delta_ci_low":0.0367018925487995,"delta_ci_high":0.0599046137398798,"bootstrap_p_one_sided":0.0001999600079984},{"query_group":"Cortical layers","metric":"ndcg@50","n_query_section_units":72,"n_sections":36,"HistAgent":0.287468215636476,"HistAgent_ci_low":0.2416543410771404,"HistAgent_ci_high":0.3344035534464157,"CellWhisperer":0.184746523854277,"CellWhisperer_ci_low":0.1541088233227378,"CellWhisperer_ci_high":0.2172900765979303,"delta":0.1027216917821989,"delta_ci_low":0.0734425254674374,"delta_ci_high":0.133883532124693,"bootstrap_p_one_sided":0.0001999600079984},{"query_group":"Cortical layers","metric":"precision@50","n_query_section_units":72,"n_sections":36,"HistAgent":0.2869444444444444,"HistAgent_ci_low":0.2411111111111111,"HistAgent_ci_high":0.3327847222222221,"CellWhisperer":0.1922222222222222,"CellWhisperer_ci_low":0.1608333333333333,"CellWhisperer_ci_high":0.2227847222222221,"delta":0.0947222222222222,"delta_ci_low":0.0666666666666667,"delta_ci_high":0.1244444444444444,"bootstrap_p_one_sided":0.0001999600079984}]
tutorials/fig5_units.json ADDED
The diff for this file is too large to render. See raw diff
 
tutorials/figure2b_expression_for_pcc.csv ADDED
The diff for this file is too large to render. See raw diff
 
tutorials/figure3_examples.json ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "task_order": [
3
+ "svg",
4
+ "domain",
5
+ "deconv",
6
+ "deg",
7
+ "pathway"
8
+ ],
9
+ "rows": [
10
+ {
11
+ "section": "GSE251950_GSM7990478",
12
+ "species": "human",
13
+ "organ": "stomach",
14
+ "features": {
15
+ "svg": "FOS",
16
+ "domain": "",
17
+ "deconv": "Epithelial Cell",
18
+ "deg": "H19",
19
+ "pathway": "Complement Cascade"
20
+ },
21
+ "display_scores": {
22
+ "svg": 0.7869236224717086,
23
+ "domain": {
24
+ "ari": 0.39717574102032177,
25
+ "nmi": 0.4767961518942352
26
+ },
27
+ "deconv": 0.8347170949661434,
28
+ "deg": 0.7588737867128205,
29
+ "pathway": 0.7609058427698668
30
+ },
31
+ "formal_scores": {
32
+ "svg": 0.601981560993943,
33
+ "domain": 0.4767961518942352,
34
+ "deconv": 0.8184900988685235,
35
+ "deg": 0.3075257486013129,
36
+ "pathway": 0.8029221537114344
37
+ },
38
+ "task_percentiles": {
39
+ "svg": 0.6835443037974683,
40
+ "domain": 0.6753246753246753,
41
+ "deconv": 0.45569620253164556,
42
+ "deg": 0.37662337662337664,
43
+ "pathway": 0.35443037974683544
44
+ }
45
+ },
46
+ {
47
+ "section": "GSE213688_GSM6592052",
48
+ "species": "human",
49
+ "organ": "breast",
50
+ "features": {
51
+ "svg": "MGP",
52
+ "domain": "",
53
+ "deconv": "Basal Cell",
54
+ "deg": "KRT5",
55
+ "pathway": "ECM organization"
56
+ },
57
+ "display_scores": {
58
+ "svg": 0.7656250157795313,
59
+ "domain": {
60
+ "ari": 0.38366778121842243,
61
+ "nmi": 0.560563768299335
62
+ },
63
+ "deconv": 0.8389589481286326,
64
+ "deg": 0.6977446435105955,
65
+ "pathway": 0.7910529283072627
66
+ },
67
+ "formal_scores": {
68
+ "svg": 0.5247482984405315,
69
+ "domain": 0.560563768299335,
70
+ "deconv": 0.8006669181589885,
71
+ "deg": 0.2831063008387176,
72
+ "pathway": 0.8708121041796557
73
+ },
74
+ "task_percentiles": {
75
+ "svg": 0.34177215189873417,
76
+ "domain": 0.8571428571428571,
77
+ "deconv": 0.35443037974683544,
78
+ "deg": 0.3116883116883117,
79
+ "pathway": 0.569620253164557
80
+ }
81
+ },
82
+ {
83
+ "section": "GSE202322_GSM6108350",
84
+ "species": "mouse",
85
+ "organ": "lung",
86
+ "features": {
87
+ "svg": "Sftpc",
88
+ "domain": "",
89
+ "deconv": "Type II Pneumocyte",
90
+ "deg": "Scgb1a1",
91
+ "pathway": "Surfactant Metabolism"
92
+ },
93
+ "display_scores": {
94
+ "svg": 0.86885899393092,
95
+ "domain": {
96
+ "ari": 0.5334684894858348,
97
+ "nmi": 0.4631263207443582
98
+ },
99
+ "deconv": 0.8876739337868067,
100
+ "deg": 0.737132147400856,
101
+ "pathway": 0.749509606649627
102
+ },
103
+ "formal_scores": {
104
+ "svg": 0.5015067933383933,
105
+ "domain": 0.4631263207443582,
106
+ "deconv": 0.867522829166379,
107
+ "deg": 0.4262661717593305,
108
+ "pathway": 0.7879497685067385
109
+ },
110
+ "task_percentiles": {
111
+ "svg": 0.17857142857142858,
112
+ "domain": 0.5357142857142857,
113
+ "deconv": 0.36538461538461536,
114
+ "deg": 0.5535714285714286,
115
+ "pathway": 0.30357142857142855
116
+ }
117
+ },
118
+ {
119
+ "section": "GSE254652_GSM8047883",
120
+ "species": "mouse",
121
+ "organ": "spleen",
122
+ "features": {
123
+ "svg": "Cd74",
124
+ "domain": "",
125
+ "deconv": "Macrophage",
126
+ "deg": "Coro1a",
127
+ "pathway": "Scavenger receptor uptake"
128
+ },
129
+ "display_scores": {
130
+ "svg": 0.8780409547203167,
131
+ "domain": {
132
+ "ari": 0.4157674543538362,
133
+ "nmi": 0.4720062730868571
134
+ },
135
+ "deconv": 0.7084369199386519,
136
+ "deg": 0.8181768749118279,
137
+ "pathway": 0.6916810106279611
138
+ },
139
+ "formal_scores": {
140
+ "svg": 0.5663498943629608,
141
+ "domain": 0.4720062730868571,
142
+ "deconv": 0.9474446944716696,
143
+ "deg": 0.4753362876291785,
144
+ "pathway": 0.7834343996368209
145
+ },
146
+ "task_percentiles": {
147
+ "svg": 0.5,
148
+ "domain": 0.5714285714285714,
149
+ "deconv": 0.8076923076923077,
150
+ "deg": 0.7142857142857143,
151
+ "pathway": 0.26785714285714285
152
+ }
153
+ }
154
+ ],
155
+ "source": "frozen 135-slide downstream evaluation manifests"
156
+ }
tutorials/figure3_examples.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54c45d7da787faa5fef2d781a566b81f6ac8a9b62a7dcd4abba69cda19236272
3
+ size 283441
tutorials/figure3b_rank_metrics_per_section.csv ADDED
@@ -0,0 +1,406 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ section,species,organ,method,n_spots,hit_rate_top50,ap_top50
2
+ GSE235672_GSM7507320,human,brain,HistAgent,2253,0.7047359076786507,0.6578258469607665
3
+ GSE235672_GSM7507320,human,brain,OmiCLIP,2253,0.5065823346648913,0.41692783680658896
4
+ GSE235672_GSM7507320,human,brain,STPath,2253,0.2481624500665779,0.1433677133971875
5
+ Human_Brain_10X_02132023_Visium,human,brain,HistAgent,10878,0.6112316957966797,0.5643419636856672
6
+ Human_Brain_10X_02132023_Visium,human,brain,OmiCLIP,10878,0.2454241782061331,0.14208959245701228
7
+ Human_Brain_10X_02132023_Visium,human,brain,STPath,10878,0.2730154260444271,0.15992762908429328
8
+ Human_Brain_Kwon_10162023_Visium_V10A27106_D1_Br3880,human,brain,HistAgent,4552,0.504832645767925,0.4111848012648788
9
+ Human_Brain_Kwon_10162023_Visium_V10A27106_D1_Br3880,human,brain,OmiCLIP,4552,0.39976019809384983,0.2678098626259964
10
+ Human_Brain_Kwon_10162023_Visium_V10A27106_D1_Br3880,human,brain,STPath,4552,0.3302994737108743,0.19958252059142384
11
+ Human_Brain_Louise_02152023_Visium_Br6423_ant,human,brain,HistAgent,3906,0.4306619069143323,0.33932127921489263
12
+ Human_Brain_Louise_02152023_Visium_Br6423_ant,human,brain,OmiCLIP,3906,0.364462064893183,0.23063956289185641
13
+ Human_Brain_Louise_02152023_Visium_Br6423_ant,human,brain,STPath,3906,0.266548224867511,0.10975906652601858
14
+ Human_Brain_Louise_02152023_Visium_Br8492_ant,human,brain,HistAgent,4793,0.4867716407333633,0.3714279003368757
15
+ Human_Brain_Louise_02152023_Visium_Br8492_ant,human,brain,OmiCLIP,4793,0.3730599778917193,0.1865330860368397
16
+ Human_Brain_Louise_02152023_Visium_Br8492_ant,human,brain,STPath,4793,0.25141862028124007,0.07568101612958283
17
+ Human_Brain_Maynard_02082021_Visium_151508,human,brain,HistAgent,4384,0.459493557785273,0.35177497740428015
18
+ Human_Brain_Maynard_02082021_Visium_151508,human,brain,OmiCLIP,4384,0.384923234041611,0.24851353581795288
19
+ Human_Brain_Maynard_02082021_Visium_151508,human,brain,STPath,4384,0.16297975264404804,0.06448020104783314
20
+ Human_Brain_Maynard_02082021_Visium_151673,human,brain,HistAgent,3639,0.6107062379774663,0.5335256582821755
21
+ Human_Brain_Maynard_02082021_Visium_151673,human,brain,OmiCLIP,3639,0.49288815608683706,0.35366393666561313
22
+ Human_Brain_Maynard_02082021_Visium_151673,human,brain,STPath,3639,0.20970046716130808,0.10457495892884744
23
+ Human_Brain_Maynard_02082021_Visium_151674,human,brain,HistAgent,3673,0.6467465287231147,0.5783320327406374
24
+ Human_Brain_Maynard_02082021_Visium_151674,human,brain,OmiCLIP,3673,0.5276177511570923,0.3950761619725582
25
+ Human_Brain_Maynard_02082021_Visium_151674,human,brain,STPath,3673,0.18839096106724748,0.08149394245114172
26
+ Human_Brain_Maynard_02082021_Visium_151675,human,brain,HistAgent,3592,0.5452561247216036,0.4442045942811936
27
+ Human_Brain_Maynard_02082021_Visium_151675,human,brain,OmiCLIP,3592,0.45354677060133636,0.31528914981355416
28
+ Human_Brain_Maynard_02082021_Visium_151675,human,brain,STPath,3592,0.1755846325167038,0.07052326948731001
29
+ Human_Brain_Maynard_02082021_Visium_151676,human,brain,HistAgent,3460,0.5806416184971098,0.49851507118721
30
+ Human_Brain_Maynard_02082021_Visium_151676,human,brain,OmiCLIP,3460,0.4811156069364162,0.34418795559007287
31
+ Human_Brain_Maynard_02082021_Visium_151676,human,brain,STPath,3460,0.18590751445086706,0.0740434640990889
32
+ GSE210616_GSM6433617,human,breast,HistAgent,554,0.5633574007220217,0.5093774710061906
33
+ GSE210616_GSM6433617,human,breast,OmiCLIP,554,0.28205776173285196,0.15221459360907105
34
+ GSE210616_GSM6433617,human,breast,STPath,554,0.25805054151624546,0.13292176917544463
35
+ GSE210616_GSM6433622,human,breast,HistAgent,1298,0.7517873651771957,0.7170450844863421
36
+ GSE210616_GSM6433622,human,breast,OmiCLIP,1298,0.45402157164869034,0.28242037880328535
37
+ GSE210616_GSM6433622,human,breast,STPath,1298,0.41936825885978424,0.2637635650896607
38
+ GSE210616_GSM6433623,human,breast,HistAgent,901,0.5658823529411765,0.5169091946447353
39
+ GSE210616_GSM6433623,human,breast,OmiCLIP,901,0.3148057713651498,0.17712930495371454
40
+ GSE210616_GSM6433623,human,breast,STPath,901,0.3265260821309655,0.21065953378723712
41
+ GSE210616_GSM6433624,human,breast,HistAgent,1266,0.42646521307231655,0.35959438516975767
42
+ GSE210616_GSM6433624,human,breast,OmiCLIP,1266,0.2248314478668276,0.13317972877549347
43
+ GSE210616_GSM6433624,human,breast,STPath,1266,0.20756366569920523,0.11060687578147947
44
+ GSE213688_GSM6592049,human,breast,HistAgent,1848,0.4316243604879969,0.3021426650632305
45
+ GSE213688_GSM6592049,human,breast,OmiCLIP,1848,0.3773573396300669,0.24896012934686373
46
+ GSE213688_GSM6592049,human,breast,STPath,1848,0.34533648170011805,0.21071892384215898
47
+ GSE213688_GSM6592051,human,breast,HistAgent,1564,0.5995524296675191,0.5458137104087571
48
+ GSE213688_GSM6592051,human,breast,OmiCLIP,1564,0.3443989769820971,0.20103471357983269
49
+ GSE213688_GSM6592051,human,breast,STPath,1564,0.2706649616368287,0.15727311062488053
50
+ GSE213688_GSM6592052,human,breast,HistAgent,2104,0.574653349273615,0.5141539824885519
51
+ GSE213688_GSM6592052,human,breast,OmiCLIP,2104,0.3399154365365773,0.2131608436903155
52
+ GSE213688_GSM6592052,human,breast,STPath,2104,0.29273179098339175,0.1750028325766024
53
+ GSE213688_GSM6592054,human,breast,HistAgent,1596,0.5763540796435533,0.511885541311608
54
+ GSE213688_GSM6592054,human,breast,OmiCLIP,1596,0.25959969367864105,0.1435154062226896
55
+ GSE213688_GSM6592054,human,breast,STPath,1596,0.29956209969367864,0.1667601629704562
56
+ GSE242311_GSM7757980,human,breast,HistAgent,2302,0.6927193744569938,0.6508102147460485
57
+ GSE242311_GSM7757980,human,breast,OmiCLIP,2302,0.4282971329278888,0.3320800444696759
58
+ GSE242311_GSM7757980,human,breast,STPath,2302,0.43549956559513464,0.33112686897748544
59
+ GSE242311_GSM7757982,human,breast,HistAgent,2434,0.7059572719802794,0.6653829555051664
60
+ GSE242311_GSM7757982,human,breast,OmiCLIP,2434,0.4657107641741988,0.33566174706079294
61
+ GSE242311_GSM7757982,human,breast,STPath,2434,0.47278553820870994,0.3575703478685908
62
+ GSE243179_GSM7780297,human,heart,HistAgent,1283,0.30148869836321124,0.20707350207133138
63
+ GSE243179_GSM7780297,human,heart,OmiCLIP,1283,0.16224084177708495,0.048420465698063596
64
+ GSE243179_GSM7780297,human,heart,STPath,1283,0.2210093530787218,0.1298137159383898
65
+ Human_Heart_10X_06232020_Visium,human,heart,HistAgent,4247,0.8150862128553944,0.7919666104642161
66
+ Human_Heart_10X_06232020_Visium,human,heart,OmiCLIP,4247,0.5172879011958698,0.38634927207161035
67
+ Human_Heart_10X_06232020_Visium,human,heart,STPath,4247,0.5745162312991705,0.4211237819524025
68
+ Human_Heart_Kuppe_10082022_Visium_AKK002_157782,human,heart,HistAgent,2995,0.8045943238731219,0.7813156041277025
69
+ Human_Heart_Kuppe_10082022_Visium_AKK002_157782,human,heart,OmiCLIP,2995,0.584500834724541,0.4934411794374173
70
+ Human_Heart_Kuppe_10082022_Visium_AKK002_157782,human,heart,STPath,2995,0.6123472454090151,0.5110491812476881
71
+ Human_Heart_Kuppe_10082022_Visium_Visium_12_CK290,human,heart,HistAgent,3193,0.7092201691199499,0.6678276558696471
72
+ Human_Heart_Kuppe_10082022_Visium_Visium_12_CK290,human,heart,OmiCLIP,3193,0.5497776385844034,0.4635605012715721
73
+ Human_Heart_Kuppe_10082022_Visium_Visium_12_CK290,human,heart,STPath,3193,0.4501659880989665,0.324890617995912
74
+ Human_Heart_Kuppe_10082022_Visium_Visium_17_CK295,human,heart,HistAgent,3535,0.729763950238692,0.6867810481628963
75
+ Human_Heart_Kuppe_10082022_Visium_Visium_17_CK295,human,heart,OmiCLIP,3535,0.5669676274910317,0.44978067939615546
76
+ Human_Heart_Kuppe_10082022_Visium_Visium_17_CK295,human,heart,STPath,3535,0.601938928324457,0.5209206527029084
77
+ Human_Heart_Kuppe_10082022_Visium_Visium_19_CK297,human,heart,HistAgent,4281,0.7731995139062664,0.745114349304495
78
+ Human_Heart_Kuppe_10082022_Visium_Visium_19_CK297,human,heart,OmiCLIP,4281,0.4655257747947933,0.27929929231503947
79
+ Human_Heart_Kuppe_10082022_Visium_Visium_19_CK297,human,heart,STPath,4281,0.45268594514682325,0.3112790448647535
80
+ Human_Heart_Kuppe_10082022_Visium_Visium_1_CK279,human,heart,HistAgent,2049,0.7640312347486579,0.7287179046740446
81
+ Human_Heart_Kuppe_10082022_Visium_Visium_1_CK279,human,heart,OmiCLIP,2049,0.49169350902879455,0.375774285010307
82
+ Human_Heart_Kuppe_10082022_Visium_Visium_1_CK279,human,heart,STPath,2049,0.5988677403611518,0.5110366184963056
83
+ Human_Heart_Kuppe_10082022_Visium_Visium_2_CK280,human,heart,HistAgent,2822,0.7039829907866761,0.6583809986463196
84
+ Human_Heart_Kuppe_10082022_Visium_Visium_2_CK280,human,heart,OmiCLIP,2822,0.5189014883061658,0.4045619527359185
85
+ Human_Heart_Kuppe_10082022_Visium_Visium_2_CK280,human,heart,STPath,2822,0.575272856130404,0.4802120373402173
86
+ Human_Heart_Kuppe_10082022_Visium_Visium_7_CK285,human,heart,HistAgent,3656,0.7338566739606126,0.6976388951818577
87
+ Human_Heart_Kuppe_10082022_Visium_Visium_7_CK285,human,heart,OmiCLIP,3656,0.5949617067833699,0.5184178228861541
88
+ Human_Heart_Kuppe_10082022_Visium_Visium_7_CK285,human,heart,STPath,3656,0.5371936542669584,0.44206003358911244
89
+ GSE175540_GSM5924032,human,kidney,HistAgent,3829,0.7688430399582136,0.7352184226614351
90
+ GSE175540_GSM5924032,human,kidney,OmiCLIP,3829,0.47659441107338735,0.37422031007764023
91
+ GSE175540_GSM5924032,human,kidney,STPath,3829,0.3400470096630974,0.2093220062001278
92
+ GSE175540_GSM5924038,human,kidney,HistAgent,3206,0.7390393013100437,0.7056359574333964
93
+ GSE175540_GSM5924038,human,kidney,OmiCLIP,3206,0.47805364940736117,0.3510053025661168
94
+ GSE175540_GSM5924038,human,kidney,STPath,3206,0.3780286961946351,0.25918382516900934
95
+ GSE175540_GSM5924041,human,kidney,HistAgent,4359,0.5149053484269566,0.4344289366221002
96
+ GSE175540_GSM5924041,human,kidney,OmiCLIP,4359,0.47800697724090474,0.3381982082349375
97
+ GSE175540_GSM5924041,human,kidney,STPath,4359,0.3185338301255428,0.210811238656279
98
+ GSE175540_GSM5924044,human,kidney,HistAgent,1983,0.737990948137539,0.6998919470504843
99
+ GSE175540_GSM5924044,human,kidney,OmiCLIP,1983,0.4562537577770506,0.3483429672911546
100
+ GSE175540_GSM5924044,human,kidney,STPath,1983,0.34451705747547995,0.1872320122588672
101
+ GSE175540_GSM5924046,human,kidney,HistAgent,1949,0.8111544381734223,0.7868712905697666
102
+ GSE175540_GSM5924046,human,kidney,OmiCLIP,1949,0.5375987685992818,0.43298594586164785
103
+ GSE175540_GSM5924046,human,kidney,STPath,1949,0.35049769112365314,0.17692163952531365
104
+ GSE183456_GSM6047784,human,kidney,HistAgent,534,0.6462945511658814,0.590788191070166
105
+ GSE183456_GSM6047784,human,kidney,OmiCLIP,534,0.40957593330916997,0.2987473291189922
106
+ GSE183456_GSM6047784,human,kidney,STPath,534,0.36899963754983695,0.21903219636154814
107
+ GSE183456_GSM6047788,human,kidney,HistAgent,601,0.6669217970049918,0.6159864075706631
108
+ GSE183456_GSM6047788,human,kidney,OmiCLIP,601,0.5084193011647256,0.4087250538628556
109
+ GSE183456_GSM6047788,human,kidney,STPath,601,0.41980033277870216,0.28408153629174787
110
+ GSE183456_GSM6047791,human,kidney,HistAgent,317,0.6766561514195584,0.6297686872885068
111
+ GSE183456_GSM6047791,human,kidney,OmiCLIP,317,0.48309148264984225,0.37625891028153113
112
+ GSE183456_GSM6047791,human,kidney,STPath,317,0.4029652996845426,0.25106723932872405
113
+ GSE183456_GSM6047792,human,kidney,HistAgent,645,0.7048062015503875,0.6640845508174382
114
+ GSE183456_GSM6047792,human,kidney,OmiCLIP,645,0.5298708010335917,0.4421792043127984
115
+ GSE183456_GSM6047792,human,kidney,STPath,645,0.4258811369509043,0.2687478941702052
116
+ GSE183456_GSM6047794,human,kidney,HistAgent,640,0.6520416666666666,0.5998386086406442
117
+ GSE183456_GSM6047794,human,kidney,OmiCLIP,640,0.40261111111111114,0.3030762424835481
118
+ GSE183456_GSM6047794,human,kidney,STPath,640,0.3327118055555555,0.18341287814802046
119
+ GSE217414_GSM6716963,human,liver,HistAgent,2887,0.6143985046335372,0.5409986604725479
120
+ GSE217414_GSM6716963,human,liver,OmiCLIP,2887,0.0341946657429858,0.006410226930267939
121
+ GSE217414_GSM6716963,human,liver,STPath,2887,0.32224483402085147,0.16109059362974898
122
+ GSE217414_GSM6716965,human,liver,HistAgent,2091,0.701497649748292,0.6519999454443746
123
+ GSE217414_GSM6716965,human,liver,OmiCLIP,2091,0.04688665710186514,0.0063414459964289275
124
+ GSE217414_GSM6716965,human,liver,STPath,2091,0.30517437563381977,0.14841948574262953
125
+ GSE217414_GSM6716966,human,liver,HistAgent,2317,0.51390220722547,0.43658859771350794
126
+ GSE217414_GSM6716966,human,liver,OmiCLIP,2317,0.13759140825606084,0.05097059357222849
127
+ GSE217414_GSM6716966,human,liver,STPath,2317,0.22852840009939707,0.08815386404153275
128
+ GSE223559_GSM6963120,human,liver,HistAgent,4350,0.9034436781609194,0.8966865268670617
129
+ GSE223559_GSM6963120,human,liver,OmiCLIP,4350,0.7681379310344828,0.7367373119033217
130
+ GSE223559_GSM6963120,human,liver,STPath,4350,0.5885885057471265,0.5228056943550824
131
+ GSE223559_GSM6963121,human,liver,HistAgent,2618,0.8616818447783725,0.8491761361360028
132
+ GSE223559_GSM6963121,human,liver,OmiCLIP,2618,0.7882612063110567,0.7572230247102731
133
+ GSE223559_GSM6963121,human,liver,STPath,2618,0.614351526102678,0.5286986024942906
134
+ GSE223559_GSM6963123,human,liver,HistAgent,3645,0.7609529035208047,0.7352956338307427
135
+ GSE223559_GSM6963123,human,liver,OmiCLIP,3645,0.6700993750952599,0.6187402038025787
136
+ GSE223559_GSM6963123,human,liver,STPath,3645,0.4773833257125438,0.33146985701818016
137
+ GSE240429_GSM7697869,human,liver,HistAgent,2349,0.8946775496056412,0.8854231667797814
138
+ GSE240429_GSM7697869,human,liver,OmiCLIP,2349,0.7805000632975535,0.7365812198926993
139
+ GSE240429_GSM7697869,human,liver,STPath,2349,0.26223968159555916,0.13466003187873124
140
+ GSE243367_GSM7784329,human,liver,HistAgent,1928,0.7689107883817428,0.7390494453838294
141
+ GSE243367_GSM7784329,human,liver,OmiCLIP,1928,0.6676970954356845,0.6146771638558635
142
+ GSE243367_GSM7784329,human,liver,STPath,1928,0.4857053941908714,0.3572766200247897
143
+ GSE245908_GSM7850822,human,liver,HistAgent,2261,0.874312251216276,0.8630058895938882
144
+ GSE245908_GSM7850822,human,liver,OmiCLIP,2261,0.5927288810260946,0.5174715618831407
145
+ GSE245908_GSM7850822,human,liver,STPath,2261,0.1842547545333923,0.05276061333707064
146
+ GSE254364_GSM8041062,human,liver,HistAgent,3070,0.7202392033727538,0.681905676419868
147
+ GSE254364_GSM8041062,human,liver,OmiCLIP,3070,0.2635420371511577,0.1893631436270252
148
+ GSE254364_GSM8041062,human,liver,STPath,3070,0.3822593603375362,0.2557099256590637
149
+ GSE206621_GSM6258255,human,mouth,HistAgent,1088,0.7426654411764706,0.7140177007078095
150
+ GSE206621_GSM6258255,human,mouth,OmiCLIP,1088,0.380533088235294,0.2506509502534282
151
+ GSE206621_GSM6258255,human,mouth,STPath,1088,0.4322426470588235,0.30561090161096055
152
+ GSE206621_GSM6258257,human,mouth,HistAgent,160,0.8212500000000003,0.8058580646372245
153
+ GSE206621_GSM6258257,human,mouth,OmiCLIP,160,0.38087499999999996,0.24847041119573293
154
+ GSE206621_GSM6258257,human,mouth,STPath,160,0.46125000000000005,0.3480434168301364
155
+ GSE208253_GSM6339633,human,mouth,HistAgent,969,0.7634969401174387,0.7330516793845859
156
+ GSE208253_GSM6339633,human,mouth,OmiCLIP,969,0.5589492964985877,0.45669159049723873
157
+ GSE208253_GSM6339633,human,mouth,STPath,969,0.28047942353303285,0.14849706619232728
158
+ GSE208253_GSM6339635,human,mouth,HistAgent,1678,0.7497386680310199,0.7205332525464607
159
+ GSE208253_GSM6339635,human,mouth,OmiCLIP,1678,0.5446397801239603,0.49105991597730037
160
+ GSE208253_GSM6339635,human,mouth,STPath,1678,0.333876178497374,0.17420075496513682
161
+ GSE208253_GSM6339636,human,mouth,HistAgent,3311,0.6911224562863204,0.6528362122456527
162
+ GSE208253_GSM6339636,human,mouth,OmiCLIP,3311,0.5173680012297078,0.42637965883972173
163
+ GSE208253_GSM6339636,human,mouth,STPath,3311,0.3579176873217125,0.1835474320807655
164
+ GSE208253_GSM6339637,human,mouth,HistAgent,2860,0.578714976304989,0.5265451427404764
165
+ GSE208253_GSM6339637,human,mouth,OmiCLIP,2860,0.42479133886312376,0.3285649558104004
166
+ GSE208253_GSM6339637,human,mouth,STPath,2860,0.22236944536915187,0.09669564446775684
167
+ GSE208253_GSM6339641,human,mouth,HistAgent,2130,0.7335241745592069,0.7060972850913205
168
+ GSE208253_GSM6339641,human,mouth,OmiCLIP,2130,0.5452988067411024,0.4793261325182138
169
+ GSE208253_GSM6339641,human,mouth,STPath,2130,0.3244294510056567,0.17370946352076133
170
+ GSE220978_GSM6833484,human,mouth,HistAgent,4199,0.8057894736842106,0.7864384848682068
171
+ GSE220978_GSM6833484,human,mouth,OmiCLIP,4199,0.43311919504643964,0.3133965746101859
172
+ GSE220978_GSM6833484,human,mouth,STPath,4199,0.3306467809795983,0.18590783753157714
173
+ GSE220978_GSM6833486,human,mouth,HistAgent,4514,0.7335108336214269,0.7043002250166651
174
+ GSE220978_GSM6833486,human,mouth,OmiCLIP,4514,0.4998729560604289,0.4197854882382083
175
+ GSE220978_GSM6833486,human,mouth,STPath,4514,0.2945215428859124,0.12926929494949238
176
+ GSE203612_GSM6177614,human,ovary,HistAgent,1762,0.7107150964812714,0.6684261177132812
177
+ GSE203612_GSM6177614,human,ovary,OmiCLIP,1762,0.3395005675368899,0.22807249817174474
178
+ GSE203612_GSM6177614,human,ovary,STPath,1762,0.3654597048808173,0.2357339885056278
179
+ GSE203612_GSM6177618,human,ovary,HistAgent,1789,0.6132121088214101,0.5589125552360156
180
+ GSE203612_GSM6177618,human,ovary,OmiCLIP,1789,0.27239605750325563,0.16247238043661663
181
+ GSE203612_GSM6177618,human,ovary,STPath,1789,0.29795153293997845,0.1910513163749418
182
+ GSE213699_GSM6592131,human,ovary,HistAgent,3356,0.7200715137067939,0.675038332008105
183
+ GSE213699_GSM6592131,human,ovary,OmiCLIP,3356,0.4743682955899881,0.3467899608249756
184
+ GSE213699_GSM6592131,human,ovary,STPath,3356,0.3440643623361144,0.20206712329593998
185
+ GSE213699_GSM6592132,human,ovary,HistAgent,2272,0.8220598591549295,0.8026576599274003
186
+ GSE213699_GSM6592132,human,ovary,OmiCLIP,2272,0.4214524647887324,0.35350186623366997
187
+ GSE213699_GSM6592132,human,ovary,STPath,2272,0.292068661971831,0.180599176140832
188
+ GSE213699_GSM6592134,human,ovary,HistAgent,3139,0.7724052245938197,0.7456247414412102
189
+ GSE213699_GSM6592134,human,ovary,OmiCLIP,3139,0.45373048741637473,0.3182390399374885
190
+ GSE213699_GSM6592134,human,ovary,STPath,3139,0.2993182542210895,0.1952278123982359
191
+ GSE213699_GSM6592135,human,ovary,HistAgent,2142,0.7572642390289449,0.7249606209278158
192
+ GSE213699_GSM6592135,human,ovary,OmiCLIP,2142,0.4764985994397759,0.33377484735853147
193
+ GSE213699_GSM6592135,human,ovary,STPath,2142,0.3652287581699346,0.2430370898654935
194
+ GSE227019_GSM7090086,human,ovary,HistAgent,2584,0.6479953560371517,0.595385372746411
195
+ GSE227019_GSM7090086,human,ovary,OmiCLIP,2584,0.40129256965944277,0.24953836362729212
196
+ GSE227019_GSM7090086,human,ovary,STPath,2584,0.3226393188854489,0.19960125438980297
197
+ GSE227019_GSM7090088,human,ovary,HistAgent,1977,0.7509458775923117,0.7194980888755115
198
+ GSE227019_GSM7090088,human,ovary,OmiCLIP,1977,0.4452604957005564,0.3134180665188763
199
+ GSE227019_GSM7090088,human,ovary,STPath,1977,0.44772888214466366,0.3408047102121214
200
+ Human_Ovary_10X_03282022_Visium,human,ovary,HistAgent,3455,0.8318784370477569,0.8118446750414717
201
+ Human_Ovary_10X_03282022_Visium,human,ovary,OmiCLIP,3455,0.49864544138929084,0.369314972631749
202
+ Human_Ovary_10X_03282022_Visium,human,ovary,STPath,3455,0.5140781476121563,0.42594512304868576
203
+ Human_Prostate_Erickson_08102022_Visium_Patient_1_H2_1,human,prostate,HistAgent,2997,0.5175175950709756,0.4630478663287369
204
+ Human_Prostate_Erickson_08102022_Visium_Patient_1_H2_1,human,prostate,OmiCLIP,2997,0.2574798587133659,0.13740571171955848
205
+ Human_Prostate_Erickson_08102022_Visium_Patient_1_H2_1,human,prostate,STPath,2997,0.24626843346420635,0.12474559099926358
206
+ Human_Prostate_Erickson_08102022_Visium_Patient_1_H2_2,human,prostate,HistAgent,3147,0.48411621086009343,0.3782405683237531
207
+ Human_Prostate_Erickson_08102022_Visium_Patient_1_H2_2,human,prostate,OmiCLIP,3147,0.31727308095599466,0.17596396073339496
208
+ Human_Prostate_Erickson_08102022_Visium_Patient_1_H2_2,human,prostate,STPath,3147,0.30528311489389487,0.18133443577345118
209
+ Human_Prostate_Erickson_08102022_Visium_Patient_1_V1_2,human,prostate,HistAgent,2716,0.6425995419520368,0.5901502621894451
210
+ Human_Prostate_Erickson_08102022_Visium_Patient_1_V1_2,human,prostate,OmiCLIP,2716,0.3099696151714977,0.17343144228856588
211
+ Human_Prostate_Erickson_08102022_Visium_Patient_1_V1_2,human,prostate,STPath,2716,0.35284472454127086,0.22967657684094794
212
+ GSE203612_GSM6177607,human,stomach,HistAgent,2624,0.5332368863352095,0.4658820019895153
213
+ GSE203612_GSM6177607,human,stomach,OmiCLIP,2624,0.2065963753387534,0.10080007749030338
214
+ GSE203612_GSM6177607,human,stomach,STPath,2624,0.24571731029810298,0.14530965381679384
215
+ GSE251950_GSM7990473,human,stomach,HistAgent,3834,0.40964542599315995,0.33388029322883944
216
+ GSE251950_GSM7990473,human,stomach,OmiCLIP,3834,0.13593492837852977,0.05738356924560805
217
+ GSE251950_GSM7990473,human,stomach,STPath,3834,0.1783488137737567,0.0821926433397657
218
+ GSE251950_GSM7990475,human,stomach,HistAgent,3043,0.727702924745317,0.6921730172243891
219
+ GSE251950_GSM7990475,human,stomach,OmiCLIP,3043,0.26552744002628986,0.16061308654241027
220
+ GSE251950_GSM7990475,human,stomach,STPath,3043,0.3546434439697666,0.2133558634960975
221
+ GSE251950_GSM7990477,human,stomach,HistAgent,3577,0.7130388593793682,0.6716589840987068
222
+ GSE251950_GSM7990477,human,stomach,OmiCLIP,3577,0.2597428012300811,0.16693483356717126
223
+ GSE251950_GSM7990477,human,stomach,STPath,3577,0.30775510204081635,0.16335918017151516
224
+ GSE251950_GSM7990478,human,stomach,HistAgent,2426,0.657182648962481,0.592868729955765
225
+ GSE251950_GSM7990478,human,stomach,OmiCLIP,2426,0.29434670502183785,0.16583891553781438
226
+ GSE251950_GSM7990478,human,stomach,STPath,2426,0.4013129045271965,0.2565438308962555
227
+ GSE251950_GSM7990479,human,stomach,HistAgent,2483,0.5436035872628991,0.47264373741006377
228
+ GSE251950_GSM7990479,human,stomach,OmiCLIP,2483,0.2437781434471786,0.12780288990019367
229
+ GSE251950_GSM7990479,human,stomach,STPath,2483,0.27709099738456505,0.1309237443072011
230
+ GSE251950_GSM7990480,human,stomach,HistAgent,1882,0.6585653560042508,0.6046910191799857
231
+ GSE251950_GSM7990480,human,stomach,OmiCLIP,1882,0.26663124335812965,0.14892213463551734
232
+ GSE251950_GSM7990480,human,stomach,STPath,1882,0.29914984059511157,0.17122117195282943
233
+ GSE251950_GSM7990481,human,stomach,HistAgent,3037,0.5688982349008691,0.5067959655002705
234
+ GSE251950_GSM7990481,human,stomach,OmiCLIP,3037,0.17544097544426823,0.06412658097496501
235
+ GSE251950_GSM7990481,human,stomach,STPath,3037,0.2170412388621147,0.09935744135639395
236
+ GSE251950_GSM7990482,human,stomach,HistAgent,3491,0.6953022056717274,0.6530107848236227
237
+ GSE251950_GSM7990482,human,stomach,OmiCLIP,3491,0.23759954167860212,0.1260509388083288
238
+ GSE251950_GSM7990482,human,stomach,STPath,3491,0.3106330564308221,0.18445393741523647
239
+ GSE203424_GSM6171787,mouse,brain,HistAgent,3126,0.805866922584773,0.7813958295187617
240
+ GSE203424_GSM6171787,mouse,brain,OmiCLIP,3126,0.5564555342290467,0.46851976575380766
241
+ GSE203424_GSM6171787,mouse,brain,STPath,3126,0.23932821497120924,0.08298926117280495
242
+ GSE209583_GSM6380085,mouse,brain,HistAgent,2732,0.6363909224011712,0.5671768789458372
243
+ GSE209583_GSM6380085,mouse,brain,OmiCLIP,2732,0.44756954612005856,0.3413651282554176
244
+ GSE209583_GSM6380085,mouse,brain,STPath,2732,0.24699853587115664,0.10471877238455893
245
+ GSE209583_GSM6380090,mouse,brain,HistAgent,1723,0.3113150146224004,0.22171921315842838
246
+ GSE209583_GSM6380090,mouse,brain,OmiCLIP,1723,0.23477239988561166,0.13640424547414498
247
+ GSE209583_GSM6380090,mouse,brain,STPath,1723,0.1315155497387547,0.042822767237415654
248
+ GSE217058_GSM6704284,mouse,brain,HistAgent,2108,0.6801542253419822,0.6292137391733963
249
+ GSE217058_GSM6704284,mouse,brain,OmiCLIP,2108,0.49415315278293487,0.39729131594353884
250
+ GSE217058_GSM6704284,mouse,brain,STPath,2108,0.24069569137468802,0.09069345904645185
251
+ GSE217058_GSM6704287,mouse,brain,HistAgent,3128,0.5794166016591372,0.5062001723645065
252
+ GSE217058_GSM6704287,mouse,brain,OmiCLIP,3128,0.43017899607974996,0.3173038602642303
253
+ GSE217058_GSM6704287,mouse,brain,STPath,3128,0.2333658037977984,0.0918743869429774
254
+ GSE222410_GSM6922991,mouse,brain,HistAgent,1967,0.7917031011692933,0.7630246490171377
255
+ GSE222410_GSM6922991,mouse,brain,OmiCLIP,1967,0.5510015251652263,0.4683122279871444
256
+ GSE222410_GSM6922991,mouse,brain,STPath,1967,0.26193187595322825,0.10139687749237809
257
+ GSE222981_GSM6937701,mouse,brain,HistAgent,2962,0.8115192437542202,0.7890939570579621
258
+ GSE222981_GSM6937701,mouse,brain,OmiCLIP,2962,0.5698717083051992,0.47641208780392735
259
+ GSE222981_GSM6937701,mouse,brain,STPath,2962,0.22912896691424714,0.09436430322391359
260
+ GSE223066_GSM6939167,mouse,brain,HistAgent,2778,0.78207343412527,0.7524806293647837
261
+ GSE223066_GSM6939167,mouse,brain,OmiCLIP,2778,0.5741612670986321,0.4878956737790361
262
+ GSE223066_GSM6939167,mouse,brain,STPath,2778,0.3024838012958963,0.12333586504633992
263
+ GSE232910_GSM7392320,mouse,brain,HistAgent,3601,0.4551407194730381,0.3663697527204554
264
+ GSE232910_GSM7392320,mouse,brain,OmiCLIP,3601,0.3136626730414074,0.20881947473204357
265
+ GSE232910_GSM7392320,mouse,brain,STPath,3601,0.18246666208772652,0.06413984715567747
266
+ Mouse_Brain_10X_06232020_Visium_Sagittal_Anterior_Section_1,mouse,brain,HistAgent,2695,0.8043933209647496,0.778992165774839
267
+ Mouse_Brain_10X_06232020_Visium_Sagittal_Anterior_Section_1,mouse,brain,OmiCLIP,2695,0.5584192949907236,0.47532272192304653
268
+ Mouse_Brain_10X_06232020_Visium_Sagittal_Anterior_Section_1,mouse,brain,STPath,2695,0.20684972170686458,0.07739316821011309
269
+ GSE169749_GSM5213483,mouse,colon,HistAgent,2604,0.7851766513056836,0.7548790949872539
270
+ GSE169749_GSM5213483,mouse,colon,OmiCLIP,2604,0.12100614439324117,0.05032511778145553
271
+ GSE169749_GSM5213483,mouse,colon,STPath,2604,0.15311059907834104,0.06630444524574441
272
+ GSE169749_GSM5213484,mouse,colon,HistAgent,3630,0.7813884297520661,0.7506644852626186
273
+ GSE169749_GSM5213484,mouse,colon,OmiCLIP,3630,0.1242038567493113,0.057880621814612905
274
+ GSE169749_GSM5213484,mouse,colon,STPath,3630,0.14932782369146008,0.05847935675247923
275
+ GSE190595_GSM5726156,mouse,colon,HistAgent,3934,0.7004652294778743,0.6504980374230303
276
+ GSE190595_GSM5726156,mouse,colon,OmiCLIP,3934,0.09037177254486259,0.025567670714438703
277
+ GSE190595_GSM5726156,mouse,colon,STPath,3934,0.13244123787169146,0.04481450880984998
278
+ GSE190595_GSM5726157,mouse,colon,HistAgent,3547,0.7207330138144913,0.6752844030125356
279
+ GSE190595_GSM5726157,mouse,colon,OmiCLIP,3547,0.08696363123766564,0.022688194353057783
280
+ GSE190595_GSM5726157,mouse,colon,STPath,3547,0.09189173949816748,0.0201854149588939
281
+ GSE211895_GSM6505142,mouse,colon,HistAgent,1378,0.6233671988388969,0.5478580689772589
282
+ GSE211895_GSM6505142,mouse,colon,OmiCLIP,1378,0.22702467343976782,0.12204431946679568
283
+ GSE211895_GSM6505142,mouse,colon,STPath,1378,0.2960087082728592,0.1445298125708359
284
+ GSE211895_GSM6505143,mouse,colon,HistAgent,1372,0.7034402332361516,0.6501076655179662
285
+ GSE211895_GSM6505143,mouse,colon,OmiCLIP,1372,0.26565597667638485,0.15976649058886008
286
+ GSE211895_GSM6505143,mouse,colon,STPath,1372,0.3069533527696793,0.15523431388308884
287
+ GSE211895_GSM6505144,mouse,colon,HistAgent,1982,0.7909485368314834,0.759525217440445
288
+ GSE211895_GSM6505144,mouse,colon,OmiCLIP,1982,0.2889303733602422,0.16519471981669542
289
+ GSE211895_GSM6505144,mouse,colon,STPath,1982,0.28168516649848635,0.12847554155099827
290
+ GSE211895_GSM6505145,mouse,colon,HistAgent,1909,0.7864745940282871,0.7538705222960865
291
+ GSE211895_GSM6505145,mouse,colon,OmiCLIP,1909,0.266799371398638,0.15766078024357075
292
+ GSE211895_GSM6505145,mouse,colon,STPath,1909,0.31104243059193293,0.1657559009417287
293
+ GSE235742_GSM7508784,mouse,colon,HistAgent,640,0.77534375,0.7454366511883453
294
+ GSE235742_GSM7508784,mouse,colon,OmiCLIP,640,0.1695625,0.08860232011668144
295
+ GSE235742_GSM7508784,mouse,colon,STPath,640,0.20434375000000005,0.0814918680980558
296
+ GSE235742_GSM7508785,mouse,colon,HistAgent,572,0.7575524475524475,0.7221397172098571
297
+ GSE235742_GSM7508785,mouse,colon,OmiCLIP,572,0.17097902097902098,0.08691079141925724
298
+ GSE235742_GSM7508785,mouse,colon,STPath,572,0.20727272727272728,0.08510138320960763
299
+ GSE188888_GSM5691527,mouse,heart,HistAgent,1374,0.8848471615720526,0.8755722932388118
300
+ GSE188888_GSM5691527,mouse,heart,OmiCLIP,1374,0.5846724890829694,0.5172793827120789
301
+ GSE188888_GSM5691527,mouse,heart,STPath,1374,0.2903056768558952,0.10118455554411011
302
+ GSE188888_GSM5691529,mouse,heart,HistAgent,2095,0.8764295942720765,0.8659230020000793
303
+ GSE188888_GSM5691529,mouse,heart,OmiCLIP,2095,0.5737183770883055,0.520996860462366
304
+ GSE188888_GSM5691529,mouse,heart,STPath,2095,0.1872840095465394,0.040511466514140115
305
+ GSE206787_GSM7898096,mouse,heart,HistAgent,591,0.8757698815566837,0.8660533706621728
306
+ GSE206787_GSM7898096,mouse,heart,OmiCLIP,591,0.4748900169204737,0.3764779512737772
307
+ GSE206787_GSM7898096,mouse,heart,STPath,591,0.35038917089678506,0.1995275773283393
308
+ GSE206787_GSM7898098,mouse,heart,HistAgent,1245,0.7692530120481927,0.739669657943503
309
+ GSE206787_GSM7898098,mouse,heart,OmiCLIP,1245,0.44173493975903616,0.34514182088752776
310
+ GSE206787_GSM7898098,mouse,heart,STPath,1245,0.36583132530120477,0.19791586647596768
311
+ GSE206787_GSM7898099,mouse,heart,HistAgent,948,0.6570253164556961,0.6076964544406595
312
+ GSE206787_GSM7898099,mouse,heart,OmiCLIP,948,0.3213291139240506,0.231100008734203
313
+ GSE206787_GSM7898099,mouse,heart,STPath,948,0.3260970464135021,0.1795585944740026
314
+ GSE214611_GSM6613077,mouse,heart,HistAgent,1917,0.7900573813249869,0.7608674845663933
315
+ GSE214611_GSM6613077,mouse,heart,OmiCLIP,1917,0.5813875847678664,0.5269096416126466
316
+ GSE214611_GSM6613077,mouse,heart,STPath,1917,0.17346896191966615,0.044222727868039866
317
+ GSE214611_GSM6613079,mouse,heart,HistAgent,3123,0.7984166256648157,0.7699777883784252
318
+ GSE214611_GSM6613079,mouse,heart,OmiCLIP,3123,0.5712760557000384,0.533380773654127
319
+ GSE214611_GSM6613079,mouse,heart,STPath,3123,0.12407581827979663,0.025288279144794843
320
+ GSE214611_GSM6613080,mouse,heart,HistAgent,3540,0.829542372881356,0.8093444987028909
321
+ GSE214611_GSM6613080,mouse,heart,OmiCLIP,3540,0.5911581920903954,0.54457256638523
322
+ GSE214611_GSM6613080,mouse,heart,STPath,3540,0.11161581920903957,0.019771268771903956
323
+ GSE214611_GSM6613082,mouse,heart,HistAgent,2468,0.8286046256953874,0.8071209510452683
324
+ GSE214611_GSM6613082,mouse,heart,OmiCLIP,2468,0.5973347496605196,0.5554896013391818
325
+ GSE214611_GSM6613082,mouse,heart,STPath,2468,0.1079392439441062,0.022651719350427688
326
+ GSE214611_GSM6613086,mouse,heart,HistAgent,2438,0.7816010878415088,0.7490536957351399
327
+ GSE214611_GSM6613086,mouse,heart,OmiCLIP,2438,0.5419888199197509,0.4554187241469301
328
+ GSE214611_GSM6613086,mouse,heart,STPath,2438,0.2156392761883068,0.09286283468349413
329
+ GSE193460_GSM5808054,mouse,lung,HistAgent,1906,0.7278174186778593,0.6898241151324328
330
+ GSE193460_GSM5808054,mouse,lung,OmiCLIP,1906,0.3898950682056664,0.29626870886910006
331
+ GSE193460_GSM5808054,mouse,lung,STPath,1906,0.2524554039874082,0.09386643310942214
332
+ GSE193460_GSM5808055,mouse,lung,HistAgent,1931,0.7122157283420878,0.6719059832529989
333
+ GSE193460_GSM5808055,mouse,lung,OmiCLIP,1931,0.3605400606643487,0.2645583655472764
334
+ GSE193460_GSM5808055,mouse,lung,STPath,1931,0.2523629503588074,0.09932019915302596
335
+ GSE193460_GSM5808056,mouse,lung,HistAgent,1244,0.717508038585209,0.6741096774785673
336
+ GSE193460_GSM5808056,mouse,lung,OmiCLIP,1244,0.32453376205787776,0.20885643012929178
337
+ GSE193460_GSM5808056,mouse,lung,STPath,1244,0.2526688102893891,0.09947609076988516
338
+ GSE193460_GSM5808057,mouse,lung,HistAgent,2546,0.623503534956795,0.5741612329270477
339
+ GSE193460_GSM5808057,mouse,lung,OmiCLIP,2546,0.2824037706205813,0.17467810362860228
340
+ GSE193460_GSM5808057,mouse,lung,STPath,2546,0.20545954438334638,0.08798394840414525
341
+ GSE202322_GSM6108348,mouse,lung,HistAgent,2486,0.7100884955752212,0.6699823802735687
342
+ GSE202322_GSM6108348,mouse,lung,OmiCLIP,2486,0.4783668543845535,0.41084589751827527
343
+ GSE202322_GSM6108348,mouse,lung,STPath,2486,0.15985518905872886,0.04845437796717613
344
+ GSE202322_GSM6108349,mouse,lung,HistAgent,2520,0.6566825396825398,0.6079632564815471
345
+ GSE202322_GSM6108349,mouse,lung,OmiCLIP,2520,0.4056269841269841,0.3324802347527251
346
+ GSE202322_GSM6108349,mouse,lung,STPath,2520,0.15796825396825398,0.05064026314057487
347
+ GSE202322_GSM6108350,mouse,lung,HistAgent,2847,0.6879381805409203,0.6433537516873186
348
+ GSE202322_GSM6108350,mouse,lung,OmiCLIP,2847,0.37071303126097643,0.24307448472673554
349
+ GSE202322_GSM6108350,mouse,lung,STPath,2847,0.20465753424657532,0.06469952963453651
350
+ GSE202322_GSM6108351,mouse,lung,HistAgent,2969,0.6590175890483323,0.6193104490978668
351
+ GSE202322_GSM6108351,mouse,lung,OmiCLIP,2969,0.36741055752399926,0.2635314633183078
352
+ GSE202322_GSM6108351,mouse,lung,STPath,2969,0.15828194279080388,0.046052494264676516
353
+ GSE225766_GSM7055901,mouse,muscle,HistAgent,1493,0.8668720696584059,0.855160873533169
354
+ GSE225766_GSM7055901,mouse,muscle,OmiCLIP,1493,0.6085063630274615,0.5516169964696814
355
+ GSE225766_GSM7055901,mouse,muscle,STPath,1493,0.11458807769591428,0.025167294702785767
356
+ GSE225766_GSM7055902,mouse,muscle,HistAgent,1438,0.8626008344923506,0.8507905503012896
357
+ GSE225766_GSM7055902,mouse,muscle,OmiCLIP,1438,0.6092489568845618,0.5576100309193244
358
+ GSE225766_GSM7055902,mouse,muscle,STPath,1438,0.11564673157162726,0.02686767316927757
359
+ GSE225766_GSM7055903,mouse,muscle,HistAgent,1064,0.8274812030075188,0.811435372212454
360
+ GSE225766_GSM7055903,mouse,muscle,OmiCLIP,1064,0.5407330827067669,0.4942651767687779
361
+ GSE225766_GSM7055903,mouse,muscle,STPath,1064,0.21321428571428572,0.07019215200610442
362
+ GSE225766_GSM7055904,mouse,muscle,HistAgent,959,0.814786235662148,0.7966406690573892
363
+ GSE225766_GSM7055904,mouse,muscle,OmiCLIP,959,0.5272367049009384,0.4831840651866402
364
+ GSE225766_GSM7055904,mouse,muscle,STPath,959,0.2069864442127216,0.06511685817499027
365
+ GSE225766_GSM7055907,mouse,muscle,HistAgent,1155,0.809044733044733,0.7895478962225463
366
+ GSE225766_GSM7055907,mouse,muscle,OmiCLIP,1155,0.5473939393939394,0.49192281278277206
367
+ GSE225766_GSM7055907,mouse,muscle,STPath,1155,0.205029341029341,0.06745606005878681
368
+ GSE225766_GSM7055908,mouse,muscle,HistAgent,1136,0.8125,0.7928853877057288
369
+ GSE225766_GSM7055908,mouse,muscle,OmiCLIP,1136,0.5331338028169014,0.48266384275412383
370
+ GSE225766_GSM7055908,mouse,muscle,STPath,1136,0.21647887323943663,0.0744539415348703
371
+ GSE225766_GSM7230944,mouse,muscle,HistAgent,1854,0.7783387270765911,0.7503004564537429
372
+ GSE225766_GSM7230944,mouse,muscle,OmiCLIP,1854,0.431715210355987,0.3568309790065493
373
+ GSE225766_GSM7230944,mouse,muscle,STPath,1854,0.17778856526429343,0.05278926880468212
374
+ GSE225766_GSM7230945,mouse,muscle,HistAgent,2283,0.7900043802014892,0.7649056566059753
375
+ GSE225766_GSM7230945,mouse,muscle,OmiCLIP,2283,0.42477441962330265,0.3457914487161736
376
+ GSE225766_GSM7230945,mouse,muscle,STPath,2283,0.19342969776609722,0.06232449401369469
377
+ GSE200720_GSM6042726,mouse,spleen,HistAgent,2774,0.7558687815428984,0.7181114161420628
378
+ GSE200720_GSM6042726,mouse,spleen,OmiCLIP,2774,0.3590338860850757,0.2666404646549832
379
+ GSE200720_GSM6042726,mouse,spleen,STPath,2774,0.24611391492429704,0.11619601557574116
380
+ GSE200720_GSM6042728,mouse,spleen,HistAgent,2659,0.7628206092515984,0.7308157721269629
381
+ GSE200720_GSM6042728,mouse,spleen,OmiCLIP,2659,0.36479879654005254,0.2711724847430337
382
+ GSE200720_GSM6042728,mouse,spleen,STPath,2659,0.2610831139526138,0.132579475413467
383
+ GSE200720_GSM6042730,mouse,spleen,HistAgent,2254,0.6765738971173754,0.6340647887702814
384
+ GSE200720_GSM6042730,mouse,spleen,OmiCLIP,2254,0.3216506836848452,0.23121955908921524
385
+ GSE200720_GSM6042730,mouse,spleen,STPath,2254,0.23450930539439857,0.11557562802188484
386
+ GSE254652_GSM8047864,mouse,spleen,HistAgent,2207,0.5850566379700952,0.5307099105110262
387
+ GSE254652_GSM8047864,mouse,spleen,OmiCLIP,2207,0.3177979157227005,0.2310649431282929
388
+ GSE254652_GSM8047864,mouse,spleen,STPath,2207,0.20548255550521072,0.11297752674555143
389
+ GSE254652_GSM8047868,mouse,spleen,HistAgent,592,0.8331756756756757,0.8187131468963064
390
+ GSE254652_GSM8047868,mouse,spleen,OmiCLIP,592,0.3638175675675675,0.2605849415360158
391
+ GSE254652_GSM8047868,mouse,spleen,STPath,592,0.15,0.07531731182951025
392
+ GSE254652_GSM8047870,mouse,spleen,HistAgent,833,0.8184873949579833,0.802176411382983
393
+ GSE254652_GSM8047870,mouse,spleen,OmiCLIP,833,0.35971188475390153,0.2587008019723683
394
+ GSE254652_GSM8047870,mouse,spleen,STPath,833,0.1690516206482593,0.08427063311525149
395
+ GSE254652_GSM8047872,mouse,spleen,HistAgent,2048,0.7192578125,0.6792727154923823
396
+ GSE254652_GSM8047872,mouse,spleen,OmiCLIP,2048,0.39899414062500005,0.3120262047291755
397
+ GSE254652_GSM8047872,mouse,spleen,STPath,2048,0.268486328125,0.14607397687768275
398
+ GSE254652_GSM8047877,mouse,spleen,HistAgent,2244,0.6805436720142602,0.6370517220276934
399
+ GSE254652_GSM8047877,mouse,spleen,OmiCLIP,2244,0.36874331550802136,0.27363046512328515
400
+ GSE254652_GSM8047877,mouse,spleen,STPath,2244,0.233903743315508,0.12485821551482347
401
+ GSE254652_GSM8047883,mouse,spleen,HistAgent,2553,0.810105757931845,0.7885880077063735
402
+ GSE254652_GSM8047883,mouse,spleen,OmiCLIP,2553,0.3400940070505287,0.22130112789361556
403
+ GSE254652_GSM8047883,mouse,spleen,STPath,2553,0.1842694868781825,0.0795413409619834
404
+ GSE254652_GSM8047885,mouse,spleen,HistAgent,2001,0.7680992836914876,0.7398962082289203
405
+ GSE254652_GSM8047885,mouse,spleen,OmiCLIP,2001,0.351304347826087,0.24679050912171813
406
+ GSE254652_GSM8047885,mouse,spleen,STPath,2001,0.18702648675662173,0.10895556889769277
tutorials/figure4_abmil_fold00.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca7dd339fc3aab3828342668dcf1dfacc3f6f34d8a6ef8e3f9d8e580f6a0db73
3
+ size 2112573
tutorials/figure4_artifact_sample.json ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "embedding": {
3
+ "case_id": "TCGA-2Y-A9GS",
4
+ "slide_id": "TCGA-2Y-A9GS-01Z-00-DX1",
5
+ "organ": "liver",
6
+ "model": "HistAgent-v3-GigaPath-epoch30",
7
+ "schema_version": "histagent-v3-figure4b-memory512-v3",
8
+ "feature_dim": 512,
9
+ "feature_layout": "mean([species_token, organ_token, local_perceiver_16x512, global_perceiver_16x512])",
10
+ "full_tile_count": 56223,
11
+ "public_sample_count": 1024
12
+ },
13
+ "abmil": {
14
+ "task": "TCGA-LIHC__OS",
15
+ "seed": 42,
16
+ "fold": 0,
17
+ "state_dict_keys": [
18
+ "encoder.0.weight",
19
+ "encoder.0.bias",
20
+ "encoder.1.weight",
21
+ "encoder.1.bias",
22
+ "encoder.4.weight",
23
+ "encoder.4.bias",
24
+ "attn.v.weight",
25
+ "attn.v.bias",
26
+ "attn.u.weight",
27
+ "attn.u.bias",
28
+ "attn.w.weight",
29
+ "attn.w.bias",
30
+ "head.weight",
31
+ "head.bias"
32
+ ],
33
+ "state_shapes": {
34
+ "encoder.0.weight": [
35
+ 512,
36
+ 512
37
+ ],
38
+ "encoder.0.bias": [
39
+ 512
40
+ ],
41
+ "encoder.1.weight": [
42
+ 512
43
+ ],
44
+ "encoder.1.bias": [
45
+ 512
46
+ ],
47
+ "encoder.4.weight": [
48
+ 256,
49
+ 512
50
+ ],
51
+ "encoder.4.bias": [
52
+ 256
53
+ ],
54
+ "attn.v.weight": [
55
+ 256,
56
+ 256
57
+ ],
58
+ "attn.v.bias": [
59
+ 256
60
+ ],
61
+ "attn.u.weight": [
62
+ 256,
63
+ 256
64
+ ],
65
+ "attn.u.bias": [
66
+ 256
67
+ ],
68
+ "attn.w.weight": [
69
+ 1,
70
+ 256
71
+ ],
72
+ "attn.w.bias": [
73
+ 1
74
+ ],
75
+ "head.weight": [
76
+ 1,
77
+ 256
78
+ ],
79
+ "head.bias": [
80
+ 1
81
+ ]
82
+ },
83
+ "parameter_count": 527106,
84
+ "sha256": "ca7dd339fc3aab3828342668dcf1dfacc3f6f34d8a6ef8e3f9d8e580f6a0db73"
85
+ },
86
+ "training_performed_in_notebook": false,
87
+ "feature_extraction_performed_in_notebook": false
88
+ }
tutorials/figure4_embedding_sample.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3184bdecfff4acd6de3f970a2487f06c3ebca51b0d8f08c962116b5dda7175ca
3
+ size 1950243
tutorials/figure4_survival_oof.csv ADDED
@@ -0,0 +1,844 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ task,case_id,time,event,risk,n_slides
2
+ TCGA-LGG__OS,TCGA-CS-4938,117.5000822,0,-1.7177296876907349,1
3
+ TCGA-LGG__OS,TCGA-CS-4941,7.693066377,1,2.230420589447021,1
4
+ TCGA-LGG__OS,TCGA-CS-4942,43.88992997,1,-0.1237828582525253,1
5
+ TCGA-LGG__OS,TCGA-CS-4943,36.36124536,1,-0.4861454367637634,1
6
+ TCGA-LGG__OS,TCGA-CS-4944,60.09797153,0,-0.4663395285606384,1
7
+ TCGA-LGG__OS,TCGA-CS-5390,64.60729543,0,-0.351600706577301,1
8
+ TCGA-LGG__OS,TCGA-CS-5393,40.17490219,0,-2.7432360649108887,1
9
+ TCGA-LGG__OS,TCGA-CS-5394,0.263010816,0,-0.1407667398452758,1
10
+ TCGA-LGG__OS,TCGA-CS-5395,21.00798895,1,-2.091236114501953,1
11
+ TCGA-LGG__OS,TCGA-CS-5396,53.62133018,0,1.1294549703598022,1
12
+ TCGA-LGG__OS,TCGA-CS-5397,6.378012296,1,-0.1240738704800605,1
13
+ TCGA-LGG__OS,TCGA-CS-6186,17.6874774,1,-2.989182710647583,1
14
+ TCGA-LGG__OS,TCGA-CS-6188,26.76135056,1,1.0027755498886108,1
15
+ TCGA-LGG__OS,TCGA-CS-6290,37.38041227,1,-0.2763810455799103,1
16
+ TCGA-LGG__OS,TCGA-CS-6665,51.55012,0,-1.3547228574752808,1
17
+ TCGA-LGG__OS,TCGA-CS-6666,46.94743071,0,-1.9848151206970213,1
18
+ TCGA-LGG__OS,TCGA-CS-6667,48.29536115,0,0.5252271294593811,1
19
+ TCGA-LGG__OS,TCGA-CS-6668,49.93917875,0,-0.8212677836418152,1
20
+ TCGA-LGG__OS,TCGA-CS-6669,49.11726995,0,-1.206724762916565,1
21
+ TCGA-LGG__OS,TCGA-CS-6670,46.88167801,0,-0.3732249140739441,1
22
+ TCGA-LGG__OS,TCGA-DB-5270,122.7274222,0,-1.0464476346969604,1
23
+ TCGA-LGG__OS,TCGA-DB-5273,81.96074564,0,-0.7713347673416138,1
24
+ TCGA-LGG__OS,TCGA-DB-5274,75.25396982,0,-1.7029188871383667,1
25
+ TCGA-LGG__OS,TCGA-DB-5275,47.93372127,0,-2.7930779457092285,1
26
+ TCGA-LGG__OS,TCGA-DB-5276,72.91974883,0,-1.3176337480545044,1
27
+ TCGA-LGG__OS,TCGA-DB-5277,50.85971661,1,-0.7675580978393555,1
28
+ TCGA-LGG__OS,TCGA-DB-5278,91.13324786,0,-5.0396575927734375,1
29
+ TCGA-LGG__OS,TCGA-DB-5279,44.51458066,0,-3.1915178298950195,1
30
+ TCGA-LGG__OS,TCGA-DB-5280,36.55850347,0,-3.188436985015869,1
31
+ TCGA-LGG__OS,TCGA-DB-5281,78.27859421,0,-1.023314356803894,1
32
+ TCGA-LGG__OS,TCGA-DB-A4X9,46.42140908,0,-1.908356547355652,1
33
+ TCGA-LGG__OS,TCGA-DB-A4XA,18.83814972,0,-1.7741607427597046,1
34
+ TCGA-LGG__OS,TCGA-DB-A4XB,30.21336753,0,-2.1291675567626958,1
35
+ TCGA-LGG__OS,TCGA-DB-A4XC,46.71729625,0,-4.860263824462891,1
36
+ TCGA-LGG__OS,TCGA-DB-A4XD,39.78038597,0,-2.745617151260376,1
37
+ TCGA-LGG__OS,TCGA-DB-A4XE,37.44616497,0,-3.639068603515625,1
38
+ TCGA-LGG__OS,TCGA-DB-A4XF,33.56675543,0,-1.0957930088043213,1
39
+ TCGA-LGG__OS,TCGA-DB-A4XG,72.95262518,0,-1.2077953815460205,1
40
+ TCGA-LGG__OS,TCGA-DB-A4XH,31.62705066,0,-3.783464193344116,1
41
+ TCGA-LGG__OS,TCGA-DB-A64L,24.1969951,0,-0.4845024347305298,1
42
+ TCGA-LGG__OS,TCGA-DB-A64O,25.47917283,1,-0.3424638509750366,1
43
+ TCGA-LGG__OS,TCGA-DB-A64P,30.11473847,0,-3.160439729690552,1
44
+ TCGA-LGG__OS,TCGA-DB-A64Q,5.983496071,0,-0.5009942054748535,1
45
+ TCGA-LGG__OS,TCGA-DB-A64R,31.3969162,0,-2.76529312133789,1
46
+ TCGA-LGG__OS,TCGA-DB-A64S,27.45175395,0,0.113580122590065,1
47
+ TCGA-LGG__OS,TCGA-DB-A64U,27.81339383,0,0.3336674869060516,1
48
+ TCGA-LGG__OS,TCGA-DB-A64V,29.22707696,0,-0.0998851209878921,1
49
+ TCGA-LGG__OS,TCGA-DB-A64W,14.39984219,1,-2.53247618675232,1
50
+ TCGA-LGG__OS,TCGA-DB-A64X,18.5093862,0,-0.216800570487976,1
51
+ TCGA-LGG__OS,TCGA-DB-A75K,12.09849755,0,0.3811602890491485,1
52
+ TCGA-LGG__OS,TCGA-DB-A75L,11.2437124,0,0.4192483425140381,1
53
+ TCGA-LGG__OS,TCGA-DB-A75M,17.88473551,0,-0.5311938524246216,1
54
+ TCGA-LGG__OS,TCGA-DB-A75O,30.73938916,0,0.3856164515018463,1
55
+ TCGA-LGG__OS,TCGA-DB-A75P,16.1751652,0,0.1124685406684875,1
56
+ TCGA-LGG__OS,TCGA-DH-5140,19.95594569,1,-1.8603980541229248,1
57
+ TCGA-LGG__OS,TCGA-DH-5141,31.82430878,0,-1.9757075309753416,1
58
+ TCGA-LGG__OS,TCGA-DH-5142,63.87875201,0,-1.187125325202942,1
59
+ TCGA-LGG__OS,TCGA-DH-5143,46.05976921,0,-4.434147357940674,1
60
+ TCGA-LGG__OS,TCGA-DH-5144,24.59151133,0,-3.549766540527344,1
61
+ TCGA-LGG__OS,TCGA-DH-A669,30.21336753,1,0.9304646849632264,1
62
+ TCGA-LGG__OS,TCGA-DH-A66B,42.04885426,0,-0.7689706683158875,1
63
+ TCGA-LGG__OS,TCGA-DH-A66D,27.81339383,0,-1.497329831123352,1
64
+ TCGA-LGG__OS,TCGA-DH-A66F,17.19433212,0,-1.427460789680481,1
65
+ TCGA-LGG__OS,TCGA-DH-A66G,17.19433212,0,-2.880596160888672,1
66
+ TCGA-LGG__OS,TCGA-DH-A7UR,54.24598087,0,-1.2018615007400513,1
67
+ TCGA-LGG__OS,TCGA-DH-A7US,23.21070454,0,-2.4138941764831543,1
68
+ TCGA-LGG__OS,TCGA-DH-A7UT,17.45734293,1,-2.279127836227417,1
69
+ TCGA-LGG__OS,TCGA-DH-A7UU,13.7094388,0,-1.4550131559371948,1
70
+ TCGA-LGG__OS,TCGA-DH-A7UV,18.60801526,0,-2.428779125213623,1
71
+ TCGA-LGG__OS,TCGA-DU-5847,18.01624092,0,1.1850050687789917,1
72
+ TCGA-LGG__OS,TCGA-DU-5849,14.56422395,0,-1.604579210281372,1
73
+ TCGA-LGG__OS,TCGA-DU-5851,17.45734293,0,0.5316649079322815,1
74
+ TCGA-LGG__OS,TCGA-DU-5852,6.739652168,1,0.2159811705350875,1
75
+ TCGA-LGG__OS,TCGA-DU-5853,13.38067528,0,-1.2415366172790527,1
76
+ TCGA-LGG__OS,TCGA-DU-5854,8.449222474,0,0.5409864187240601,1
77
+ TCGA-LGG__OS,TCGA-DU-5855,6.805404872,0,1.166521668434143,1
78
+ TCGA-LGG__OS,TCGA-DU-5870,182.3322484,0,-0.5411880016326904,1
79
+ TCGA-LGG__OS,TCGA-DU-5871,18.93677878,0,-2.0950493812561035,1
80
+ TCGA-LGG__OS,TCGA-DU-5872,17.49021929,0,-1.0549858808517456,1
81
+ TCGA-LGG__OS,TCGA-DU-5874,15.15599829,0,-0.4350413978099823,1
82
+ TCGA-LGG__OS,TCGA-DU-6392,211.1648092,0,0.3906904458999634,1
83
+ TCGA-LGG__OS,TCGA-DU-6393,52.10901798,1,0.8744397163391113,1
84
+ TCGA-LGG__OS,TCGA-DU-6394,22.42167209,1,1.1100763082504272,1
85
+ TCGA-LGG__OS,TCGA-DU-6395,49.01864089,1,-2.612678289413452,1
86
+ TCGA-LGG__OS,TCGA-DU-6396,75.15534076,1,0.6124156713485718,1
87
+ TCGA-LGG__OS,TCGA-DU-6397,46.05976921,1,0.4862448573112488,1
88
+ TCGA-LGG__OS,TCGA-DU-6399,65.75270408,1,-0.0899620428681373,1
89
+ TCGA-LGG__OS,TCGA-DU-6400,1.216425026,1,0.3662622570991516,1
90
+ TCGA-LGG__OS,TCGA-DU-6401,87.45109643,1,-1.1720770597457886,1
91
+ TCGA-LGG__OS,TCGA-DU-6402,7.035539337,1,0.4413118958473205,1
92
+ TCGA-LGG__OS,TCGA-DU-6403,11.63822862,1,1.966188073158264,1
93
+ TCGA-LGG__OS,TCGA-DU-6404,133.7410001,1,-0.419897198677063,1
94
+ TCGA-LGG__OS,TCGA-DU-6405,19.89019298,1,3.393202781677246,1
95
+ TCGA-LGG__OS,TCGA-DU-6406,16.83269224,1,1.035748839378357,1
96
+ TCGA-LGG__OS,TCGA-DU-6407,94.51951212,1,-1.276140570640564,1
97
+ TCGA-LGG__OS,TCGA-DU-6408,114.0809416,1,1.838833451271057,1
98
+ TCGA-LGG__OS,TCGA-DU-6410,7.956077194,0,-1.987661600112915,1
99
+ TCGA-LGG__OS,TCGA-DU-6542,2.399973699,0,-1.405773043632507,1
100
+ TCGA-LGG__OS,TCGA-DU-7006,11.47384686,1,1.149557113647461,1
101
+ TCGA-LGG__OS,TCGA-DU-7007,62.95821416,1,-0.4708598256111145,1
102
+ TCGA-LGG__OS,TCGA-DU-7008,156.2284249,0,-0.1239588037133216,1
103
+ TCGA-LGG__OS,TCGA-DU-7009,154.3544728,1,2.194610357284546,1
104
+ TCGA-LGG__OS,TCGA-DU-7010,14.99161653,1,1.1371560096740725,1
105
+ TCGA-LGG__OS,TCGA-DU-7011,105.2043265,1,-2.424144506454468,1
106
+ TCGA-LGG__OS,TCGA-DU-7012,6.542394056,1,0.4115529060363769,1
107
+ TCGA-LGG__OS,TCGA-DU-7013,8.843738699,1,-0.3896006941795349,1
108
+ TCGA-LGG__OS,TCGA-DU-7014,117.4014531,1,-0.7000619769096375,1
109
+ TCGA-LGG__OS,TCGA-DU-7015,90.77160798,0,0.2786690890789032,1
110
+ TCGA-LGG__OS,TCGA-DU-7018,30.67363645,1,0.5079696774482727,1
111
+ TCGA-LGG__OS,TCGA-DU-7019,26.30108163,0,-0.3875783085823059,1
112
+ TCGA-LGG__OS,TCGA-DU-7290,10.35605089,1,-0.4445444941520691,1
113
+ TCGA-LGG__OS,TCGA-DU-7292,7.956077194,1,1.1524863243103027,1
114
+ TCGA-LGG__OS,TCGA-DU-7294,94.322254,0,-1.255902886390686,1
115
+ TCGA-LGG__OS,TCGA-DU-7298,18.93677878,1,-1.1279189586639404,1
116
+ TCGA-LGG__OS,TCGA-DU-7299,44.02143538,1,-0.1502929180860519,1
117
+ TCGA-LGG__OS,TCGA-DU-7300,62.00479995,1,-0.0124881863594055,1
118
+ TCGA-LGG__OS,TCGA-DU-7301,25.90656541,1,-1.3802566528320312,1
119
+ TCGA-LGG__OS,TCGA-DU-7302,60.29522964,0,-1.289993405342102,1
120
+ TCGA-LGG__OS,TCGA-DU-7304,23.3093336,1,0.3167163431644439,1
121
+ TCGA-LGG__OS,TCGA-DU-7306,41.98310156,0,0.1915348619222641,1
122
+ TCGA-LGG__OS,TCGA-DU-7309,2.761613571,0,-0.4562110006809234,1
123
+ TCGA-LGG__OS,TCGA-DU-8158,5.095834566,1,1.6139522790908811,1
124
+ TCGA-LGG__OS,TCGA-DU-8161,23.73672617,1,-1.1566015481948853,1
125
+ TCGA-LGG__OS,TCGA-DU-8162,14.59710031,1,-0.0188788920640945,1
126
+ TCGA-LGG__OS,TCGA-DU-8163,20.67922543,0,-0.0707359611988067,1
127
+ TCGA-LGG__OS,TCGA-DU-8164,21.40250518,0,-1.2111685276031494,1
128
+ TCGA-LGG__OS,TCGA-DU-8165,19.13403689,0,2.14650821685791,1
129
+ TCGA-LGG__OS,TCGA-DU-8166,16.96419765,0,-0.2034059166908264,1
130
+ TCGA-LGG__OS,TCGA-DU-8167,15.48476181,0,-0.7199409604072571,1
131
+ TCGA-LGG__OS,TCGA-DU-8168,14.16970773,0,-0.2483087927103042,1
132
+ TCGA-LGG__OS,TCGA-DU-A5TP,33.27086826,0,0.2127708196640014,1
133
+ TCGA-LGG__OS,TCGA-DU-A5TR,29.85172765,0,-0.3657843470573425,1
134
+ TCGA-LGG__OS,TCGA-DU-A5TS,31.69280337,0,-4.364155292510986,1
135
+ TCGA-LGG__OS,TCGA-DU-A5TT,24.42712957,0,-0.2918927669525146,1
136
+ TCGA-LGG__OS,TCGA-DU-A5TU,26.16957622,0,0.0648169592022895,1
137
+ TCGA-LGG__OS,TCGA-DU-A5TW,24.98602755,0,0.9978750348091124,1
138
+ TCGA-LGG__OS,TCGA-DU-A5TY,33.96127166,1,-2.2794077396392822,1
139
+ TCGA-LGG__OS,TCGA-DU-A6S2,25.54492554,0,-5.151523113250732,1
140
+ TCGA-LGG__OS,TCGA-DU-A6S3,21.56688694,0,-0.927068829536438,1
141
+ TCGA-LGG__OS,TCGA-DU-A6S6,95.11128645,0,-1.7639119625091553,1
142
+ TCGA-LGG__OS,TCGA-DU-A6S7,20.9751126,0,-2.1304714679718018,1
143
+ TCGA-LGG__OS,TCGA-DU-A6S8,22.29016668,0,0.0080007053911685,1
144
+ TCGA-LGG__OS,TCGA-DU-A76K,11.40809416,1,0.7586820721626282,1
145
+ TCGA-LGG__OS,TCGA-DU-A76L,26.76135056,1,0.2191162407398224,1
146
+ TCGA-LGG__OS,TCGA-DU-A76O,17.16145577,0,-1.805402159690857,1
147
+ TCGA-LGG__OS,TCGA-DU-A76R,21.30387612,1,-1.391568899154663,1
148
+ TCGA-LGG__OS,TCGA-DU-A7T6,17.98336457,1,0.3568546772003174,1
149
+ TCGA-LGG__OS,TCGA-DU-A7T8,139.0340928,1,-0.2201670855283737,1
150
+ TCGA-LGG__OS,TCGA-DU-A7TA,84.32784298,0,-0.9252530336380004,1
151
+ TCGA-LGG__OS,TCGA-DU-A7TB,51.51724365,0,0.0662669688463211,1
152
+ TCGA-LGG__OS,TCGA-DU-A7TC,37.38041227,0,-0.6667708158493042,1
153
+ TCGA-LGG__OS,TCGA-DU-A7TD,7.495808265,1,0.083321139216423,1
154
+ TCGA-LGG__OS,TCGA-DU-A7TG,44.41595161,1,-0.6972612738609314,1
155
+ TCGA-LGG__OS,TCGA-DU-A7TI,38.89272446,1,-0.2973231077194214,1
156
+ TCGA-LGG__OS,TCGA-DU-A7TJ,0.558897985,0,3.011292695999145,1
157
+ TCGA-LGG__OS,TCGA-E1-A7YD,14.30121314,1,1.1437979936599731,1
158
+ TCGA-LGG__OS,TCGA-E1-A7YE,29.12844791,1,3.5663111209869385,1
159
+ TCGA-LGG__OS,TCGA-E1-A7YH,93.20445803,1,2.47804594039917,1
160
+ TCGA-LGG__OS,TCGA-E1-A7YI,3.649275076,1,1.2600226402282717,1
161
+ TCGA-LGG__OS,TCGA-E1-A7YJ,19.46280041,1,2.327223300933838,1
162
+ TCGA-LGG__OS,TCGA-E1-A7YK,12.42726107,1,2.3830628395080566,1
163
+ TCGA-LGG__OS,TCGA-E1-A7YL,16.1751652,1,2.5588817596435547,1
164
+ TCGA-LGG__OS,TCGA-E1-A7YM,21.30387612,1,0.3819489777088165,1
165
+ TCGA-LGG__OS,TCGA-E1-A7YN,23.90110793,1,0.674380898475647,1
166
+ TCGA-LGG__OS,TCGA-E1-A7YO,75.02383536,1,1.0553994178771973,1
167
+ TCGA-LGG__OS,TCGA-E1-A7YS,15.32038005,1,1.1445133686065674,1
168
+ TCGA-LGG__OS,TCGA-E1-A7YU,0.756156097,1,1.080960750579834,1
169
+ TCGA-LGG__OS,TCGA-E1-A7YV,32.44895946,1,1.852077841758728,1
170
+ TCGA-LGG__OS,TCGA-E1-A7YW,36.82151429,1,-1.120427489280701,1
171
+ TCGA-LGG__OS,TCGA-E1-A7YY,146.1353848,1,-0.2110195904970169,1
172
+ TCGA-LGG__OS,TCGA-E1-A7Z2,13.08478811,1,0.7760298848152161,1
173
+ TCGA-LGG__OS,TCGA-E1-A7Z3,73.47864681,1,1.3607115745544434,1
174
+ TCGA-LGG__OS,TCGA-E1-A7Z4,145.0504652,1,0.8708148002624512,1
175
+ TCGA-LGG__OS,TCGA-E1-A7Z6,32.35033041,1,0.0305383130908012,1
176
+ TCGA-LGG__OS,TCGA-EZ-7264,39.4844988,0,-0.4163492321968078,1
177
+ TCGA-LGG__OS,TCGA-F6-A8O3,0.230134464,0,-1.1855714321136477,1
178
+ TCGA-LGG__OS,TCGA-F6-A8O4,0.197258112,0,-1.1790461540222168,1
179
+ TCGA-LGG__OS,TCGA-FG-5962,47.76933951,0,0.0559221990406513,1
180
+ TCGA-LGG__OS,TCGA-FG-5963,25.47917283,1,-0.3954025506973266,1
181
+ TCGA-LGG__OS,TCGA-FG-5964,52.20764704,0,-2.697047710418701,1
182
+ TCGA-LGG__OS,TCGA-FG-5965,36.82151429,1,-0.0546707548201084,1
183
+ TCGA-LGG__OS,TCGA-FG-6688,18.77239702,0,-1.6943179368972778,1
184
+ TCGA-LGG__OS,TCGA-FG-6689,14.92586383,0,-0.8941331505775452,1
185
+ TCGA-LGG__OS,TCGA-FG-6690,42.54199954,0,-2.7549750804901123,1
186
+ TCGA-LGG__OS,TCGA-FG-6691,41.32557451,0,-2.3990437984466557,1
187
+ TCGA-LGG__OS,TCGA-FG-6692,18.44363349,1,0.1307387053966522,1
188
+ TCGA-LGG__OS,TCGA-FG-7634,15.3532564,0,-4.177966117858887,1
189
+ TCGA-LGG__OS,TCGA-FG-7636,17.88473551,0,-3.427803039550781,1
190
+ TCGA-LGG__OS,TCGA-FG-7637,40.07627314,0,-3.864542245864868,1
191
+ TCGA-LGG__OS,TCGA-FG-7638,22.5531775,0,-3.346155405044556,1
192
+ TCGA-LGG__OS,TCGA-FG-7641,20.61347273,0,-3.1524126529693604,1
193
+ TCGA-LGG__OS,TCGA-FG-7643,20.0874511,0,-0.3195140659809112,1
194
+ TCGA-LGG__OS,TCGA-FG-8181,28.33941546,0,-0.9864835143089294,1
195
+ TCGA-LGG__OS,TCGA-FG-8182,13.67656245,0,-0.9681146740913392,1
196
+ TCGA-LGG__OS,TCGA-FG-8185,14.23546043,0,-1.691702365875244,1
197
+ TCGA-LGG__OS,TCGA-FG-8186,16.01078344,0,-5.103727340698242,1
198
+ TCGA-LGG__OS,TCGA-FG-8187,20.0874511,0,-1.9571421146392824,1
199
+ TCGA-LGG__OS,TCGA-FG-8188,14.95874018,0,-0.5544066429138184,1
200
+ TCGA-LGG__OS,TCGA-FG-8189,22.52030115,0,-2.076597213745117,1
201
+ TCGA-LGG__OS,TCGA-FG-8191,32.61334122,0,-4.668375015258789,1
202
+ TCGA-LGG__OS,TCGA-FG-A4MT,38.26807378,0,-2.821072816848755,1
203
+ TCGA-LGG__OS,TCGA-FG-A4MU,10.71769077,0,1.8931701183319087,1
204
+ TCGA-LGG__OS,TCGA-FG-A4MW,18.37788079,1,-1.5751652717590332,1
205
+ TCGA-LGG__OS,TCGA-FG-A4MX,18.70664431,0,-1.38266122341156,1
206
+ TCGA-LGG__OS,TCGA-FG-A4MY,23.70384982,0,-1.5577967166900637,1
207
+ TCGA-LGG__OS,TCGA-FG-A60J,14.76148207,0,-1.8101550340652464,1
208
+ TCGA-LGG__OS,TCGA-FG-A60K,17.81898281,0,-2.4267377853393555,1
209
+ TCGA-LGG__OS,TCGA-FG-A60L,21.53401059,0,-1.738874435424805,1
210
+ TCGA-LGG__OS,TCGA-FG-A6IZ,15.02449288,0,-1.7165472507476809,1
211
+ TCGA-LGG__OS,TCGA-FG-A6J1,16.43817602,0,-3.80915904045105,1
212
+ TCGA-LGG__OS,TCGA-FG-A6J3,22.25729033,0,-4.187477111816406,1
213
+ TCGA-LGG__OS,TCGA-FG-A70Y,28.53667357,0,-4.085232734680176,1
214
+ TCGA-LGG__OS,TCGA-FG-A70Z,10.78344347,0,-1.02521550655365,1
215
+ TCGA-LGG__OS,TCGA-FG-A710,36.65713253,0,-1.4457453489303589,1
216
+ TCGA-LGG__OS,TCGA-FG-A711,48.68987737,1,-1.736773133277893,1
217
+ TCGA-LGG__OS,TCGA-FG-A713,20.44909097,0,-0.963356077671051,1
218
+ TCGA-LGG__OS,TCGA-FG-A87N,18.64089161,0,-2.277632474899292,1
219
+ TCGA-LGG__OS,TCGA-FG-A87Q,5.720485255,0,-1.195637583732605,1
220
+ TCGA-LGG__OS,TCGA-FN-7833,27.51750666,0,-3.0855324268341064,1
221
+ TCGA-LGG__OS,TCGA-HT-7467,0.098629056,0,-0.7220940589904785,1
222
+ TCGA-LGG__OS,TCGA-HT-7468,6.673899464,0,-0.5053503513336182,1
223
+ TCGA-LGG__OS,TCGA-HT-7469,11.53959957,1,-0.0421185493469238,1
224
+ TCGA-LGG__OS,TCGA-HT-7470,40.10914949,1,-0.7515392899513245,1
225
+ TCGA-LGG__OS,TCGA-HT-7472,0.032876352,0,0.7449778318405151,1
226
+ TCGA-LGG__OS,TCGA-HT-7473,16.53680508,0,-2.194795608520508,1
227
+ TCGA-LGG__OS,TCGA-HT-7474,3.747904133,0,-3.710727453231812,1
228
+ TCGA-LGG__OS,TCGA-HT-7475,17.42446658,0,-1.8635972738265991,1
229
+ TCGA-LGG__OS,TCGA-HT-7476,6.542394056,0,-2.963014602661133,1
230
+ TCGA-LGG__OS,TCGA-HT-7477,24.26274781,0,-0.977127194404602,1
231
+ TCGA-LGG__OS,TCGA-HT-7478,6.378012296,0,-2.0580058097839355,1
232
+ TCGA-LGG__OS,TCGA-HT-7479,40.33928395,0,-1.9727569818496704,1
233
+ TCGA-LGG__OS,TCGA-HT-7480,75.18821712,0,-2.1617393493652344,1
234
+ TCGA-LGG__OS,TCGA-HT-7481,95.93319525,0,-1.5685588121414185,1
235
+ TCGA-LGG__OS,TCGA-HT-7482,106.9467732,0,-0.9306520223617554,1
236
+ TCGA-LGG__OS,TCGA-HT-7483,172.76523,0,0.8635033369064331,1
237
+ TCGA-LGG__OS,TCGA-HT-7485,4.010914949,0,-1.06354022026062,1
238
+ TCGA-LGG__OS,TCGA-HT-7601,5.030081862,0,-1.241444110870361,1
239
+ TCGA-LGG__OS,TCGA-HT-7602,29.85172765,0,-1.7130340337753296,1
240
+ TCGA-LGG__OS,TCGA-HT-7603,23.17782819,0,-3.4675793647766118,1
241
+ TCGA-LGG__OS,TCGA-HT-7604,122.4644114,0,-1.7841029167175293,1
242
+ TCGA-LGG__OS,TCGA-HT-7605,4.569812934,0,-2.1718552112579346,1
243
+ TCGA-LGG__OS,TCGA-HT-7606,17.29296117,0,-2.0246198177337646,1
244
+ TCGA-LGG__OS,TCGA-HT-7607,3.156129796,1,0.3828185498714447,1
245
+ TCGA-LGG__OS,TCGA-HT-7608,22.06003222,0,-1.2892177104949951,1
246
+ TCGA-LGG__OS,TCGA-HT-7609,45.9940165,0,-1.3928711414337158,1
247
+ TCGA-LGG__OS,TCGA-HT-7610,56.08705658,0,-1.512070894241333,1
248
+ TCGA-LGG__OS,TCGA-HT-7611,57.59936877,0,-3.965921401977539,1
249
+ TCGA-LGG__OS,TCGA-HT-7616,0.230134464,1,-1.0147991180419922,1
250
+ TCGA-LGG__OS,TCGA-HT-7620,14.26833679,0,-2.701803207397461,1
251
+ TCGA-LGG__OS,TCGA-HT-7676,0.16438176,0,-1.2835466861724854,1
252
+ TCGA-LGG__OS,TCGA-HT-7677,16.24091791,0,-1.8249257802963257,1
253
+ TCGA-LGG__OS,TCGA-HT-7680,0.756156097,0,-0.3389102816581726,1
254
+ TCGA-LGG__OS,TCGA-HT-7681,44.67896242,0,-3.8640854358673096,1
255
+ TCGA-LGG__OS,TCGA-HT-7684,6.049248775,0,-1.5370434522628784,1
256
+ TCGA-LGG__OS,TCGA-HT-7686,42.73925765,0,1.2158347368240356,1
257
+ TCGA-LGG__OS,TCGA-HT-7687,0.098629056,0,-1.4436838626861572,1
258
+ TCGA-LGG__OS,TCGA-HT-7688,31.69280337,0,-2.2211616039276123,1
259
+ TCGA-LGG__OS,TCGA-HT-7689,14.95874018,0,-1.8853403329849243,1
260
+ TCGA-LGG__OS,TCGA-HT-7690,0.098629056,0,-1.227705001831055,1
261
+ TCGA-LGG__OS,TCGA-HT-7691,0.098629056,0,0.0950864925980568,1
262
+ TCGA-LGG__OS,TCGA-HT-7692,2.958871684,0,-1.4216281175613403,1
263
+ TCGA-LGG__OS,TCGA-HT-7693,17.52309564,0,-0.1163839027285575,1
264
+ TCGA-LGG__OS,TCGA-HT-7694,6.904033928,0,-0.1801758557558059,1
265
+ TCGA-LGG__OS,TCGA-HT-7695,14.5313476,0,-2.564660787582397,1
266
+ TCGA-LGG__OS,TCGA-HT-7854,39.4844988,0,2.17974591255188,1
267
+ TCGA-LGG__OS,TCGA-HT-7855,19.23266594,0,-1.7832095623016355,1
268
+ TCGA-LGG__OS,TCGA-HT-7856,39.08998258,0,-1.6796547174453735,1
269
+ TCGA-LGG__OS,TCGA-HT-7857,0.230134464,0,2.1010050773620605,1
270
+ TCGA-LGG__OS,TCGA-HT-7858,50.62958214,0,-1.2249798774719238,1
271
+ TCGA-LGG__OS,TCGA-HT-7860,0.493145281,0,-0.3017940521240234,1
272
+ TCGA-LGG__OS,TCGA-HT-7873,23.60522077,0,-0.0422422997653484,1
273
+ TCGA-LGG__OS,TCGA-HT-7874,37.15027781,0,-2.0415074825286865,1
274
+ TCGA-LGG__OS,TCGA-HT-7875,0.32876352,0,-1.3207672834396362,1
275
+ TCGA-LGG__OS,TCGA-HT-7877,0.131505408,0,-3.371655225753784,1
276
+ TCGA-LGG__OS,TCGA-HT-7879,3.682151429,0,-1.5614386796951294,1
277
+ TCGA-LGG__OS,TCGA-HT-7880,5.325969031,0,1.6743453741073608,1
278
+ TCGA-LGG__OS,TCGA-HT-7881,35.47358385,0,-1.0502572059631348,1
279
+ TCGA-LGG__OS,TCGA-HT-7882,3.715027781,1,0.0964157059788703,1
280
+ TCGA-LGG__OS,TCGA-HT-7884,11.27658875,0,-1.6234829425811768,1
281
+ TCGA-LGG__OS,TCGA-HT-7902,31.42979255,0,-3.1565358638763428,1
282
+ TCGA-LGG__OS,TCGA-HT-8010,1.643817602,0,-1.9498122930526731,1
283
+ TCGA-LGG__OS,TCGA-HT-8011,16.24091791,0,-0.1762874573469162,1
284
+ TCGA-LGG__OS,TCGA-HT-8012,9.402636683,0,-3.3791942596435547,1
285
+ TCGA-LGG__OS,TCGA-HT-8013,63.54998849,1,-1.2652111053466797,1
286
+ TCGA-LGG__OS,TCGA-HT-8015,0.098629056,0,-1.462017059326172,1
287
+ TCGA-LGG__OS,TCGA-HT-8018,37.87355755,1,-0.7024530172348022,1
288
+ TCGA-LGG__OS,TCGA-HT-8019,33.00785745,0,-2.616135358810425,1
289
+ TCGA-LGG__OS,TCGA-HT-8104,12.23000296,0,0.0035479459911584,1
290
+ TCGA-LGG__OS,TCGA-HT-8105,6.246506888,0,-1.733594298362732,1
291
+ TCGA-LGG__OS,TCGA-HT-8106,0.098629056,0,-0.9777624011039734,1
292
+ TCGA-LGG__OS,TCGA-HT-8107,0.460268929,0,-0.680749773979187,1
293
+ TCGA-LGG__OS,TCGA-HT-8108,2.498602755,0,-2.00532603263855,1
294
+ TCGA-LGG__OS,TCGA-HT-8109,5.556103495,0,-0.8793143630027771,1
295
+ TCGA-LGG__OS,TCGA-HT-8110,13.77519151,0,0.2151039093732834,1
296
+ TCGA-LGG__OS,TCGA-HT-8111,0.230134464,0,-1.7895755767822266,1
297
+ TCGA-LGG__OS,TCGA-HT-8113,29.58871684,0,-2.480924606323242,1
298
+ TCGA-LGG__OS,TCGA-HT-8114,34.19140612,0,-2.4587361812591557,1
299
+ TCGA-LGG__OS,TCGA-HT-8558,13.74231515,0,-1.7976117134094238,1
300
+ TCGA-LGG__OS,TCGA-HT-8563,28.27366275,0,-2.3081471920013428,1
301
+ TCGA-LGG__OS,TCGA-HT-8564,15.71489628,0,-1.6111334562301636,1
302
+ TCGA-LGG__OS,TCGA-HT-A4DS,0.230134464,0,0.8873084187507629,1
303
+ TCGA-LGG__OS,TCGA-HT-A4DV,26.03807082,0,-1.4192867279052734,1
304
+ TCGA-LGG__OS,TCGA-HT-A5R5,0.131505408,0,-3.3175535202026367,1
305
+ TCGA-LGG__OS,TCGA-HT-A5R7,20.21895651,0,-0.4111813306808471,1
306
+ TCGA-LGG__OS,TCGA-HT-A5R9,0.065752704,0,-3.460103988647461,1
307
+ TCGA-LGG__OS,TCGA-HT-A5RA,27.3531249,0,-0.483054518699646,1
308
+ TCGA-LGG__OS,TCGA-HT-A5RB,0.098629056,0,-2.9966607093811035,1
309
+ TCGA-LGG__OS,TCGA-HT-A5RC,5.325969031,1,3.228224515914917,1
310
+ TCGA-LGG__OS,TCGA-HT-A614,2.695860867,0,-3.5090930461883545,1
311
+ TCGA-LGG__OS,TCGA-HT-A615,16.9313213,0,-4.466229438781738,1
312
+ TCGA-LGG__OS,TCGA-HT-A616,1.808199362,0,-4.30253267288208,1
313
+ TCGA-LGG__OS,TCGA-HT-A617,16.14228885,0,-2.570199728012085,1
314
+ TCGA-LGG__OS,TCGA-HT-A618,16.83269224,0,1.1633261442184448,1
315
+ TCGA-LGG__OS,TCGA-HT-A61A,6.378012296,0,-2.135244607925415,1
316
+ TCGA-LGG__OS,TCGA-HT-A61B,17.52309564,0,-0.5810287594795227,1
317
+ TCGA-LGG__OS,TCGA-HT-A61C,17.65460105,1,-0.2010852098464965,1
318
+ TCGA-LGG__OS,TCGA-HT-A74H,2.432850051,0,-0.902786910533905,1
319
+ TCGA-LGG__OS,TCGA-HT-A74J,10.52043265,0,-2.4141805171966557,1
320
+ TCGA-LGG__OS,TCGA-HT-A74K,15.3532564,0,-0.966889500617981,1
321
+ TCGA-LGG__OS,TCGA-HT-A74L,11.04645429,0,-4.181789875030518,1
322
+ TCGA-LGG__OS,TCGA-HT-A74O,0.098629056,0,-2.038749933242798,1
323
+ TCGA-LGG__OS,TCGA-HW-7486,56.58020186,0,0.1709394007921219,1
324
+ TCGA-LGG__OS,TCGA-HW-7487,45.43511852,0,-0.2311340570449829,1
325
+ TCGA-LGG__OS,TCGA-HW-7489,41.48995627,1,-0.3089818358421325,1
326
+ TCGA-LGG__OS,TCGA-HW-7490,45.59950028,0,-0.4119592905044555,1
327
+ TCGA-LGG__OS,TCGA-HW-7491,68.31705954,0,0.0869508534669876,1
328
+ TCGA-LGG__OS,TCGA-HW-7493,69.27047375,0,-0.4969798326492309,1
329
+ TCGA-LGG__OS,TCGA-HW-7495,35.4407075,0,-0.7854297161102295,1
330
+ TCGA-LGG__OS,TCGA-HW-8319,39.74750962,1,-1.5858547687530518,1
331
+ TCGA-LGG__OS,TCGA-HW-8320,40.01052043,0,-1.607039213180542,1
332
+ TCGA-LGG__OS,TCGA-HW-8321,42.54199954,0,-1.280466079711914,1
333
+ TCGA-LGG__OS,TCGA-HW-8322,24.92027485,0,-2.947473526000977,1
334
+ TCGA-LGG__OS,TCGA-HW-A5KJ,31.62705066,1,-2.563715934753418,1
335
+ TCGA-LGG__OS,TCGA-HW-A5KK,12.75602459,1,-0.601097822189331,1
336
+ TCGA-LGG__OS,TCGA-HW-A5KL,28.86543709,0,1.867962956428528,1
337
+ TCGA-LGG__OS,TCGA-HW-A5KM,20.71210179,0,-1.118585228919983,1
338
+ TCGA-LGG__OS,TCGA-IK-7675,19.00253148,1,-1.8273138999938965,1
339
+ TCGA-LGG__OS,TCGA-IK-8125,42.772134,0,2.171814441680908,1
340
+ TCGA-LGG__OS,TCGA-KT-A74X,14.39984219,0,-1.237615942955017,1
341
+ TCGA-LGG__OS,TCGA-KT-A7W1,14.39984219,0,0.2752141654491424,1
342
+ TCGA-LGG__OS,TCGA-P5-A72U,0.230134464,0,-0.769548773765564,1
343
+ TCGA-LGG__OS,TCGA-P5-A72W,10.4218036,0,-1.3975170850753784,1
344
+ TCGA-LGG__OS,TCGA-P5-A72X,13.24916987,0,-1.1213818788528442,1
345
+ TCGA-LGG__OS,TCGA-P5-A72Z,11.63822862,0,-3.831660509109497,1
346
+ TCGA-LGG__OS,TCGA-P5-A730,10.94782523,0,-1.983526349067688,1
347
+ TCGA-LGG__OS,TCGA-P5-A731,9.008120459,0,-0.3868127763271332,1
348
+ TCGA-LGG__OS,TCGA-P5-A733,13.61080975,0,-1.2703986167907717,1
349
+ TCGA-LGG__OS,TCGA-P5-A735,9.599894796,0,-2.1305019855499268,1
350
+ TCGA-LGG__OS,TCGA-P5-A736,7.561560969,0,-3.2536070346832275,1
351
+ TCGA-LGG__OS,TCGA-P5-A737,12.23000296,0,-1.1106584072113037,1
352
+ TCGA-LGG__OS,TCGA-P5-A77W,19.19978959,0,-1.3660956621170044,1
353
+ TCGA-LGG__OS,TCGA-P5-A77X,3.452016964,0,-2.511554002761841,1
354
+ TCGA-LGG__OS,TCGA-P5-A780,2.367097347,0,-1.064669847488403,1
355
+ TCGA-LGG__OS,TCGA-P5-A781,4.405431173,0,-0.4423058927059173,1
356
+ TCGA-LGG__OS,TCGA-QH-A65R,15.15599829,0,-3.07548451423645,1
357
+ TCGA-LGG__OS,TCGA-QH-A65S,2.531479107,0,-1.3037216663360596,1
358
+ TCGA-LGG__OS,TCGA-QH-A65V,12.62451918,0,-2.341106653213501,1
359
+ TCGA-LGG__OS,TCGA-QH-A65X,15.84640168,0,-1.5481113195419312,1
360
+ TCGA-LGG__OS,TCGA-QH-A65Z,14.03820232,0,-2.5439677238464355,1
361
+ TCGA-LGG__OS,TCGA-QH-A6CS,19.331295,0,-0.0384192764759063,1
362
+ TCGA-LGG__OS,TCGA-QH-A6CU,14.82723477,0,-2.985325813293457,1
363
+ TCGA-LGG__OS,TCGA-QH-A6CV,14.5313476,0,-0.8071399927139282,1
364
+ TCGA-LGG__OS,TCGA-QH-A6CW,13.61080975,0,-1.8912781476974487,1
365
+ TCGA-LGG__OS,TCGA-QH-A6CX,12.23000296,1,-1.1250452995300293,1
366
+ TCGA-LGG__OS,TCGA-QH-A6CY,13.41355163,0,-3.941563367843628,1
367
+ TCGA-LGG__OS,TCGA-QH-A6CZ,9.172502219,0,-1.1798412799835205,1
368
+ TCGA-LGG__OS,TCGA-QH-A6X3,10.29029819,0,-1.1558104753494265,1
369
+ TCGA-LGG__OS,TCGA-QH-A6X4,14.5313476,0,-1.1226205825805664,1
370
+ TCGA-LGG__OS,TCGA-QH-A6X5,16.33954696,0,-0.7974847555160522,1
371
+ TCGA-LGG__OS,TCGA-QH-A6X8,16.73406319,0,0.0556645505130291,1
372
+ TCGA-LGG__OS,TCGA-QH-A6X9,1.906828418,0,-1.8066508769989011,1
373
+ TCGA-LGG__OS,TCGA-QH-A6XA,16.50392872,0,-1.9503183364868164,1
374
+ TCGA-LGG__OS,TCGA-QH-A6XC,16.70118684,0,-0.7893991470336914,1
375
+ TCGA-LGG__OS,TCGA-QH-A86X,11.07933064,0,-0.5965641140937805,1
376
+ TCGA-LGG__OS,TCGA-QH-A870,12.98615906,0,-2.65986442565918,1
377
+ TCGA-LGG__OS,TCGA-R8-A6MK,88.83190321,0,-2.3620619773864746,1
378
+ TCGA-LGG__OS,TCGA-R8-A6ML,94.02636683,0,-1.5565261840820312,1
379
+ TCGA-LGG__OS,TCGA-R8-A6MO,32.64621758,0,-3.1683619022369385,1
380
+ TCGA-LGG__OS,TCGA-RY-A83X,30.87089457,0,1.6378268003463743,1
381
+ TCGA-LGG__OS,TCGA-RY-A83Y,5.457474439,0,-0.8740183115005493,1
382
+ TCGA-LGG__OS,TCGA-RY-A83Z,9.895781964,0,2.956329107284546,1
383
+ TCGA-LGG__OS,TCGA-RY-A840,28.07640464,0,-1.1404017210006714,1
384
+ TCGA-LGG__OS,TCGA-RY-A843,2.071210179,0,-1.4159855842590332,1
385
+ TCGA-LGG__OS,TCGA-RY-A845,19.59430582,0,-1.4734785556793213,1
386
+ TCGA-LGG__OS,TCGA-RY-A847,30.67363645,0,-1.0361815690994265,1
387
+ TCGA-LGG__OS,TCGA-S9-A6TS,62.16918171,1,-2.998502492904663,1
388
+ TCGA-LGG__OS,TCGA-S9-A6TU,87.12233291,0,-0.9494913816452026,1
389
+ TCGA-LGG__OS,TCGA-S9-A6TV,18.77239702,0,-0.7522546648979187,1
390
+ TCGA-LGG__OS,TCGA-S9-A6TW,41.09544005,0,-1.645626425743103,1
391
+ TCGA-LGG__OS,TCGA-S9-A6TX,40.93105829,0,-2.614998817443848,1
392
+ TCGA-LGG__OS,TCGA-S9-A6TY,35.3749548,0,-1.1900334358215332,1
393
+ TCGA-LGG__OS,TCGA-S9-A6TZ,36.82151429,0,-2.858494758605957,1
394
+ TCGA-LGG__OS,TCGA-S9-A6U0,24.39425321,1,-0.4692834615707397,1
395
+ TCGA-LGG__OS,TCGA-S9-A6U1,25.80793635,0,-3.465106248855591,1
396
+ TCGA-LGG__OS,TCGA-S9-A6U2,29.85172765,0,-3.796429395675659,1
397
+ TCGA-LGG__OS,TCGA-S9-A6U5,32.61334122,0,-0.8222057223320007,1
398
+ TCGA-LGG__OS,TCGA-S9-A6U6,35.14482033,0,-1.6490380764007568,1
399
+ TCGA-LGG__OS,TCGA-S9-A6U8,98.2345399,1,-1.612374782562256,1
400
+ TCGA-LGG__OS,TCGA-S9-A6U9,95.93319525,0,-1.3990527391433716,1
401
+ TCGA-LGG__OS,TCGA-S9-A6UA,5.851990663,1,0.9182409644126892,1
402
+ TCGA-LGG__OS,TCGA-S9-A6UB,123.64796,0,-2.8902509212493896,1
403
+ TCGA-LGG__OS,TCGA-S9-A6WD,75.25396982,0,-3.1015214920043945,1
404
+ TCGA-LGG__OS,TCGA-S9-A6WE,135.2204359,0,-2.884849071502685,1
405
+ TCGA-LGG__OS,TCGA-S9-A6WG,85.54426801,0,-3.5386478900909424,1
406
+ TCGA-LGG__OS,TCGA-S9-A6WH,38.56396094,0,-2.317540168762207,1
407
+ TCGA-LGG__OS,TCGA-S9-A6WI,84.98537002,0,-1.3587552309036257,1
408
+ TCGA-LGG__OS,TCGA-S9-A6WL,31.10102903,0,-0.6447126269340515,1
409
+ TCGA-LGG__OS,TCGA-S9-A6WM,19.85731663,0,-1.5134222507476809,1
410
+ TCGA-LGG__OS,TCGA-S9-A6WN,26.46546339,0,-1.1941546201705933,1
411
+ TCGA-LGG__OS,TCGA-S9-A6WO,18.60801526,0,-1.3088432550430298,1
412
+ TCGA-LGG__OS,TCGA-S9-A6WP,18.64089161,0,-3.570869207382202,1
413
+ TCGA-LGG__OS,TCGA-S9-A6WQ,14.07107867,0,-3.414125680923462,1
414
+ TCGA-LGG__OS,TCGA-S9-A7IQ,36.13111089,0,-5.356472015380859,1
415
+ TCGA-LGG__OS,TCGA-S9-A7IS,7.923200842,1,-1.1005982160568235,1
416
+ TCGA-LGG__OS,TCGA-S9-A7IX,26.92573232,1,-1.1141724586486816,1
417
+ TCGA-LGG__OS,TCGA-S9-A7IY,23.50659171,0,-0.5395030975341797,1
418
+ TCGA-LGG__OS,TCGA-S9-A7IZ,19.98882204,0,-1.1473774909973145,1
419
+ TCGA-LGG__OS,TCGA-S9-A7J0,20.02169839,0,-0.3660277724266052,1
420
+ TCGA-LGG__OS,TCGA-S9-A7J1,8.186211658,0,-5.452741146087647,1
421
+ TCGA-LGG__OS,TCGA-S9-A7J2,2.038333827,0,-1.8543057441711424,1
422
+ TCGA-LGG__OS,TCGA-S9-A7J3,20.67922543,0,-0.9793428778648376,1
423
+ TCGA-LGG__OS,TCGA-S9-A7QW,15.05736923,0,-3.7403006553649902,1
424
+ TCGA-LGG__OS,TCGA-S9-A7QX,18.54226255,0,-2.015078544616699,1
425
+ TCGA-LGG__OS,TCGA-S9-A7QY,28.37229181,0,-1.325328707695007,1
426
+ TCGA-LGG__OS,TCGA-S9-A7QZ,27.15586679,0,-4.619322299957275,1
427
+ TCGA-LGG__OS,TCGA-S9-A7R1,169.8392346,1,-2.691319942474365,1
428
+ TCGA-LGG__OS,TCGA-S9-A7R2,10.38892725,1,-0.5950058698654175,1
429
+ TCGA-LGG__OS,TCGA-S9-A7R3,99.0564487,0,-0.9943863153457642,1
430
+ TCGA-LGG__OS,TCGA-S9-A7R4,30.04898577,0,-1.086623191833496,1
431
+ TCGA-LGG__OS,TCGA-S9-A7R7,98.62905612,0,1.5182667970657349,1
432
+ TCGA-LGG__OS,TCGA-S9-A7R8,31.59417431,1,-0.2782841324806213,1
433
+ TCGA-LGG__OS,TCGA-S9-A89V,18.70664431,0,0.5139028429985046,1
434
+ TCGA-LGG__OS,TCGA-S9-A89Z,20.48196732,0,3.0384020805358887,1
435
+ TCGA-LGG__OS,TCGA-TM-A7C3,54.7720025,1,2.280514001846313,1
436
+ TCGA-LGG__OS,TCGA-TM-A7C4,48.3282375,0,-1.894548177719116,1
437
+ TCGA-LGG__OS,TCGA-TM-A7C5,49.31452806,0,-1.0799086093902588,1
438
+ TCGA-LGG__OS,TCGA-TM-A7CA,34.78318046,0,-2.965138435363769,1
439
+ TCGA-LGG__OS,TCGA-TM-A7CF,65.39106421,0,-2.1752395033836365,2
440
+ TCGA-LGG__OS,TCGA-TM-A84B,24.92027485,1,-0.4599888324737549,1
441
+ TCGA-LGG__OS,TCGA-TM-A84C,16.1751652,1,-0.8739128708839417,1
442
+ TCGA-LGG__OS,TCGA-TM-A84F,59.04592826,0,-1.0341682434082031,1
443
+ TCGA-LGG__OS,TCGA-TM-A84G,40.63517112,0,-4.256847381591797,1
444
+ TCGA-LGG__OS,TCGA-TM-A84H,30.44350199,0,-1.5168904066085815,1
445
+ TCGA-LGG__OS,TCGA-TM-A84I,28.07640464,0,-2.5204405784606934,1
446
+ TCGA-LGG__OS,TCGA-TM-A84J,24.16411875,0,-0.9620095491409302,1
447
+ TCGA-LGG__OS,TCGA-TM-A84L,40.83242923,1,-0.9423304796218872,1
448
+ TCGA-LGG__OS,TCGA-TM-A84M,24.78876944,0,-1.2563859224319458,1
449
+ TCGA-LGG__OS,TCGA-TM-A84O,33.23799191,1,-1.2675622701644895,1
450
+ TCGA-LGG__OS,TCGA-TM-A84Q,25.38054378,0,-0.2290110737085342,1
451
+ TCGA-LGG__OS,TCGA-TM-A84R,18.60801526,0,-0.7348572611808777,1
452
+ TCGA-LGG__OS,TCGA-TM-A84S,14.92586383,0,-2.4276227951049805,1
453
+ TCGA-LGG__OS,TCGA-TM-A84T,23.80247888,0,-1.5573750734329224,1
454
+ TCGA-LGG__OS,TCGA-TQ-A7RF,21.36962883,0,-0.6581718921661377,1
455
+ TCGA-LGG__OS,TCGA-TQ-A7RG,19.69293487,0,-1.1434396505355835,1
456
+ TCGA-LGG__OS,TCGA-TQ-A7RH,15.97790709,0,-1.66387140750885,1
457
+ TCGA-LGG__OS,TCGA-TQ-A7RI,2.038333827,0,-2.6686818599700928,1
458
+ TCGA-LGG__OS,TCGA-TQ-A7RJ,40.40503666,0,-1.7942498922348022,1
459
+ TCGA-LGG__OS,TCGA-TQ-A7RK,44.08718809,0,-1.356501653790474,2
460
+ TCGA-LGG__OS,TCGA-TQ-A7RM,36.69000888,0,-0.6640548706054688,1
461
+ TCGA-LGG__OS,TCGA-TQ-A7RN,33.73113719,0,-0.8844954967498779,1
462
+ TCGA-LGG__OS,TCGA-TQ-A7RO,31.19965809,0,-1.3176206350326538,1
463
+ TCGA-LGG__OS,TCGA-TQ-A7RP,30.04898577,0,-1.02157723903656,1
464
+ TCGA-LGG__OS,TCGA-TQ-A7RQ,26.13669987,0,-1.8588703870773315,1
465
+ TCGA-LGG__OS,TCGA-TQ-A7RR,25.87368906,0,-2.5173938274383545,1
466
+ TCGA-LGG__OS,TCGA-TQ-A7RU,33.92839531,0,-2.578958511352539,1
467
+ TCGA-LGG__OS,TCGA-TQ-A7RV,61.41302561,0,-0.7244709134101867,2
468
+ TCGA-LGG__OS,TCGA-TQ-A7RW,26.99148503,1,-1.2765098810195925,1
469
+ TCGA-LGG__OS,TCGA-TQ-A8XE,31.36403985,1,-0.11358812451362604,2
470
+ TCGA-LGG__OS,TCGA-VM-A8C8,45.9282638,0,-2.703157424926758,1
471
+ TCGA-LGG__OS,TCGA-VM-A8C9,43.19952658,0,-1.735836148262024,1
472
+ TCGA-LGG__OS,TCGA-VM-A8CA,13.51218069,0,-0.9189207553863524,1
473
+ TCGA-LGG__OS,TCGA-VM-A8CB,0.098629056,0,-0.7066734433174133,1
474
+ TCGA-LGG__OS,TCGA-VM-A8CD,7.89032449,1,-3.485978603363037,1
475
+ TCGA-LGG__OS,TCGA-VM-A8CE,39.15573528,0,-4.239059925079346,1
476
+ TCGA-LGG__OS,TCGA-VM-A8CF,20.02169839,0,-3.7404065132141113,1
477
+ TCGA-LGG__OS,TCGA-VM-A8CH,23.47371536,0,-3.69737720489502,1
478
+ TCGA-LGG__OS,TCGA-VV-A829,37.05164875,0,-0.7370917201042175,1
479
+ TCGA-LGG__OS,TCGA-VV-A86M,16.01078344,0,-0.8037749528884888,1
480
+ TCGA-LGG__OS,TCGA-W9-A837,51.05697472,0,-4.6427903175354,1
481
+ TCGA-LGG__OS,TCGA-WH-A86K,13.31492258,0,-1.817603349685669,1
482
+ TCGA-LGG__OS,TCGA-WY-A858,43.95568268,0,-0.913518249988556,1
483
+ TCGA-LGG__OS,TCGA-WY-A859,39.87901502,0,-1.0934524536132812,1
484
+ TCGA-LGG__OS,TCGA-WY-A85A,43.39678469,0,-1.9102778434753416,1
485
+ TCGA-LGG__OS,TCGA-WY-A85B,45.79675839,0,-1.468749761581421,1
486
+ TCGA-LGG__OS,TCGA-WY-A85C,46.88167801,0,0.0999549776315689,1
487
+ TCGA-LGG__OS,TCGA-WY-A85D,37.70917579,0,-3.472202777862549,1
488
+ TCGA-LGG__OS,TCGA-WY-A85E,20.81073084,0,-5.620911121368408,1
489
+ TCGA-LIHC__OS,TCGA-2Y-A9GS,23.80247888,1,-0.3469120860099792,1
490
+ TCGA-LIHC__OS,TCGA-2Y-A9GT,53.39119571,1,-2.8653151988983154,1
491
+ TCGA-LIHC__OS,TCGA-2Y-A9GU,63.74724661,0,-1.3381601572036743,1
492
+ TCGA-LIHC__OS,TCGA-2Y-A9GV,83.24292337,1,-0.1153678148984909,1
493
+ TCGA-LIHC__OS,TCGA-2Y-A9GW,41.78584344,1,-0.1548222154378891,1
494
+ TCGA-LIHC__OS,TCGA-2Y-A9GX,80.28405168,0,-0.1548719704151153,1
495
+ TCGA-LIHC__OS,TCGA-2Y-A9GY,24.88739849,1,0.3325376808643341,1
496
+ TCGA-LIHC__OS,TCGA-2Y-A9GZ,27.87914653,1,-0.3046398758888244,1
497
+ TCGA-LIHC__OS,TCGA-2Y-A9H0,120.8205938,0,-0.9698103070259094,1
498
+ TCGA-LIHC__OS,TCGA-2Y-A9H1,40.40503666,1,-0.4589124321937561,1
499
+ TCGA-LIHC__OS,TCGA-2Y-A9H2,56.90896538,0,-0.172782227396965,1
500
+ TCGA-LIHC__OS,TCGA-2Y-A9H3,49.84054969,0,-0.2267777323722839,1
501
+ TCGA-LIHC__OS,TCGA-2Y-A9H4,47.73646316,0,-0.6199623942375183,1
502
+ TCGA-LIHC__OS,TCGA-2Y-A9H5,18.24637538,1,1.353733777999878,1
503
+ TCGA-LIHC__OS,TCGA-2Y-A9H6,11.73685768,0,-2.109384775161743,1
504
+ TCGA-LIHC__OS,TCGA-2Y-A9H7,38.39957918,0,-2.074644088745117,1
505
+ TCGA-LIHC__OS,TCGA-2Y-A9H8,20.81073084,1,-0.8453983664512634,1
506
+ TCGA-LIHC__OS,TCGA-2Y-A9H9,22.91481737,0,-0.041541188955307,1
507
+ TCGA-LIHC__OS,TCGA-2Y-A9HA,1.183548673,1,-0.5288420915603638,1
508
+ TCGA-LIHC__OS,TCGA-2Y-A9HB,8.54785153,0,-2.01073694229126,1
509
+ TCGA-LIHC__OS,TCGA-4R-AA8I,8.613604235,1,0.4103429615497589,1
510
+ TCGA-LIHC__OS,TCGA-5C-A9VG,10.78344347,0,-1.3124418258666992,1
511
+ TCGA-LIHC__OS,TCGA-5C-A9VH,10.58618536,0,-1.0185953378677368,1
512
+ TCGA-LIHC__OS,TCGA-5C-AAPD,0.657527041,0,0.1272255480289459,1
513
+ TCGA-LIHC__OS,TCGA-5R-AA1C,17.09570306,0,0.1336258649826049,1
514
+ TCGA-LIHC__OS,TCGA-5R-AA1D,14.76148207,0,-0.1936837285757064,1
515
+ TCGA-LIHC__OS,TCGA-5R-AAAM,1.512312194,1,-2.2817885875701904,1
516
+ TCGA-LIHC__OS,TCGA-BC-4072,48.98576454,1,0.0157711021602153,1
517
+ TCGA-LIHC__OS,TCGA-BC-4073,27.91202288,0,0.8636683821678162,1
518
+ TCGA-LIHC__OS,TCGA-BC-A10Q,37.31465957,1,0.5122587084770203,1
519
+ TCGA-LIHC__OS,TCGA-BC-A10R,10.12591643,1,0.8360047936439514,1
520
+ TCGA-LIHC__OS,TCGA-BC-A10S,46.78304895,1,0.259748101234436,1
521
+ TCGA-LIHC__OS,TCGA-BC-A10T,27.51750666,1,0.7052778601646423,1
522
+ TCGA-LIHC__OS,TCGA-BC-A10U,27.51750666,1,1.7925105094909668,1
523
+ TCGA-LIHC__OS,TCGA-BC-A10W,2.991748036,1,1.809279441833496,1
524
+ TCGA-LIHC__OS,TCGA-BC-A10X,25.31479107,1,0.6858557462692261,1
525
+ TCGA-LIHC__OS,TCGA-BC-A10Y,23.3750863,1,2.148526430130005,1
526
+ TCGA-LIHC__OS,TCGA-BC-A10Z,1.117795969,1,0.7098105549812317,1
527
+ TCGA-LIHC__OS,TCGA-BC-A110,69.56636092,1,0.3198079764842987,1
528
+ TCGA-LIHC__OS,TCGA-BC-A112,5.030081862,1,0.5406231880187988,1
529
+ TCGA-LIHC__OS,TCGA-BC-A216,44.41595161,0,-0.4937677085399627,1
530
+ TCGA-LIHC__OS,TCGA-BC-A217,45.9282638,1,-0.2034259736537933,1
531
+ TCGA-LIHC__OS,TCGA-BC-A3KF,0.263010816,0,0.266768604516983,1
532
+ TCGA-LIHC__OS,TCGA-BC-A3KG,22.35591939,0,0.1045159697532653,1
533
+ TCGA-LIHC__OS,TCGA-BC-A5W4,17.98336457,1,0.525577962398529,1
534
+ TCGA-LIHC__OS,TCGA-BC-A69H,14.59710031,0,0.9217411279678344,1
535
+ TCGA-LIHC__OS,TCGA-BC-A69I,12.72314824,0,-0.6790754795074463,1
536
+ TCGA-LIHC__OS,TCGA-BC-A8YO,18.47650985,0,0.1515648365020752,1
537
+ TCGA-LIHC__OS,TCGA-BW-A5NO,0.657527041,0,-0.3990316689014435,1
538
+ TCGA-LIHC__OS,TCGA-CC-5258,4.241049413,1,1.0806201696395874,1
539
+ TCGA-LIHC__OS,TCGA-CC-5259,8.21908801,0,0.621695339679718,1
540
+ TCGA-LIHC__OS,TCGA-CC-5260,2.860242628,1,0.7740592956542969,1
541
+ TCGA-LIHC__OS,TCGA-CC-5261,3.189006148,1,3.0235297679901123,1
542
+ TCGA-LIHC__OS,TCGA-CC-5262,3.38626426,1,1.4908171892166138,1
543
+ TCGA-LIHC__OS,TCGA-CC-5263,4.241049413,1,1.0210281610488892,1
544
+ TCGA-LIHC__OS,TCGA-CC-5264,3.353387908,1,1.049769401550293,1
545
+ TCGA-LIHC__OS,TCGA-CC-A123,7.199921097,0,3.0129992961883545,1
546
+ TCGA-LIHC__OS,TCGA-CC-A1HT,3.320511556,1,0.7154540419578552,1
547
+ TCGA-LIHC__OS,TCGA-CC-A3M9,9.862905612,1,0.9331124424934388,1
548
+ TCGA-LIHC__OS,TCGA-CC-A3MA,9.961534668,1,1.400484323501587,1
549
+ TCGA-LIHC__OS,TCGA-CC-A3MB,10.35605089,1,1.1390799283981323,1
550
+ TCGA-LIHC__OS,TCGA-CC-A3MC,11.93411579,0,0.6418538093566895,1
551
+ TCGA-LIHC__OS,TCGA-CC-A5UC,11.40809416,1,2.287411689758301,1
552
+ TCGA-LIHC__OS,TCGA-CC-A5UD,9.99441102,1,1.559631586074829,1
553
+ TCGA-LIHC__OS,TCGA-CC-A5UE,8.942367755,1,2.3119759559631348,1
554
+ TCGA-LIHC__OS,TCGA-CC-A7IE,7.134168393,1,1.1824058294296265,1
555
+ TCGA-LIHC__OS,TCGA-CC-A7IF,21.33675247,1,1.049405217170715,1
556
+ TCGA-LIHC__OS,TCGA-CC-A7IG,9.83002926,1,1.2440037727355957,1
557
+ TCGA-LIHC__OS,TCGA-CC-A7IH,11.9998685,0,1.128420114517212,1
558
+ TCGA-LIHC__OS,TCGA-CC-A7II,13.11766446,0,0.7141245007514954,1
559
+ TCGA-LIHC__OS,TCGA-CC-A7IJ,12.55876648,0,1.0305248498916626,1
560
+ TCGA-LIHC__OS,TCGA-CC-A7IK,8.613604235,1,1.4899277687072754,1
561
+ TCGA-LIHC__OS,TCGA-CC-A7IL,9.139625867,1,0.92352557182312,1
562
+ TCGA-LIHC__OS,TCGA-CC-A8HT,4.602689286,1,1.1553202867507937,1
563
+ TCGA-LIHC__OS,TCGA-CC-A8HU,11.3094651,1,2.3285257816314697,1
564
+ TCGA-LIHC__OS,TCGA-CC-A8HV,9.172502219,1,1.2578967809677124,1
565
+ TCGA-LIHC__OS,TCGA-CC-A9FS,6.93691028,0,1.1003516912460327,1
566
+ TCGA-LIHC__OS,TCGA-CC-A9FW,8.153335306,0,1.2433069944381714,1
567
+ TCGA-LIHC__OS,TCGA-DD-A113,79.7251537,0,0.1908718645572662,1
568
+ TCGA-LIHC__OS,TCGA-DD-A114,37.77492849,1,0.0829215496778488,1
569
+ TCGA-LIHC__OS,TCGA-DD-A115,83.57168689,1,-0.8263904452323914,1
570
+ TCGA-LIHC__OS,TCGA-DD-A116,53.32544301,1,0.0548412576317787,1
571
+ TCGA-LIHC__OS,TCGA-DD-A118,112.996022,0,-0.6114546060562134,1
572
+ TCGA-LIHC__OS,TCGA-DD-A119,7.331426505,1,-0.3144614994525909,1
573
+ TCGA-LIHC__OS,TCGA-DD-A11A,2.597231811,0,-0.4257522225379944,1
574
+ TCGA-LIHC__OS,TCGA-DD-A11B,0.460268929,1,-0.2405575364828109,1
575
+ TCGA-LIHC__OS,TCGA-DD-A11C,21.76414505,0,-0.1464250534772873,1
576
+ TCGA-LIHC__OS,TCGA-DD-A11D,51.28710918,1,-1.7299338579177856,1
577
+ TCGA-LIHC__OS,TCGA-DD-A1E9,90.70585528,1,-0.2985942661762237,1
578
+ TCGA-LIHC__OS,TCGA-DD-A1EA,79.39639018,0,-0.2229743152856826,1
579
+ TCGA-LIHC__OS,TCGA-DD-A1EB,66.31160207,0,-2.2056097984313965,1
580
+ TCGA-LIHC__OS,TCGA-DD-A1EC,19.79156393,0,0.0148035641759634,1
581
+ TCGA-LIHC__OS,TCGA-DD-A1ED,75.64848604,0,-0.0417534075677394,1
582
+ TCGA-LIHC__OS,TCGA-DD-A1EE,11.47384686,1,1.930805802345276,1
583
+ TCGA-LIHC__OS,TCGA-DD-A1EF,12.9532827,1,0.1049795299768447,1
584
+ TCGA-LIHC__OS,TCGA-DD-A1EG,45.106355,1,-0.0903124436736106,1
585
+ TCGA-LIHC__OS,TCGA-DD-A1EH,49.1501463,0,0.0677941218018531,1
586
+ TCGA-LIHC__OS,TCGA-DD-A1EI,6.016372423,0,-0.8360573053359985,1
587
+ TCGA-LIHC__OS,TCGA-DD-A1EJ,33.0407338,1,-0.2632889747619629,1
588
+ TCGA-LIHC__OS,TCGA-DD-A1EK,18.34500444,1,-0.5959359407424927,1
589
+ TCGA-LIHC__OS,TCGA-DD-A1EL,13.6436861,1,0.2222036868333816,1
590
+ TCGA-LIHC__OS,TCGA-DD-A39V,21.13949436,1,-0.6258915066719055,1
591
+ TCGA-LIHC__OS,TCGA-DD-A39W,27.18874314,1,0.0357429608702659,1
592
+ TCGA-LIHC__OS,TCGA-DD-A39X,55.69254036,1,0.1104867756366729,1
593
+ TCGA-LIHC__OS,TCGA-DD-A39Y,5.621856199,1,0.0076782517135143,1
594
+ TCGA-LIHC__OS,TCGA-DD-A39Z,19.75868758,1,-0.8445176482200623,1
595
+ TCGA-LIHC__OS,TCGA-DD-A3A0,25.80793635,1,-0.4732622504234314,1
596
+ TCGA-LIHC__OS,TCGA-DD-A3A1,7.660190025,1,-1.4985690116882324,1
597
+ TCGA-LIHC__OS,TCGA-DD-A3A2,70.0595062,1,-2.679624080657959,1
598
+ TCGA-LIHC__OS,TCGA-DD-A3A3,17.58884834,1,-0.0164712034165859,1
599
+ TCGA-LIHC__OS,TCGA-DD-A3A4,20.12032745,1,-1.2374615669250488,1
600
+ TCGA-LIHC__OS,TCGA-DD-A3A5,102.7386001,1,-0.3924865424633026,1
601
+ TCGA-LIHC__OS,TCGA-DD-A3A6,107.111155,1,-0.3182018399238586,1
602
+ TCGA-LIHC__OS,TCGA-DD-A3A7,13.77519151,1,1.113140344619751,1
603
+ TCGA-LIHC__OS,TCGA-DD-A3A8,0.361639872,1,0.129245713353157,1
604
+ TCGA-LIHC__OS,TCGA-DD-A3A9,30.60788375,1,-0.2264854162931442,1
605
+ TCGA-LIHC__OS,TCGA-DD-A4NA,33.13936286,0,0.4096472263336181,1
606
+ TCGA-LIHC__OS,TCGA-DD-A4NB,32.51471217,0,-0.3037356734275818,1
607
+ TCGA-LIHC__OS,TCGA-DD-A4ND,90.2784627,0,0.214307889342308,1
608
+ TCGA-LIHC__OS,TCGA-DD-A4NE,21.69839235,1,0.1142559200525283,1
609
+ TCGA-LIHC__OS,TCGA-DD-A4NF,30.96952362,0,-0.132811889052391,1
610
+ TCGA-LIHC__OS,TCGA-DD-A4NG,26.36683434,1,-1.8903160095214844,1
611
+ TCGA-LIHC__OS,TCGA-DD-A4NH,30.14761482,0,0.1629982143640518,1
612
+ TCGA-LIHC__OS,TCGA-DD-A4NI,26.82710327,0,-0.6201689839363098,1
613
+ TCGA-LIHC__OS,TCGA-DD-A4NJ,30.50925469,0,0.3086558580398559,1
614
+ TCGA-LIHC__OS,TCGA-DD-A4NK,39.78038597,1,-0.1853117793798446,1
615
+ TCGA-LIHC__OS,TCGA-DD-A4NL,56.25143834,0,-0.3950687646865845,1
616
+ TCGA-LIHC__OS,TCGA-DD-A4NN,29.55584048,1,-0.1353336423635482,1
617
+ TCGA-LIHC__OS,TCGA-DD-A4NO,73.80741033,0,-0.0048682652413845,1
618
+ TCGA-LIHC__OS,TCGA-DD-A4NP,108.7549726,0,-0.1300701797008514,1
619
+ TCGA-LIHC__OS,TCGA-DD-A4NQ,12.26287931,1,0.3848396241664886,1
620
+ TCGA-LIHC__OS,TCGA-DD-A4NR,0.295887168,1,0.2198158949613571,1
621
+ TCGA-LIHC__OS,TCGA-DD-A4NS,80.74432061,1,-0.1023115515708923,1
622
+ TCGA-LIHC__OS,TCGA-DD-A4NV,78.83749219,0,-0.5244145393371582,1
623
+ TCGA-LIHC__OS,TCGA-DD-A73A,23.93398429,0,-0.3116272091865539,1
624
+ TCGA-LIHC__OS,TCGA-DD-A73B,9.304007627,1,-0.1587334275245666,1
625
+ TCGA-LIHC__OS,TCGA-DD-A73C,23.04632278,0,-0.1899736225605011,1
626
+ TCGA-LIHC__OS,TCGA-DD-A73D,22.78331196,0,-0.6183785796165466,1
627
+ TCGA-LIHC__OS,TCGA-DD-A73E,1.44655949,0,-0.088376984000206,1
628
+ TCGA-LIHC__OS,TCGA-DD-A73F,35.67084196,0,-3.2324814796447754,1
629
+ TCGA-LIHC__OS,TCGA-DD-A73G,114.3439524,0,0.0925400853157043,1
630
+ TCGA-LIHC__OS,TCGA-DD-AA3A,13.47930434,1,-0.0509705767035484,1
631
+ TCGA-LIHC__OS,TCGA-DD-AAC8,0.526021633,1,-0.2939888834953308,1
632
+ TCGA-LIHC__OS,TCGA-DD-AAC9,11.40809416,0,-0.5517631769180298,1
633
+ TCGA-LIHC__OS,TCGA-DD-AACA,75.64848604,0,-0.6387941241264343,1
634
+ TCGA-LIHC__OS,TCGA-DD-AACB,76.40464214,0,-2.248638391494751,1
635
+ TCGA-LIHC__OS,TCGA-DD-AACC,55.39665319,1,-2.43375301361084,1
636
+ TCGA-LIHC__OS,TCGA-DD-AACD,12.52589013,1,-0.5008813738822937,1
637
+ TCGA-LIHC__OS,TCGA-DD-AACE,71.80195286,0,-1.4367387294769287,1
638
+ TCGA-LIHC__OS,TCGA-DD-AACF,11.9998685,1,-1.813481330871582,1
639
+ TCGA-LIHC__OS,TCGA-DD-AACG,15.41900911,1,0.2468490153551101,1
640
+ TCGA-LIHC__OS,TCGA-DD-AACH,6.410888648,1,0.2243831306695938,1
641
+ TCGA-LIHC__OS,TCGA-DD-AACI,53.1939376,0,0.4864079356193542,1
642
+ TCGA-LIHC__OS,TCGA-DD-AACJ,69.10609199,0,-0.2120455652475357,1
643
+ TCGA-LIHC__OS,TCGA-DD-AACK,0.295887168,0,-1.0518145561218262,1
644
+ TCGA-LIHC__OS,TCGA-DD-AACL,3.517769668,1,0.1992157995700836,1
645
+ TCGA-LIHC__OS,TCGA-DD-AACM,58.15826676,0,0.2230390757322311,1
646
+ TCGA-LIHC__OS,TCGA-DD-AACN,42.80501036,0,-1.2965970039367676,1
647
+ TCGA-LIHC__OS,TCGA-DD-AACO,61.67603643,0,-0.1732317209243774,1
648
+ TCGA-LIHC__OS,TCGA-DD-AACP,13.6436861,0,-2.620411872863769,1
649
+ TCGA-LIHC__OS,TCGA-DD-AACQ,14.20258408,1,-0.238434761762619,1
650
+ TCGA-LIHC__OS,TCGA-DD-AACS,59.30893908,0,-1.293045163154602,1
651
+ TCGA-LIHC__OS,TCGA-DD-AACT,51.35286189,0,-1.4617310762405396,1
652
+ TCGA-LIHC__OS,TCGA-DD-AACU,51.51724365,0,-0.2845561504364013,1
653
+ TCGA-LIHC__OS,TCGA-DD-AACV,50.33369497,0,-0.4308754205703735,1
654
+ TCGA-LIHC__OS,TCGA-DD-AACW,46.81592531,0,0.6369987726211548,1
655
+ TCGA-LIHC__OS,TCGA-DD-AACX,5.588979847,0,-0.7824302911758423,1
656
+ TCGA-LIHC__OS,TCGA-DD-AACY,47.67071046,0,0.0877175778150558,1
657
+ TCGA-LIHC__OS,TCGA-DD-AACZ,5.621856199,1,0.2380555123090744,1
658
+ TCGA-LIHC__OS,TCGA-DD-AAD0,4.50406023,0,-0.4602762162685394,1
659
+ TCGA-LIHC__OS,TCGA-DD-AAD1,18.54226255,0,-2.7482664585113525,1
660
+ TCGA-LIHC__OS,TCGA-DD-AAD2,21.63263964,0,0.0987307280302047,1
661
+ TCGA-LIHC__OS,TCGA-DD-AAD3,42.57487589,0,-1.108426213264465,1
662
+ TCGA-LIHC__OS,TCGA-DD-AAD5,44.21869349,0,0.3769435286521911,1
663
+ TCGA-LIHC__OS,TCGA-DD-AAD6,22.09290857,0,-0.3875685334205627,1
664
+ TCGA-LIHC__OS,TCGA-DD-AAD8,40.07627314,0,-0.1018461883068084,1
665
+ TCGA-LIHC__OS,TCGA-DD-AADA,40.53654207,0,-0.5504978895187378,1
666
+ TCGA-LIHC__OS,TCGA-DD-AADB,40.83242923,0,-0.1979118585586547,1
667
+ TCGA-LIHC__OS,TCGA-DD-AADC,13.97244962,1,-0.2094170004129409,1
668
+ TCGA-LIHC__OS,TCGA-DD-AADD,40.47078936,0,-1.3423722982406616,1
669
+ TCGA-LIHC__OS,TCGA-DD-AADE,39.51737515,0,-1.5935975313186646,1
670
+ TCGA-LIHC__OS,TCGA-DD-AADF,3.780780485,1,-0.5519207119941711,1
671
+ TCGA-LIHC__OS,TCGA-DD-AADG,37.64342309,0,-0.5848161578178406,1
672
+ TCGA-LIHC__OS,TCGA-DD-AADI,35.67084196,0,-0.4312365055084228,1
673
+ TCGA-LIHC__OS,TCGA-DD-AADJ,35.04619128,0,-0.5231865644454956,1
674
+ TCGA-LIHC__OS,TCGA-DD-AADK,34.48729329,0,0.0134595315903425,1
675
+ TCGA-LIHC__OS,TCGA-DD-AADL,20.9093599,0,-0.9553411602973938,1
676
+ TCGA-LIHC__OS,TCGA-DD-AADM,0.394516225,1,-2.1841838359832764,1
677
+ TCGA-LIHC__OS,TCGA-DD-AADN,29.52296413,0,0.7753544449806213,1
678
+ TCGA-LIHC__OS,TCGA-DD-AADO,14.89298747,0,0.0279769655317068,1
679
+ TCGA-LIHC__OS,TCGA-DD-AADP,15.05736923,0,-1.7894656658172607,1
680
+ TCGA-LIHC__OS,TCGA-DD-AADQ,14.33408949,0,-0.2474610209465026,1
681
+ TCGA-LIHC__OS,TCGA-DD-AADR,66.67324194,0,-2.53366756439209,1
682
+ TCGA-LIHC__OS,TCGA-DD-AADS,15.58339087,0,-0.5911002159118652,1
683
+ TCGA-LIHC__OS,TCGA-DD-AADU,18.21349903,0,-0.9599938988685608,1
684
+ TCGA-LIHC__OS,TCGA-DD-AADV,18.87102607,0,-1.4809861183166504,1
685
+ TCGA-LIHC__OS,TCGA-DD-AADW,19.29841865,0,-0.6248379349708557,1
686
+ TCGA-LIHC__OS,TCGA-DD-AADY,18.24637538,0,-0.7733036875724792,1
687
+ TCGA-LIHC__OS,TCGA-DD-AAE0,18.24637538,0,-0.3236910700798034,1
688
+ TCGA-LIHC__OS,TCGA-DD-AAE1,18.14774633,0,-0.399856686592102,1
689
+ TCGA-LIHC__OS,TCGA-DD-AAE2,20.9751126,0,-2.29215931892395,1
690
+ TCGA-LIHC__OS,TCGA-DD-AAE3,18.60801526,0,-1.9540095329284668,1
691
+ TCGA-LIHC__OS,TCGA-DD-AAE4,19.98882204,0,-1.509443759918213,1
692
+ TCGA-LIHC__OS,TCGA-DD-AAE6,4.635565638,0,-0.4220222234725952,1
693
+ TCGA-LIHC__OS,TCGA-DD-AAE7,21.17237071,0,-0.1126903966069221,1
694
+ TCGA-LIHC__OS,TCGA-DD-AAE8,21.82989776,0,-1.5666685104370115,1
695
+ TCGA-LIHC__OS,TCGA-DD-AAE9,23.73672617,0,-0.7745179533958435,1
696
+ TCGA-LIHC__OS,TCGA-DD-AAEA,18.90390242,0,-0.7199347615242004,1
697
+ TCGA-LIHC__OS,TCGA-DD-AAEB,15.71489628,0,-0.5148455500602722,1
698
+ TCGA-LIHC__OS,TCGA-DD-AAED,25.08465661,0,-0.0843327045440673,1
699
+ TCGA-LIHC__OS,TCGA-DD-AAEE,26.62984515,0,-0.6468117833137512,1
700
+ TCGA-LIHC__OS,TCGA-DD-AAEG,23.63809712,0,-0.0806578770279884,1
701
+ TCGA-LIHC__OS,TCGA-DD-AAEH,25.77506,0,-0.990339457988739,1
702
+ TCGA-LIHC__OS,TCGA-DD-AAEI,50.33369497,0,0.2584065794944763,1
703
+ TCGA-LIHC__OS,TCGA-DD-AAEK,35.07906763,0,-2.105334043502808,1
704
+ TCGA-LIHC__OS,TCGA-DD-AAVP,90.47572081,0,-2.760563611984253,1
705
+ TCGA-LIHC__OS,TCGA-DD-AAVQ,89.68668837,0,-3.217114925384521,1
706
+ TCGA-LIHC__OS,TCGA-DD-AAVR,82.61827268,0,-0.3960503339767456,1
707
+ TCGA-LIHC__OS,TCGA-DD-AAVS,59.93358977,0,-2.9579460620880127,1
708
+ TCGA-LIHC__OS,TCGA-DD-AAVU,72.39372719,0,-0.7339546084403992,1
709
+ TCGA-LIHC__OS,TCGA-DD-AAVV,80.71144426,0,-0.7997646331787109,1
710
+ TCGA-LIHC__OS,TCGA-DD-AAVW,76.17450768,0,-0.8513731360435486,1
711
+ TCGA-LIHC__OS,TCGA-DD-AAVX,56.48157281,0,-1.0826401710510254,1
712
+ TCGA-LIHC__OS,TCGA-DD-AAVY,64.76641352,0,-1.532070517539978,1
713
+ TCGA-LIHC__OS,TCGA-DD-AAVZ,62.46506888,0,-3.163237333297729,1
714
+ TCGA-LIHC__OS,TCGA-DD-AAW0,66.24584936,0,-0.6298496723175049,1
715
+ TCGA-LIHC__OS,TCGA-DD-AAW1,65.39106421,0,-1.0011941194534302,1
716
+ TCGA-LIHC__OS,TCGA-DD-AAW2,60.98563303,0,-0.8158708214759827,1
717
+ TCGA-LIHC__OS,TCGA-DD-AAW3,53.68708288,0,-0.8976495862007141,1
718
+ TCGA-LIHC__OS,TCGA-ED-A459,29.91748036,0,1.2046868801116943,1
719
+ TCGA-LIHC__OS,TCGA-ED-A4XI,26.92573232,0,-0.1802467852830886,1
720
+ TCGA-LIHC__OS,TCGA-ED-A5KG,28.07640464,0,-0.0067634861916303,1
721
+ TCGA-LIHC__OS,TCGA-ED-A627,13.90669691,0,0.6592417359352112,1
722
+ TCGA-LIHC__OS,TCGA-ED-A66X,13.34779893,0,0.3440290093421936,1
723
+ TCGA-LIHC__OS,TCGA-ED-A66Y,9.731400204,1,0.1002625972032547,1
724
+ TCGA-LIHC__OS,TCGA-ED-A7PX,0.197258112,0,-0.0349534898996353,1
725
+ TCGA-LIHC__OS,TCGA-ED-A7PY,12.8217773,0,-0.5548336505889893,1
726
+ TCGA-LIHC__OS,TCGA-ED-A7PZ,0.197258112,0,-1.347878098487854,1
727
+ TCGA-LIHC__OS,TCGA-ED-A7XO,14.03820232,0,-0.4318336546421051,1
728
+ TCGA-LIHC__OS,TCGA-ED-A7XP,13.15054082,0,0.1725031435489654,1
729
+ TCGA-LIHC__OS,TCGA-ED-A82E,13.41355163,0,-0.3566339015960693,1
730
+ TCGA-LIHC__OS,TCGA-ED-A8O5,13.34779893,0,-0.1560695618391037,1
731
+ TCGA-LIHC__OS,TCGA-ED-A8O6,1.841075714,1,0.4574079215526581,1
732
+ TCGA-LIHC__OS,TCGA-ED-A97K,0.197258112,0,-0.0447792038321495,1
733
+ TCGA-LIHC__OS,TCGA-EP-A12J,18.73952066,0,0.2169979214668274,1
734
+ TCGA-LIHC__OS,TCGA-EP-A26S,19.98882204,0,0.5397576689720154,1
735
+ TCGA-LIHC__OS,TCGA-EP-A2KA,20.61347273,1,1.0924201011657717,1
736
+ TCGA-LIHC__OS,TCGA-EP-A2KB,19.59430582,1,1.3931405544281006,1
737
+ TCGA-LIHC__OS,TCGA-EP-A2KC,0.624650689,1,0.4473039209842682,1
738
+ TCGA-LIHC__OS,TCGA-EP-A3JL,9.961534668,0,1.0234264135360718,1
739
+ TCGA-LIHC__OS,TCGA-EP-A3RK,11.93411579,0,0.8558459281921387,1
740
+ TCGA-LIHC__OS,TCGA-FV-A23B,60.88700398,1,-0.1067623272538185,1
741
+ TCGA-LIHC__OS,TCGA-FV-A2QQ,23.96686064,0,-0.4689933359622955,1
742
+ TCGA-LIHC__OS,TCGA-FV-A2QR,19.10116054,1,-1.1803741455078125,1
743
+ TCGA-LIHC__OS,TCGA-FV-A3I0,27.87914653,0,0.8059834837913513,1
744
+ TCGA-LIHC__OS,TCGA-FV-A3I1,8.120458954,1,0.9935741424560548,1
745
+ TCGA-LIHC__OS,TCGA-FV-A3R2,6.378012296,1,0.862228274345398,1
746
+ TCGA-LIHC__OS,TCGA-FV-A3R3,12.03274485,1,2.064587116241455,1
747
+ TCGA-LIHC__OS,TCGA-FV-A495,0.032876352,0,-0.0816639512777328,1
748
+ TCGA-LIHC__OS,TCGA-FV-A496,0.32876352,0,-0.9929990172386168,1
749
+ TCGA-LIHC__OS,TCGA-FV-A4ZP,81.73061117,1,-0.9408855438232422,1
750
+ TCGA-LIHC__OS,TCGA-FV-A4ZQ,0.394516225,0,-0.2646373510360718,1
751
+ TCGA-LIHC__OS,TCGA-G3-A25S,13.67656245,1,-0.2029738128185272,1
752
+ TCGA-LIHC__OS,TCGA-G3-A25T,51.05697472,0,-0.4046974778175354,1
753
+ TCGA-LIHC__OS,TCGA-G3-A25U,53.78571194,0,-0.4475371241569519,1
754
+ TCGA-LIHC__OS,TCGA-G3-A25V,28.27366275,0,-1.984092116355896,1
755
+ TCGA-LIHC__OS,TCGA-G3-A25W,30.73938916,0,0.3110173940658569,1
756
+ TCGA-LIHC__OS,TCGA-G3-A25X,58.48703028,0,-0.2450603693723678,1
757
+ TCGA-LIHC__OS,TCGA-G3-A25Y,14.86011112,1,-1.208449363708496,1
758
+ TCGA-LIHC__OS,TCGA-G3-A25Z,21.53401059,0,-0.707064688205719,1
759
+ TCGA-LIHC__OS,TCGA-G3-A3CH,25.64355459,0,0.0289096944034099,1
760
+ TCGA-LIHC__OS,TCGA-G3-A3CI,5.917743367,0,-0.6135136485099792,1
761
+ TCGA-LIHC__OS,TCGA-G3-A3CJ,19.52855311,0,-1.551330327987671,1
762
+ TCGA-LIHC__OS,TCGA-G3-A3CK,19.23266594,0,-0.0576387867331504,1
763
+ TCGA-LIHC__OS,TCGA-G3-A5SI,25.24903837,1,0.2016407698392868,1
764
+ TCGA-LIHC__OS,TCGA-G3-A5SJ,22.94769372,0,-0.0525105744600296,1
765
+ TCGA-LIHC__OS,TCGA-G3-A5SK,24.46000592,0,-0.6815388798713684,1
766
+ TCGA-LIHC__OS,TCGA-G3-A5SL,20.41621462,0,-0.0468224808573722,1
767
+ TCGA-LIHC__OS,TCGA-G3-A5SM,17.09570306,0,-1.9089847803115845,1
768
+ TCGA-LIHC__OS,TCGA-G3-A6UC,22.06003222,0,-1.2488350868225098,1
769
+ TCGA-LIHC__OS,TCGA-G3-A7M5,14.69572936,0,-0.2345926612615585,1
770
+ TCGA-LIHC__OS,TCGA-G3-A7M6,20.77785449,0,-0.4198949038982391,1
771
+ TCGA-LIHC__OS,TCGA-G3-A7M7,11.86836309,0,-0.3409106433391571,1
772
+ TCGA-LIHC__OS,TCGA-G3-A7M8,14.13683138,0,-0.3587269783020019,1
773
+ TCGA-LIHC__OS,TCGA-G3-AAUZ,15.78064898,0,0.0714559704065322,1
774
+ TCGA-LIHC__OS,TCGA-G3-AAV0,15.64914357,0,-1.4818429946899414,1
775
+ TCGA-LIHC__OS,TCGA-G3-AAV1,11.80261038,1,0.5920826196670532,1
776
+ TCGA-LIHC__OS,TCGA-G3-AAV2,12.23000296,0,-0.2924557626247406,1
777
+ TCGA-LIHC__OS,TCGA-G3-AAV3,13.54505704,0,-1.0380595922470093,1
778
+ TCGA-LIHC__OS,TCGA-G3-AAV4,0.887661505,1,-0.6597763895988464,1
779
+ TCGA-LIHC__OS,TCGA-G3-AAV5,11.63822862,0,0.718926191329956,1
780
+ TCGA-LIHC__OS,TCGA-G3-AAV6,2.136962883,1,-0.4885213971138,1
781
+ TCGA-LIHC__OS,TCGA-G3-AAV7,11.86836309,0,0.4089571833610534,1
782
+ TCGA-LIHC__OS,TCGA-GJ-A3OU,28.89831344,0,-1.0898984670639038,1
783
+ TCGA-LIHC__OS,TCGA-GJ-A6C0,1.019166913,1,-0.2476022094488144,1
784
+ TCGA-LIHC__OS,TCGA-GJ-A9DB,2.202715587,1,-1.5427244901657104,1
785
+ TCGA-LIHC__OS,TCGA-HP-A5MZ,2.991748036,1,-0.029791546985507,1
786
+ TCGA-LIHC__OS,TCGA-HP-A5N0,37.70917579,1,-0.2706411480903625,1
787
+ TCGA-LIHC__OS,TCGA-K7-A5RF,20.74497814,0,-0.0624254792928695,1
788
+ TCGA-LIHC__OS,TCGA-K7-A5RG,17.06282671,0,-2.4176273345947266,1
789
+ TCGA-LIHC__OS,TCGA-K7-A6G5,16.83269224,0,-1.3985604047775269,1
790
+ TCGA-LIHC__OS,TCGA-K7-AAU7,11.80261038,0,0.0113948956131935,1
791
+ TCGA-LIHC__OS,TCGA-LG-A6GG,12.72314824,0,-0.0115427523851394,1
792
+ TCGA-LIHC__OS,TCGA-LG-A9QC,13.97244962,0,-0.1941794455051422,1
793
+ TCGA-LIHC__OS,TCGA-LG-A9QD,12.03274485,0,0.2914131283760071,1
794
+ TCGA-LIHC__OS,TCGA-MI-A75C,9.567018444,0,0.1701372414827346,1
795
+ TCGA-LIHC__OS,TCGA-MI-A75E,16.66831048,0,0.163691833615303,1
796
+ TCGA-LIHC__OS,TCGA-MI-A75G,22.94769372,0,-0.2835793495178222,1
797
+ TCGA-LIHC__OS,TCGA-MI-A75H,24.55863497,0,-1.3182998895645142,1
798
+ TCGA-LIHC__OS,TCGA-MI-A75I,20.71210179,0,0.3366466760635376,1
799
+ TCGA-LIHC__OS,TCGA-MR-A520,7.528684617,0,-0.225806176662445,1
800
+ TCGA-LIHC__OS,TCGA-MR-A8JO,10.84919617,0,0.224298819899559,1
801
+ TCGA-LIHC__OS,TCGA-NI-A4U2,58.8815465,1,-0.5465527176856995,1
802
+ TCGA-LIHC__OS,TCGA-NI-A8LF,26.26820528,0,-0.4957441687583923,1
803
+ TCGA-LIHC__OS,TCGA-O8-A75V,17.6874774,0,-2.1487579345703125,1
804
+ TCGA-LIHC__OS,TCGA-PD-A5DF,21.00798895,1,-1.4887115955352783,1
805
+ TCGA-LIHC__OS,TCGA-QA-A7B7,3.090377092,0,-0.1916522830724716,1
806
+ TCGA-LIHC__OS,TCGA-RC-A6M4,0.723279745,0,-0.9906843304634094,1
807
+ TCGA-LIHC__OS,TCGA-RC-A6M5,0.493145281,0,0.1393568366765976,1
808
+ TCGA-LIHC__OS,TCGA-RC-A6M6,0.295887168,0,0.3770387172698974,1
809
+ TCGA-LIHC__OS,TCGA-RC-A7S9,21.04086531,0,-0.7051560282707214,1
810
+ TCGA-LIHC__OS,TCGA-RC-A7SB,19.331295,0,-0.5418321490287781,1
811
+ TCGA-LIHC__OS,TCGA-RC-A7SF,19.03540783,0,-0.546668291091919,1
812
+ TCGA-LIHC__OS,TCGA-RC-A7SH,15.38613276,0,-1.1742727756500244,1
813
+ TCGA-LIHC__OS,TCGA-RC-A7SK,15.51763816,0,-0.4763790369033813,1
814
+ TCGA-LIHC__OS,TCGA-RG-A7D4,36.09823454,0,-0.8657577633857727,1
815
+ TCGA-LIHC__OS,TCGA-UB-A7MA,27.87914653,0,-0.0458346456289291,1
816
+ TCGA-LIHC__OS,TCGA-UB-A7MB,19.75868758,0,-0.6633241176605225,1
817
+ TCGA-LIHC__OS,TCGA-UB-A7MC,16.43817602,0,-0.3845649361610412,1
818
+ TCGA-LIHC__OS,TCGA-UB-A7MD,1.709570306,1,0.274969220161438,1
819
+ TCGA-LIHC__OS,TCGA-UB-A7ME,15.97790709,0,-0.4513448774814605,1
820
+ TCGA-LIHC__OS,TCGA-UB-A7MF,7.035539337,1,-0.6244848370552063,1
821
+ TCGA-LIHC__OS,TCGA-UB-AA0U,10.75056712,0,-0.2515215277671814,1
822
+ TCGA-LIHC__OS,TCGA-UB-AA0V,10.32317454,0,-0.7988682389259338,1
823
+ TCGA-LIHC__OS,TCGA-WJ-A86L,11.34234145,0,-0.7538313269615173,1
824
+ TCGA-LIHC__OS,TCGA-WQ-A9G7,0.986290561,0,0.4981521666049957,1
825
+ TCGA-LIHC__OS,TCGA-WQ-AB4B,12.98615906,0,-0.5118686556816101,1
826
+ TCGA-LIHC__OS,TCGA-WX-AA44,20.21895651,0,-0.2637114524841308,1
827
+ TCGA-LIHC__OS,TCGA-WX-AA46,24.85452214,0,-0.6310567855834961,1
828
+ TCGA-LIHC__OS,TCGA-WX-AA47,18.27925173,1,0.2503846883773803,1
829
+ TCGA-LIHC__OS,TCGA-XR-A8TD,33.8626426,0,-0.7247514724731445,1
830
+ TCGA-LIHC__OS,TCGA-XR-A8TE,30.41062564,0,-1.0114843845367432,1
831
+ TCGA-LIHC__OS,TCGA-XR-A8TF,22.78331196,1,-1.2839125394821167,1
832
+ TCGA-LIHC__OS,TCGA-XR-A8TG,29.52296413,0,-1.8656867742538448,1
833
+ TCGA-LIHC__OS,TCGA-YA-A8S7,13.54505704,1,0.9361993074417114,1
834
+ TCGA-LIHC__OS,TCGA-ZP-A9CV,35.76947102,1,-0.1289608180522918,1
835
+ TCGA-LIHC__OS,TCGA-ZP-A9CY,25.7093073,0,-2.121229410171509,1
836
+ TCGA-LIHC__OS,TCGA-ZP-A9CZ,23.21070454,0,-0.0970866978168487,1
837
+ TCGA-LIHC__OS,TCGA-ZP-A9D0,35.86810008,0,-0.2679769992828369,1
838
+ TCGA-LIHC__OS,TCGA-ZP-A9D1,0.690403393,0,0.1628260463476181,1
839
+ TCGA-LIHC__OS,TCGA-ZP-A9D2,25.15040931,1,0.2833823561668396,1
840
+ TCGA-LIHC__OS,TCGA-ZP-A9D4,12.98615906,0,-0.8749516010284424,1
841
+ TCGA-LIHC__OS,TCGA-ZS-A9CD,45.56662393,1,-2.5109751224517822,1
842
+ TCGA-LIHC__OS,TCGA-ZS-A9CE,40.79955288,0,-2.186237573623657,1
843
+ TCGA-LIHC__OS,TCGA-ZS-A9CF,79.29776112,0,-0.4942995905876159,1
844
+ TCGA-LIHC__OS,TCGA-ZS-A9CG,11.21083605,0,-0.7195125818252563,1
tutorials/figure4_wsi/brca_roi.png ADDED

Git LFS Details

  • SHA256: 695e649baa6b6e6e3271cc19b162a7cb7bbe08c7a88c3cec87404dffc61c36dd
  • Pointer size: 131 Bytes
  • Size of remote file: 554 kB
tutorials/figure4_wsi/brca_roi_region.png ADDED

Git LFS Details

  • SHA256: c473d98a8e8e204cdd8275cf0aee435000c4e5c333080ba02200566510a161aa
  • Pointer size: 130 Bytes
  • Size of remote file: 31.8 kB
tutorials/figure4_wsi/brca_roi_score.png ADDED

Git LFS Details

  • SHA256: 2ed8a804090a7db6923fe208e5c83efce2195490d155b66887a5e621fef2be52
  • Pointer size: 131 Bytes
  • Size of remote file: 139 kB
tutorials/figure4_wsi/brca_wsi.png ADDED

Git LFS Details

  • SHA256: 2e08ee77a2b9878961932d16f6982610e492ae551cbe75109ff28c99cfc841bc
  • Pointer size: 131 Bytes
  • Size of remote file: 330 kB
tutorials/figure4_wsi/brca_wsi_score.png ADDED

Git LFS Details

  • SHA256: 70c0248e652032943a2df765a20d19d9607facf5fcd98975a34d2bcd24755057
  • Pointer size: 131 Bytes
  • Size of remote file: 249 kB
tutorials/figure4_wsi/stad1_region.png ADDED

Git LFS Details

  • SHA256: afba2fa04246bee5cbc9c2bbc47c47be8b3a76c8d1166f78a050fe24d9a9eba0
  • Pointer size: 130 Bytes
  • Size of remote file: 21.8 kB
tutorials/figure4_wsi/stad1_score.png ADDED

Git LFS Details

  • SHA256: a1fc90a812a73b9fe316790019f1cbc2c0859c00738d944abe4c1f929005ed86
  • Pointer size: 131 Bytes
  • Size of remote file: 321 kB
tutorials/figure4_wsi/stad1_wsi.png ADDED

Git LFS Details

  • SHA256: 8bdabaca157363ce4ffa196f8f00bad8f7318fa6cb8ddd41bef4f8a13c7824d3
  • Pointer size: 131 Bytes
  • Size of remote file: 568 kB
tutorials/figure4_wsi/stad2_region.png ADDED

Git LFS Details

  • SHA256: 47c97e3d2fb95627f3635deeabfa7fdb650a6f4bc4e1dc49a8984a8a314e4c37
  • Pointer size: 130 Bytes
  • Size of remote file: 23.2 kB
tutorials/figure4_wsi/stad2_score.png ADDED

Git LFS Details

  • SHA256: 49d91e246a02802c3dba060e22ff522120bb8f66cfaa4fb318513a1f7e428739
  • Pointer size: 131 Bytes
  • Size of remote file: 366 kB
tutorials/figure4_wsi/stad2_wsi.png ADDED

Git LFS Details

  • SHA256: 3403ba74d6d3e6c8e480b370a7fba3c745a091b0afbd78721fcb8ea25ccfb817
  • Pointer size: 131 Bytes
  • Size of remote file: 563 kB
tutorials/figure5_embedding_queries.json ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "query_order": [
3
+ "breast_tumor",
4
+ "heart_muscle"
5
+ ],
6
+ "queries": {
7
+ "breast_tumor": {
8
+ "display_query": "breast epithelial tumor states",
9
+ "canonical_embedding_text": "Cell type: Cancer cell; Luminal progenitor cell.",
10
+ "source_spot_id": "GSE210616_GSM6433591\tGSE210616_GSM6433591_AACGTGCGAAAGTCTC-1"
11
+ },
12
+ "heart_muscle": {
13
+ "display_query": "heart spots with active muscle pathways",
14
+ "canonical_embedding_text": "Cell type: Fibroblast; Cardiomyocyte.",
15
+ "source_spot_id": "Human_Heart_Kuppe_10082022_Visium_Visium_14_CK292\tHuman_Heart_Kuppe_10082022_Visium_Visium_14_CK292_CCAGCCTGGACCAATA-1"
16
+ }
17
+ },
18
+ "image_query": {
19
+ "display_query": "Human cortical H&E query",
20
+ "local_image_file": "figure5_he_query_brain_local.png",
21
+ "context_image_file": "figure5_he_query_brain_context.png",
22
+ "source_slice_id": "Human_Brain_Maynard_02082021_Visium_151671",
23
+ "source_spot_id": "Human_Brain_Maynard_02082021_Visium_151671\tHuman_Brain_Maynard_02082021_Visium_151671_CAACGACCCGTTTACA-1",
24
+ "species": "human",
25
+ "organ": "brain",
26
+ "spot_diameter_um": 55,
27
+ "context_diameter_um": 220,
28
+ "microns_per_pixel": 0.8594,
29
+ "input_mode": "paired_fov",
30
+ "predicted_genes": [
31
+ "MT3",
32
+ "FTH1",
33
+ "CST3",
34
+ "GAPDH",
35
+ "NRGN",
36
+ "TMSB10",
37
+ "SNAP25",
38
+ "TUBA1B",
39
+ "NDUFA4",
40
+ "CLU",
41
+ "CALM2",
42
+ "CALM1",
43
+ "COX6C",
44
+ "CKB",
45
+ "GNAS",
46
+ "TMSB4X",
47
+ "CCK",
48
+ "OLFM1",
49
+ "SELENOW",
50
+ "MTRNR2L12",
51
+ "COX6A1",
52
+ "UCHL1",
53
+ "VSNL1",
54
+ "ACTB",
55
+ "YWHAH",
56
+ "PPIA",
57
+ "SPARCL1",
58
+ "UBB",
59
+ "STMN1",
60
+ "COX4I1",
61
+ "CALM3",
62
+ "RTN3",
63
+ "NEFL",
64
+ "RTN1",
65
+ "ATP5F1E",
66
+ "ITM2B",
67
+ "PEBP1",
68
+ "MTRNR2L8",
69
+ "CHN1",
70
+ "EEF1A1",
71
+ "HSP90AA1",
72
+ "ATP1B1",
73
+ "HSP90AB1",
74
+ "MAP1B",
75
+ "HSPA8",
76
+ "FTL",
77
+ "SYT1",
78
+ "GPM6A",
79
+ "HINT1",
80
+ "COX5B"
81
+ ],
82
+ "example_results": [
83
+ {
84
+ "relevance": 0.98,
85
+ "slice_id": "Human_Brain_Maynard_02082021_Visium_151672",
86
+ "cell_type": "Astrocyte",
87
+ "matched_genes": "MT3, FTH1, CST3, GAPDH, NRGN, TMSB10, SNAP25, TUBA1B"
88
+ },
89
+ {
90
+ "relevance": 0.9658,
91
+ "slice_id": "Human_Brain_Maynard_02082021_Visium_151674",
92
+ "cell_type": "Neuron",
93
+ "matched_genes": "MT3, FTH1, GAPDH, NRGN, TMSB10, SNAP25, TUBA1B, NDUFA4"
94
+ },
95
+ {
96
+ "relevance": 0.9618,
97
+ "slice_id": "Human_Brain_Maynard_02082021_Visium_151676",
98
+ "cell_type": "Astrocyte",
99
+ "matched_genes": "MT3, FTH1, CST3, GAPDH, NRGN, TMSB10, SNAP25, TUBA1B"
100
+ },
101
+ {
102
+ "relevance": 0.9603,
103
+ "slice_id": "Human_Brain_Louise_02152023_Visium_Br6522_ant",
104
+ "cell_type": "Astrocyte",
105
+ "matched_genes": "MT3, FTH1, CST3, GAPDH, NRGN, TMSB10, SNAP25, TUBA1B"
106
+ },
107
+ {
108
+ "relevance": 0.9594,
109
+ "slice_id": "Human_Brain_Louise_02152023_Visium_Br6522_mid",
110
+ "cell_type": "Excitatory neuron",
111
+ "matched_genes": "MT3, FTH1, CST3, GAPDH, NRGN, TMSB10, SNAP25, TUBA1B"
112
+ }
113
+ ],
114
+ "retrieval_note": "The image query uses a 55 μm spot view and a 220 μm context view with species=human and organ=brain."
115
+ },
116
+ "source": "representative spatial atlas locations",
117
+ "production_note": "The downloadable notebook uses a compact reproducible subset."
118
+ }
tutorials/figure5_embedding_subset.csv ADDED
The diff for this file is too large to render. See raw diff
 
tutorials/figure5_embedding_subset.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ff266f29c6902a99aa645825469b167c4975a24800a5c60b751d6577ef029f2
3
+ size 416526
tutorials/figure5_he_query_brain_context.png ADDED

Git LFS Details

  • SHA256: ffc91ad6e4cce9e92e7fe4eb6da3d6865806f2319c72ea9e9919403a66bbaefc
  • Pointer size: 131 Bytes
  • Size of remote file: 183 kB
tutorials/figure5_he_query_brain_local.png ADDED

Git LFS Details

  • SHA256: 15adcc5e1c7f569c8dcadcfdb33af0ab8ab2ffdac0a8e8451d2e9d6aaf165be1
  • Pointer size: 131 Bytes
  • Size of remote file: 103 kB
tutorials/figure5_he_query_breast.png ADDED

Git LFS Details

  • SHA256: d3673a8a919db8b1d39f3406fbbb773e8bef74cd7af4a52df3c92e3e91664ef2
  • Pointer size: 131 Bytes
  • Size of remote file: 551 kB
tutorials/figure5_he_query_breast_context.png ADDED

Git LFS Details

  • SHA256: 673dcadef9daa9e71082de3fbd6d8eca9776d543efd2eec7401cd4e5e6ca0cde
  • Pointer size: 130 Bytes
  • Size of remote file: 84.1 kB
tutorials/figure5_he_query_breast_local.png ADDED

Git LFS Details

  • SHA256: 79f3eba363f04e5cd11e2e8f0afa4460e4b159cf3b992d8823d03906833ade1d
  • Pointer size: 130 Bytes
  • Size of remote file: 30.4 kB
tutorials/quickstart_expression_maps.json ADDED
@@ -0,0 +1,547 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sections": {
3
+ "GSE251950_GSM7990478": {
4
+ "species": "human",
5
+ "organ": "stomach",
6
+ "gene": "IGKC",
7
+ "pcc": 0.7527607948227797
8
+ },
9
+ "GSE213688_GSM6592052": {
10
+ "species": "human",
11
+ "organ": "breast",
12
+ "gene": "COL1A1",
13
+ "pcc": 0.7454216685394932
14
+ },
15
+ "GSE202322_GSM6108350": {
16
+ "species": "mouse",
17
+ "organ": "lung",
18
+ "gene": "Sftpc",
19
+ "pcc": 0.8505840779355743
20
+ },
21
+ "GSE254652_GSM8047883": {
22
+ "species": "mouse",
23
+ "organ": "spleen",
24
+ "gene": "Cd74",
25
+ "pcc": 0.8713135092638626
26
+ },
27
+ "GSE175540_GSM5924038": {
28
+ "species": "human",
29
+ "organ": "kidney",
30
+ "gene": "DCN",
31
+ "pcc": 0.7306821327167066
32
+ }
33
+ },
34
+ "rank_examples": {
35
+ "GSE251950_GSM7990478": {
36
+ "barcode": "GSE251950_GSM7990478_ATATCGTTCCTCGAAC-1",
37
+ "predicted_top50": [
38
+ "MYL9",
39
+ "TAGLN",
40
+ "DES",
41
+ "FLNA",
42
+ "ACTA2",
43
+ "TPM2",
44
+ "ACTG2",
45
+ "MYLK",
46
+ "CNN1",
47
+ "FTL",
48
+ "IGFBP7",
49
+ "FTH1",
50
+ "MGP",
51
+ "LGALS1",
52
+ "SELENOM",
53
+ "S100A6",
54
+ "HSPB1",
55
+ "A2M",
56
+ "CD81",
57
+ "CST3",
58
+ "IFITM3",
59
+ "UBC",
60
+ "CD74",
61
+ "PSAP",
62
+ "SPARC",
63
+ "PFN1",
64
+ "CTSD",
65
+ "TIMP1",
66
+ "SERF2",
67
+ "SPARCL1",
68
+ "ITM2B",
69
+ "CD63",
70
+ "UBB",
71
+ "IGFBP4",
72
+ "GSTP1",
73
+ "HLA-DRA",
74
+ "IGKC",
75
+ "HLA-A",
76
+ "HLA-C",
77
+ "S100A11",
78
+ "IGHG4",
79
+ "IGHG1",
80
+ "APOE",
81
+ "KRT8",
82
+ "KRT18",
83
+ "H19"
84
+ ],
85
+ "measured_top50": [
86
+ "MYL9",
87
+ "TAGLN",
88
+ "MGP",
89
+ "FTL",
90
+ "TPM2",
91
+ "S100A6",
92
+ "FLNA",
93
+ "HLA-A",
94
+ "ACTA2",
95
+ "CD74",
96
+ "DES",
97
+ "IGKC",
98
+ "IGFBP7",
99
+ "MYH11",
100
+ "SERF2",
101
+ "FTH1",
102
+ "KRT18",
103
+ "H19",
104
+ "KRT8",
105
+ "APOE",
106
+ "CTSD",
107
+ "TIMP1",
108
+ "ACTG2",
109
+ "GSTP1",
110
+ "PFN1",
111
+ "A2M",
112
+ "CD81",
113
+ "COL3A1",
114
+ "IFITM3",
115
+ "LGALS1",
116
+ "SELENOW",
117
+ "UBB",
118
+ "C3",
119
+ "CD63",
120
+ "COL1A2",
121
+ "CST3",
122
+ "EIF1",
123
+ "HLA-DRA",
124
+ "IGFBP4",
125
+ "MYL6",
126
+ "SELENOM",
127
+ "SMTN",
128
+ "SPARC",
129
+ "SPARCL1",
130
+ "COX4I1",
131
+ "EEF1D",
132
+ "FN1",
133
+ "HSPB1",
134
+ "ITM2B",
135
+ "PSAP"
136
+ ],
137
+ "spot_hit_rate_at_50": 0.78,
138
+ "spot_ap_at_50": 0.7025268346762492
139
+ },
140
+ "GSE213688_GSM6592052": {
141
+ "barcode": "GSE213688_GSM6592052_GCCCGTTCACACAATT-1",
142
+ "predicted_top50": [
143
+ "MGP",
144
+ "COL6A2",
145
+ "FTL",
146
+ "FTH1",
147
+ "COL1A1",
148
+ "S100A6",
149
+ "COL1A2",
150
+ "SPARC",
151
+ "LGALS1",
152
+ "VIM",
153
+ "S100A11",
154
+ "FN1",
155
+ "COL3A1",
156
+ "KRT8",
157
+ "PFN1",
158
+ "TAGLN",
159
+ "ACTN4",
160
+ "SERF2",
161
+ "ANXA2",
162
+ "KRT6B",
163
+ "HSP90AA1",
164
+ "MYL9",
165
+ "BGN",
166
+ "MYH9",
167
+ "HLA-A",
168
+ "MT2A",
169
+ "FLNA",
170
+ "KRT14",
171
+ "LMNA",
172
+ "EIF1",
173
+ "MMP7",
174
+ "KRT7",
175
+ "EEF2",
176
+ "TAGLN2",
177
+ "NME2",
178
+ "CCND1",
179
+ "KRT5",
180
+ "ATP5F1E",
181
+ "EEF1G",
182
+ "HLA-C",
183
+ "EIF4A1",
184
+ "POSTN",
185
+ "KRT81"
186
+ ],
187
+ "measured_top50": [
188
+ "KRT17",
189
+ "COL1A1",
190
+ "COL1A2",
191
+ "MGP",
192
+ "KRT14",
193
+ "MYL9",
194
+ "FTH1",
195
+ "LGALS1",
196
+ "SPARC",
197
+ "KRT5",
198
+ "VIM",
199
+ "FTL",
200
+ "TAGLN2",
201
+ "KRT19",
202
+ "S100A6",
203
+ "KRT7",
204
+ "LMNA",
205
+ "KRT81",
206
+ "MALAT1",
207
+ "EEF1G",
208
+ "COL3A1",
209
+ "TAGLN",
210
+ "CCN2",
211
+ "MT2A",
212
+ "ACTN4",
213
+ "HLA-B",
214
+ "MYH9",
215
+ "FN1",
216
+ "MYL6",
217
+ "CCND1",
218
+ "ANXA2",
219
+ "COL6A2",
220
+ "HSP90AA1",
221
+ "EIF4A1",
222
+ "NME2",
223
+ "MMP7",
224
+ "EEF2",
225
+ "KRT8",
226
+ "HLA-A",
227
+ "PMEPA1",
228
+ "CALD1",
229
+ "H3F3B",
230
+ "KRT6B",
231
+ "TUBA1B",
232
+ "BGN",
233
+ "FLNA",
234
+ "PFN1",
235
+ "ATP5F1E",
236
+ "EIF1",
237
+ "S100A10"
238
+ ],
239
+ "spot_hit_rate_at_50": 0.78,
240
+ "spot_ap_at_50": 0.7379452182647038
241
+ },
242
+ "GSE202322_GSM6108350": {
243
+ "barcode": "GSE202322_GSM6108350_ACCGACTGAGTCCCAC-1",
244
+ "predicted_top50": [
245
+ "FTH1",
246
+ "MGP",
247
+ "PSAP",
248
+ "S100A6",
249
+ "CD74",
250
+ "CTSB",
251
+ "APOE",
252
+ "CST3",
253
+ "ITM2B",
254
+ "CTSD",
255
+ "VIM",
256
+ "C1QA",
257
+ "LGALS1",
258
+ "IFITM3",
259
+ "CRIP1",
260
+ "PFN1",
261
+ "SERF2",
262
+ "EIF1",
263
+ "CTSS",
264
+ "C1QB",
265
+ "SH3BGRL3",
266
+ "OAZ1",
267
+ "TYROBP",
268
+ "COX4I1",
269
+ "S100A10",
270
+ "LY6E",
271
+ "UBB",
272
+ "C1QC",
273
+ "ARPC1B",
274
+ "FCER1G",
275
+ "H3F3B",
276
+ "CYBA",
277
+ "NME2",
278
+ "H3F3A",
279
+ "CD52",
280
+ "CCL5"
281
+ ],
282
+ "measured_top50": [
283
+ "FTH1",
284
+ "IGKC",
285
+ "IGHG2B",
286
+ "MGP",
287
+ "CD74",
288
+ "FTL1",
289
+ "H2-K1",
290
+ "LY6A",
291
+ "CD52",
292
+ "H2-D1",
293
+ "H2-AA",
294
+ "H2-AB1",
295
+ "AW112010",
296
+ "S100A6",
297
+ "LYZ2",
298
+ "IFI27L2A",
299
+ "PSAP",
300
+ "H2-EB1",
301
+ "IFITM3",
302
+ "CCL5",
303
+ "CST3",
304
+ "TYROBP",
305
+ "ITM2B",
306
+ "SH3BGRL3",
307
+ "VIM",
308
+ "UBB",
309
+ "APOE",
310
+ "CRIP1",
311
+ "NME2",
312
+ "MYL6",
313
+ "CTSS",
314
+ "H3F3B",
315
+ "LY6E",
316
+ "C1QA",
317
+ "LGALS1",
318
+ "SERF2",
319
+ "OAZ1",
320
+ "S100A10",
321
+ "PFN1",
322
+ "EEF2",
323
+ "H3F3A",
324
+ "NACA",
325
+ "C1QB",
326
+ "CYBA",
327
+ "EIF1",
328
+ "CTSB",
329
+ "COX4I1",
330
+ "CTSD",
331
+ "FCER1G",
332
+ "FXYD5"
333
+ ],
334
+ "spot_hit_rate_at_50": 0.68,
335
+ "spot_ap_at_50": 0.6714837840316967
336
+ },
337
+ "GSE254652_GSM8047883": {
338
+ "barcode": "GSE254652_GSM8047883_CTGTTCCAGAAGCTGA-1",
339
+ "predicted_top50": [
340
+ "CD74",
341
+ "IGKC",
342
+ "PSAP",
343
+ "IGHM",
344
+ "CD52",
345
+ "PFN1",
346
+ "FTH1",
347
+ "CYBA",
348
+ "CORO1A",
349
+ "CTSB",
350
+ "LAPTM5",
351
+ "CD79B",
352
+ "ARHGDIB",
353
+ "GNAI2",
354
+ "COTL1",
355
+ "SERF2",
356
+ "ARHGDIA",
357
+ "CD37",
358
+ "CNN2",
359
+ "CSK",
360
+ "MFGE8",
361
+ "ANP32B",
362
+ "POU2AF1",
363
+ "SERBP1",
364
+ "PABPC1",
365
+ "HNRNPA0",
366
+ "NCL",
367
+ "RERE",
368
+ "PPP1CA",
369
+ "HNRNPUL1",
370
+ "ARPC3",
371
+ "SRSF1",
372
+ "HIST1H2BB",
373
+ "PCBP2",
374
+ "HIST1H1E",
375
+ "EIF3F",
376
+ "HIST1H2BJ",
377
+ "TCP1",
378
+ "HIST1H3D",
379
+ "HIST1H4H"
380
+ ],
381
+ "measured_top50": [
382
+ "CD74",
383
+ "IGKC",
384
+ "IGHM",
385
+ "HIST1H1C",
386
+ "HIST1H3C",
387
+ "CORO1A",
388
+ "HIST1H3B",
389
+ "ARHGDIB",
390
+ "HIST2H2BB",
391
+ "H2-AA",
392
+ "PFN1",
393
+ "CD37",
394
+ "HIST1H3D",
395
+ "HIST1H2BJ",
396
+ "HIST1H1E",
397
+ "ARPC3",
398
+ "ATP5E",
399
+ "NAP1L1",
400
+ "H2-AB1",
401
+ "PPP1CA",
402
+ "ANP32B",
403
+ "CD79B",
404
+ "CSK",
405
+ "TCP1",
406
+ "SERF2",
407
+ "FTH1",
408
+ "POU2AF1",
409
+ "RERE",
410
+ "ARHGDIA",
411
+ "PCBP2",
412
+ "HNRNPA0",
413
+ "PSAP",
414
+ "SRSF1",
415
+ "PTPRCAP",
416
+ "CNN2",
417
+ "NCL",
418
+ "H2-DMB2",
419
+ "HIST1H4H",
420
+ "CTSB",
421
+ "COTL1",
422
+ "IGLC1",
423
+ "PABPC1",
424
+ "EIF3F",
425
+ "MZB1",
426
+ "GNAI2",
427
+ "HIST1H2BB",
428
+ "HNRNPUL1",
429
+ "CD52",
430
+ "TXN1",
431
+ "LAPTM5"
432
+ ],
433
+ "spot_hit_rate_at_50": 0.74,
434
+ "spot_ap_at_50": 0.6886899457903327
435
+ },
436
+ "GSE175540_GSM5924038": {
437
+ "barcode": "GSE175540_GSM5924038_TAGGATCTTAACCGCA-1",
438
+ "predicted_top50": [
439
+ "UBC",
440
+ "MT2A",
441
+ "FTL",
442
+ "VIM",
443
+ "IGFBP7",
444
+ "SPP1",
445
+ "FTH1",
446
+ "CD74",
447
+ "TIMP1",
448
+ "BGN",
449
+ "SPARC",
450
+ "IFITM3",
451
+ "EEF2",
452
+ "FN1",
453
+ "S100A6",
454
+ "LGALS1",
455
+ "PFN1",
456
+ "CD63",
457
+ "HSPB1",
458
+ "HTRA1",
459
+ "COX7C",
460
+ "OAZ1",
461
+ "PPDPF",
462
+ "APP",
463
+ "COL3A1",
464
+ "COL1A1",
465
+ "C3",
466
+ "MT1E",
467
+ "CD24",
468
+ "PABPC1",
469
+ "COL1A2",
470
+ "EEF1G",
471
+ "MT1X",
472
+ "VEGFA",
473
+ "CLIC4",
474
+ "RBM3",
475
+ "UQCRB",
476
+ "CCDC91",
477
+ "EIF4B",
478
+ "TGFBI",
479
+ "S100A10",
480
+ "CP",
481
+ "CHCHD2",
482
+ "C1QL1",
483
+ "BSG",
484
+ "NDRG1",
485
+ "ANGPTL4",
486
+ "PLOD2",
487
+ "VDAC1",
488
+ "TM4SF18"
489
+ ],
490
+ "measured_top50": [
491
+ "UBC",
492
+ "MT2A",
493
+ "PABPC1",
494
+ "FTL",
495
+ "VIM",
496
+ "SPARC",
497
+ "MT1E",
498
+ "SPP1",
499
+ "FTH1",
500
+ "COL1A1",
501
+ "FN1",
502
+ "IGFBP7",
503
+ "EEF2",
504
+ "HSPB1",
505
+ "S100A10",
506
+ "CCDC91",
507
+ "COL1A2",
508
+ "COL3A1",
509
+ "CD63",
510
+ "HTRA1",
511
+ "TIMP1",
512
+ "ANGPTL4",
513
+ "TGFBI",
514
+ "CHCHD2",
515
+ "VDAC1",
516
+ "BSG",
517
+ "IFITM3",
518
+ "S100A6",
519
+ "TM4SF18",
520
+ "C3",
521
+ "OAZ1",
522
+ "APP",
523
+ "PPDPF",
524
+ "UQCRB",
525
+ "HINT1",
526
+ "BGN",
527
+ "RBM3",
528
+ "C1QL1",
529
+ "CD24",
530
+ "CD74",
531
+ "PLOD2",
532
+ "VEGFA",
533
+ "CLIC4",
534
+ "DDIT4",
535
+ "EEF1G",
536
+ "PSAP",
537
+ "CALR",
538
+ "PFN1",
539
+ "EIF4B",
540
+ "ITM2B"
541
+ ],
542
+ "spot_hit_rate_at_50": 0.9,
543
+ "spot_ap_at_50": 0.852577989722228
544
+ }
545
+ },
546
+ "source": "frozen measured-ST and HistAgent expression artifacts; fixed illustrative high-concordance genes; displayed PCC is Pearson correlation; examples are not the cohort metric"
547
+ }