chumphati commited on
Commit
2e62e93
·
verified ·
1 Parent(s): 2de2e68

Add files using upload-large-folder tool

Browse files
.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
+ manual_dics/global_all_column_remaps_WITH_ONTOLOGY_MAPPING_VALUE_ONLY.tsv filter=lfs diff=lfs merge=lfs -text
.gitignore ADDED
@@ -0,0 +1,218 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[codz]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py.cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ # Pipfile.lock
96
+
97
+ # UV
98
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # uv.lock
102
+
103
+ # poetry
104
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
106
+ # commonly ignored for libraries.
107
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108
+ # poetry.lock
109
+ # poetry.toml
110
+
111
+ # pdm
112
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
113
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
114
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
115
+ # pdm.lock
116
+ # pdm.toml
117
+ .pdm-python
118
+ .pdm-build/
119
+
120
+ # pixi
121
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
122
+ # pixi.lock
123
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
124
+ # in the .venv directory. It is recommended not to include this directory in version control.
125
+ .pixi
126
+
127
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
128
+ __pypackages__/
129
+
130
+ # Celery stuff
131
+ celerybeat-schedule
132
+ celerybeat.pid
133
+
134
+ # Redis
135
+ *.rdb
136
+ *.aof
137
+ *.pid
138
+
139
+ # RabbitMQ
140
+ mnesia/
141
+ rabbitmq/
142
+ rabbitmq-data/
143
+
144
+ # ActiveMQ
145
+ activemq-data/
146
+
147
+ # SageMath parsed files
148
+ *.sage.py
149
+
150
+ # Environments
151
+ .env
152
+ .envrc
153
+ .venv
154
+ env/
155
+ venv/
156
+ ENV/
157
+ env.bak/
158
+ venv.bak/
159
+
160
+ # Spyder project settings
161
+ .spyderproject
162
+ .spyproject
163
+
164
+ # Rope project settings
165
+ .ropeproject
166
+
167
+ # mkdocs documentation
168
+ /site
169
+
170
+ # mypy
171
+ .mypy_cache/
172
+ .dmypy.json
173
+ dmypy.json
174
+
175
+ # Pyre type checker
176
+ .pyre/
177
+
178
+ # pytype static type analyzer
179
+ .pytype/
180
+
181
+ # Cython debug symbols
182
+ cython_debug/
183
+
184
+ # PyCharm
185
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
186
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
187
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
188
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
189
+ # .idea/
190
+
191
+ # Abstra
192
+ # Abstra is an AI-powered process automation framework.
193
+ # Ignore directories containing user credentials, local state, and settings.
194
+ # Learn more at https://abstra.io/docs
195
+ .abstra/
196
+
197
+ # Visual Studio Code
198
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
199
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
200
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
201
+ # you could uncomment the following to ignore the entire vscode folder
202
+ # .vscode/
203
+ # Temporary file for partial code execution
204
+ tempCodeRunnerFile.py
205
+
206
+ # Ruff stuff:
207
+ .ruff_cache/
208
+
209
+ # PyPI configuration file
210
+ .pypirc
211
+
212
+ # Marimo
213
+ marimo/_static/
214
+ marimo/_lsp/
215
+ __marimo__/
216
+
217
+ # Streamlit
218
+ .streamlit/secrets.toml
800k_completed_metadata.csv.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a57c080d25c51bfec094263d1d52a53c00ccf66e6a5b795c0ff356c184aa3809
3
+ size 14713461
800k_rnaseq_metappuccino_labels.db.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6aa48ccdd3d378467cf37073a85cbdfb431d307a43d784ffeb0fce092eae605d
3
+ size 1895052372
LICENSE ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
README.md CHANGED
@@ -1,3 +1,9 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
1
+ # 1M RNAseq SRA samples annotations
2
+
3
+ - 800k_completed_metadata.csv: main metadata table for approximately 800k annotated RNA-seq/SRA samples.
4
+ - 800k_rnaseq_metappuccino_labels.db: SQLite database containing Metappuccino labels and associated structured metadata.
5
+ - manual_dics/: folder containing manual normalization and cross-column remapping dictionaries.
6
+ - FINAL_pass_unique_biopsy_site_values_mapped_to_uberon_with_cosine.tsv: maps raw biopsy_site values to normalized UBERON anatomical terms.
7
+ - FINAL_pass_unique_organ_values_mapped_to_uberon_with_cosine.tsv: maps raw organ values to normalized UBERON anatomical terms.
8
+ - FINAL_pass_unique_disease_values_mapped_to_dot_with_cosine.tsv: maps raw disease values to normalized DOT/DOID disease terms.
9
+ - global_all_column_remaps_WITH_ONTOLOGY_MAPPING_VALUE_ONLY.tsv: defines cross-column remapping rules for values found in the wrong metadata field.
manual_dics/FINAL_pass_unique_biopsy_site_values_mapped_to_uberon_with_cosine.tsv ADDED
@@ -0,0 +1,381 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ value uberon_name cosine_similarity
2
+ Abdomen, skin skin of abdomen 0.89397323
3
+ adder 0.1896298
4
+ adnexa uterine adnexa 0.72784257
5
+ air 0.17313093
6
+ antenna antenna 0.99999994
7
+ anterior cruciate ligament anterior cruciate ligament 0.99999994
8
+ anterior cul de sac vesico-uterine pouch 0.17461866
9
+ anterior tibialis tibialis anterior muscle 0.8526104
10
+ aqueous humor aqueous humor 1.0
11
+ Arm, skin skin of upper arm 0.78468335
12
+ Arm, skin, dermis dermis 0.68117976
13
+ articular capsule articular capsule 1.0000002
14
+ articular cartilage articular cartilage 1.0000001
15
+ aryepiglottis aryepiglottic fold 0.874354
16
+ ascites fluid ascitic fluid 0.83092123
17
+ ascitic effusion ascitic fluid 0.8984853
18
+ auricle auricle 1.0
19
+ axilla axilla 1.0000001
20
+ axillary axilla 0.8816522
21
+ axillary LN axillary lymph node 0.8165453
22
+ axillary node axillary lymph node 0.9555891
23
+ Back, skin skin of back 0.914754
24
+ Back, skin, epidermis epidermis 0.7666265
25
+ Barrett's Oesophagus segment esophagus 0.5807909
26
+ basal ganglion basal ganglion 1.0000001
27
+ bile bile 1.0
28
+ Bile duct, common hepatic duct common hepatic duct 0.8916615
29
+ biliary organ biliary tract 0.8826401
30
+ blood, peripheral vein peripheral blood 0.79244626
31
+ Bone marrow, stroma bone marrow 0.80276763
32
+ Bone, cranium, clivus clivus 0.6284603
33
+ Bone, distal femur femur 0.7665387
34
+ Bone, femur femur 0.861582
35
+ Bone, fibula fibula 0.8154766
36
+ Bone, humerus humerus 0.8096921
37
+ Bone, jaw jaw 0.7067802
38
+ Bone, jaw, maxilla maxilla 0.7759691
39
+ Bone, left femur femur 0.7212278
40
+ Bone, left ilium ilium 0.6823755
41
+ Bone, left scapula scapula 0.6399012
42
+ Bone, leg leg bone 0.9146567
43
+ Bone, pelvis, acetabulum acetabulum 0.73130864
44
+ Bone, rib rib 0.7425922
45
+ Bone, right distal femur femur 0.75684226
46
+ Bone, right femur femur 0.7717785
47
+ Bone, right humerus humerus 0.74555564
48
+ Bone, sacrum sacrum 0.74996936
49
+ Bone, spine vertebral column 0.48357922
50
+ Bone, tibia tibia 0.85344094
51
+ Bone, vertebra vertebra 0.7793418
52
+ Brachialis muscle brachialis muscle 1.0000002
53
+ brachiocephalic trunk brachiocephalic artery 0.90650135
54
+ brain stem brainstem 0.6405661
55
+ Brain, falx cerebri falx cerebri 0.90487856
56
+ Brain, hippocampus hippocampus 0.9285996
57
+ Brain, hypothalamus hypothalamus 0.89444923
58
+ Brain, left frontal lobe frontal lobe 0.74508595
59
+ Brain, left fronto-parietal lobe frontoparietal cortex 0.6444911
60
+ Brain, left occipital lobe occipital lobe 0.8262837
61
+ Brain, left parietal lobe parietal lobe 0.80000925
62
+ Brain, left temporal lobe temporal lobe 0.77084875
63
+ Brain, meningeal dura mater dura mater 0.74843824
64
+ Brain, meninges meninx 0.43137348
65
+ Brain, optic canal optic canal 0.8518318
66
+ Brain, parietal lobe parietal lobe 0.8786379
67
+ Brain, posterior fossa posterior cranial fossa 0.8612244
68
+ Brain, right frontal cortex frontal cortex 0.783167
69
+ Brain, right frontal lobe frontal lobe 0.7773529
70
+ Brain, right frontal parieto-occipital cortex parieto-occipital cortex 0.84914786
71
+ Brain, right fronto-parietal lobe frontoparietal cortex 0.6925377
72
+ Brain, right fronto-temporal lobe frontotemporal cortex 0.7024604
73
+ Brain, right lateral ventricle lateral ventricle 0.752661
74
+ Brain, right occipital lobe occipital lobe 0.82977754
75
+ Brain, right parietal lobe parietal lobe 0.7908889
76
+ Brain, right parieto-occipital lobe parieto-occipital cortex 0.8406732
77
+ Brain, right temporal cortex temporal cortex 0.76708686
78
+ Brain, right temporal lobe temporal lobe 0.7601615
79
+ Brain, right temporo-occipital lobe temporo-occipital cortex 0.80114055
80
+ Brain, right temporo-parietal junction temporoparietal junction 0.72938854
81
+ Brain, temporal lobe temporal lobe 0.88942236
82
+ Brain, temporal lobe, blood microvessel brain blood vessel 0.7201049
83
+ Brain, temporo-occipital lobe temporo-occipital cortex 0.88114786
84
+ Brainstem, pons pons 0.65734106
85
+ Breast, epithelium mammary gland epithelium 0.6935687
86
+ Breast, stroma mammary gland stroma 0.70577186
87
+ Buttock, skin skin of buttock 0.9381326
88
+ caecum cecum 0.8849787
89
+ calcus 0.18097189
90
+ Caudal fin caudal fin 1.0000001
91
+ caudate nucleus caudate nucleus 1.0000001
92
+ celiac axis celiac artery 0.82892704
93
+ Celiac axis lymph node celiac lymph node 0.9614239
94
+ cerebral organ brain 0.59656405
95
+ cerebral spinal fluid cerebrospinal fluid 0.7915826
96
+ cervical LN cervical lymph node 0.74610424
97
+ Cervical, LN cervical lymph node 0.73898625
98
+ Chest, skin skin of chest 0.8913643
99
+ clavicle clavicle 1.0000001
100
+ coecum cecum 0.83150685
101
+ Colon, ascending ascending colon 0.93160474
102
+ Colon, mucosa colonic mucosa 0.9033359
103
+ Colon, sigmoid sigmoid colon 0.935086
104
+ Colon, transverse transverse colon 0.9332312
105
+ cucumber 0.08749334
106
+ cul de sac rectouterine pouch 0.043430615
107
+ Ear, inner ear, cochlea cochlea 0.81573737
108
+ Ear, skin skin of ear 0.90114963
109
+ EBV B-CELLS 0.09328094
110
+ effusion 0.17127106
111
+ elbow elbow 1.0
112
+ Embryonic heart, cardiac muscle heart 0.5408638
113
+ Embryonic heart, ventricular epicardium epicardium 0.728783
114
+ Embryonic limb, cartilage cartilage tissue 0.70816535
115
+ Embryonic liver liver 0.5487298
116
+ Endometrium, epithelium endometrium 0.9147095
117
+ Epigastrium epigastric region 0.7663076
118
+ Esophagus, distal lower esophagus 0.8000455
119
+ exfolitated human epithelial cells from stool 0.14268358
120
+ eye lid eyelid 0.852324
121
+ Eye socket orbit 0.4941814
122
+ Eye, bulbar conjunctiva bulbar conjunctiva 0.9292534
123
+ Eye, cornea cornea 0.87704486
124
+ Eye, cornea, epithelium corneal epithelium 0.8818718
125
+ Eye, globe eyeball 0.80746317
126
+ Eye, ocular lens lens of camera-type eye 0.6427158
127
+ Eye, ocular lens, epithelium lens epithelium 0.8212474
128
+ Eye, retina retina 0.8427897
129
+ Eye, retina, retinal pigment epithelium retinal pigment epithelium 0.9038105
130
+ Eye, uvea uvea 0.86343116
131
+ Face, skin skin of face 0.9061997
132
+ Face, skin, sebaceous gland sebaceous gland 0.8298489
133
+ Fallopian tube, ampulla ampulla of uterine tube 0.7529362
134
+ Fallopian tube, subserosa uterine tube 0.4443578
135
+ fat pad adipose tissue 0.6678662
136
+ femur left femur 0.7816587
137
+ Fetal bone, limb limb bone 0.79111135
138
+ Fetal brain, cerebral cortex cerebral cortex 0.6937956
139
+ Fetal brain, choroid plexus choroid plexus 0.7912245
140
+ Fetal brain, forebrain forebrain 0.7793399
141
+ Fetal brain, hindbrain hindbrain 0.7726132
142
+ Fetal brain, ventral mesencephalon ventral mesencephalon 0.8291587
143
+ Fetal esophagus esophagus 0.72665066
144
+ Fetal intestine intestine 0.75718427
145
+ Fetal oral cavity, palate palate 0.7063023
146
+ Fetal pancreas, islets of Langerhans islet of Langerhans 0.7844769
147
+ Fetal stomach, epithelium stomach epithelium 0.77672493
148
+ Fetal testis testis 0.77123547
149
+ Fetal urinary bladder urinary bladder 0.6949231
150
+ fimbria fimbria of uterine tube 0.6540993
151
+ Fin fin 1.0
152
+ floor of mouth floor of mouth 1.0000001
153
+ forearm forearm 1.0000002
154
+ Forearm, skin skin of forearm 0.9272198
155
+ forehead forehead 1.0000002
156
+ forelimb stylopod forelimb stylopod 1.0
157
+ Foreskin, skin skin of prepuce of penis 0.41732663
158
+ Foreskin, skin, dermis dermis 0.6626989
159
+ Foreskin, skin, dermis, microvascular endothelium microvascular endothelium 0.7240523
160
+ Foreskin, skin, epidermis epidermis 0.67021227
161
+ frontal bone frontal bone 1.0000001
162
+ GA 0.2630852
163
+ ganglion ganglion 1.0
164
+ gastrocnemius muscle gastrocnemius muscle 1.0
165
+ Gastrula gastrula 1.0000001
166
+ GB 0.2332956
167
+ Gill gill 1.0
168
+ Groin groin 1.0000001
169
+ Groin, skin skin of groin 0.9380174
170
+ hamstring hamstring muscle 0.93408644
171
+ Hand, skin skin of hand 0.9206213
172
+ Head kidney head kidney 1.0000001
173
+ heel heel 1.0
174
+ hind limb hindlimb 0.8985489
175
+ hindlimb hindlimb 1.0
176
+ Hypodermis hypodermis 1.0
177
+ ileo-inguinal node inguinal lymph node 0.88150233
178
+ iliac bone ilium 0.74951595
179
+ Iliac lymph node iliac lymph node 1.0
180
+ iliac vein iliac vein 1.0000002
181
+ ilium right ilium 0.8533598
182
+ inferior turbinate inferior nasal concha 0.70622706
183
+ infrarenal lymph node retroperitoneal lymph node 0.7761977
184
+ inguinal gland inguinal lymph node 0.7690822
185
+ inguinal LN inguinal lymph node 0.79290867
186
+ internal capsule internal capsule of telencephalon 0.7024829
187
+ Intestine, ileocecal valve ileocecal valve 0.8637368
188
+ jawbone jaw 0.8316852
189
+ jejunum_1 jejunum 0.8589622
190
+ jejunum_2 jejunum 0.81619656
191
+ jejunum_3 jejunum 0.6951437
192
+ jejunum_4 jejunum 0.74616694
193
+ Kidney, epithelium kidney epithelium 0.92655635
194
+ Kidney, glomerulus glomerulus 0.89457816
195
+ Kidney, proximal tubule proximal tubule 0.9256049
196
+ Kidney, renal pelvis renal pelvis 0.91787636
197
+ LA 0.26169294
198
+ labial salivary gland labial gland 0.8418175
199
+ Larynx, supraglottis supraglottis 0.860058
200
+ lateral septum lateral septal nucleus 0.8155811
201
+ LB 0.11535665
202
+ leaf 0.20418368
203
+ Left axillary lymph node axillary lymph node 0.919783
204
+ Left calf, skin skin of calf 0.8294084
205
+ left common carotid artery common carotid artery 0.86581194
206
+ Left inguinal lymph node inguinal lymph node 0.9061039
207
+ Left leg, skeletal muscle skeletal muscle tissue 0.60216045
208
+ Left shin, skin skin of lower leg 0.43416804
209
+ Left supraclavicular lymph node supraclavicular lymph node 0.9123231
210
+ Leg, skin skin of lower leg 0.79844356
211
+ Liver, intrahepatic bile duct intrahepatic bile duct 0.9302899
212
+ lower back lower back 1.0
213
+ lower leg lower leg 1.0000001
214
+ Lung, bronchus, epithelium bronchus epithelium 0.86419874
215
+ Lung, endothelium lung endothelium 0.93003494
216
+ Lung, left upper lobe upper lobe of left lung 0.93947995
217
+ Lung, pleura pleura 0.8769353
218
+ Lung, right lower lobe lower lobe of right lung 0.91794634
219
+ Lung, right upper lobe upper lobe of right lung 0.94559526
220
+ lung_small_cell lung 0.55603415
221
+ lung_squamous lung 0.5833643
222
+ mammary fat pad mammary fat pad 1.0000001
223
+ Mammary placode mammary placode 1.0000001
224
+ membrane 0.3146323
225
+ middle turbinate middle nasal concha 0.72329575
226
+ Midgut midgut 1.0000001
227
+ Morula morula 1.0000001
228
+ Muscle, pectoralis major pectoralis major muscle 0.9654458
229
+ Muscle, triceps brachii triceps brachii muscle 0.9735701
230
+ Muscle, vastus lateralis vastus lateralis muscle 0.97360116
231
+ nasal passage nasal cavity 0.81223
232
+ nasal passages nasal cavity 0.85694456
233
+ nasal tissue nasal cavity 0.82623994
234
+ nasal turbinates nasal concha 0.71538514
235
+ Neck, hypodermis hypodermis 0.83015
236
+ Nose, nasal cavity nasal cavity 0.91287565
237
+ Nose, nasal cavity, epithelium nasal cavity epithelium 0.89541566
238
+ Nose, nasal cavity, nasal turbinate nasal concha 0.6913282
239
+ Nose, skin skin of nose 0.90369296
240
+ nucleus 0.273911
241
+ Obturator lymph node obturator lymph node 1.0
242
+ occipital bone occipital bone 0.99999994
243
+ Oral cavity, alveolar ridge alveolar ridge 0.8804753
244
+ Oral cavity, buccal mucosa buccal mucosa 0.88480693
245
+ Oral cavity, floor of mouth floor of mouth 0.90125924
246
+ Oral cavity, gingiva gingiva 0.8511558
247
+ Oral cavity, gingiva, epithelium gingival epithelium 0.8648495
248
+ Oral cavity, retromolar trigone retromolar trigone 0.80234027
249
+ Oral cavity, soft palate, hypodermis soft palate 0.62246203
250
+ Oral cavity, tongue tongue 0.7817873
251
+ Oral cavity, tongue, anterior part anterior part of tongue 0.8694002
252
+ Oral cavity, tongue, lateral border tongue 0.5628434
253
+ Oral cavity, tonsil palatine tonsil 0.72200775
254
+ Oral cavity, tonsil, tonsillar fossa tonsillar fossa 0.8587235
255
+ Oral cavity, tonsil, tonsillar pillar palatine tonsil 0.6889178
256
+ Orbital region orbital region 1.0
257
+ Ovary, ovarian follicle, granulosa cell layer granulosa cell layer 0.74124295
258
+ Ovary, surface epithelium ovarian surface epithelium 0.9230838
259
+ palmer fascia palmar fascia 0.94681156
260
+ Pancreas, ampulla of Vater hepatopancreatic ampulla 0.70993006
261
+ Pancreas, islets of Langerhans islet of Langerhans 0.8610744
262
+ Paragastric lymph node gastric lymph node 0.8029991
263
+ parapharyngeal gland 0.13144527
264
+ paraspinal paraspinal region 0.9289522
265
+ parasternum sternum 0.27208057
266
+ parietal bone parietal bone 1.0000001
267
+ parietal occipital parieto-occipital cortex 0.90160227
268
+ parieto occipital parieto-occipital cortex 0.9185189
269
+ Parotid lymph node parotid lymph node 0.99999994
270
+ patella patella 1.0
271
+ patellar tendon patellar ligament 0.8877057
272
+ pectoralis pectoralis major muscle 0.82914317
273
+ pectoralis major pectoralis major muscle 0.92543906
274
+ pelvic bone pelvic bone 1.0
275
+ Pelvic wall pelvic wall 0.99999994
276
+ Pelvis, innominate bone hip bone 0.49968904
277
+ Pelvis, muscle pelvic muscle 0.86806846
278
+ pericardial adipose tissue pericardial adipose tissue 1.0000001
279
+ periesophagus esophagus 0.6129679
280
+ Perineus, muscle perineal muscle 0.90522903
281
+ Peripheral nervous system, cranial nerve, hypoglossal nerve hypoglossal nerve 0.81103975
282
+ Peripheral nervous system, lower leg nerve peripheral nerve 0.73821306
283
+ Peripheral nervous system, nerve peripheral nerve 0.84410965
284
+ Peripheral nervous system, sural nerve sural nerve 0.8586925
285
+ peritoneal cavity peritoneal cavity 1.0
286
+ peritoneal nodule peritoneum 0.735579
287
+ Pharynx, hypopharynx hypopharynx 0.89016247
288
+ Pharynx, nasopharynx nasopharynx 0.83675003
289
+ Pharynx, nasopharynx, epithelium nasopharyngeal epithelium 0.846358
290
+ Pharynx, oropharynx oropharynx 0.90541357
291
+ Placenta, arterial endothelium placenta 0.6803268
292
+ portal vein portal vein 1.0000001
293
+ posterior vena cava inferior vena cava 0.68027085
294
+ prepuce prepuce of penis 0.70985246
295
+ Pretracheal lymph node pretracheal lymph node 1.0
296
+ Prostate, epithelium prostate gland epithelium 0.86636895
297
+ Prostate, stroma prostate gland stroma 0.8781293
298
+ psoas psoas muscle 0.8236657
299
+ Pyloric lymph node pyloric lymph node 0.99999994
300
+ quadricep quadriceps femoris muscle 0.82411134
301
+ radial 0.25531158
302
+ radius radius bone 0.69847167
303
+ rectus abdominis rectus abdominis muscle 0.96967995
304
+ rectus femoris rectus femoris muscle 0.95899
305
+ respiratory epithelium respiratory epithelium 1.0
306
+ retromolar trigone retromolar trigone 1.0000001
307
+ Retroperitoneal lymph node retroperitoneal lymph node 1.0000002
308
+ Retroperitoneal space retroperitoneal space 1.0
309
+ retropitoneum retroperitoneum 0.5869338
310
+ retropperitoneum retroperitoneum 0.85673785
311
+ Rib, costal cartilage costal cartilage 0.8905544
312
+ Right anterior leg, skin skin of lower leg 0.57244754
313
+ Right axillary lymph node axillary lymph node 0.8977654
314
+ Right buttock, hypodermis hypodermis 0.68216354
315
+ Right ear, skin skin of ear 0.66422313
316
+ Right pararenal lymph node pararenal lymph node 0.9169978
317
+ Right temple, skin skin of temple 0.7664919
318
+ Right thigh, skin skin of thigh 0.8242299
319
+ root 0.25094566
320
+ Salivary gland, sublingual gland sublingual gland 0.8653391
321
+ Salivary gland, submandibular gland submandibular gland 0.9086324
322
+ saphenous vein saphenous vein 1.0000001
323
+ Seedling 0.13669565
324
+ Semitendinosus tendon semitendinosus tendon 1.0
325
+ shoulder joint shoulder joint 0.9999999
326
+ Shoulder, skin skin of shoulder 0.91628134
327
+ shoulder/back skin of back 0.51655746
328
+ sinus paranasal sinus 0.68257076
329
+ skin, unspecified skin 0.46389174
330
+ skin, upper arm skin of upper arm 0.96127737
331
+ small bowel small intestine 0.9144154
332
+ Small intestine, duodenum duodenum 0.7765962
333
+ Small intestine, jejunum jejunum 0.87848866
334
+ Snout snout 1.0
335
+ spermatic cord spermatic cord 1.0000001
336
+ Stem 0.20665768
337
+ Stomach, fundus fundus of stomach 0.89701843
338
+ stomach_1 stomach 0.7575322
339
+ stomach_2 stomach 0.6916539
340
+ stomach_3 stomach 0.64318377
341
+ stomach_4 stomach 0.61599606
342
+ stomach_5 stomach 0.60239375
343
+ subclavicular subclavian region 0.8458588
344
+ superior vena cava superior vena cava 0.9999999
345
+ Supraclavicular lymph node supraclavicular lymph node 1.0
346
+ supraglottis supraglottis 1.0000001
347
+ synovial membrane synovial membrane 1.0000002
348
+ tail tail 1.0000001
349
+ talus talus 1.0
350
+ tear lacrimal fluid 0.26168734
351
+ Temple, skin skin of temple 0.9438474
352
+ temporoparietal temporoparietal junction 0.9188652
353
+ teres major teres major muscle 0.8449147
354
+ Thigh, quadriceps skeletal muscle quadriceps femoris muscle 0.8646847
355
+ Thigh, skeletal muscle skeletal muscle tissue 0.68212354
356
+ Thigh, skin skin of thigh 0.92669845
357
+ Thoracic cavity thoracic cavity 1.0
358
+ Thoracic lymph duct thoracic duct 0.8072634
359
+ thoracic spinal ligament spinal ligament 0.82314414
360
+ tibialis anterior muscle tibialis anterior muscle 1.0
361
+ Tooth, dental pulp dental pulp 0.88605726
362
+ tricep triceps brachii muscle 0.7229292
363
+ Trophoblast, cytotrophoblast cytotrophoblast 0.9131254
364
+ Trunk, skin skin of trunk 0.90851593
365
+ Upper arm upper arm 1.0000001
366
+ upper limb upper limb 1.0000001
367
+ urethra urethra 1.0000002
368
+ Urinary bladder, bladder dome dome of urinary bladder 0.927925
369
+ Urinary bladder, urothelium urothelium of urinary bladder 0.94977003
370
+ Uterus, cervix, ectocervical epithelium ectocervical epithelium 0.8556006
371
+ Uterus, cervix, endocervical epithelium endocervical epithelium 0.8389935
372
+ Uterus, myometrium myometrium 0.87591445
373
+ Vagina, mucosa vaginal mucosa 0.92024803
374
+ vascular tissue 0.24078839
375
+ ventricles 0.24028896
376
+ vertebra vertebra 1.0000001
377
+ viscera 0.20023066
378
+ vitelline artery vitelline artery 1.0
379
+ vitreous vitreous humor 0.89124155
380
+ wall 0.2526618
381
+ Whole embryo embryo 0.832602
manual_dics/FINAL_pass_unique_disease_values_mapped_to_dot_with_cosine.tsv ADDED
The diff for this file is too large to render. See raw diff
 
manual_dics/FINAL_pass_unique_organ_values_mapped_to_uberon_with_cosine.tsv ADDED
The diff for this file is too large to render. See raw diff
 
manual_dics/global_all_column_remaps_WITH_ONTOLOGY_MAPPING_VALUE_ONLY.tsv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c73dcd0b4430125de443ace13acf8f73cf9e51d3b832911da39ad4fa3b2f82e7
3
+ size 21122557