hc99 commited on
Commit
9a8ce03
·
verified ·
1 Parent(s): 5eac392

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. testbed/biopragmatics__bioregistry/.github/workflows/docker.yml +28 -0
  2. testbed/biopragmatics__bioregistry/.readthedocs.yml +25 -0
  3. testbed/biopragmatics__bioregistry/CITATION.cff +83 -0
  4. testbed/biopragmatics__bioregistry/Dockerfile +11 -0
  5. testbed/biopragmatics__bioregistry/LICENSE +21 -0
  6. testbed/biopragmatics__bioregistry/README.md +489 -0
  7. testbed/biopragmatics__bioregistry/docs/CODE_OF_CONDUCT.md +138 -0
  8. testbed/biopragmatics__bioregistry/docs/CONTRIBUTING.md +418 -0
  9. testbed/biopragmatics__bioregistry/docs/GOVERNANCE.md +171 -0
  10. testbed/biopragmatics__bioregistry/docs/README.md +20 -0
  11. testbed/biopragmatics__bioregistry/docs/_config.yml +13 -0
  12. testbed/biopragmatics__bioregistry/docs/_data/warnings.yml +539 -0
  13. testbed/biopragmatics__bioregistry/docs/bulk_prefix_request_template.tsv +10 -0
  14. testbed/biopragmatics__bioregistry/docs/curation-blacklisting-external.md +32 -0
  15. testbed/biopragmatics__bioregistry/docs/curation-import-external.md +47 -0
  16. testbed/biopragmatics__bioregistry/docs/curation.md +247 -0
  17. testbed/biopragmatics__bioregistry/docs/datamodel.md +244 -0
  18. testbed/biopragmatics__bioregistry/docs/glossary.md +135 -0
  19. testbed/biopragmatics__bioregistry/docs/guides/README.md +33 -0
  20. testbed/biopragmatics__bioregistry/docs/guides/publications.md +76 -0
  21. testbed/biopragmatics__bioregistry/docs/health.md +137 -0
  22. testbed/biopragmatics__bioregistry/docs/img/bioregistry_coverage.svg +0 -0
  23. testbed/biopragmatics__bioregistry/docs/img/bioregistry_coverage_bar.svg +0 -0
  24. testbed/biopragmatics__bioregistry/docs/img/bioregistry_coverage_bar_short.svg +0 -0
  25. testbed/biopragmatics__bioregistry/docs/img/providers.svg +1249 -0
  26. testbed/biopragmatics__bioregistry/docs/img/regex_report.svg +1018 -0
  27. testbed/biopragmatics__bioregistry/docs/img/xrefs.svg +1939 -0
  28. testbed/biopragmatics__bioregistry/docs/index.md +11 -0
  29. testbed/biopragmatics__bioregistry/docs/source/alignment.rst +3 -0
  30. testbed/biopragmatics__bioregistry/docs/source/cli.rst +8 -0
  31. testbed/biopragmatics__bioregistry/docs/source/conf.py +256 -0
  32. testbed/biopragmatics__bioregistry/docs/source/curation.rst +7 -0
  33. testbed/biopragmatics__bioregistry/docs/source/deployment.rst +198 -0
  34. testbed/biopragmatics__bioregistry/docs/source/index.rst +66 -0
  35. testbed/biopragmatics__bioregistry/docs/source/pandas.rst +4 -0
  36. testbed/biopragmatics__bioregistry/docs/source/reference.rst +9 -0
  37. testbed/biopragmatics__bioregistry/docs/users.md +64 -0
  38. testbed/biopragmatics__bioregistry/docs/warnings.md +115 -0
  39. testbed/biopragmatics__bioregistry/exports/alignment/aberowl.tsv +0 -0
  40. testbed/biopragmatics__bioregistry/exports/alignment/agroportal.tsv +108 -0
  41. testbed/biopragmatics__bioregistry/exports/alignment/bartoc.tsv +0 -0
  42. testbed/biopragmatics__bioregistry/exports/alignment/biocontext.tsv +73 -0
  43. testbed/biopragmatics__bioregistry/exports/alignment/biolink.tsv +18 -0
  44. testbed/biopragmatics__bioregistry/exports/alignment/bioportal.tsv +0 -0
  45. testbed/biopragmatics__bioregistry/exports/alignment/cellosaurus.tsv +30 -0
  46. testbed/biopragmatics__bioregistry/exports/alignment/cheminf.tsv +5 -0
  47. testbed/biopragmatics__bioregistry/exports/alignment/cropoct.tsv +5 -0
  48. testbed/biopragmatics__bioregistry/exports/alignment/ecoportal.tsv +28 -0
  49. testbed/biopragmatics__bioregistry/exports/alignment/edam.tsv +169 -0
  50. testbed/biopragmatics__bioregistry/exports/alignment/fairsharing.tsv +0 -0
testbed/biopragmatics__bioregistry/.github/workflows/docker.yml ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Build and Push to Dockerhub
2
+
3
+ on:
4
+ workflow_dispatch:
5
+
6
+ jobs:
7
+ docker:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Set up QEMU
11
+ uses: docker/setup-qemu-action@v1
12
+ - name: Set up Docker Buildx
13
+ uses: docker/setup-buildx-action@v1
14
+ - name: Login to DockerHub
15
+ uses: docker/login-action@v1
16
+ with:
17
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
18
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
19
+ - name: Build and push
20
+ id: docker_build
21
+ uses: docker/build-push-action@v2
22
+ with:
23
+ push: true
24
+ # See: https://github.com/docker/build-push-action/blob/master/docs/advanced/multi-platform.md
25
+ platforms: linux/amd64,linux/arm64
26
+ tags: biopragmatics/bioregistry:latest
27
+ - name: Image digest
28
+ run: echo ${{ steps.docker_build.outputs.digest }}
testbed/biopragmatics__bioregistry/.readthedocs.yml ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # .readthedocs.yaml
2
+ # Read the Docs configuration file
3
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4
+
5
+ version: 2
6
+
7
+ # Set the version of Python and other tools you might need
8
+ build:
9
+ os: ubuntu-22.04
10
+ apt_packages:
11
+ - graphviz
12
+ tools:
13
+ python: "3.12"
14
+
15
+ python:
16
+ install:
17
+ - method: pip
18
+ path: .
19
+ extra_requirements:
20
+ - docs
21
+ - gha
22
+ - align
23
+ - export
24
+ - charts
25
+ - web
testbed/biopragmatics__bioregistry/CITATION.cff ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cff-version: 1.2.0
2
+ message: Please cite the Bioregistry manuscript when using this software.
3
+ type: article
4
+ authors:
5
+ - family-names: "Hoyt"
6
+ given-names: "Charles Tapley"
7
+ orcid: "https://orcid.org/0000-0003-4423-4370"
8
+ - family-names: "Balk"
9
+ given-names: "Meghan"
10
+ orcid: "https://orcid.org/0000-0003-2699-3066"
11
+ - family-names: "Callahan"
12
+ given-names: "Tiffany J."
13
+ orcid: "https://orcid.org/0000-0002-8169-9049"
14
+ - family-names: "Domingo-Fernandez"
15
+ given-names: "Daniel"
16
+ orcid: "https://orcid.org/0000-0002-2046-6145"
17
+ - family-names: "Haendel"
18
+ given-names: "Melissa A."
19
+ orcid: "https://orcid.org/0000-0001-9114-8737"
20
+ - family-names: "Hegde"
21
+ given-names: "Harshad B."
22
+ orcid: "https://orcid.org/0000-0002-2411-565X"
23
+ - family-names: "Himmelstein"
24
+ given-names: "Daniel S."
25
+ orcid: "https://orcid.org/0000-0002-3012-7446"
26
+ - family-names: "Karis"
27
+ given-names: "Klas"
28
+ orcid: "https://orcid.org/0000-0003-1699-7776"
29
+ - family-names: "Kunze"
30
+ given-names: "John"
31
+ orcid: "https://orcid.org/0000-0001-7604-8041"
32
+ - family-names: "Lubiana"
33
+ given-names: "Tiago"
34
+ orcid: "https://orcid.org/0000-0003-2473-2313"
35
+ - family-names: "Matentzoglu"
36
+ given-names: "Nicolas"
37
+ orcid: "https://orcid.org/0000-0002-7356-1779"
38
+ - family-names: "McMurry"
39
+ given-names: "Julie"
40
+ orcid: "https://orcid.org/0000-0002-9353-5498"
41
+ - family-names: "Moxon"
42
+ given-names: "Sierra"
43
+ orcid: "https://orcid.org/0000-0002-8719-7760"
44
+ - family-names: "Mungall"
45
+ given-names: "Christopher J."
46
+ orcid: "https://orcid.org/0000-0002-6601-2165"
47
+ - family-names: "Rutz"
48
+ given-names: "Adriano"
49
+ orcid: "https://orcid.org/0000-0003-0443-9902"
50
+ - family-names: "Unni"
51
+ given-names: "Deepak R."
52
+ orcid: "https://orcid.org/0000-0002-8424-0604"
53
+ - family-names: "Willighagen"
54
+ given-names: "Egon"
55
+ orcid: "https://orcid.org/0000-0001-7542-0286"
56
+ - family-names: "Winston"
57
+ given-names: "Donald"
58
+ orcid: "https://orcid.org/0000-0002-8424-0604"
59
+ - family-names: "Gyori"
60
+ given-names: "Benjamin M."
61
+ orcid: "https://orcid.org/0000-0001-9439-5346"
62
+ doi: 10.1038/s41597-022-01807-3
63
+ identifiers:
64
+ - type: doi
65
+ value: 10.1038/s41597-022-01807-3
66
+ keywords:
67
+ - The Bioregistry
68
+ - biocuration
69
+ - biosemantics
70
+ - bioinformatics
71
+ - clinical informatics
72
+ - systems biology
73
+ - semantics
74
+ - semantic web
75
+ - CURIE
76
+ - URI
77
+ - identifiers
78
+ - chemistry
79
+ - cheminformatics
80
+ - agriculture
81
+ - molecular biology
82
+ title: >-
83
+ Unifying the Identification of Biomedical Entities with the Bioregistry
testbed/biopragmatics__bioregistry/Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Local building/testing instructions:
2
+ # 1. docker build --tag bioregistry:dev .
3
+ # 2. docker run -p 8766:8766 bioregistry:dev
4
+ # 3. Navgiate in the web browser to http://localhost:8766
5
+
6
+ FROM python:3.11-alpine
7
+
8
+ RUN python -m pip install --upgrade pip
9
+ RUN python -m pip install --upgrade wheel
10
+ RUN python -m pip install bioregistry[web]
11
+ ENTRYPOINT python -m bioregistry web --port 8766 --host "0.0.0.0"
testbed/biopragmatics__bioregistry/LICENSE ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2020-2024 Charles Tapley Hoyt
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
testbed/biopragmatics__bioregistry/README.md ADDED
@@ -0,0 +1,489 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p align="center">
2
+ <img src="https://github.com/biopragmatics/bioregistry/raw/main/docs/source/logo.png" height="150">
3
+ </p>
4
+
5
+ <h1 align="center">
6
+ Bioregistry
7
+ </h1>
8
+
9
+ <p align="center">
10
+ <a href="https://github.com/biopragmatics/bioregistry/actions?query=workflow%3ATests">
11
+ <img alt="Tests" src="https://github.com/biopragmatics/bioregistry/workflows/Tests/badge.svg" />
12
+ </a>
13
+ <a href="https://pypi.org/project/bioregistry">
14
+ <img alt="PyPI" src="https://img.shields.io/pypi/v/bioregistry" />
15
+ </a>
16
+ <a href="https://pypi.org/project/bioregistry">
17
+ <img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/bioregistry" />
18
+ </a>
19
+ <a href="https://github.com/biopragmatics/bioregistry/blob/main/LICENSE">
20
+ <img alt="PyPI - License" src="https://img.shields.io/pypi/l/bioregistry" />
21
+ </a>
22
+ <a href='https://bioregistry.readthedocs.io/en/latest/?badge=latest'>
23
+ <img src='https://readthedocs.org/projects/bioregistry/badge/?version=latest' alt='Documentation Status' />
24
+ </a>
25
+ <a href="https://zenodo.org/badge/latestdoi/319481281">
26
+ <img src="https://zenodo.org/badge/319481281.svg" alt="DOI">
27
+ </a>
28
+ <a href="https://github.com/psf/black">
29
+ <img src="https://img.shields.io/badge/code%20style-black-000000.svg" alt="Code style: black">
30
+ </a>
31
+ <a href="https://github.com/biopragmatics/bioregistry/blob/main/.github/CODE_OF_CONDUCT.md">
32
+ <img alt="Contributor Covenant" src="https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg" />
33
+ </a>
34
+ </p>
35
+
36
+ <p align="center">
37
+ A community-driven integrative meta-registry of life science databases, ontologies, and other resources.
38
+ <br />More information <a href="https://bioregistry.io/summary">here</a>.
39
+ </p>
40
+
41
+ The Bioregistry can be accessed, searched, and queried through its associated website at
42
+ https://bioregistry.io.
43
+
44
+ ### 📥 Download
45
+
46
+ The underlying data of the Bioregistry can be downloaded (or edited) directly
47
+ from [here](https://github.com/biopragmatics/bioregistry/blob/main/src/bioregistry/data/).
48
+ Several exports to YAML, TSV, and RDF, including consensus views over the
49
+ registry, are built on a weekly basis and can be downloaded via the
50
+ [`exports/`](https://github.com/biopragmatics/bioregistry/tree/main/exports) directory.
51
+
52
+ The manually curated portions of these data are available under the
53
+ [CC0 1.0 Universal License](https://creativecommons.org/publicdomain/zero/1.0/).
54
+ Aggregated data are redistributed under their original licenses.
55
+
56
+ ## 🙏 Contributing
57
+
58
+ Contributions are both welcomed and encouraged. Contribution guidelines for new
59
+ prefix requests, record edits, record removals, and code updates are available
60
+ in [CONTRIBUTING.md](docs/CONTRIBUTING.md).
61
+
62
+ The most simple contribution is to submit an issue:
63
+
64
+ - Submit a new prefix using the [issue template](https://github.com/biopragmatics/bioregistry/issues/new?assignees=cthoyt&labels=New%2CPrefix&template=new-prefix.yml&title=Add+prefix+%5BX%5D). A new pull request will be generated automatically for you.
65
+ - Update an existing record using one of the [existing issue templates](https://github.com/biopragmatics/bioregistry/issues/new/choose) (e.g., for updating a record's regular expression, merging two prefixes).
66
+ - For any updates that don't have a corresponding template, feel free to start with a [blank issue](https://github.com/biopragmatics/bioregistry/issues/new).
67
+
68
+ If you want to make a direct contribution, feel free to make edits directly to
69
+ the [bioregistry.json](https://github.com/biopragmatics/bioregistry/blob/main/src/bioregistry/data/bioregistry.json)
70
+ file either through the GitHub interface or locally by [forking the repository](https://github.com/biopragmatics/bioregistry/blob/main/docs/CONTRIBUTING.md#code-contribution).
71
+
72
+ If you want to make a contribution but don't know where to start, you can check
73
+ [this list](https://biopragmatics.github.io/bioregistry/curation/) of curation
74
+ To-Do's that's automatically generated weekly, including more detailed
75
+ information on how to contribute.
76
+
77
+ ## ⚖️ Governance
78
+
79
+ The Bioregistry is maintained by a Review Team and Core Development team
80
+ whose memberships and duties are described in the
81
+ [Project Governance](docs/GOVERNANCE.md).
82
+
83
+ ## 🧹 Maintenance
84
+
85
+ ### 🫀 Health Report
86
+
87
+ The Bioregistry runs some automated tests weekly to check that various metadata haven't gone stale. For example,
88
+ it checks that the homepages are still available and that each provider URL is still able to resolve.
89
+
90
+ It has a dedicated [dashboard](https://biopragmatics.github.io/bioregistry/health) that is not part of the main
91
+ Bioregistry site.
92
+
93
+ ### ♻️ Update
94
+
95
+ The database is automatically updated daily thanks to scheduled workflows in GitHub Actions. The workflow's
96
+ configuration can be found [here](https://github.com/biopragmatics/bioregistry/blob/main/.github/workflows/update.yml)
97
+ and the last run can be seen [here](https://github.com/biopragmatics/bioregistry/actions?query=workflow%3A%22Update+Data%22).
98
+ Further, a [changelog](https://github.com/biopragmatics/bioregistry/commits?author=actions-user) can be recapitulated from the
99
+ commits of the GitHub Actions bot.
100
+
101
+ If you want to manually update the database, run the following:
102
+
103
+ ```shell
104
+ $ tox -e update
105
+ ```
106
+
107
+ Make sure that you have valid environment variables or `pystow` configurations
108
+ for `BIOPORTAL_API_KEY`, `ECOPORTAL_API_KEY`, `AGROPORTAL_API_KEY`,
109
+ `FAIRSHARING_LOGIN`, and `FAIRSHARING_PASSWORD`.
110
+
111
+ ## 🚀 Installation
112
+
113
+ The Bioregistry can be installed from [PyPI](https://pypi.org/project/bioregistry/) with:
114
+
115
+ ```shell
116
+ $ pip install bioregistry
117
+ ```
118
+
119
+ It can be installed in development mode for local curation with:
120
+
121
+ ```shell
122
+ $ git clone https://github.com/biopragmatics/bioregistry.git
123
+ $ cd bioregistry
124
+ $ pip install --editable .
125
+ ```
126
+
127
+ Build the docs locally with `tox -e docs` then view by opening
128
+ `docs/build/html/index.html`.
129
+
130
+ ## 💪 Usage
131
+
132
+ ### Normalizing Prefixes
133
+
134
+ The Bioregistry can be used to normalize prefixes across MIRIAM and all the (very plentiful) variants that pop up in
135
+ ontologies in OBO Foundry and the OLS with the `normalize_prefix()` function.
136
+
137
+ ```python
138
+ from bioregistry import normalize_prefix
139
+
140
+ # Doesn't affect canonical prefixes
141
+ assert 'ncbitaxon' == normalize_prefix('ncbitaxon')
142
+
143
+ # This works for uppercased prefixes, like:
144
+ assert 'chebi' == normalize_prefix("CHEBI")
145
+
146
+ # This works for mixed case prefixes like
147
+ assert 'fbbt' == normalize_prefix("FBbt")
148
+
149
+ # This works for synonym prefixes, like:
150
+ assert 'ncbitaxon' == normalize_prefix('taxonomy')
151
+
152
+ # This works for common mistaken prefixes, like:
153
+ assert 'pubchem.compound' == normalize_prefix('pubchem')
154
+
155
+ # This works for prefixes that are often written many ways, like:
156
+ assert 'eccode' == normalize_prefix('ec-code')
157
+ assert 'eccode' == normalize_prefix('EC_CODE')
158
+
159
+ # If a prefix is not registered, it gives back `None`
160
+ assert normalize_prefix('not a real key') is None
161
+ ```
162
+
163
+ ### Parsing CURIEs
164
+
165
+ The Bioregistry supports parsing a CURIE into a pair of normalized prefix
166
+ and identifier using the `parse_curie()` function:
167
+
168
+ ```python
169
+ from bioregistry import parse_curie
170
+
171
+ # Obvious for canonical CURIEs
172
+ assert ('chebi', '1234') == parse_curie('chebi:1234')
173
+
174
+ # Normalize mixed case prefixes
175
+ assert ('fbbt', '00007294') == parse_curie('FBbt:00007294')
176
+
177
+ # Normalize common mistaken prefixes
178
+ assert ('pubchem.compound', '1234') == parse_curie('pubchem:1234')
179
+
180
+ # Remove the redundant prefix and normalize
181
+ assert ('go', '1234') == parse_curie('GO:GO:1234')
182
+ ```
183
+
184
+ This will also apply the same normalization rules for prefixes from the previous
185
+ section on normalizing prefixes for the remaining examples.
186
+
187
+ ### Normalizing CURIEs
188
+
189
+ The Bioregistry supports converting a CURIE to a canonical CURIE by normalizing
190
+ the prefix and removing redundant namespaces embedded in LUIs with the
191
+ `normalize_curie()` function.
192
+
193
+ ```python
194
+ from bioregistry import normalize_curie
195
+
196
+ # Idempotent to canonical CURIEs
197
+ assert 'chebi:1234' == normalize_curie('chebi:1234')
198
+
199
+ # Normalize common mistaken prefixes
200
+ assert 'pubchem.compound:1234' == normalize_curie('pubchem:1234')
201
+
202
+ # Normalize mixed case prefixes
203
+ assert 'fbbt:1234' == normalize_curie('FBbt:1234')
204
+
205
+ # Remove the redundant prefix and normalize
206
+ assert 'go:1234' == normalize_curie('GO:GO:1234')
207
+ ```
208
+
209
+ ### Parsing IRIs
210
+
211
+ The Bioregistry can be used to parse CURIEs from IRIs due to its vast registry of provider URL
212
+ strings and additional programmatic logic implemented with Python. It can parse OBO Library PURLs,
213
+ IRIs from the OLS and identifiers.org, IRIs from the Bioregistry website, and any other IRIs
214
+ from well-formed providers registered in the Bioregistry. The `parse_iri()` function
215
+ gets a pre-parsed CURIE, while the `curie_from_iri()` function makes a canonical CURIE
216
+ from the pre-parsed CURIE.
217
+
218
+ ```python
219
+ from bioregistry import curie_from_iri, parse_iri
220
+
221
+ # First-party IRI
222
+ assert ('chebi', '24867') == parse_iri('https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:24867')
223
+ assert 'chebi:24867' == curie_from_iri('https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:24867')
224
+
225
+ # OBO Library PURL
226
+ assert ('chebi', '24867') == parse_iri('http://purl.obolibrary.org/obo/CHEBI_24867')
227
+ assert 'chebi:24867' == curie_from_iri('http://purl.obolibrary.org/obo/CHEBI_24867')
228
+
229
+ # OLS IRI
230
+ assert ('chebi', '24867') == parse_iri('https://www.ebi.ac.uk/ols/ontologies/chebi/terms?iri=http://purl.obolibrary.org/obo/CHEBI_24867')
231
+ assert 'chebi:24867' == curie_from_iri('https://www.ebi.ac.uk/ols/ontologies/chebi/terms?iri=http://purl.obolibrary.org/obo/CHEBI_24867')
232
+
233
+ # Identifiers.org IRIs (with varying usage of HTTP(s) and colon/slash separator
234
+ assert ('chebi', '24867') == parse_iri('https://identifiers.org/CHEBI:24867')
235
+ assert ('chebi', '24867') == parse_iri('http://identifiers.org/CHEBI:24867')
236
+ assert ('chebi', '24867') == parse_iri('https://identifiers.org/CHEBI/24867')
237
+ assert ('chebi', '24867') == parse_iri('http://identifiers.org/CHEBI/24867')
238
+
239
+ # Bioregistry IRI
240
+ assert ('chebi', '24867') == parse_iri('https://bioregistry.io/chebi:24867')
241
+ ```
242
+
243
+ In general, the Bioregistry knows how to parse both the http and https variants
244
+ of any given URI:
245
+
246
+ ```python
247
+ from bioregistry import parse_iri
248
+
249
+ assert ('neuronames', '268') == parse_iri("http://braininfo.rprc.washington.edu/centraldirectory.aspx?ID=268")
250
+ assert ('neuronames', '268') == parse_iri("https://braininfo.rprc.washington.edu/centraldirectory.aspx?ID=268")
251
+ ```
252
+
253
+ ### Generating IRIs
254
+
255
+ You can generate an IRI from either a CURIE or a pre-parsed CURIE
256
+ (i.e., a 2-tuple of a prefix and identifier) with the `get_iri()` function.
257
+ By default, it uses the following priorities:
258
+
259
+ 1. Custom prefix map (`custom`)
260
+ 2. First-party IRI (`default`)
261
+ 3. Identifiers.org / MIRIAM (`miriam`)
262
+ 4. Ontology Lookup Service (`ols`)
263
+ 5. OBO PURL (`obofoundry`)
264
+ 6. Name-to-Thing (`n2t`)
265
+ 7. BioPortal (`bioportal`)
266
+
267
+ ```python
268
+ from bioregistry import get_iri
269
+
270
+ assert get_iri("chebi", "24867") == 'https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:24867'
271
+ assert get_iri("chebi:24867") == 'https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:24867'
272
+ ```
273
+
274
+ It's possible to change the default priority list by passing an alternate
275
+ sequence of metaprefixes to the `priority` keyword (see above). For example, if
276
+ you're working with OBO ontologies, you might want to make OBO PURLs the highest
277
+ priority and when OBO PURLs can't be generated, default to something else:
278
+
279
+ ```python
280
+ from bioregistry import get_iri
281
+
282
+ priority = ["obofoundry", "default", "miriam", "ols", "n2t", "bioportal"]
283
+ assert get_iri("chebi:24867", priority=priority) == 'http://purl.obolibrary.org/obo/CHEBI_24867'
284
+ assert get_iri("hgnc:1234", priority=priority) == 'https://bioregistry.io/hgnc:1234'
285
+ ```
286
+
287
+ Even deeper, you can add (or override) any of the Bioregistry's default prefix
288
+ map with the `prefix_map` keyword:
289
+
290
+ ```python
291
+ from bioregistry import get_iri
292
+
293
+ prefix_map = {
294
+ "myprefix": "https://example.org/myprefix/",
295
+ "chebi": "https://example.org/chebi/",
296
+ }
297
+ assert get_iri("chebi:24867", prefix_map=prefix_map) == 'https://example.org/chebi/24867'
298
+ assert get_iri("myprefix:1234", prefix_map=prefix_map) == 'https://example.org/myprefix/1234'
299
+ ```
300
+
301
+ A custom prefix map can be supplied in combination with a priority list, using
302
+ the `"custom"` key for changing the priority of the custom prefix map.
303
+
304
+ ```python
305
+ from bioregistry import get_iri
306
+
307
+ prefix_map = {"lipidmaps": "https://example.org/lipidmaps/"}
308
+ priority = ["obofoundry", "custom", "default", "bioregistry"]
309
+ assert get_iri("chebi:24867", prefix_map=prefix_map, priority=priority) == \
310
+ 'http://purl.obolibrary.org/obo/CHEBI_24867'
311
+ assert get_iri("lipidmaps:1234", prefix_map=prefix_map, priority=priority) == \
312
+ 'https://example.org/lipidmaps/1234'
313
+ ```
314
+
315
+ Alternatively, there are direct functions for generating IRIs for different
316
+ registries:
317
+
318
+ ```python
319
+ import bioregistry as br
320
+
321
+ # Bioregistry IRI
322
+ assert br.get_bioregistry_iri('chebi', '24867') == 'https://bioregistry.io/chebi:24867'
323
+
324
+ # Default Provider
325
+ assert br.get_default_iri('chebi', '24867') == 'https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:24867'
326
+
327
+ # OBO Library
328
+ assert br.get_obofoundry_iri('chebi', '24867') == 'http://purl.obolibrary.org/obo/CHEBI_24867'
329
+
330
+ # OLS IRI
331
+ assert br.get_ols_iri('chebi', '24867') ==
332
+ 'https://www.ebi.ac.uk/ols/ontologies/chebi/terms?iri=http://purl.obolibrary.org/obo/CHEBI_24867'
333
+
334
+ # Bioportal IRI
335
+ assert br.get_bioportal_iri('chebi', '24867') == \
336
+ 'https://bioportal.bioontology.org/ontologies/CHEBI/?p=classes&conceptid=http://purl.obolibrary.org/obo/CHEBI_24867'
337
+
338
+ # Identifiers.org IRI
339
+ assert br.get_identifiers_org_iri('chebi', '24867') == 'https://identifiers.org/CHEBI:24867'
340
+
341
+ # Name-to-Thing IRI
342
+ assert br.get_n2t_iri('chebi', '24867') == 'https://n2t.net/chebi:24867'
343
+ ```
344
+
345
+ Each of these functions could also return `None` if there isn't a provider available or if the prefix
346
+ can't be mapped to the various resources.
347
+
348
+ ### Prefix Map
349
+
350
+ The Bioregistry can be used to generate prefix maps with various flavors
351
+ depending on your context. Prioritization works the same way as when generating
352
+ IRIs.
353
+
354
+ ```python
355
+ from bioregistry import get_prefix_map
356
+
357
+ # Standard
358
+ prefix_map = get_prefix_map()
359
+
360
+ # Prioritize OBO prefixes over bioregistry
361
+ priority = ["obofoundry", "default", "miriam", "ols", "n2t", "bioportal"]
362
+ prefix_map = get_prefix_map(uri_prefix_priority=priority)
363
+
364
+ # Provide custom remapping that doesn't have prioritization logic
365
+ remapping = {"chebi": "CHEBI"}
366
+ prefix_map = get_prefix_map(remapping=remapping)
367
+ ```
368
+
369
+ ### Getting Metadata
370
+
371
+ The pattern for an entry in the Bioregistry can be looked up quickly with `get_pattern()` if
372
+ it exists. It prefers the custom curated, then MIRIAM, then Wikidata pattern.
373
+
374
+ ```python
375
+ import bioregistry
376
+
377
+ assert '^GO:\\d{7}$' == bioregistry.get_pattern('go')
378
+ ```
379
+
380
+ Entries in the Bioregistry can be checked for deprecation with the `is_deprecated()` function. MIRIAM and OBO Foundry
381
+ don't often agree - OBO Foundry takes precedence since it seems to be updated more often.
382
+
383
+ ```python
384
+ import bioregistry
385
+
386
+ assert bioregistry.is_deprecated('nmr')
387
+ assert not bioregistry.is_deprecated('efo')
388
+ ```
389
+
390
+ Entries in the Bioregistry can be looked up with the `get_resource()` function.
391
+
392
+ ```python
393
+ import bioregistry
394
+
395
+ entry = bioregistry.get_resource('taxonomy')
396
+ # there are lots of mysteries to discover in this dictionary!
397
+ ```
398
+
399
+ The full Bioregistry can be read in a Python project using:
400
+
401
+ ```python
402
+ import bioregistry
403
+
404
+ registry = bioregistry.read_registry()
405
+ ```
406
+
407
+ ### 🕸️ Resolver App
408
+
409
+ After installation with the `[web]` extras, the Bioregistry web application
410
+ can be run with the following code:
411
+
412
+ ```shell
413
+ $ python -m pip install bioregistry[web]
414
+ $ bioregistry web
415
+ ```
416
+
417
+ to run a web app that functions like Identifiers.org, but backed by the Bioregistry.
418
+ A public instance of this app is hosted by the [Gyori Lab for Computational Biomedicine](https://gyorilab.github.io) at
419
+ https://bioregistry.io.
420
+
421
+ ## 👋 Attribution
422
+
423
+ ### ⚖️ License
424
+
425
+ The code in this repository is licensed under the
426
+ [MIT License](https://github.com/biopragmatics/bioregistry/blob/main/LICENSE).
427
+
428
+ ### 📛 Badge
429
+
430
+ If you use the Bioregistry in your code, support us by including our
431
+ badge in your project's README.md:
432
+
433
+ ```markdown
434
+ [![Powered by the Bioregistry](https://img.shields.io/static/v1?label=Powered%20by&message=Bioregistry&color=BA274A&style=flat&logo=image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAACXBIWXMAAAEnAAABJwGNvPDMAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAACi9JREFUWIWtmXl41MUZxz/z291sstmQO9mQG0ISwHBtOOSwgpUQhApWgUfEowKigKI81actypaqFbWPVkGFFKU0Vgs+YgvhEAoqEUESrnDlEEhCbkLYJtlkk9399Y/N/rKbzQXt96+Zed+Z9/t7Z+adeecnuA1s5yFVSGrLOAf2qTiEEYlUZKIAfYdKE7KoBLkQSc4XgkPfXxz/owmT41ZtiVtR3j94eqxQq5aDeASIvkVb12RBtt0mb5xZsvfa/5XgnqTMcI3Eq7IQjwM+7jJJo8YvNhK/qDBUOl8A7JZWWqqu01Jeg6Pd1nW4NuBjjax6eWrRruv/M8EDqTMflmXeB0Jcbb6RIRhmTCJ0ymgC0wYjadTd9nW0tWMu+In63NNU7c3FWtvgJpXrZVlakVGU8/ltEcwzGjU3miI/ABa72vwTB5K45AEi7x2PUEl9fZsHZLuDmgPHuLJpJ82lle6iTSH6mpXp+fnt/Sa4yzhbp22yfwFkgnMaBy17kPhFmQh1997qLxztNkq35XB505fINtf0iz1WvfTQ7Pxdlj4Jdnjuny5yvpEhjHh7FQOGD/YyZi4owS86HJ+QQMDpJaBf3jUXlHD21+8q0y4LDppV/vfNO7+jzV3Pa6SOac0E8I8fSPonpm7JAVR+eRhzwU/Ofj+e49tpT/HdtGXcyLvQJ8HAtCTGfmJCF2dwfpTMz4NszX/uqqdyr+xPyVwoEK+C03PGrDX4GkJ7NBJ+txH/hCgAit7cRlNxOY62dmzmZgwzJvZJUh2gI/xnRmoOHsfe3AqQ/kho0qXs+pLzLh3FgwdT54YKxLsAQq0mbf1zHuTsltZejemHJSrlgGGDPGTXc09zdM5qTi59jZbKOg+Zb1QYI95+XokEQogPDifPDnPJFQ8uCkl8FyGmACQtn4dhxp3KINX7jnHi0ZeJnT8dla8Plbu+48zzfyJ08kh8ggIACB4zlIAhsURm3EnML6eB6Fzep1a+SUt5DS2VddTs+4GQccPRhgV1kowIQRaChhMXAPxkIev/Vl+8R/HgnqTMmI4gjH/iQOIXZSqdzQUlXDB9RPyi+1DrdVx67WMursvCkDERXYxB0ROSIOKecURMG+tBzkXAhbYbZk6teNPLkwmPzUIX71wuMiw+MHx2nEJQrWIFHSdE4pIHlFDisLZxYe1HhIwfTtLK+RSu30rVnlxGvrOapOcW9DsW3vH6CgKS4zxIXlz3Fw8dSaMmcfEcV9XHYbc/DSCZMEkgFoJzY0TeO17pVL7jANbaBoauWUJlTi4VOw+T9sazBKYl0ZB/qV/kALThQRi3vOJB0lpzw0vPMONOtOHOqRcyi7bzkEqanJo3HogBMGROUrziaGundGsOsQsyUPn6UPx2NvELZxIybhinn3uLyx9uVwaW7XbqjxdQmr2X0uy93Dh+Dtlu9zCu9vdj1PsvEWwcii7OwJAXFnoRFCoVhoxJrmr0gOQWo9qBfaorXodOHq0o1x8roN3cSMyC6ZT942uQBIlL53Jl804sV6oY9/fXAGg4WcjFdZuxlFV7GNPFRzFs7VKCRiV7ejJrTa/eDr1rFKXZOQCocEyTgHQAyUdD4B2d4cF8pohg4zC0YUFU7z5C9Jy7sVvbKPtsH6GT0tCGBtFwspBTz/zRixyApbSKk8te5+aZ4l4JdUVQWpIScmQhjGocUjJCRhcTieSjURQTF89FtttpuVaLpaya8Knp1B3OQ5Zlag/nU//9cmScS6EnONrauWjazIQv3kCoVD3quUPS+uAXHU7z1SpATpEQchSA78AwD0WVnxa1XkdjURlCJRGQHMfN/EuEjk9jyr4NRN47Hltjc58Gm0sraTjZ/w3l5BLuKkZJdFzT1f5+3Sq3NZjRDNAjaX1orb2BX2wEmkA9fvGGbvW7Q+OlUu+2wlIqdx+h3dzkJVPrda5iQJ93p+DRqcQ/PhsAw8xJ6AfHdkhuIVvoEribLl/jxKOv4Gi34T8omgnb1yOk7sdTA01AiK3J6yoGgP+gaPwHOdOP6LlTlXb3mNYXAlI8da9/e0pJBZovV2BrakYzQK/I3bg0SsiiCqClqs/0wAPB6UOVo6k3+CdEETwm1aPtP+dLlLJPSKAHOYDWCoVLlYTkKAKcCU4vO7IrhErFsLVLPXZ+V0haDcN+v8xjB9strdQfPavUA0ckefRxWNuwVNS6rBRKQB44r+Lmc5f7TRAgaFQyYzb9Dv/4gd18ASQ8/gsC0zwJNJVcw97aeWmOcDtaAW6eLXZLBchTC8EhWXbW6o+cInhMipetuu9OUvTWNnwNodzx+krlvAQIGjmECV+spyH/Ak3F5QDok+OoPXicip2HiJiWTuH6rQx6eh7BxlT0STH4xUbSUl6Df/xAIqaO9bBVn3taKUuy/ZAwYZImpvx4FYjVRgQzOec9r1vK0TmrldMiIDkO45ZXegxLLrRW13P0/heQHQ4CUhIYvfElNIHOtWaztNJ4qZQBqfFKLg3OMz135rNY624ClB0tHJcomTA5ZMGnANbaBmoOHPMy5hvZebNuLCoj71frXIN0i9pDJzj24IsIlUTCo7NI3/KyQg5ArfMleEyKBzmA6r1HO8eV+dSEySEB2G3yRpwZP1c2f+n1GjB07RIlcwNoKi7j3G839EhQF2cg6fmHmbznPRKevJ/GorIedV1wtLVzJesrV9WqQtoIHRfWjreSjwGar1ZRui3Ho7PfwHBGb3jRg6S1roGeoIuNJGBIPKV/zSF31irOrn4HXAu9B1zduhtLecelQxZZ9xTtrgC342Df8IwQyaYqBMKEWo0xaw1BI4d4DNJSWcfF32fRWnuD5NWPEDZ5lIe8NDuHq1v+ha2xGdkho4szYJg1hbj501EH6OgJ5oIS8hf/oWPm5HqNrE51vdt4nC/7k+9bIIT8GYA2Ipixn5jwjQrrZsju0XT5GubTRfiEBqFPisUvOrzPPi0VdeQ9YcJ63bWmxbzphTk7XHKvA/DrlJkfAU+Bcy2N+fA3vZK0WVoxny4idOKIfn+IO7lTz7zRObWCjdMv7VnhruOV9dws9F8u4CsAS1k1J54wYS4o6arWaaS8hvLP998yuZtnisl7wuROLkdjsKzqqtfL45FjB8gzwZnIJy6dS8Jjs3p8ausvHG3tXN26mytZO5W8Rcjsbg1Qze/X45ELHY9I7wHLXG26+CgSl8zFkDGh3zdkF2S7nep9PzhzmnK3FEGwUWOwrJr6zTdeL529EnRhf3LmfCHEBkBZiNrwIAwZkwi9a5Qzh9D6dNvXYW3jZkEJ9UdOOYPwdY/gXgdiufuGuC2C4Hy3kWXrOhmeBLQeA6jV6GLC8Y0KR613Hn+2phZaK69jqah1P/hdsCKLLIfGtnbG+f3eyfHtEHTh38mzom2SY4WQWQjE9tnBE+XIZKuQNrqCcH9wSwRdMGGSJiTnpatwTJOFMIKcgvPVX/kNIcM1gSgC8iTZfii3aEL+7fyG+C+6O8izl1GE5gAAAABJRU5ErkJggg==)](https://github.com/biopragmatics/bioregistry)
435
+ ```
436
+
437
+ If your README uses reStructuredText (.rst), use this instead:
438
+
439
+ ```
440
+ .. image:: https://img.shields.io/static/v1?label=Powered%20by&message=Bioregistry&color=BA274A&style=flat&logo=image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAACXBIWXMAAAEnAAABJwGNvPDMAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAACi9JREFUWIWtmXl41MUZxz/z291sstmQO9mQG0ISwHBtOOSwgpUQhApWgUfEowKigKI81actypaqFbWPVkGFFKU0Vgs+YgvhEAoqEUESrnDlEEhCbkLYJtlkk9399Y/N/rKbzQXt96+Zed+Z9/t7Z+adeecnuA1s5yFVSGrLOAf2qTiEEYlUZKIAfYdKE7KoBLkQSc4XgkPfXxz/owmT41ZtiVtR3j94eqxQq5aDeASIvkVb12RBtt0mb5xZsvfa/5XgnqTMcI3Eq7IQjwM+7jJJo8YvNhK/qDBUOl8A7JZWWqqu01Jeg6Pd1nW4NuBjjax6eWrRruv/M8EDqTMflmXeB0Jcbb6RIRhmTCJ0ymgC0wYjadTd9nW0tWMu+In63NNU7c3FWtvgJpXrZVlakVGU8/ltEcwzGjU3miI/ABa72vwTB5K45AEi7x2PUEl9fZsHZLuDmgPHuLJpJ82lle6iTSH6mpXp+fnt/Sa4yzhbp22yfwFkgnMaBy17kPhFmQh1997qLxztNkq35XB505fINtf0iz1WvfTQ7Pxdlj4Jdnjuny5yvpEhjHh7FQOGD/YyZi4owS86HJ+QQMDpJaBf3jUXlHD21+8q0y4LDppV/vfNO7+jzV3Pa6SOac0E8I8fSPonpm7JAVR+eRhzwU/Ofj+e49tpT/HdtGXcyLvQJ8HAtCTGfmJCF2dwfpTMz4NszX/uqqdyr+xPyVwoEK+C03PGrDX4GkJ7NBJ+txH/hCgAit7cRlNxOY62dmzmZgwzJvZJUh2gI/xnRmoOHsfe3AqQ/kho0qXs+pLzLh3FgwdT54YKxLsAQq0mbf1zHuTsltZejemHJSrlgGGDPGTXc09zdM5qTi59jZbKOg+Zb1QYI95+XokEQogPDifPDnPJFQ8uCkl8FyGmACQtn4dhxp3KINX7jnHi0ZeJnT8dla8Plbu+48zzfyJ08kh8ggIACB4zlIAhsURm3EnML6eB6Fzep1a+SUt5DS2VddTs+4GQccPRhgV1kowIQRaChhMXAPxkIev/Vl+8R/HgnqTMmI4gjH/iQOIXZSqdzQUlXDB9RPyi+1DrdVx67WMursvCkDERXYxB0ROSIOKecURMG+tBzkXAhbYbZk6teNPLkwmPzUIX71wuMiw+MHx2nEJQrWIFHSdE4pIHlFDisLZxYe1HhIwfTtLK+RSu30rVnlxGvrOapOcW9DsW3vH6CgKS4zxIXlz3Fw8dSaMmcfEcV9XHYbc/DSCZMEkgFoJzY0TeO17pVL7jANbaBoauWUJlTi4VOw+T9sazBKYl0ZB/qV/kALThQRi3vOJB0lpzw0vPMONOtOHOqRcyi7bzkEqanJo3HogBMGROUrziaGundGsOsQsyUPn6UPx2NvELZxIybhinn3uLyx9uVwaW7XbqjxdQmr2X0uy93Dh+Dtlu9zCu9vdj1PsvEWwcii7OwJAXFnoRFCoVhoxJrmr0gOQWo9qBfaorXodOHq0o1x8roN3cSMyC6ZT942uQBIlL53Jl804sV6oY9/fXAGg4WcjFdZuxlFV7GNPFRzFs7VKCRiV7ejJrTa/eDr1rFKXZOQCocEyTgHQAyUdD4B2d4cF8pohg4zC0YUFU7z5C9Jy7sVvbKPtsH6GT0tCGBtFwspBTz/zRixyApbSKk8te5+aZ4l4JdUVQWpIScmQhjGocUjJCRhcTieSjURQTF89FtttpuVaLpaya8Knp1B3OQ5Zlag/nU//9cmScS6EnONrauWjazIQv3kCoVD3quUPS+uAXHU7z1SpATpEQchSA78AwD0WVnxa1XkdjURlCJRGQHMfN/EuEjk9jyr4NRN47Hltjc58Gm0sraTjZ/w3l5BLuKkZJdFzT1f5+3Sq3NZjRDNAjaX1orb2BX2wEmkA9fvGGbvW7Q+OlUu+2wlIqdx+h3dzkJVPrda5iQJ93p+DRqcQ/PhsAw8xJ6AfHdkhuIVvoEribLl/jxKOv4Gi34T8omgnb1yOk7sdTA01AiK3J6yoGgP+gaPwHOdOP6LlTlXb3mNYXAlI8da9/e0pJBZovV2BrakYzQK/I3bg0SsiiCqClqs/0wAPB6UOVo6k3+CdEETwm1aPtP+dLlLJPSKAHOYDWCoVLlYTkKAKcCU4vO7IrhErFsLVLPXZ+V0haDcN+v8xjB9strdQfPavUA0ckefRxWNuwVNS6rBRKQB44r+Lmc5f7TRAgaFQyYzb9Dv/4gd18ASQ8/gsC0zwJNJVcw97aeWmOcDtaAW6eLXZLBchTC8EhWXbW6o+cInhMipetuu9OUvTWNnwNodzx+krlvAQIGjmECV+spyH/Ak3F5QDok+OoPXicip2HiJiWTuH6rQx6eh7BxlT0STH4xUbSUl6Df/xAIqaO9bBVn3taKUuy/ZAwYZImpvx4FYjVRgQzOec9r1vK0TmrldMiIDkO45ZXegxLLrRW13P0/heQHQ4CUhIYvfElNIHOtWaztNJ4qZQBqfFKLg3OMz135rNY624ClB0tHJcomTA5ZMGnANbaBmoOHPMy5hvZebNuLCoj71frXIN0i9pDJzj24IsIlUTCo7NI3/KyQg5ArfMleEyKBzmA6r1HO8eV+dSEySEB2G3yRpwZP1c2f+n1GjB07RIlcwNoKi7j3G839EhQF2cg6fmHmbznPRKevJ/GorIedV1wtLVzJesrV9WqQtoIHRfWjreSjwGar1ZRui3Ho7PfwHBGb3jRg6S1roGeoIuNJGBIPKV/zSF31irOrn4HXAu9B1zduhtLecelQxZZ9xTtrgC342Df8IwQyaYqBMKEWo0xaw1BI4d4DNJSWcfF32fRWnuD5NWPEDZ5lIe8NDuHq1v+ha2xGdkho4szYJg1hbj501EH6OgJ5oIS8hf/oWPm5HqNrE51vdt4nC/7k+9bIIT8GYA2Ipixn5jwjQrrZsju0XT5GubTRfiEBqFPisUvOrzPPi0VdeQ9YcJ63bWmxbzphTk7XHKvA/DrlJkfAU+Bcy2N+fA3vZK0WVoxny4idOKIfn+IO7lTz7zRObWCjdMv7VnhruOV9dws9F8u4CsAS1k1J54wYS4o6arWaaS8hvLP998yuZtnisl7wuROLkdjsKzqqtfL45FjB8gzwZnIJy6dS8Jjs3p8ausvHG3tXN26mytZO5W8Rcjsbg1Qze/X45ELHY9I7wHLXG26+CgSl8zFkDGh3zdkF2S7nep9PzhzmnK3FEGwUWOwrJr6zTdeL529EnRhf3LmfCHEBkBZiNrwIAwZkwi9a5Qzh9D6dNvXYW3jZkEJ9UdOOYPwdY/gXgdiufuGuC2C4Hy3kWXrOhmeBLQeA6jV6GLC8Y0KR613Hn+2phZaK69jqah1P/hdsCKLLIfGtnbG+f3eyfHtEHTh38mzom2SY4WQWQjE9tnBE+XIZKuQNrqCcH9wSwRdMGGSJiTnpatwTJOFMIKcgvPVX/kNIcM1gSgC8iTZfii3aEL+7fyG+C+6O8izl1GE5gAAAABJRU5ErkJggg==
441
+ :target: https://github.com/biopragmatics/bioregistry
442
+ :alt: Powered by the Bioregistry
443
+ ```
444
+
445
+ It looks like this: [![Powered by the Bioregistry](https://img.shields.io/static/v1?label=Powered%20by&message=Bioregistry&color=BA274A&style=flat&logo=image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAACXBIWXMAAAEnAAABJwGNvPDMAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAACi9JREFUWIWtmXl41MUZxz/z291sstmQO9mQG0ISwHBtOOSwgpUQhApWgUfEowKigKI81actypaqFbWPVkGFFKU0Vgs+YgvhEAoqEUESrnDlEEhCbkLYJtlkk9399Y/N/rKbzQXt96+Zed+Z9/t7Z+adeecnuA1s5yFVSGrLOAf2qTiEEYlUZKIAfYdKE7KoBLkQSc4XgkPfXxz/owmT41ZtiVtR3j94eqxQq5aDeASIvkVb12RBtt0mb5xZsvfa/5XgnqTMcI3Eq7IQjwM+7jJJo8YvNhK/qDBUOl8A7JZWWqqu01Jeg6Pd1nW4NuBjjax6eWrRruv/M8EDqTMflmXeB0Jcbb6RIRhmTCJ0ymgC0wYjadTd9nW0tWMu+In63NNU7c3FWtvgJpXrZVlakVGU8/ltEcwzGjU3miI/ABa72vwTB5K45AEi7x2PUEl9fZsHZLuDmgPHuLJpJ82lle6iTSH6mpXp+fnt/Sa4yzhbp22yfwFkgnMaBy17kPhFmQh1997qLxztNkq35XB505fINtf0iz1WvfTQ7Pxdlj4Jdnjuny5yvpEhjHh7FQOGD/YyZi4owS86HJ+QQMDpJaBf3jUXlHD21+8q0y4LDppV/vfNO7+jzV3Pa6SOac0E8I8fSPonpm7JAVR+eRhzwU/Ofj+e49tpT/HdtGXcyLvQJ8HAtCTGfmJCF2dwfpTMz4NszX/uqqdyr+xPyVwoEK+C03PGrDX4GkJ7NBJ+txH/hCgAit7cRlNxOY62dmzmZgwzJvZJUh2gI/xnRmoOHsfe3AqQ/kho0qXs+pLzLh3FgwdT54YKxLsAQq0mbf1zHuTsltZejemHJSrlgGGDPGTXc09zdM5qTi59jZbKOg+Zb1QYI95+XokEQogPDifPDnPJFQ8uCkl8FyGmACQtn4dhxp3KINX7jnHi0ZeJnT8dla8Plbu+48zzfyJ08kh8ggIACB4zlIAhsURm3EnML6eB6Fzep1a+SUt5DS2VddTs+4GQccPRhgV1kowIQRaChhMXAPxkIev/Vl+8R/HgnqTMmI4gjH/iQOIXZSqdzQUlXDB9RPyi+1DrdVx67WMursvCkDERXYxB0ROSIOKecURMG+tBzkXAhbYbZk6teNPLkwmPzUIX71wuMiw+MHx2nEJQrWIFHSdE4pIHlFDisLZxYe1HhIwfTtLK+RSu30rVnlxGvrOapOcW9DsW3vH6CgKS4zxIXlz3Fw8dSaMmcfEcV9XHYbc/DSCZMEkgFoJzY0TeO17pVL7jANbaBoauWUJlTi4VOw+T9sazBKYl0ZB/qV/kALThQRi3vOJB0lpzw0vPMONOtOHOqRcyi7bzkEqanJo3HogBMGROUrziaGundGsOsQsyUPn6UPx2NvELZxIybhinn3uLyx9uVwaW7XbqjxdQmr2X0uy93Dh+Dtlu9zCu9vdj1PsvEWwcii7OwJAXFnoRFCoVhoxJrmr0gOQWo9qBfaorXodOHq0o1x8roN3cSMyC6ZT942uQBIlL53Jl804sV6oY9/fXAGg4WcjFdZuxlFV7GNPFRzFs7VKCRiV7ejJrTa/eDr1rFKXZOQCocEyTgHQAyUdD4B2d4cF8pohg4zC0YUFU7z5C9Jy7sVvbKPtsH6GT0tCGBtFwspBTz/zRixyApbSKk8te5+aZ4l4JdUVQWpIScmQhjGocUjJCRhcTieSjURQTF89FtttpuVaLpaya8Knp1B3OQ5Zlag/nU//9cmScS6EnONrauWjazIQv3kCoVD3quUPS+uAXHU7z1SpATpEQchSA78AwD0WVnxa1XkdjURlCJRGQHMfN/EuEjk9jyr4NRN47Hltjc58Gm0sraTjZ/w3l5BLuKkZJdFzT1f5+3Sq3NZjRDNAjaX1orb2BX2wEmkA9fvGGbvW7Q+OlUu+2wlIqdx+h3dzkJVPrda5iQJ93p+DRqcQ/PhsAw8xJ6AfHdkhuIVvoEribLl/jxKOv4Gi34T8omgnb1yOk7sdTA01AiK3J6yoGgP+gaPwHOdOP6LlTlXb3mNYXAlI8da9/e0pJBZovV2BrakYzQK/I3bg0SsiiCqClqs/0wAPB6UOVo6k3+CdEETwm1aPtP+dLlLJPSKAHOYDWCoVLlYTkKAKcCU4vO7IrhErFsLVLPXZ+V0haDcN+v8xjB9strdQfPavUA0ckefRxWNuwVNS6rBRKQB44r+Lmc5f7TRAgaFQyYzb9Dv/4gd18ASQ8/gsC0zwJNJVcw97aeWmOcDtaAW6eLXZLBchTC8EhWXbW6o+cInhMipetuu9OUvTWNnwNodzx+krlvAQIGjmECV+spyH/Ak3F5QDok+OoPXicip2HiJiWTuH6rQx6eh7BxlT0STH4xUbSUl6Df/xAIqaO9bBVn3taKUuy/ZAwYZImpvx4FYjVRgQzOec9r1vK0TmrldMiIDkO45ZXegxLLrRW13P0/heQHQ4CUhIYvfElNIHOtWaztNJ4qZQBqfFKLg3OMz135rNY624ClB0tHJcomTA5ZMGnANbaBmoOHPMy5hvZebNuLCoj71frXIN0i9pDJzj24IsIlUTCo7NI3/KyQg5ArfMleEyKBzmA6r1HO8eV+dSEySEB2G3yRpwZP1c2f+n1GjB07RIlcwNoKi7j3G839EhQF2cg6fmHmbznPRKevJ/GorIedV1wtLVzJesrV9WqQtoIHRfWjreSjwGar1ZRui3Ho7PfwHBGb3jRg6S1roGeoIuNJGBIPKV/zSF31irOrn4HXAu9B1zduhtLecelQxZZ9xTtrgC342Df8IwQyaYqBMKEWo0xaw1BI4d4DNJSWcfF32fRWnuD5NWPEDZ5lIe8NDuHq1v+ha2xGdkho4szYJg1hbj501EH6OgJ5oIS8hf/oWPm5HqNrE51vdt4nC/7k+9bIIT8GYA2Ipixn5jwjQrrZsju0XT5GubTRfiEBqFPisUvOrzPPi0VdeQ9YcJ63bWmxbzphTk7XHKvA/DrlJkfAU+Bcy2N+fA3vZK0WVoxny4idOKIfn+IO7lTz7zRObWCjdMv7VnhruOV9dws9F8u4CsAS1k1J54wYS4o6arWaaS8hvLP998yuZtnisl7wuROLkdjsKzqqtfL45FjB8gzwZnIJy6dS8Jjs3p8ausvHG3tXN26mytZO5W8Rcjsbg1Qze/X45ELHY9I7wHLXG26+CgSl8zFkDGh3zdkF2S7nep9PzhzmnK3FEGwUWOwrJr6zTdeL529EnRhf3LmfCHEBkBZiNrwIAwZkwi9a5Qzh9D6dNvXYW3jZkEJ9UdOOYPwdY/gXgdiufuGuC2C4Hy3kWXrOhmeBLQeA6jV6GLC8Y0KR613Hn+2phZaK69jqah1P/hdsCKLLIfGtnbG+f3eyfHtEHTh38mzom2SY4WQWQjE9tnBE+XIZKuQNrqCcH9wSwRdMGGSJiTnpatwTJOFMIKcgvPVX/kNIcM1gSgC8iTZfii3aEL+7fyG+C+6O8izl1GE5gAAAABJRU5ErkJggg==)](https://github.com/biopragmatics/bioregistry)
446
+
447
+ ### 📖 Citation
448
+
449
+ > [Unifying the identification of biomedical entities with the Bioregistry](https://bioregistry.io/doi:10.1038/s41597-022-01807-3)
450
+ > <br />Hoyt, C. T., Balk, M., Callahan, T. J., Domingo-Fernandez, D., Haendel, M. A., Hegde, H. B., Himmelstein, D. S., Karis, K., Kunze, J., Lubiana, T., Matentzoglu, N., McMurry, J., Moxon, S., Mungall, C. J., Rutz, A., Unni, D. R., Willighagen, E., Winston, D., and Gyori, B. M. (2022)
451
+ > <br />*Nature Scientific Data*, s41597-022-01807-3
452
+
453
+ ```bibtex
454
+ @article{Hoyt2022Bioregistry,
455
+ author = {Hoyt, Charles Tapley and Balk, Meghan and Callahan, Tiffany J and Domingo-Fern{\'{a}}ndez, Daniel and Haendel, Melissa A and Hegde, Harshad B and Himmelstein, Daniel S and Karis, Klas and Kunze, John and Lubiana, Tiago and Matentzoglu, Nicolas and McMurry, Julie and Moxon, Sierra and Mungall, Christopher J and Rutz, Adriano and Unni, Deepak R and Willighagen, Egon and Winston, Donald and Gyori, Benjamin M},
456
+ doi = {10.1038/s41597-022-01807-3},
457
+ issn = {2052-4463},
458
+ journal = {Sci. Data},
459
+ number = {1},
460
+ pages = {714},
461
+ title = {{Unifying the identification of biomedical entities with the Bioregistry}},
462
+ url = {https://doi.org/10.1038/s41597-022-01807-3},
463
+ volume = {9},
464
+ year = {2022}
465
+ }
466
+ ```
467
+
468
+ Talks on the Bioregistry:
469
+
470
+ - [Future Curation in the Bioregistry](https://bit.ly/wpci2022-bioregistry-maintenance) (WPCI, December 2022)
471
+ - [The Bioregistry - Governance and Review Team](https://bit.ly/wpci2022-bioregistry-governance) (WPCI, December 2022)
472
+ - [Development, Maintenance, and Expansion of the Bioregistry](https://bit.ly/sorger-lab-bioregistry-2022)
473
+ (Sorger Lab Meeting, October 2022)
474
+ - [The Bioregistry, CURIEs, and OBO Community Health](https://bit.ly/icbo2022-cth) (ICBO 2022 (September))
475
+ - [Introduction to the Bioregistry](https://bit.ly/bioregistry-short-talk) (Sorger Lab Meeting, July 2021)
476
+
477
+ ### 🎁 Support
478
+
479
+ The Bioregistry was primarily developed by the [Gyori Lab for Computational Biomedicine](https://gyorilab.github.io)
480
+ at Northeastern University, which was previously a part of the
481
+ [Laboratory of Systems Pharmacology](https://hits.harvard.edu/the-program/laboratory-of-systems-pharmacology/about/)
482
+ in the [Harvard Program in Therapeutic Science (HiTS)](https://hits.harvard.edu)
483
+ at [Harvard Medical School](https://hms.harvard.edu/).
484
+
485
+ ### 💰 Funding
486
+
487
+ 1. Chan Zuckerberg Initiative (CZI) 2023-329850
488
+ 2. DARPA Automating Scientific Knowledge Extraction and Modeling (ASKEM) HR00112220036
489
+ 3. DARPA Young Faculty Award W911NF2010255 (PI: Benjamin M. Gyori).
testbed/biopragmatics__bioregistry/docs/CODE_OF_CONDUCT.md ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ layout: page
3
+ title: Code of Conduct
4
+ permalink: /conduct/
5
+ ---
6
+ ## Our Pledge
7
+
8
+ We as members, contributors, and leaders pledge to make participation in our
9
+ community a harassment-free experience for everyone, regardless of age, body
10
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
11
+ identity and expression, level of experience, education, socio-economic status,
12
+ nationality, personal appearance, race, caste, color, religion, or sexual identity
13
+ and orientation.
14
+
15
+ We pledge to act and interact in ways that contribute to an open, welcoming,
16
+ diverse, inclusive, and healthy community.
17
+
18
+ ## Our Standards
19
+
20
+ Examples of behavior that contributes to a positive environment for our
21
+ community include:
22
+
23
+ * Demonstrating empathy and kindness toward other people
24
+ * Being respectful of differing opinions, viewpoints, and experiences
25
+ * Giving and gracefully accepting constructive feedback
26
+ * Accepting responsibility and apologizing to those affected by our mistakes,
27
+ and learning from the experience
28
+ * Focusing on what is best not just for us as individuals, but for the
29
+ overall community
30
+
31
+ Examples of unacceptable behavior include:
32
+
33
+ * The use of sexualized language or imagery, and sexual attention or
34
+ advances of any kind
35
+ * Trolling, insulting or derogatory comments, and personal or political attacks
36
+ * Public or private harassment
37
+ * Publishing others' private information, such as a physical or email
38
+ address, without their explicit permission. As a slight departure from the
39
+ verbatim text from the Contributor Covenant, we relax this restriction when
40
+ related to the publicly available contact information for individuals related
41
+ to the data in the Bioregistry (i.e., contributors, reviewers, contact people).
42
+ * Other conduct which could reasonably be considered inappropriate in a
43
+ professional setting
44
+
45
+ ## Enforcement Responsibilities
46
+
47
+ Community leaders are responsible for clarifying and enforcing our standards of
48
+ acceptable behavior and will take appropriate and fair corrective action in
49
+ response to any behavior that they deem inappropriate, threatening, offensive,
50
+ or harmful.
51
+
52
+ Community leaders have the right and responsibility to remove, edit, or reject
53
+ comments, commits, code, wiki edits, issues, and other contributions that are
54
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
55
+ decisions when appropriate.
56
+
57
+ ## Scope
58
+
59
+ This Code of Conduct applies within all community spaces, and also applies when
60
+ an individual is officially representing the community in public spaces.
61
+ Examples of representing our community include using an official e-mail address,
62
+ posting via an official social media account, or acting as an appointed
63
+ representative at an online or offline event.
64
+
65
+ ## Enforcement
66
+
67
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
68
+ reported to the community leaders responsible for enforcement at
69
+ {{ site.email }}.
70
+ All complaints will be reviewed and investigated promptly and fairly.
71
+
72
+ All community leaders are obligated to respect the privacy and security of the
73
+ reporter of any incident.
74
+
75
+ ## Enforcement Guidelines
76
+
77
+ Community leaders will follow these Community Impact Guidelines in determining
78
+ the consequences for any action they deem in violation of this Code of Conduct:
79
+
80
+ ### 1. Correction
81
+
82
+ **Community Impact**: Use of inappropriate language or other behavior deemed
83
+ unprofessional or unwelcome in the community.
84
+
85
+ **Consequence**: A private, written warning from community leaders, providing
86
+ clarity around the nature of the violation and an explanation of why the
87
+ behavior was inappropriate. A public apology may be requested.
88
+
89
+ ### 2. Warning
90
+
91
+ **Community Impact**: A violation through a single incident or series
92
+ of actions.
93
+
94
+ **Consequence**: A warning with consequences for continued behavior. No
95
+ interaction with the people involved, including unsolicited interaction with
96
+ those enforcing the Code of Conduct, for a specified period of time. This
97
+ includes avoiding interactions in community spaces as well as external channels
98
+ like social media. Violating these terms may lead to a temporary or
99
+ permanent ban.
100
+
101
+ ### 3. Temporary Ban
102
+
103
+ **Community Impact**: A serious violation of community standards, including
104
+ sustained inappropriate behavior.
105
+
106
+ **Consequence**: A temporary ban from any sort of interaction or public
107
+ communication with the community for a specified period of time. No public or
108
+ private interaction with the people involved, including unsolicited interaction
109
+ with those enforcing the Code of Conduct, is allowed during this period.
110
+ Violating these terms may lead to a permanent ban.
111
+
112
+ ### 4. Permanent Ban
113
+
114
+ **Community Impact**: Demonstrating a pattern of violation of community
115
+ standards, including sustained inappropriate behavior, harassment of an
116
+ individual, or aggression toward or disparagement of classes of individuals.
117
+
118
+ **Consequence**: A permanent ban from any sort of public interaction within
119
+ the community.
120
+
121
+ ## Attribution
122
+
123
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
124
+ version 2.1, available at
125
+ [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
126
+
127
+ Community Impact Guidelines were inspired by
128
+ [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
129
+
130
+ For answers to common questions about this code of conduct, see the FAQ at
131
+ [https://www.contributor-covenant.org/faq][FAQ]. Translations are available
132
+ at [https://www.contributor-covenant.org/translations][translations].
133
+
134
+ [homepage]: https://www.contributor-covenant.org
135
+ [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
136
+ [Mozilla CoC]: https://github.com/mozilla/diversity
137
+ [FAQ]: https://www.contributor-covenant.org/faq
138
+ [translations]: https://www.contributor-covenant.org/translations
testbed/biopragmatics__bioregistry/docs/CONTRIBUTING.md ADDED
@@ -0,0 +1,418 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ layout: page
3
+ title: Contributing
4
+ permalink: /contributing/
5
+ ---
6
+
7
+ Contributions to the Bioregistry are welcomed and encouraged. Thanks for
8
+ considering to participate.
9
+
10
+ All contributors, maintainers, and participants of the Bioregistry project
11
+ are expected to follow our [Code of Conduct](CODE_OF_CONDUCT.md).
12
+ This document is organized as follows:
13
+
14
+ 1. [Content Contribution](#content-contribution)
15
+ 1. [Submitting New Prefixes](#submitting-new-prefixes)
16
+ 2. [Editing Records](#editing-records)
17
+ 3. [Removing Records](#removing-records)
18
+ 2. [Code Contribution](#code-contribution)
19
+
20
+ ## Content Contribution
21
+
22
+ There are several ways to request a new prefix in the Bioregistry:
23
+
24
+ 1. Fill out the [new prefix request form](https://github.com/biopragmatics/bioregistry/issues/new?assignees=cthoyt&labels=New%2CPrefix&template=new-prefix.yml&title=%5BResource%5D%3A%20xxxxx)
25
+ on our GitHub issue tracker with as much information about the resource as
26
+ possible (e.g., name, homepage, format URL pattern, example identifier,
27
+ pattern). Don't worry if you don't understand everything, our Review Team
28
+ will guide you through the process.
29
+ 2. ~Add an entry yourself
30
+ by [editing the Bioregistry](https://github.com/biopragmatics/bioregistry/edit/main/src/bioregistry/data/bioregistry.json)
31
+ in GitHub through the web browser.~ As the Bioregistry has surpassed the size limit of in-browser editing on GitHub,
32
+ this is no longer possible.
33
+ 3. Make a pull request directly to the upstream repository
34
+ [biopragmatics/bioregistry](https://github.com/biopragmatics/bioregistry). Make sure that you
35
+ run `tox -e bioregistry-lint` from the shell after editing the source JSON files in order to canonically order the
36
+ data.
37
+
38
+ ### Submitting New Prefixes
39
+
40
+ #### Who Can Request a New Prefix
41
+
42
+ A prefix can be requested by anyone, even if it is for a resource they do not
43
+ themselves maintain. A main goal of the Bioregistry is to be a detailed,
44
+ descriptive resource - expertise is welcome from anywhere. Ideally, the
45
+ requester should provide contact information for the main responsible person for
46
+ the resource or include them in discussion on GitHub directly. In many cases,
47
+ it's much easier for the resource responsible person to provide certain metadata
48
+ that's required to go with a given prefix.
49
+
50
+ #### Minimum New Prefix Requirements
51
+
52
+ 1. New prefixes are allowed to contain letters [a-z], numbers [0-9], and a
53
+ single dot `.` if a subspace is requested. More discussion on subspacing
54
+ policy can be found https://github.com/biopragmatics/bioregistry/issues/133
55
+ and https://github.com/biopragmatics/bioregistry/issues/65.
56
+ 2. New prefixes must start with a letter.
57
+ 3. New prefixes must be at least two characters. Ideally, prefixes should be
58
+ three or more characters for legibility.
59
+ 4. Subspaces must start with a letter.
60
+ 5. Subspaces must be at least two characters. Ideally, subspaces should be three
61
+ or more characters for legibility.
62
+ 6. New prefixes must be lowercase. However, lexical variants can be stored as
63
+ synonyms for reference (e.g., FBbt).
64
+ 7. New prefixes must validate against the following regular expression:
65
+ `^[a-z][a-z0-9]+(\.[a-z][a-z0-9]+?)$`
66
+ 8. New prefixes must pass all metadata checks, which are canonically defined by
67
+ the quality assurance workflow.
68
+
69
+ Unfortunately, these requirements can not be applied retroactively and can not
70
+ be trivially applied to automatically imported prefixes. In some cases,
71
+ historical prefixes can be modified to follow these requirements. For example,
72
+ Identifiers.org's `ec-code` was renamed to `eccode` while maintaining `ec-code`
73
+ as a synonym.
74
+
75
+ Original discussion about minimum prefix requirements can be found at
76
+ https://github.com/biopragmatics/bioregistry/issues/158.
77
+
78
+ #### Miscellaneous Requirements
79
+
80
+ - Do not include titles (e.g., Dr.) in contact information for the requester, reviewer, nor contact for a resource.
81
+
82
+ #### Choosing a Good Prefix
83
+
84
+ 1. Prefixes should be chosen in a way to minimize confusion (e.g., prefixes
85
+ should correspond to the name of the resource they are minted for. Most
86
+ commonly, people use acronyms.)
87
+ 2. Multiple prefixes will not be issued for multiple versions of a resource (
88
+ e.g., the fact that there is a `mesh.2012` and `mesh.2013` prefix registered in
89
+ Identifiers.org was a huge mistake and causes massive confusion)
90
+ 3. Prefixes must not be too generic or common entity types like gene or
91
+ chemical. Reviewers will use their best judgment since it's hard to list all
92
+ possible generic entity types. For example, gene would be bad while `hgnc.gene`
93
+ would be better.
94
+ 4. Subspacing should not be used unnecessarily, i.e., when a nomenclature only
95
+ has one entity type. For example, `chebi.chemical` would be bad while `chebi`
96
+ would be better.
97
+ 5. Prefixes should not end in "O" for "Ontology", "T" for "Terminology" or any
98
+ letters denoting related words about vocabularies
99
+ 6. New prefixes should not end with "ID" as a way to signify that the prefix is used for
100
+ identifiers, like in `doid` for the Disease Ontology or `caid` for ClinGen Canonical Allele identifier.
101
+
102
+ These policies were developed in parallel with the OBO Foundry policy on
103
+ choosing a prefix (i.e., IDSPACE) at http://obofoundry.org/id-policy.html.
104
+
105
+ #### Handling Collisions
106
+
107
+ While they have proven to be rather infrequent between high quality resources,
108
+ collisions do happen. The Bioregistry has the following policy for handling
109
+ collisions:
110
+
111
+ - New prefixes must not collide with any canonical prefixes, preferred prefixes,
112
+ synonyms, or normalized variants thereof.
113
+ See https://github.com/biopragmatics/bioregistry/issues/359 for an example of
114
+ a prefix request that duplicated the synonyms of an existing prefix and how it
115
+ was able to be resolved.
116
+ - New prefixes should not collide with any prefixes in external registries, even
117
+ if they are not explicitly imported in the Bioregistry. In these cases, a
118
+ thoughtful discussion should take place explaining why the prefix is being
119
+ reused (e.g., it has been parked by an inactive or low-quality resource in
120
+ Bioportal).
121
+ - If a new contributor wants to register a prefix that is already present in the
122
+ Bioregistry, then precedence will be given to the already existing prefix and
123
+ the contributor will be asked to choose a different prefix.
124
+
125
+ It has not happened often that prefixes have even collided. One example is two
126
+ maintained resources, Gene Expression Omnibus vs. Geographical Entity Ontology,
127
+ collided on using `geo` when Geographical Entity Ontology was added to the OBO
128
+ Foundry. This was resolved
129
+ in https://github.com/biopragmatics/bioregistry/issues/67 after deciding to
130
+ change the prefix used in Geographical Entity Ontology due to the fact that the
131
+ Gene Expression Omnibus was both much older and more well-known. This particular
132
+ case motivated the OBO Foundry to update its ontology registration guidelines to
133
+ require conflicts with existing Bioregistry records
134
+ in https://github.com/OBOFoundry/OBOFoundry.github.io/issues/1519. Another
135
+ example is the disease class annotation (legacy classification from the hard
136
+ fork of the Disease Ontology that later became MONDO) and Dublin Core, where one
137
+ is subjectively more important than the other.
138
+
139
+ #### Bulk Contribution
140
+
141
+ If you would like to submit more than 5 prefixes at once, you can fill out the
142
+ [bulk prefix request template](bulk_prefix_request_template.tsv)
143
+ spreadsheet and submit it in
144
+ an [issue](https://github.com/biopragmatics/bioregistry/issues/new). The
145
+ template contains several examples - please review them then delete them before
146
+ submission. Please number all of the rows in sequential order the first
147
+ column (`request_id`). The first columns of the template are all required, even
148
+ if some of the examples don't have an entry there for historic reasons. All
149
+ optional fields are marked as such.
150
+
151
+ Anyone is welcome to submit a bulk prefix request, but ideally submitters have a
152
+ large working knowledge of the Bioregistry, its requirements, etc. as reviewing
153
+ issues in a bulk request is much less ergonomic and more time-consuming than in
154
+ individual prefix requests, which each get their own discussion thread, pull
155
+ request, and CI/CD runs. Submitters of bulk prefix requests that contain many
156
+ issues may be asked to re-submit as individual prefix requests.
157
+
158
+ #### Prefix Parking
159
+
160
+ A prefix and its corresponding semantic space are **substantiated** when it's
161
+ provable that a semantic space exists by one or more of the following:
162
+
163
+ 1. There's a public place where you can get the entire list of terms.
164
+ Ontologies (e.g., [Gene Ontology](https://bioregistry.io/go)) and databases
165
+ (e.g., [HGNC](https://bioregistry.io/hgnc)) usually make this pretty
166
+ straightforwards by offering download links for the ontology or full
167
+ database.
168
+ 2. There's a working, public URI format string that either lets you get HTML,
169
+ JSON, RDF, or some other kind of information artifact for a given local
170
+ unique identifier. For example, [OMIM.PS](https://bioregistry.io/omim.ps)
171
+ doesn't have a way to get a full list of terms but if you have a given local
172
+ unique identifier, you can use it with the URI format string to retrieve some
173
+ information about the entity corresponding to that LUI.
174
+
175
+ A potential less strict third criteria for substantiation could be when
176
+ references to entities in a semantic space (i.e., in the form of CURIEs) can be
177
+ found in public resources or ontologies that are external to the resource in
178
+ which the prefix/semantic space are defined. This is more common for historical
179
+ prefixes (e.g., OpenCyc references appear quite frequently, but this resource
180
+ was taken down more than a decade ago) and is less applicable to new prefix
181
+ requests. Therefore, this relaxed criteria will not be considered as sufficient
182
+ for substantiation.
183
+
184
+ We define **prefix parking** as a special case of a prefix request in which the
185
+ corresponding resource/semantic space for the prefix does not yet exist or is
186
+ currently under development (and by definition, is not yet substantiated). The
187
+ Bioregistry does not explicitly discourage prefix parking, but new prefix
188
+ requests qualifying as prefix parking require additional guidelines, partially
189
+ motivated by the difficulty of the discussion on
190
+ https://github.com/biopragmatics/bioregistry/issues/359.
191
+
192
+ 1. While it's not typically under the purview of the Bioregistry Review Team to
193
+ judge the utility of a prefix nor comment on its corresponding design
194
+ decisions (e.g., choice of local unique identifier scheme, regular expression
195
+ pattern, URI format string), submitters seeking to park a prefix must both
196
+ actively publicly seek out and seriously consider suggestions and advice from
197
+ the Bioregistry Review Team with regards to these matters (e.g., in the issue
198
+ corresponding to a new prefix request). Submissions unable/unwilling to
199
+ follow these guidelines may be dismissed and asked to re-submit after their
200
+ prefix has been substantiated.
201
+ 2. Submissions to park a prefix must include a primary contact person for the
202
+ resource that is available for public discussion on GitHub. Even though this
203
+ is likely the same as the submitter, it is important that this person can be
204
+ contacted. If they are unresponsive within two weeks of contact regarding the
205
+ parked prefix, then the parked prefix is subject to removal.
206
+ 3. Parked prefixes that are not substantiated within three months are subject to
207
+ removal. In the case that someone else wants to use that prefix, the fact
208
+ that the parked prefix has not been substantiated will, by definition, result
209
+ in no impact or confusion that would normally result from the removal of a
210
+ prefix. It is the responsibility of the submitter/primary contact person for
211
+ the prefix to inform the Bioregistry Review Team of the updates and/or to
212
+ submit the updates to their prefix record themselves that demonstrates it has
213
+ been substantiated.
214
+ 4. It's not the job of the Bioregistry to support parking prefixes for semantic
215
+ spaces that will not be public or that won't be used in other public
216
+ resources - these can be rejected without further discussion.
217
+
218
+ Original discussion about prefix parking can be found at
219
+ https://github.com/biopragmatics/bioregistry/issues/365.
220
+
221
+ #### Review of New Prefix Requests
222
+
223
+ Review of new prefix requests is handled by the Bioregistry Review Team, whose
224
+ membership and conduct is described in the Bioregistry's
225
+ [Project Governance](GOVERNANCE.md).
226
+
227
+ ### Editing Records
228
+
229
+ There are several ways to update a prefix's record in the Bioregistry:
230
+
231
+ 1. Fill out one of the issue templates on our GitHub issue tracker with the
232
+ requested information. If no template exists for your update, feel free to
233
+ fill out a blank issue. We will help make the update and attribute you
234
+ properly.
235
+ 2. ~Edit an entry yourself by [editing the Bioregistry](https://github.com/biopragmatics/bioregistry/edit/main/src/bioregistry/data/bioregistry.json)
236
+ in GitHub through the web browser.~ As the Bioregistry has surpassed the size limit of in-browser editing on GitHub,
237
+ this is no longer possible.
238
+ 3. Make a pull request directly to the upstream repository
239
+ [biopragmatics/bioregistry](https://github.com/biopragmatics/bioregistry). Make sure that you
240
+ run `tox -e bioregistry-lint` from the shell after editing the source JSON files in order to
241
+ canonically order the data.
242
+
243
+ #### Who can edit an existing prefix's record
244
+
245
+ A prefix's record can be edited by anyone, even if it is for a resource they do
246
+ not themselves maintain. A main goal of the Bioregistry is to be a detailed,
247
+ descriptive resource - expertise is welcome from anywhere. In many cases,
248
+ editing an existing prefix's record is useful to override incorrect information
249
+ from integrated repositories, such as Identifiers.org.
250
+
251
+ #### Change of Prefix
252
+
253
+ Typically, prefixes should not be changed since the Bioregistry acts as an
254
+ archive of all usages, even deprecated ones. As an alternative, someone wishing
255
+ to change a prefix can do the following:
256
+
257
+ 1. Mark the old prefix as deprecated
258
+ 2. Include in the `comment` field information about when and why the prefix was
259
+ deprecated
260
+ 3. Add a `has_canonical` relationship from the old prefix's record to the new
261
+ prefix
262
+
263
+ Like with all edits, these are subject to review by the Bioregistry Review team.
264
+ Extra care should be given with this kind of edit.
265
+
266
+ #### Review of Edits
267
+
268
+ Review of edits to existing records is handled by the Bioregistry Review Team,
269
+ whose membership and conduct is described in the Bioregistry's
270
+ [Project Governance](GOVERNANCE.md).
271
+
272
+ ### Removing Records
273
+
274
+ Typically, prefixes should not be removed from the Bioregistry, even if they
275
+ correspond to subsumed, abandoned, or dead resources, because it is also a
276
+ historical archive and reference for anyone who might run into legacy prefixes
277
+ in legacy resources.
278
+
279
+ #### Review of Removals
280
+
281
+ Review of removals of existing records is handled by the Bioregistry Review
282
+ Team, whose membership and conduct is described in the Bioregistry's
283
+ [Project Governance](GOVERNANCE.md).
284
+
285
+ ## Adding a new Registry
286
+
287
+ New registries can be added by anyone, similarly to prefixes, but there is a lot more required curation.
288
+ See the source [metaregistry.json](https://github.com/biopragmatics/bioregistry/blob/main/src/bioregistry/data/metaregistry.json)
289
+ file for inspiration. Entries in this file should follow the schema defined by the
290
+ [`Registry` pydantic model class](https://bioregistry.readthedocs.io/en/latest/api/bioregistry.Registry.html#bioregistry.Registry).
291
+ See also the corresponding entry in the Bioregistry's [JSON schema](https://github.com/biopragmatics/bioregistry/blob/main/src/bioregistry/schema/schema.json)
292
+
293
+ While not strictly required, it's also useful for each registry to add a corresponding getter script and aligner
294
+ class in `bioregistry.external`. See examples there, or get in touch on the
295
+ issue tracker for help.
296
+
297
+ ## Code Contribution
298
+
299
+ This project uses the [GitHub Flow](https://guides.github.com/introduction/flow)
300
+ model for code contributions. Follow these steps:
301
+
302
+ 1. [Create a fork](https://help.github.com/articles/fork-a-repo) of the upstream
303
+ repository
304
+ at [`biopragmatics/bioregistry`](https://github.com/biopragmatics/bioregistry)
305
+ on your GitHub account (or in one of your organizations)
306
+ 2. [Clone your fork](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository)
307
+ with `git clone https://github.com/<your namespace here>/bioregistry.git`
308
+ 3. Make changes to the code
309
+ 4. Test that your code passes quality assurance by running `tox`
310
+ 5. Commit changes to your fork with `git commit`
311
+ 6. Push changes to your fork with `git push`
312
+ 7. Repeat steps 3-6 as needed
313
+ 8. Submit a pull request back to the upstream repository
314
+
315
+ ### Merge Model
316
+
317
+ The Bioregistry
318
+ uses [squash merges](https://docs.github.com/en/github/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/about-pull-request-merges#squash-and-merge-your-pull-request-commits)
319
+ to group all related commits in a given pull request into a single commit upon
320
+ acceptance and merge into the main branch. This has several benefits:
321
+
322
+ 1. Keeps the commit history on the main branch focused on high-level narrative
323
+ 2. Enables people to make lots of small commits without worrying about muddying
324
+ up the commit history
325
+ 3. Commits correspond 1-to-1 with pull requests
326
+
327
+ ### Code Style
328
+
329
+ This project encourages the use of optional static typing. It
330
+ uses [`mypy`](http://mypy-lang.org/) as a type checker
331
+ and [`sphinx_autodoc_typehints`](https://github.com/agronholm/sphinx-autodoc-typehints)
332
+ to automatically generate documentation based on type hints. You can check if
333
+ your code passes `mypy` with `tox -e mypy`.
334
+
335
+ This project uses [`black`](https://github.com/psf/black) to automatically
336
+ enforce a consistent code style. You can apply `black` and other pre-configured
337
+ linters with `tox -e lint`.
338
+
339
+ This project uses [`flake8`](https://flake8.pycqa.org) and several plugins for
340
+ additional checks of documentation style, security issues, good variable
341
+ nomenclature, and more (
342
+ see [`tox.ini`](tox.ini) for a list of flake8 plugins). You can check if your
343
+ code passes `flake8` with `tox -e flake8`.
344
+
345
+ Each of these checks are run on each commit using GitHub Actions as a continuous
346
+ integration service. Passing all of them is required for accepting a
347
+ contribution. If you're unsure how to address the feedback from one of these
348
+ tools, please say so either in the description of your pull request or in a
349
+ comment, and we will help you.
350
+
351
+ ### Logging
352
+
353
+ Python's builtin `print()` should not be used (except when writing to files),
354
+ it's checked by the
355
+ [`flake8-print`](https://github.com/jbkahn/flake8-print) plugin to `flake8`. If
356
+ you're in a command line setting or `main()` function for a module, you can use
357
+ `click.echo()`. Otherwise, you can use the builtin `logging` module by adding
358
+ `logger = logging.getLogger(__name__)` below the imports at the top of your
359
+ file.
360
+
361
+ ### Documentation
362
+
363
+ All public functions (i.e., not starting with an underscore `_`) must be
364
+ documented using
365
+ the [sphinx documentation format](https://sphinx-rtd-tutorial.readthedocs.io/en/latest/docstrings.html#the-sphinx-docstring-format).
366
+ The [`darglint`](https://github.com/terrencepreilly/darglint) plugin to `flake8`
367
+ reports on functions that are not fully documented.
368
+
369
+ This project uses [`sphinx`](https://www.sphinx-doc.org) to automatically build
370
+ documentation into a narrative structure. You can check that the documentation
371
+ properly builds with `tox -e docs-test`.
372
+
373
+ ### Testing
374
+
375
+ Functions in this repository should be unit tested. These can either be written
376
+ using the `unittest` framework in the `tests/` directory or as embedded
377
+ doctests. You can check that the unit tests pass with `tox -e py` and that the
378
+ doctests pass with `tox -e doctests`. These tests are required to pass for
379
+ accepting a contribution.
380
+
381
+ ### Syncing your fork
382
+
383
+ If other code is updated before your contribution gets merged, you might need to
384
+ resolve conflicts against the main branch. After cloning, you should add the
385
+ upstream repository with
386
+
387
+ ```shell
388
+ $ git remote add biopragmatics https://github.com/biopragmatics/bioregistry.git
389
+ ```
390
+
391
+ Then, you can merge upstream code into your branch. You can also use the GitHub
392
+ UI to do this by following [this tutorial](https://docs.github.com/en/github/collaborating-with-pull-requests/working-with-forks/syncing-a-fork).
393
+
394
+ ### Python Version Compatibility
395
+
396
+ This project aims to support all versions of Python that have not passed their
397
+ end-of-life dates. After end-of-life, the version will be removed from the Trove
398
+ qualifiers in the [`setup.cfg`](https://github.com/biopragmatics/bioregistry/blob/main/setup.cfg)
399
+ and from the GitHub Actions testing configuration.
400
+
401
+ See https://endoflife.date/python for a timeline of Python release and
402
+ end-of-life dates.
403
+
404
+ #### Review of Pull Requests
405
+
406
+ Review of edits to existing records is handled by the Bioregistry Core
407
+ Development Team, whose membership and conduct is described in the Bioregistry's
408
+ [Project Governance](GOVERNANCE.md).
409
+
410
+ ## Meta-contributions
411
+
412
+ ### Retroactive Application of Curation Guidelines
413
+
414
+ As the Bioregistry matures, new fields may be added and more strict curation
415
+ guidelines may be imposed (both from a philosophical and technical perspective).
416
+ When imposing new rules, reasonable efforts should be made to backfill existing
417
+ records. Alternatively, existing prefixes can be "grandfathered" in to less
418
+ strict requirements.
testbed/biopragmatics__bioregistry/docs/GOVERNANCE.md ADDED
@@ -0,0 +1,171 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ layout: page
3
+ title: Project Governance
4
+ permalink: /governance/
5
+ ---
6
+ # Governance
7
+
8
+ The goal of the Bioregistry is to enable community-driven curation and
9
+ maintenance of a registry of prefixes and their associated metadata. This is a
10
+ first suggestion for some minimal governance (heavily inspired
11
+ by https://github.com/mapping-commons/SSSOM/issues/82, since that is a similar
12
+ community-driven effort). Discussion for this governance is taking place
13
+ on https://github.com/biopragmatics/bioregistry/issues/156.
14
+
15
+ ## Manually Updating the Bioregistry
16
+
17
+ - Manual updates to the contents of the Bioregistry (e.g., adding a new prefix,
18
+ merging prefixes, splitting prefixes, or updating a prefix's associated
19
+ metadata) must be done either in the form of an issue or a pull request.
20
+ - The only updates that aren't considered manual are the ones done by the CI
21
+ system on a chronological basis.
22
+ - Manual updates can be accepted if all continuous integration tests pass and a
23
+ member of the Bioregistry Review Team approves. It's best practice that a
24
+ member of the Review Team does not approve their own updates.
25
+ - New prefixes must conform to
26
+ https://github.com/biopragmatics/bioregistry/issues/158 and
27
+ https://github.com/biopragmatics/bioregistry/issues/133 and the
28
+ [contribution guidelines](CONTRIBUTING.md).
29
+ - Attribution information for the requester and reviewer of manual updates
30
+ must be collected in the form of an [ORCiD identifier](https://orcid.org).
31
+
32
+ ## Review Team
33
+
34
+ The _Bioregistry Review Team_ is responsible for reviewing requests for new
35
+ prefixes, merging prefixes, splitting prefixes, and updating metadata associated
36
+ with prefixes. It is implemented as a GitHub team that has "triage"
37
+ permissions (e.g., able to maintain issues and pull requests).
38
+
39
+ Until all of the potential update interactions have been codified with GitHub
40
+ actions workflows, the review team is also responsible for either helping the
41
+ requester create an appropriate pull request or creating an appropriate pull
42
+ request directly if none has been given by the requester.
43
+
44
+ ### Membership
45
+
46
+ - Membership to the Bioregistry Review Team is requested on the issue tracker
47
+ - Membership to the Bioregistry Review Team is granted at the discretion of the
48
+ existing Bioregistry Review Team
49
+ using [Disapproval Voting](https://en.wikipedia.org/wiki/Disapproval_voting)
50
+ - Members must join and participate the OBO Foundry Slack, the #prefixes
51
+ channel, and the Review Team private chat.
52
+ - Members must be listed alphabetically by family name [below](#members)
53
+
54
+ #### Member Onboarding
55
+
56
+ - Add to private channel on OBO Foundry Slack
57
+ - Add to the GitHub [review team](https://github.com/orgs/biopragmatics/teams/bioregistry-reviewers)
58
+ (note that GitHub hasn't yet enabled teams to be publicly viewed, and this
59
+ link currently results in a 404 error)
60
+ - Add to membership list below in alphabetical order by last name in along with
61
+ their GitHub handle, ORCID identifier, and date of joining.
62
+
63
+ #### Removing Members
64
+
65
+ - Members who unresponsive for 3 or more months can be removed by another member
66
+ of the Bioregistry Review Team
67
+ - Members who do not conduct themselves according to
68
+ the Bioregistry [Code of Conduct](CODE_OF_CONDUCT.md) can be suggested to be
69
+ removed by a member of the Bioregistry Review Team.
70
+
71
+ #### Member Offboarding
72
+
73
+ - Remove from the private channel on OBO Foundry Slack
74
+ - Remove from the the
75
+ GitHub [review team](https://github.com/orgs/biopragmatics/teams/bioregistry-reviewers)
76
+ (note that GitHub hasn't yet enabled teams to be publicly viewed, and this
77
+ link currently results in a 404 error)
78
+ - Add the date of exit and move their name and information ot the previous
79
+ members list.
80
+
81
+ #### Members
82
+
83
+ - Meghan Balk (@megbalk; https://orcid.org/0000-0003-2699-3066; joined 2022-01)
84
+ - Tiffany Callahan (@callahantiff; https://orcid.org/0000-0002-8169-9049; joined
85
+ 2022-01)
86
+ - Benjamin M. Gyori (@bgyori; https://orcid.org/0000-0001-9439-5346)
87
+ - Charles Tapley Hoyt (@cthoyt; https://orcid.org/0000-0003-4423-4370)
88
+ - Tiago Lubiana (@lubianat; https://orcid.org/0000-0003-2473-2313; joined
89
+ 2022-01)
90
+
91
+ #### Previous Members
92
+
93
+ We're a new team and don't have any yet!
94
+
95
+ ## Core Development Team
96
+
97
+ The _Core Development Team_ is responsible for maintaining the codebase
98
+ associated with the Bioregistry, which includes the Python package, the
99
+ Bioregistry web application, docker configurations/artifacts, and related GitHub
100
+ repositories. It is implemented as a GitHub team that has "maintain"
101
+ permissions (e.g., able to write to the repo as well as maintain issues and pull
102
+ requests).
103
+
104
+ Contributions to the Bioregistry code must be submitted as pull requests
105
+ to https://github.com/biopragmatics/bioregistry. They must conform to
106
+ the [contribution guidelines](CONTRIBUTING.md). Code contributions must be
107
+ approved by a member of the Core Development Team as well as pass continuous
108
+ integration tests before merging.
109
+
110
+ ### Membership
111
+
112
+ - Membership to the Bioregistry Core Development Team is requested on the issue
113
+ tracker
114
+ - It is required that a potential member of the Bioregistry Core Development
115
+ Team has previously made a contribution as an external contributor (to which
116
+ there are no requirements)
117
+ - Membership to the Bioregistry Core Development Team is granted at the
118
+ discretion of the existing Bioregistry Core Development Team
119
+ using [Disapproval Voting](https://en.wikipedia.org/wiki/Disapproval_voting)
120
+ - Members must be listed alphabetically by family name [below](#members-1)
121
+
122
+ #### Members
123
+
124
+ - Benjamin M. Gyori (@bgyori; https://orcid.org/0000-0001-9439-5346)
125
+ - Charles Tapley Hoyt (@cthoyt; https://orcid.org/0000-0003-4423-4370)
126
+
127
+ ## Publications / Attribution
128
+
129
+ All members of the core development and review teams are automatically authors
130
+ on Bioregistry papers and can propose other co-authors.
131
+
132
+ All contributors to the data underlying the Bioregistry, regardless of curation
133
+ size, should be considered for authorship on Bioregistry papers. These
134
+ contributions are automatically summarized at
135
+ https://bioregistry.io/contributors.
136
+
137
+ Larger external institutional contributors should be acknowledged in the
138
+ following places, where appropriate:
139
+
140
+ - On the [support](https://github.com/biopragmatics/bioregistry#-support) and
141
+ [funding](https://github.com/biopragmatics/bioregistry#-funding) sections
142
+ of the repository's main README.md
143
+ - On the [acknowledgements](https://bioregistry.io/acknowledgments) page of
144
+ https://bioregistry.io
145
+
146
+ ## Bootstrapping governance
147
+
148
+ This document's governance will go into effect after additional rounds of
149
+ editing and community discussion. The Bioregistry Review Team will announce when
150
+ it is officially in effect.
151
+
152
+ ## Updating governance
153
+
154
+ This governance must updated through the following steps:
155
+
156
+ 1. Create an issue on the
157
+ Bioregistry's [issue tracker](https://github.com/biopragmatics/bioregistry/issues)
158
+ describing the desired change and reasoning.
159
+ 2. Engage potential stakeholders in discussion.
160
+ 3. Solicit the Bioregistry Review Team for a review.
161
+ 4. The Bioregistry Review Team will accept changes at their discretion.
162
+
163
+ This procedure doesn't apply to cosmetic or ergonomics changes, which are
164
+ allowed to be done in a more *ad-hoc* manner. The Bioregistry Review Team may
165
+ later make explicit criteria for accepting changes to this governance.
166
+
167
+ ## Partners
168
+
169
+ Please see https://github.com/biopragmatics/bioregistry/issues/755
170
+ for discussions about a governance model for partnerships between
171
+ the Bioregistry and identifier space owners.
testbed/biopragmatics__bioregistry/docs/README.md ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Bioregistry Documentation
2
+
3
+ This folder contains two parts:
4
+
5
+ 1. [`source/`](source/) which contains the Sphinx configuration and RST files to
6
+ create the documentation that gets deployed to ReadTheDocs
7
+ at https://bioregistry.readthedocs.io.
8
+ 2. Other documentation, which gets deployed as a static site using Jekyll and
9
+ GitHub Pages to https://biopragmatics.github.io/bioregistry
10
+
11
+ ## Build locally
12
+
13
+ The site can be deployed locally for development using Docker with the following
14
+ commands in the terminal:
15
+
16
+ ```shell
17
+ git clone https://github.com/biopragmatics/bioregistry
18
+ cd bioregistry/docs
19
+ docker run --rm --volume="$PWD:/srv/jekyll" -p 4000:4000 -it jekyll/jekyll:latest jekyll serve
20
+ ```
testbed/biopragmatics__bioregistry/docs/_config.yml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ title: Bioregistry
2
+ author: Charles Tapley Hoyt
3
+ email: cthoyt@gmail.com
4
+ description: >
5
+ An integrative meta-registry of biological databases, ontologies, and nomenclatures.
6
+
7
+ github_username: bioregistry
8
+
9
+ theme: minima
10
+ plugins:
11
+ - jekyll-feed
12
+ - jekyll-sitemap
13
+ - jekyll-paginate
testbed/biopragmatics__bioregistry/docs/_data/warnings.yml ADDED
@@ -0,0 +1,539 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ embedding_rewrites: []
2
+ license_conflict: []
3
+ prefix_rewrites: []
4
+ wrong_patterns:
5
+ - correct: ^/*[0-9A-Za-z]+(?:/[\w/.=*+@\$-]*)?(?:\?.*)?$
6
+ homepage: https://arks.org
7
+ miriam: ^(ark\:)/*[0-9A-Za-z]+(?:/[\w/.=*+@\$-]*)?(?:\?.*)?$
8
+ name: Archival Resource Key
9
+ prefix: ark
10
+ - correct: ^([a-zA-Z]+-)?\d+(\.\d)?$
11
+ homepage: https://www.lgcstandards-atcc.org
12
+ miriam: ^\d+$
13
+ name: American Type Culture Collection
14
+ prefix: atcc
15
+ - correct: ^[0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}$
16
+ homepage: https://biofactoid.org/
17
+ miriam: ^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$
18
+ name: Biofactoid
19
+ prefix: biofactoid
20
+ - correct: ^\d+$
21
+ homepage: https://github.com/SED-ML/KiSAO
22
+ miriam: ^KISAO_\d+$
23
+ name: Kinetic Simulation Algorithm Ontology
24
+ prefix: biomodels.kisao
25
+ - correct: ^\d+$
26
+ homepage: http://teddyontology.sourceforge.net/
27
+ miriam: ^TEDDY_\d{7}$
28
+ name: Terminology for Description of Dynamics
29
+ prefix: biomodels.teddy
30
+ - correct: ^(\d+)|(\w+)$
31
+ homepage: http://bioportal.bioontology.org/
32
+ miriam: ^\d+$
33
+ name: BioPortal
34
+ prefix: bioportal
35
+ - correct: ^\d{7}$
36
+ homepage: http://www.brenda-enzymes.org
37
+ miriam: ^BTO:\d{7}$
38
+ name: BRENDA Tissue Ontology
39
+ prefix: bto
40
+ - correct: ^\w+$
41
+ homepage: http://www.semantic-systems-biology.org/apo
42
+ miriam: ^CCO:\w+$
43
+ name: Cell Cycle Ontology
44
+ prefix: cco
45
+ - correct: ^[A-Z0-9]{4}$
46
+ homepage: https://cellosaurus.org
47
+ miriam: ^CVCL_[A-Z0-9]{4}(\.txt)?$
48
+ name: Cellosaurus
49
+ prefix: cellosaurus
50
+ - correct: ^\d+$
51
+ homepage: http://www.ebi.ac.uk/chebi
52
+ miriam: ^CHEBI:\d+$
53
+ name: Chemical Entities of Biological Interest
54
+ prefix: chebi
55
+ - correct: ^\d{6}$
56
+ homepage: https://github.com/semanticchemistry/semanticchemistry
57
+ miriam: ^CHEMINF:\d+$
58
+ name: Chemical Information Ontology
59
+ prefix: cheminf
60
+ - correct: ^\d{7}$
61
+ homepage: https://obophenotype.github.io/cell-ontology/
62
+ miriam: ^CL:\d{7}$
63
+ name: Cell Ontology
64
+ prefix: cl
65
+ - correct: ^\d{7}$
66
+ homepage: http://classyfire.wishartlab.com/
67
+ miriam: ^C[0-9]{7}$
68
+ name: ClassyFire
69
+ prefix: classyfire
70
+ - correct: ^COG\d+$
71
+ homepage: https://www.ncbi.nlm.nih.gov/research/cog/
72
+ miriam: ^COG[0-9]+$
73
+ name: Cluster of orthologous genes
74
+ prefix: cog
75
+ - correct: ^[a-z0-9]+:[A-Za-z0-9.\-:]+$
76
+ homepage: https://w3c-ccg.github.io/did-spec/
77
+ miriam: ^did:[a-z0-9]+:[A-Za-z0-9.\-:]+$
78
+ name: Decentralized Identifier
79
+ prefix: did
80
+ - correct: ^10.\d{2,9}/.*$
81
+ homepage: https://www.doi.org/
82
+ miriam: ^(doi\:)?10\.\d+/.*$
83
+ name: Digital Object Identifier
84
+ prefix: doi
85
+ - correct: ^\d+$
86
+ homepage: http://www.disease-ontology.org
87
+ miriam: ^DOID:\d+$
88
+ name: Human Disease Ontology
89
+ prefix: doid
90
+ - correct: ^\d+$
91
+ homepage: http://drugcentral.org
92
+ miriam: ^[0-9]+$
93
+ name: Drug Central
94
+ prefix: drugcentral
95
+ - correct: ^\d{1,2}(((\.\d{1,3}){1,3})|(\.\d+){2}\.n\d{1,3})?$
96
+ homepage: https://www.enzyme-database.org/
97
+ miriam: ^\d+\.-\.-\.-|\d+\.\d+\.-\.-|\d+\.\d+\.\d+\.-|\d+\.\d+\.\d+\.(n)?\d+$
98
+ name: Enzyme Commission Code
99
+ prefix: eccode
100
+ - correct: ^\d{7}$
101
+ homepage: https://www.evidenceontology.org
102
+ miriam: ECO:\d{7}$
103
+ name: Evidence and Conclusion Ontology
104
+ prefix: eco
105
+ - correct: ^\d+$
106
+ homepage: https://www.ebi.ac.uk/pdbe/emdb
107
+ miriam: EMPIAR-\d{5,}
108
+ name: Electron Microscopy Public Image Archive
109
+ prefix: empiar
110
+ - correct: ^\d{7,8}$
111
+ homepage: http://environmentontology.org/
112
+ miriam: ^ENVO:\d{7,8}$
113
+ name: Environment Ontology
114
+ prefix: envo
115
+ - correct: ^\d{7}$
116
+ homepage: http://planteome.org/
117
+ miriam: ^(P)?EO\:\d{7}$
118
+ name: Plant Environment Ontology
119
+ prefix: eo
120
+ - correct: ^(bsg-[dscp]?\d{6})|(FAIRsharing\.\w+)$
121
+ homepage: https://fairsharing.org/
122
+ miriam: ^bsg-[dscp]?\d{6}$
123
+ name: FAIRsharing
124
+ prefix: fairsharing
125
+ - correct: ^\d+$
126
+ homepage: http://si.washington.edu/projects/fma
127
+ miriam: ^FMA:\d+$
128
+ name: Foundational Model of Anatomy
129
+ prefix: fma
130
+ - correct: ^[0-9]{8}$
131
+ homepage: https://foodon.org/
132
+ miriam: ^FOODON:[0-9]{8}$
133
+ name: The Food Ontology
134
+ prefix: foodon
135
+ - correct: ^\d{9}$
136
+ homepage: https://github.com/ufbmi/geographical-entity-ontology/wiki
137
+ miriam: ^GEO_[0-9]{9}$
138
+ name: Geographical Entity Ontology
139
+ prefix: geogeo
140
+ - correct: ^[a-zA-Z0-9-_]+(/[a-zA-Z0-9-_]+)?$
141
+ homepage: https://github.com/
142
+ miriam: ^[a-zA-Z0-9-_]+/[a-zA-Z0-9-_]+$
143
+ name: GitHub username
144
+ prefix: github
145
+ - correct: ^.*/.*$
146
+ homepage: https://gitlab.com/
147
+ miriam: ^[0-9A-Za-z_][0-9A-Za-z-_()\. ]*/[0-9A-Za-z_][0-9A-Za-z-_\. ]*$
148
+ name: GitLab
149
+ prefix: gitlab
150
+ - correct: ^GN_[A-Za-z0-9_:]+$
151
+ homepage: https://www.noguchi.or.jp/
152
+ miriam: ^GN_[A-Za-z]*[_]*[A-Za-z0-9-:_]+$
153
+ name: GlycoNAVI
154
+ prefix: glyconavi
155
+ - correct: ^\d{7}$
156
+ homepage: http://geneontology.org/
157
+ miriam: ^GO:\d{7}$
158
+ name: Gene Ontology
159
+ prefix: go
160
+ - correct: ^\d{7}$
161
+ homepage: http://www.geneontology.org/cgi-bin/references.cgi
162
+ miriam: ^GO_REF:\d{7}$
163
+ name: Gene Ontology Database references
164
+ prefix: go.ref
165
+ - correct: ^[A-Z]{2,4}\d+([A-Z])?([0-9])?$
166
+ homepage: https://www.google.com/patents/
167
+ miriam: ^[A-Z]{2}\d+([A-Z])?$
168
+ name: Google Patents
169
+ prefix: google.patent
170
+ - correct: ^\d{7}$
171
+ homepage: http://www.gramene.org/plant_ontology/
172
+ miriam: ^GRO:\d+$
173
+ name: Gramene Growth Stage Ontology
174
+ prefix: gramene.growthstage
175
+ - correct: ^\d+$
176
+ homepage: http://www.gramene.org/
177
+ miriam: ^GR\_tax\:\d+$
178
+ name: Gramene Taxonomy
179
+ prefix: gramene.taxonomy
180
+ - correct: ^\d{6}$
181
+ homepage: https://gsso.research.cchmc.org/
182
+ miriam: ^GSSO:\d{6}$
183
+ name: Gender, Sex, and Sexual Orientation Ontology
184
+ prefix: gsso
185
+ - correct: ^\d{1,5}$
186
+ homepage: http://www.genenames.org
187
+ miriam: ^((HGNC|hgnc):)?\d{1,5}$
188
+ name: HUGO Gene Nomenclature Committee
189
+ prefix: hgnc
190
+ - correct: ^\d{7}$
191
+ homepage: http://www.human-phenotype-ontology.org/
192
+ miriam: ^HP:\d{7}$
193
+ name: Human Phenotype Ontology
194
+ prefix: hp
195
+ - correct: ^(([XVI]+)|([A-Z][0-9]+((-[A-Z][0-9]+)|(\.[0-9]))?))$
196
+ homepage: https://icd.who.int/browse10
197
+ miriam: ^[A-Z]\d+(\.[-\d+])?$
198
+ name: International Classification of Diseases, 10th Revision
199
+ prefix: icd10
200
+ - correct: ^\d{7}$
201
+ homepage: http://www.bioontology.org/wiki/index.php/Infectious_Disease_Ontology
202
+ miriam: ^[0-9]+$
203
+ name: Infectious Disease Ontology
204
+ prefix: ido
205
+ - correct: ^\d+(-\d+)?$
206
+ homepage: https://www.imexconsortium.org/
207
+ miriam: ^IM-\d+(-?)(\d+?)$
208
+ name: International Molecular Exchange
209
+ prefix: imex
210
+ - correct: ^\d+$
211
+ homepage: https://openbiolink.github.io/ITOExplorer/
212
+ miriam: ^.+$
213
+ name: Intelligence Task Ontology
214
+ prefix: ito
215
+ - correct: ^(LCL|LDC|ES|LSC|LPC)-\d+$
216
+ homepage: http://lincsportal.ccs.miami.edu/cells/
217
+ miriam: (^LCL-\d+$)|(^LDC-\d+$)|(^ES-\d+$)|(^LSC-\d+$)|(^LPC-\d+$)
218
+ name: LINCS Cell
219
+ prefix: lincs.cell
220
+ - correct: ^\d+$
221
+ homepage: http://www.lrg-sequence.org/
222
+ miriam: ^LRG_\d+$
223
+ name: Locus Reference Genomic
224
+ prefix: lrg
225
+ - correct: ^\d+$
226
+ homepage: https://github.com/obophenotype/mouse-anatomy-ontology
227
+ miriam: ^MA:\d+$
228
+ name: Mouse adult gross anatomy
229
+ prefix: ma
230
+ - correct: ^\d{7}$
231
+ homepage: http://sourceforge.net/p/mamo-ontology/wiki/Home/
232
+ miriam: ^MAMO_\d{7}$
233
+ name: Mathematical modeling ontology
234
+ prefix: mamo
235
+ - correct: ^\d{7}$
236
+ homepage: https://github.com/monarch-initiative/MAxO
237
+ miriam: \d{7}
238
+ name: Medical Action Ontology
239
+ prefix: maxo
240
+ - correct: ^\d{7}$
241
+ homepage: https://github.com/UTHealth-Ontology/MCRO
242
+ miriam: ^MCRO:\d+$
243
+ name: Model Card Report Ontology
244
+ prefix: mcro
245
+ - correct: ^\d+\w?$
246
+ homepage: https://mediadive.dsmz.de/media
247
+ miriam: ^[A-Z]?[0-9]{1,5}[a-z]?$
248
+ name: MediaDive Medium
249
+ prefix: mediadive.medium
250
+ - correct: ^[SCTAGMNUI]\d{2}\.([AB]\d{2}|\d{3})$
251
+ homepage: http://merops.sanger.ac.uk/index.htm
252
+ miriam: ^I\d{2}\.\d{3}$
253
+ name: MEROPS Entry
254
+ prefix: merops.entry
255
+ - correct: ^(MAM\d{5}\w)|(MAR\d{5})$
256
+ homepage: https://metabolicatlas.org
257
+ miriam: ^MA[MR]\d{5}[a-z]?$
258
+ name: Metabolic Atlas
259
+ prefix: metatlas
260
+ - correct: ^\d+$
261
+ homepage: http://aclame.ulb.ac.be/
262
+ miriam: ^mge:\d+$
263
+ name: Aclame
264
+ prefix: mge
265
+ - correct: ^\d+$
266
+ homepage: http://www.informatics.jax.org/
267
+ miriam: ^MGI:\d+$
268
+ name: Mouse Genome Informatics
269
+ prefix: mgi
270
+ - correct: ^\d{4}$
271
+ homepage: https://github.com/HUPO-PSI/psi-mi-CV
272
+ miriam: ^MI:\d{4}$
273
+ name: Molecular Interactions Controlled Vocabulary
274
+ prefix: mi
275
+ - correct: ^\d{1,7}$
276
+ homepage: https://mint.bio.uniroma2.it
277
+ miriam: ^MINT\-\d{1,7}$
278
+ name: Molecular Interaction Database
279
+ prefix: mint
280
+ - correct: ^\d{8}$
281
+ homepage: https://registry.identifiers.org/registry
282
+ miriam: ^MIR:\d{8}$
283
+ name: Identifiers.org Registry
284
+ prefix: mir
285
+ - correct: ^[0-9a-z_:\.-]+$
286
+ homepage: https://www.ebi.ac.uk
287
+ miriam: ^[a-z_\.]+$
288
+ name: Identifiers.org namespace
289
+ prefix: miriam
290
+ - correct: ^000\d{5}$
291
+ homepage: https://www.ebi.ac.uk/miriam/
292
+ miriam: ^MIR:000\d{5}$
293
+ name: MIRIAM Registry collection
294
+ prefix: miriam.collection
295
+ - correct: ^001\d{5}$
296
+ homepage: https://www.ebi.ac.uk/miriam/
297
+ miriam: ^MIR:001\d{5}$
298
+ name: MIRIAM Legacy Registry Identifier
299
+ prefix: miriam.resource
300
+ - correct: ^\d{5}$
301
+ homepage: http://www.psidev.info/MOD
302
+ miriam: ^MOD:\d{5}
303
+ name: Protein modification
304
+ prefix: mod
305
+ - correct: ^\d{7}$
306
+ homepage: https://www.informatics.jax.org/vocab/mp_ontology/
307
+ miriam: ^MP:\d{7}$
308
+ name: Mammalian Phenotype Ontology
309
+ prefix: mp
310
+ - correct: ^\d{7}$
311
+ homepage: http://www.psidev.info/groups/controlled-vocabularies
312
+ miriam: ^MS:\d{7}$
313
+ name: Mass spectrometry ontology
314
+ prefix: ms
315
+ - correct: ^.+$
316
+ homepage: http://www.psidev.info/usi
317
+ miriam: ^mzspec:(PDX|USI|PXD)[0-9]{6}:[^:]+:(scan|index|nativeId):[0-9]+(:.*)?$
318
+ name: Universal Spectrum Identifier
319
+ prefix: mzspec
320
+ - correct: ^\d+$
321
+ homepage: https://nanbyodata.jp/
322
+ miriam: ^NANDO:[0-9]+$
323
+ name: Nanbyo Disease Ontology
324
+ prefix: nando
325
+ - correct: ^\d+$
326
+ homepage: https://github.com/SciCrunch/NIF-Ontology
327
+ miriam: ^([Bb]irnlex_|Sao|nlx_|GO_|CogPO|HDO|nifext_)\d+$
328
+ name: 'NIF Standard Ontology: Neurolex'
329
+ prefix: neurolex
330
+ - correct: ^.{2,}$
331
+ homepage: https://microbiomedata.org/
332
+ miriam: ^[A-Za-z0-9._~\-\:]+$
333
+ name: National Microbiome Data Collaborative
334
+ prefix: nmdc
335
+ - correct: ^\d+$
336
+ homepage: http://msi-ontology.sourceforge.net/
337
+ miriam: ^NMR:\d+$
338
+ name: NMR-instrument specific component of metabolomics investigations
339
+ prefix: nmr
340
+ - correct: ^\d{7}$
341
+ homepage: https://github.com/obcs/obcs
342
+ miriam: ^OBCS:\d+$
343
+ name: Ontology of Biological and Clinical Statistics
344
+ prefix: obcs
345
+ - correct: ^\d{7}$
346
+ homepage: http://obi-ontology.org
347
+ miriam: (^OBI:\d{7}$)|(^OBI_\d{7}$)
348
+ name: Ontology for Biomedical Investigations
349
+ prefix: obi
350
+ - correct: ^[0-9]{12}$
351
+ homepage: https://ontochem.com/
352
+ miriam: ocid:[0-9]{12}
353
+ name: Ontology Concept Identifiers
354
+ prefix: ocid
355
+ - correct: ^[0-9]{7}(\.[0-9a-z.]+)?(_[0-9]+)?$
356
+ homepage: https://omabrowser.org
357
+ miriam: ^HOG:[0-9]{7}(\.[0-9a-z.]+)?(_[0-9]+)?$
358
+ name: OMA HOGs
359
+ prefix: oma.hog
360
+ - correct: ^\d{6}(-\d+)?$
361
+ homepage: https://omia.org
362
+ miriam: ^\d+$
363
+ name: Online Mendelian Inheritance in Animals
364
+ prefix: omia
365
+ - correct: ^\d+$
366
+ homepage: https://omim.org/
367
+ miriam: ^[*#+%^]?\d{6}$
368
+ name: Online Mendelian Inheritance in Man
369
+ prefix: omim
370
+ - correct: ^\d+$
371
+ homepage: http://bioportal.bioontology.org/ontologies/OPB
372
+ miriam: ^OPB_\d+$
373
+ name: Ontology of Physics for Biology
374
+ prefix: opb
375
+ - correct: ^\d{7}$
376
+ homepage: https://github.com/OPL-ontology/OPL
377
+ miriam: ^OPL:\d+$
378
+ name: Ontology for Parasite LifeCycle
379
+ prefix: opl
380
+ - correct: ^C?\d+$
381
+ homepage: https://www.ebi.ac.uk/ols4/ontologies/ordo
382
+ miriam: ^Orphanet(_|:)C?\d+$
383
+ name: Orphanet Rare Disease Ontology
384
+ prefix: orphanet.ordo
385
+ - correct: ^(G|P|U|C|S)\d{5}$
386
+ homepage: http://www.pantherdb.org/
387
+ miriam: ^[GPUCS]\d{5}$
388
+ name: PANTHER Pathway Component
389
+ prefix: panther.pthcmp
390
+ - correct: ^\d{7}$
391
+ homepage: https://github.com/pato-ontology/pato/
392
+ miriam: ^PATO:\d{7}$
393
+ name: Phenotype And Trait Ontology
394
+ prefix: pato
395
+ - correct: ^\b[0-9a-f]{8}\b-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-\b[0-9a-f]{12}\b$
396
+ homepage: http://pid.nci.nih.gov/
397
+ miriam: ^\w+$
398
+ name: 'NCI Pathway Interaction Database: Pathway'
399
+ prefix: pid.pathway
400
+ - correct: ^PMC\d+(\.\d+)?$
401
+ homepage: http://europepmc.org/
402
+ miriam: PMC\d+
403
+ name: PubMed Central
404
+ prefix: pmc
405
+ - correct: ^\d+$
406
+ homepage: http://browser.planteome.org/amigo
407
+ miriam: ^PO:\d+$
408
+ name: Plant Ontology
409
+ prefix: po
410
+ - correct: ^(?:\d{9}|[OPQ][0-9][A-Z0-9]{3}[0-9](?:-\d+)?|[A-NR-Z][0-9](?:[A-Z][A-Z0-9]{2}[0-9]){1,2}(?:-\d+)?)$
411
+ homepage: http://proconsortium.org
412
+ miriam: ^PR:P?\d+$
413
+ name: Protein Ontology
414
+ prefix: pr
415
+ - correct: ^\d{7}$
416
+ homepage: https://github.com/PRIDE-Utilities/pride-ontology
417
+ miriam: ^\d+$
418
+ name: PRIDE Controlled Vocabulary
419
+ prefix: pride
420
+ - correct: ^(c|k)\d{7}$
421
+ homepage: http://probonto.org
422
+ miriam: ^PROB_c\d+$
423
+ name: Probability Distribution Ontology
424
+ prefix: probonto
425
+ - correct: ^\d+$
426
+ homepage: https://www.psidev.info/psi-par
427
+ miriam: ^PAR:\d+$
428
+ name: Protein Affinity Reagents
429
+ prefix: psipar
430
+ - correct: ^\d{7}$
431
+ homepage: http://rgd.mcw.edu/rgdweb/ontology/search.html
432
+ miriam: ^PW:\d{7}$
433
+ name: Pathway ontology
434
+ prefix: pw
435
+ - correct: ^R-[A-Z]{3}-\d+(-\d+)?(\.\d+)?$
436
+ homepage: https://www.reactome.org/
437
+ miriam: (^R-[A-Z]{3}-\d+(-\d+)?(\.\d+)?$)|(^REACT_\d+(\.\d+)?$)
438
+ name: Reactome
439
+ prefix: reactome
440
+ - correct: ^(((AC|AP|NC|NG|NM|NP|NR|NT|NW|WP|XM|XP|XR|YP|ZP)_\d+)|(NZ_[A-Z]{2,4}\d+))(\.\d+)?$
441
+ homepage: https://www.ncbi.nlm.nih.gov/projects/RefSeq/
442
+ miriam: ^(((WP|AC|AP|NC|NG|NM|NP|NR|NT|NW|XM|XP|XR|YP|ZP)_\d+)|(NZ\_[A-Z]{2,4}\d+))(\.\d+)?$
443
+ name: Reference Sequence Collection
444
+ prefix: refseq
445
+ - correct: ^(HOM)?\d{7}$
446
+ homepage: https://oborel.github.io/
447
+ miriam: ^RO_\d{7}$
448
+ name: Relation Ontology
449
+ prefix: ro
450
+ - correct: ^[a-zA-Z]+.+$
451
+ homepage: https://rrid.site
452
+ miriam: ^RRID:[a-zA-Z]+.+$
453
+ name: Research Resource Identification
454
+ prefix: rrid
455
+ - correct: ^\d{7}$
456
+ homepage: http://www.ebi.ac.uk/sbo/
457
+ miriam: ^SBO:\d{7}$
458
+ name: Systems Biology Ontology
459
+ prefix: sbo
460
+ - correct: ^\d{6}$
461
+ homepage: https://github.com/micheldumontier/semanticscience
462
+ miriam: ^SIO_\d{6,6}$
463
+ name: Semanticscience Integrated Ontology
464
+ prefix: sio
465
+ - correct: ^\d+$
466
+ homepage: http://www.swisslipids.org/#/
467
+ miriam: ^SLM:\d+$
468
+ name: SwissLipid
469
+ prefix: slm
470
+ - correct: ^\d{7}$
471
+ homepage: http://www.sequenceontology.org/
472
+ miriam: ^SO:\d{7}$
473
+ name: Sequence types and features ontology
474
+ prefix: so
475
+ - correct: ^\d{7}$
476
+ homepage: http://stato-ontology.org/
477
+ miriam: ^STATO:\d+$
478
+ name: The Statistical Methods Ontology
479
+ prefix: stato
480
+ - correct: ^(STUDY|FILE|DATASET)\d+$
481
+ homepage: https://www.storedb.org/
482
+ miriam: ^STOREDB:(STUDY|FILE|DATASET)\d+$
483
+ name: Store DB
484
+ prefix: storedb
485
+ - correct: ^[1-9]:(cnt|dir|rel|rev|snp):[0-9a-f]+(;(origin|visit|anchor|path|lines)=\S+)*$
486
+ homepage: https://archive.softwareheritage.org
487
+ miriam: ^swh:[1-9]:(cnt|dir|rel|rev|snp):[0-9a-f]+(;(origin|visit|anchor|path|lines)=\S+)*$
488
+ name: Software Heritage
489
+ prefix: swh
490
+ - correct: ^\d{7}$
491
+ homepage: http://arabidopsis.org/index.jsp
492
+ miriam: ^Gene:\d{7}$
493
+ name: TAIR Gene
494
+ prefix: tair.gene
495
+ - correct: ^\d+$
496
+ homepage: http://arabidopsis.org/index.jsp
497
+ miriam: ^\d{7}$
498
+ name: The Arabidopsis Information Resource
499
+ prefix: tair.locus
500
+ - correct: ^\d{10}$
501
+ homepage: http://arabidopsis.org/index.jsp
502
+ miriam: ^AASequence:\d{10}$
503
+ name: TAIR Protein
504
+ prefix: tair.protein
505
+ - correct: ^\d+$
506
+ homepage: http://uberon.org
507
+ miriam: ^UBERON:\d+$
508
+ name: Uber Anatomy Ontology
509
+ prefix: uberon
510
+ - correct: ^\d{7}$
511
+ homepage: https://github.com/bio-ontology-research-group/unit-ontology
512
+ miriam: ^UO:\d{7}?
513
+ name: Units of measurement ontology
514
+ prefix: uo
515
+ - correct: ^(\d{1,2},?\d{3},?\d{3}|(PP|RE|AI|RX)\d{2},?\d{3}|(D|T|H|X)\d{3},?\d{3})$
516
+ homepage: http://patft.uspto.gov/netahtml/PTO/index.html
517
+ miriam: ^(D|PP|R|T|H|X|AI)?\d+$
518
+ name: United States Patent and Trademark Office
519
+ prefix: uspto
520
+ - correct: ^\d+$
521
+ homepage: http://variationontology.org
522
+ miriam: ^VariO:\d+$
523
+ name: Variation Ontology
524
+ prefix: vario
525
+ - correct: ^\d{1,9}$
526
+ homepage: https://vertebrate.genenames.org
527
+ miriam: ^((VGNC|vgnc):)?\d{1,9}$
528
+ name: Vertebrate Gene Nomenclature Committee
529
+ prefix: vgnc
530
+ - correct: ^\S+$
531
+ homepage: http://en.wikipedia.org/wiki/Main_Page
532
+ miriam: ^[A-Za-z-0-9_]+$
533
+ name: Wikipedia
534
+ prefix: wikipedia.en
535
+ - correct: ^(CE[0-9]{5}|WB[A-Z][a-z]+\d+)$
536
+ homepage: https://www.wormbase.org/
537
+ miriam: ^WB[A-Z][a-z]+\d+$
538
+ name: WormBase
539
+ prefix: wormbase
testbed/biopragmatics__bioregistry/docs/bulk_prefix_request_template.tsv ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ request_id prefix name description pattern uri_format homepage example contributor_name contributor_github contributor_orcid contributor_email repository (optional) license (optional) version (optional) part_of (optional) provides (optional) download_owl (optional) download_obo (optional) download_json (optional) banana (optional) deprecated (optional) synonyms (optional) references (optional) appears_in (optional) depends_on (optional) namespace_in_lui (optional) no_own_terms (optional) comment (optional) proprietary (optional) has_canonical (optional) preferred_prefix (optional) twitter (optional) contact_name (optional) contact_github (optional) contact_orcid (optional) contact_email (optional)
2
+ example_1 (delete this row) chebi Chemical Entities of Biological Interest Chemical Entities of Biological Interest (ChEBI) is a freely available dictionary of molecular entities focused on 'small' chemical compounds. ^\d+$ https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:$1 http://www.ebi.ac.uk/chebi 24867 https://github.com/ebi-chebi/ChEBI CC BY 4.0 210 http://purl.obolibrary.org/obo/chebi.owl http://purl.obolibrary.org/obo/chebi.obo CHEBI CHEBI|CHEBIID|ChEBI True CHEBI chebit Adnan Malik amalik01 0000-0001-8123-5351 amalik@ebi.ac.uk
3
+ example_2 (delete this row) tkg Tohoku University cell line catalog Collection of cell lines by Tohoku University. This includes transplantable animal cell lines, such as Yoshida sarcoma and rat ascites hepatoma (AH series) cell lines as well as human, murine cell lines and hybridoma cells. ^\d+$ http://www2.idac.tohoku.ac.jp/dep/ccr/TKGdate/TKGvol08/$1.html http://www2.idac.tohoku.ac.jp/dep/ccr/ 0221 Charles Tapley Hoyt cthoyt 0000-0003-4423-4370 cthoyt@gmail.com
4
+ example_3 (delete this row) mondo Monarch Disease Ontology A semi-automatically constructed ontology that merges in multiple disease resources to yield a coherent merged ontology. ^\d{7}$ http://purl.obolibrary.org/obo/MONDO_$1 https://monarch-initiative.github.io/mondo 0000001 https://github.com/monarch-initiative/mondo CC BY 4.0 2022-05-02 http://purl.obolibrary.org/obo/mondo.owl http://purl.obolibrary.org/obo/mondo.obo MONDO MONDO MonarchInit Nicole Vasilevsky nicolevasilevsky 0000-0001-5208-3432 nicole@tislab.org
5
+ example_4 (delete this row) nmdc National Microbiome Data Collaborative An initiative to empower the research community to harness microbiome data exploration and discovery through a collaborative integrative data science ecosystem. ^[\w\-.]{3,}$ https://drs.microbiomedata.org/objects/$1 https://microbiomedata.org/ y3ax-8bq3-60 Donny Winston dwinston 0000-0002-8424-0604 donny@polyneme.xyz Donny Winston dwinston 0000-0002-8424-0604 donny@polyneme.xyz
6
+ 1
7
+ 2
8
+ 3
9
+ 4
10
+ 5
testbed/biopragmatics__bioregistry/docs/curation-blacklisting-external.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ layout: page
3
+ title: Blacklist External Prefixes
4
+ permalink: /curation/blacklist-external
5
+ ---
6
+ When curating unaligned external prefixes, many are either out of scope or
7
+ not possible to find minimum metadata and therefore should be explicitly
8
+ excluded from the Bioregistry.
9
+
10
+ > **Warning **
11
+ > This is a first draft of a tutorial on explicitly curating non-alignments.
12
+ > It's subject to change and additional polishing.
13
+
14
+ 1. Identify a prefix of interest from BioPortal (or another) curation
15
+ sheet (e.g., [here](https://github.com/biopragmatics/bioregistry/blob/main/src/bioregistry/data/external/bioportal/curation.tsv))
16
+ 2. Decide if it's out of scope:
17
+ - Not enough information inside external registry's record to follow-up on
18
+ what it is (i.e., `000467` in CHEMINF)
19
+ - Is there evidence of this resource being used somewhere? Don't add
20
+ resources that are one-off (e.g., many ontologies in BioPortal) as this
21
+ pollutes the prefix pool and makes the burden of finding things harder
22
+ - Double mapping to a Bioregistry prefix (there isn't currently a way to
23
+ curate these)
24
+ - Not about biomedical, chemical, clinical, or life sciences or
25
+ meta-sciences
26
+ 3. If out of scope, add to the SKIP list, either in the corresponding alignment
27
+ python module or associated processing configuration (TODO this needs to be
28
+ better standardized)
29
+
30
+ The PR [#41](https://github.com/semanticchemistry/semanticchemistry/issues/41)
31
+ demonstrates curating CHEMINF mappings including adding three explicit
32
+ blacklists.
testbed/biopragmatics__bioregistry/docs/curation-import-external.md ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ layout: page
3
+ title: Importing External Prefixes
4
+ permalink: /curation/import-external
5
+ ---
6
+ While the Bioregistry automatically imports all prefixes from external
7
+ registries with similar scope and sufficient minimum metadata and quality
8
+ standards (e.g., Identifiers.org), it only partially aligns most external
9
+ registries (e.g., BioPortal). This is a tutorial on how to import a prefix from
10
+ one of the partially aligned registries on an *as-needed* basis. More
11
+ specifically, it describes importing the _Food
12
+ classification_ ([`FOODEX2`](http://agroportal.lirmm.fr/ontologies/FOODEX2))
13
+ ontology from AgroPortal. Pull
14
+ request [#573](https://github.com/biopragmatics/bioregistry/pull/573) contains
15
+ the relevant diff for the changes described in this tutorial.
16
+
17
+ 1. Identify a prefix of interest from AgroPortal (or another) curation
18
+ sheet (e.g., [here](https://github.com/biopragmatics/bioregistry/blob/main/src/bioregistry/data/external/agroportal/curation.tsv))
19
+ 2. Pick a prefix for the Bioregistry. This doesn't have to be the same as the
20
+ external one, but usually it is. If the external prefix is too short or too
21
+ vague, it might be a good chance to improve on this. Further, keep in mind
22
+ that Bioregistry requires lowercase, so the best choice here is `foodex2`
23
+ 3. Go into the `bioregistry.json` file and use the prefix as a key for a new
24
+ dictionary object.
25
+ 4. The only thing you need inside the object is `"mappings"` which itself is a
26
+ dictionary object where the key is the metaprefix for the external registry
27
+ (in this case `agroportal`) and the value is the external registry's prefix
28
+ (in this case `FOODEX2`).
29
+
30
+ ```json
31
+ "foodex2": {
32
+ "mappings": {
33
+ "agroportal": "FOODEX2"
34
+ }
35
+ }
36
+ ```
37
+ 5. Make sure the Bioregistry is installed in editable mode
38
+ 6. Run the alignment script for the registry. In this case,
39
+ it's `python -m bioregistry.align.bioportal`
40
+ 7. Run unit tests with `tox -e py`. This reveals that the alignment doesn't pull
41
+ in enough metadata to meet the minimum requirements. In this case, OntoPortal
42
+ instances (e.g., AgroPortal, BioPortal, etc.) don't provide a well-defined
43
+ example local unique identifier (though note they provide an
44
+ unstandardized `example_iri` field that might be helpful)
45
+ 8. Curate an example identifier. In this case, the AgroPortal's `example_iri`
46
+ gives enough information to pull out an example identifier.
47
+ 9. Add any additional curations
testbed/biopragmatics__bioregistry/docs/curation.md ADDED
@@ -0,0 +1,247 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ layout: page
3
+ title: Help Wanted
4
+ permalink: /curation/
5
+ ---
6
+ Welcome to the _Help Wanted_ section of the Bioregistry 👋, a place where both
7
+ first-time contributors or veteran Bioregistras can find small, meaningful
8
+ ways to contribute novel curations.
9
+
10
+ It's one of the core values of the Bioregistry project to provide attribution
11
+ and appreciation to curation contributors, here's how that works:
12
+
13
+ 1. We associate your ORCID identifier with records that you submitted or helped
14
+ improve. These are displayed proudly on our
15
+ site's [contributions page](https://bioregistry.io/contributors/).
16
+ 2. We associate your GitHub handle with the commits to the repository (even if
17
+ one of the Bioregistry team members or an automated workflow on GitHub makes
18
+ it on your behalf) to get GitHub cred.
19
+ 3. We will consider _all_ curation contributors as co-authors on Bioregistry
20
+ papers.
21
+
22
+ **Table of Contents**:
23
+
24
+ Each of the following sections has its own instructions on how to get started
25
+ making your own curations. If there's something unclear, please let us know
26
+ via the [GitHub issue tracker](https://github.com/biopragmatics/bioregistry/issues/new),
27
+ and we can improve this page.
28
+
29
+ 1. [Improving the Metaregistry](#improving-the-metaregistry)
30
+ 2. [Aligning Wikidata database records](#wikidata)
31
+ 3. [Curating regular expression patterns](#pattern)
32
+ 4. [Curating URI format strings](#formatter)
33
+ 5. [Curating example local unique identifiers](#example)
34
+
35
+ ## Improving the Metaregistry
36
+
37
+ The Bioregistry processes and semi-automatically aligns metadata
38
+ from external registries such as Identifiers.org, the OBO Foundry,
39
+ FAIRsharing, and others. These alignments constitute the Bioregistry's
40
+ _metaregistry_. Some resources (e.g., Identifiers.org)
41
+ have similar scope, minimum metadata standards, and curation standards
42
+ to the Bioregistry and are imported in full. Others are aligned only when
43
+ prefixes can be matched based on an algorithm.
44
+
45
+ This means that there are potentially many records in external registries
46
+ that are relevant for the Bioregistry, but either were not able to be mapped
47
+ to an existing prefix, or do not have a mapping but would be valuable to import.
48
+
49
+ The following table links to curation sheets for each external registry
50
+ that show relevant metadata to help curate each record as one of the following:
51
+
52
+ 1. Record corresponds to a prefix in the Bioregistry. Tutorial TBD.
53
+ 2. Record is relevant but does not have a corresponding prefix in the
54
+ Bioregistry. See the tutorial
55
+ on [importing external prefixes](import-external).
56
+ 3. Record is irrelevant for the bioregistry. See the tutorial
57
+ on [curating explicit prefix blacklists](blacklist-external).
58
+
59
+ <table>
60
+ <thead>
61
+ <tr>
62
+ <th>Prefix</th>
63
+ <th>Name</th>
64
+ </tr>
65
+ </thead>
66
+ <tbody>
67
+ {% for entry in site.data.curation["prefix_xrefs"] %}
68
+ <tr>
69
+ <td>{{ entry.metaprefix }}</td>
70
+ <td><a href="https://github.com/biopragmatics/bioregistry/blob/main/exports/alignment{{ entry.metaprefix }}.tsv">{{ entry.name }}</a></td>
71
+ </tr>
72
+ {% endfor %}
73
+ </tbody>
74
+ </table>
75
+
76
+ <a id="wikidata"></a>
77
+ ## Aligning Wikidata Database Records
78
+
79
+ The following entries in the Bioregistry have not been annotated with
80
+ the `["wikidata"]["database"]` entry because it either exists in Wikidata and it
81
+ needs to be annotated, or it does not exist in Wikidata and needs to be created,
82
+ then annotated.
83
+
84
+ ### Creating a Wikidata item
85
+
86
+ 1. Make sure an item doesn't exist already by doing a cursory search of
87
+ Wikidata.
88
+ 2. Create a [new item](https://www.wikidata.org/wiki/Special:NewItem).
89
+ 3. Create the first relationship `instance of` ([P31](https://www.wikidata.org/wiki/Property:P31))
90
+ and target `biological database` ([Q4117139](https://www.wikidata.org/wiki/Q4117139)).
91
+ 4. Add second relationship `official website` ([P856](https://www.wikidata.org/wiki/Property:P856))
92
+ 5. Fill in any other information you want! `country`, `main subject`,
93
+ `maintained by`, etc.
94
+
95
+ ### Editing the Bioregistry
96
+
97
+ 1. Fork the repository, clone it, create a new branch, and edit the [src/bioregistry/data/bioregistry.json](https://github.com/bioregistry/bioregistry/edit/main/src/bioregistry/data/bioregistry.json) file locally. Check the [contribution guidelines](https://github.com/biopragmatics/bioregistry/blob/main/docs/CONTRIBUTING.md) for help on working with Git and GitHub
98
+ 2. Here's an example of `3dmet`, which has the Wikidata database annotated
99
+ properly.
100
+
101
+ ```json
102
+ {
103
+ "3dmet": {
104
+ "miriam": {
105
+ "deprecated": false,
106
+ "description": "3DMET is a database collecting three-dimensional structures of natural metabolites.",
107
+ "id": "00000066",
108
+ "name": "3DMET",
109
+ "namespaceEmbeddedInLui": false,
110
+ "pattern": "^B\\d{5}$",
111
+ "prefix": "3dmet"
112
+ },
113
+ "n2t": {
114
+ "prefix": "3dmet"
115
+ },
116
+ "wikidata": {
117
+ "database": "Q23948774", // <-- this is it!!
118
+ "property": "P2796"
119
+ }
120
+ },
121
+ ...
122
+ }
123
+ ```
124
+
125
+ <details>
126
+ <summary>Entries ({{ site.data.curation["wikidata"] | size }})</summary>
127
+ <table>
128
+ <thead>
129
+ <tr>
130
+ <th>Prefix</th>
131
+ <th>Name</th>
132
+ </tr>
133
+ </thead>
134
+ <tbody>
135
+ {% for entry in site.data.curation["wikidata"] %}
136
+ <tr>
137
+ <td>{{ entry.prefix }}</td>
138
+ <td><a href="{{ entry.homepage }}">{{ entry.name }}</a></td>
139
+ </tr>
140
+ {% endfor %}
141
+ </tbody>
142
+ </table>
143
+ </details>
144
+
145
+ <a id="pattern"></a>
146
+ ## Adding a Regular Expression Pattern for Each Resource's Local Unique Identifiers
147
+
148
+ Same drill for patterns - these entries need a `["pattern"]` entry that includes
149
+ a regular expression describing the local unique identifiers for this namespace.
150
+
151
+ <details>
152
+ <summary>Entries ({{ site.data.curation["pattern"] | size }})</summary>
153
+ <table>
154
+ <thead>
155
+ <tr>
156
+ <th>Prefix</th>
157
+ <th>Name</th>
158
+ </tr>
159
+ </thead>
160
+ <tbody>
161
+ {% for entry in site.data.curation["pattern"] %}
162
+ <tr>
163
+ <td>{{ entry.prefix }}</td>
164
+ <td><a href="{{ entry.homepage }}">{{ entry.name }}</a></td>
165
+ </tr>
166
+ {% endfor %}
167
+ </tbody>
168
+ </table>
169
+ </details>
170
+
171
+ <a id="formatter"></a>
172
+ ## Curating URI Format Strings
173
+
174
+ Same drill for URL Formatters - these entries need a `["uri_format"]` entry.
175
+ This is a URL with a `$1` character where the local unique identifier gets put.
176
+
177
+ ```json
178
+ {
179
+ ...
180
+ "jax": {
181
+ "example": "004435",
182
+ "name": "Jackson Laboratories Strain",
183
+ "uri_format": "https://www.jax.org/strain/$1"
184
+ // <-- this one here
185
+ },
186
+ ...
187
+ }
188
+ ```
189
+
190
+ <details>
191
+ <summary>Entries ({{ site.data.curation["formatter"] | size }})</summary>
192
+ <table>
193
+ <thead>
194
+ <tr>
195
+ <th>Prefix</th>
196
+ <th>Name</th>
197
+ </tr>
198
+ </thead>
199
+ <tbody>
200
+ {% for entry in site.data.curation["formatter"] %}
201
+ <tr>
202
+ <td>{{ entry.prefix }}</td>
203
+ <td><a href="{{ entry.homepage }}">{{ entry.name }}</a></td>
204
+ </tr>
205
+ {% endfor %}
206
+ </tbody>
207
+ </table>
208
+ </details>
209
+
210
+ <a id="example"></a>
211
+ ## Example Local Unique Identifier
212
+
213
+ As a courtesy to newcomers, it's nice to show an example local unique
214
+ identifier. These entries need a `["example"]` entry.
215
+
216
+ ```json
217
+ {
218
+ ...
219
+ "jax": {
220
+ "example": "004435",
221
+ // <-- this one here
222
+ "name": "Jackson Laboratories Strain",
223
+ "url": "https://www.jax.org/strain/$1"
224
+ },
225
+ ...
226
+ }
227
+ ```
228
+
229
+ <details>
230
+ <summary>Entries ({{ site.data.curation["example"] | size }})</summary>
231
+ <table>
232
+ <thead>
233
+ <tr>
234
+ <th>Prefix</th>
235
+ <th>Name</th>
236
+ </tr>
237
+ </thead>
238
+ <tbody>
239
+ {% for entry in site.data.curation["example"] %}
240
+ <tr>
241
+ <td>{{ entry.prefix }}</td>
242
+ <td><a href="{{ entry.homepage }}">{{ entry.name }}</a></td>
243
+ </tr>
244
+ {% endfor %}
245
+ </tbody>
246
+ </table>
247
+ </details>
testbed/biopragmatics__bioregistry/docs/datamodel.md ADDED
@@ -0,0 +1,244 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ layout: page
3
+ title: Data Model
4
+ permalink: /datamodel/
5
+ ---
6
+ The following section describes the contents of entries in the Bioregistry. The
7
+ associated schema is encoded in Python classes using the [Pydantic
8
+ package](https://github.com/samuelcolvin/pydantic) which also generates a
9
+ generally reusable JSON schema. Each element of the schema has associated unit
10
+ tests that are run on any change to the Bioregistry to ensure that not only the
11
+ schema is conformant, but also enables higher-level tests for style and content
12
+ to be implemented.
13
+
14
+ <details>
15
+ <summary>Expand for a UML diagram of the datamodel</summary>
16
+ <img src="https://raw.githubusercontent.com/biopragmatics/bioregistry/main/docs/img/datamodel_umls.svg" alt="Bioregistry data model in a UML diagram"/>
17
+ </details>
18
+
19
+ ## Metadata and Properties
20
+
21
+ ### Prefixes
22
+
23
+ Each entry in the Bioregistry is annotated with a required canonical prefix
24
+ (i.e., lower case, containing no strange punctuation or characters), an optional
25
+ preferred prefix (i.e., containing stylization), and an optional list of
26
+ alternate prefixes (i.e., synonyms).
27
+
28
+ ### Status
29
+
30
+ Each includes flags if the resource for the prefix is deprecated (e.g. AERO),
31
+ proprietary (e.g., NameRXN), or doesn't contain any terms (e.g., ChIRO). These
32
+ flags are helpful in subjectively deciding which resources could be considered
33
+ as reliable.
34
+
35
+ ### Name, Description, and Homepage
36
+
37
+ All entries in the Bioregistry must have a name and description. This is
38
+ important not only for active resources, but also for deprecated resources so
39
+ the integrative registry can be used as a research tool and reference such as
40
+ when encountering the variety of historically obscured cross references in OBO
41
+ Foundry ontologies. All active resources must additionally have a homepage,
42
+ while inactive resources may not have a homepage due to their respective sites
43
+ being taken down. Entries are highly encouraged to include reference URLs and
44
+ contributor free text comments, especially for deprecated resources to give
45
+ context to readers.
46
+
47
+ ### License
48
+
49
+ License information is only readily available via the OBO Foundry and Ontology
50
+ Lookup Service. Most use permissive licenses from the Creative Commons (either
51
+ CC-BY or CC-0). Some licenses include license versions and some do not. There
52
+ are several instances of conflict, often due to specification of the version of
53
+ the Creative Commons license. Licenses only appearing a small number of times,
54
+ such as CC-BY-SA, CC-BY-NC, and CC-BY-NC-SA were collapsed into "Other".
55
+ Licenses that were not appropriate for data (e.g., variants of the Apache
56
+ License, GNU GPL) and custom licenses (e.g., in the case of the Human Phenotype
57
+ Ontology) were also collapsed into "Other".
58
+
59
+ ### Version
60
+
61
+ The OLS is the only registry that consumes the data it references and provides
62
+ detailed accessible artifacts, and is therefore the only registry that reports
63
+ version information. Other lookup services like AberOWL and OntoBee consume
64
+ ontologies but do not generate metadata reports. The OBO Foundry also references
65
+ versioned data, but does not consume it and therefore can not report version
66
+ information. Wikidata also contains version information for some databases, but
67
+ is not currently viable for generally tracking version information. The other
68
+ registries (e.g., MIRIAM, N2T) do not report version information as their
69
+ resolution services are independent of the data versions. Alternatively, the
70
+ Bioversions project sets out to be a registry-independent solution for
71
+ identifying current versions of different databases, ontologies, and resources.
72
+
73
+ ### Local Unique Identifiers
74
+
75
+ All non-deprecated entries in the Bioregistry must include one or more example
76
+ local unique identifiers. While each optionally (highly recommended) includes a
77
+ regular expression pattern describing local unique identifiers, there are cases
78
+ when they are difficult to generate due to the high complexity and heterogeneity
79
+ of identifiers (e.g., Ensembl identifiers are highly complex), the lack of
80
+ enough examples as is often the case with deprecated identifiers, or the
81
+ triviality of assigning a wildcard pattern to a small enumerated namespace like
82
+ FOAF, RDF, or RDFS.
83
+
84
+ While the Bioregistry imports identifier regular expression patterns from
85
+ several registries (i.e., MIRIAM/Identifiers.org, N2T, Prefix Commons, GO, and
86
+ Wikidata), there exist many philosophical and practical discrepancies. A major
87
+ one arises in the definition and management of redundant prefixes embedded in
88
+ identifiers that is common to ontologies. For example, the colloquial local
89
+ unique identifier for apoptosis in the Gene Ontology is GO:0006915, so the
90
+ corresponding prefixed CURIE for this entity is GO:GO:0006915. Each registry
91
+ handles cases like this slightly differently, whether it is to include the
92
+ redundant prefix capitalized in the pattern, to include an extra flag in the
93
+ metadata associated with the prefix, or whether to completely handle this
94
+ programmatically.
95
+
96
+ In order to promote backwards compatibility with some MIRIAM prefixes, entries
97
+ can contain an annotation "namespace embedded in LUI" to allow for overriding of
98
+ MIRIAM metadata as well as the "banana" which explicitly states how the
99
+ namespace embedded in LUI appears, for situations where it is not the same as
100
+ the prefix itself (e.g., HOG).
101
+
102
+ Because there is such low consistency, the Bioregistry introduces a new field
103
+ called the "banana" where the potentially redundant prefix can be explicitly
104
+ enumerated, which allows for a general solution that can apply to FBbt, VariO,
105
+ and other mixed-case embedded prefixes. The Bioregistry Python package includes
106
+ functions for reformatting CURIEs based on the desired context (e.g., for
107
+ general use, for compatibility with Identifiers.org). Further discussion on this
108
+ topic can be found at https://github.com/biopragmatics/bioregistry/issues/191.
109
+
110
+ ### URI Format String
111
+
112
+ Each entry optionally (highly recommended) includes one or more URI format
113
+ strings that can be used to generate URIs for a local unique identifier.
114
+
115
+ All active entries should have a provider, if possible. Deprecated resources
116
+ likely do not have providers. Two persisting issues are due to providers being
117
+ decommissioned but not removed from registries and the propagation of resolver
118
+ services as providers which exacerbates the first. For example, because many
119
+ ontologies use OBO-like PURLs, they are often annotated in registries as
120
+ providers even though they do not resolve to anything. It is a future goal to
121
+ provide more "health" checks over each registry and the Bioregistry as a whole.
122
+
123
+ ### Availability
124
+
125
+ Each entry includes three optional fields for when the resource is available as
126
+ an ontology in the OWL (https://www.w3.org/TR/owl2-syntax),
127
+ OBO (https://owlcollab.github.io/oboformat/doc/obo-syntax.html), or OBO Graph
128
+ JSON (https://github.com/geneontology/obographs) formats. These entries are
129
+ typically imported from the OBO Foundry and OLS and are manually annotated to
130
+ support large-scale ontology acquisition and processing such as with ROBOT,
131
+ Pronto, or PyOBO.
132
+
133
+ ### Attribution
134
+
135
+ Each includes two required attribution fields for the contributor and reviewer
136
+ that each require a minimum of an ORCiD identifier and name with optional email
137
+ address and GitHub handle. Each also includes an optional attribution field for
138
+ an external contact person for the resource that could have either the ORCiD
139
+ identifier, email, GitHub handle.
140
+
141
+ ## Ontological Relationships Between Prefixes
142
+
143
+ In addition to metadata and properties, the Bioregistry includes rich
144
+ ontological relationships between prefixes in the Bioregistry as well as
145
+ external prefixes.
146
+
147
+ ### Exact Matches
148
+
149
+ The most novel aspect of the Bioregistry is its ability to store equivalence
150
+ mappings (e.g., skos:exactMatch) between Bioregistry records and external
151
+ records (external records' semantics are mediated by the metaregistry). Each
152
+ entry in the Bioregistry can contain several mappings to different databases.
153
+ Typically, each prefix can only have one exact match in each database.
154
+ Exceptions have arisen due to duplicate records, in which case the mapping is
155
+ curated to the canonical external record. These records support interoperability
156
+ by enabling conversion between the standard flavor of a prefix defined by the
157
+ Bioregistry and context-specific variants.
158
+
159
+ ### Depends On
160
+
161
+ Each entry contains a list of external entries that its associated resource
162
+ depends on. This is particularly useful in ontologies, since they may either
163
+ import terms from an external ontology or use external prefixes in their xrefs,
164
+ provenance, or relationships. These are mostly imported from the OBO Foundry but
165
+ also have an aspect of novel manual curation. While not explicitly stored in the
166
+ source data, the Bioregistry python package infers the inverse relationship (
167
+ i.e. appears in) for easy access given a prefix.
168
+
169
+ ### Provides
170
+
171
+ While prefixes in the Bioregistry are supposed to correspond to nomenclature
172
+ authorities, this is not always true because it imports from external sources
173
+ that don't enforce this constraint. For example, the Comparative Toxicogenomics
174
+ Database uses NCBI Gene for naming genes and MeSH for naming diseases and
175
+ chemicals. Identifiers.org has minted 3 prefixes (ctd.gene, ctd.disease, and
176
+ ctd.chemical) that mostly reflect the entries of the authorities for which they
177
+ are providers. Another example is ValidatorDB, which provides information based
178
+ on Protein Databank records. An even more exotic example are the Gene Ontology
179
+ Annotations provided by the EBI because it provides for several types of
180
+ identifiers including those from UniProt, RNA Central, and the ComplexPortal.
181
+
182
+ Therefore, prefixes in the Bioregistry can be annotated with the prefix for
183
+ which they provide (e.g., ctd.gene provides mesh). Along with the part of and
184
+ has canonical relationships (described below), this relationship can promote
185
+ better standardization and help deconvolute multiple prefixes that use the same
186
+ URI format string, which is problematic when generating high quality prefix maps
187
+ for use in CURIE-IRI interconversion.
188
+
189
+ ### Has Canonical
190
+
191
+ While there should not be redundancies in the Bioregistry, there are several
192
+ scenarios in which two or more prefixes equally correspond to the same
193
+ nomenclature authority. Because these can not be merged without making the data
194
+ model for the Bioregistry much more complicated and inaccessible, the has
195
+ canonical annotation allows for the subjective choice of which is considered
196
+ highest priority. A few scenarios in which this annotation is used are:
197
+
198
+ 1. A prefix has been replaced by another one (e.g., hgnc.genefamily was replaced
199
+ by hgnc.genegroup)
200
+ 2. A prefix is redundant of another (e.g., glycomedb is redundant of glytoucan,
201
+ pdb-ccd is redundant of pdb.ligand)
202
+ 3. Multiple prefixes are used by different groups for the same shared semantic
203
+ space, but none of them own it (e.g., insdc.run, ena.embl)
204
+
205
+ Records in the has canonical relationship do not necessarily have the same URI
206
+ format string, but if they do, this relationship further promotes choosing a
207
+ deterministic prefix when parsing an IRI in combination with the provides and
208
+ part of relationships.
209
+
210
+ ### Part Of
211
+
212
+ There are several flavors of hierarchical relationships between prefixes in the
213
+ Bioregistry annotated with the part of relationship. For example,
214
+ chembl.compound and chembl.target are each a part of chembl and kegg.pathway and
215
+ kegg.ligand are each a part of kegg. Connecting these prefixes provides
216
+ significantly more context to readers of the Bioregistry. Other scenarios
217
+ include:
218
+
219
+ 1. no shared prefix, has parent prefix (e.g., fbbt, fbcv, fbrf, ... and flybase)
220
+ 2. has shared prefix, has dot delimiter, has a parent prefix (e.g., kegg with
221
+ kegg.pathway, kegg.ligand),
222
+ 3. has shared prefix, has dot delimiter, no parent prefix (e.g.,
223
+ insdc.cds/insdc.gca/insdc.sra),
224
+ 4. has shared prefix, no dot delimiter, has a parent prefix (N/A)
225
+ 5. has shared prefix, no dot delimiter, no parent prefix (e.g., dlxb/dlxb,
226
+ NCBIGene/NCBIProtein/NCBITaxon)
227
+ 6. prefix matching resource name and extra prefixes (e.g., biogrid and
228
+ biogrid.interaction)
229
+
230
+ In several cases such as KEGG and ChEMBL, the parent prefix and child prefixes
231
+ share a URI format string. Practically, the parent prefix would be sufficient,
232
+ but it is often pertinent to use a subspace to denote entity types within the
233
+ nomenclature. In the case of KEGG, each different entity type has a different
234
+ identifier pattern. In the case of ChEMBL, all different entity types have the
235
+ same identifier pattern. Ultimately, the part of relationship is the last part
236
+ combined with the provides and has canonical relationships along with a small
237
+ amount of additional logic to construct a high-quality prefix map.
238
+
239
+ The Rat Genome Database (RGD) constitutes an edge case with its three prefixes:
240
+ rgd, rgd.qtl, and rgd.strain. The rgd prefix is more of a bucket than a parent -
241
+ it includes all of the entity types (e.g., genes, articles) in the RGD that are
242
+ neither quantitative trait loci (QTLs) nor strains. Because of cases like this,
243
+ we have begun discussions on imposing a prefix subspacing policy
244
+ at https://github.com/biopragmatics/bioregistry/issues/133.
testbed/biopragmatics__bioregistry/docs/glossary.md ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ layout: page
3
+ title: Glossary
4
+ permalink: /glossary/
5
+ ---
6
+ This section introduces several terms and their technical definitions when used
7
+ throughout this manuscript.
8
+
9
+ ## Resource
10
+
11
+ A resource assigns unique identifiers to a collection of entities. This
12
+ definition is effectively interchangeable with *namespace* and *semantic space*
13
+ in the context of the Bioregistry and other registries.
14
+
15
+ There are many types of resources such as ontologies (e.g., [Gene Ontology (GO)](https://bioregistry.io/go)
16
+ , [Chemical Entities of Biological Interest (ChEBI)](https://bioregistry.io/chebi)
17
+ , [Experimental Factor Ontology (EFO)](https://bioregistry.io/efo)), controlled
18
+ vocabularies (e.g., [Entrez Gene](https://bioregistry.io/ncbigene)
19
+ , [InterPro](https://bioregistry.io/interpro)
20
+ , [FamPlex](https://bioregistry.io/famplex)
21
+ , [HUGO Genome Nomenclature Consortium (HGNC)](https://bioregistry.io/hgnc), and
22
+ databases (e.g., [Protein Data Bank (PDB)](https://bioregistry.io/pdb)
23
+ , [Gene Expression Omnibus (GEO)](https://bioregistry.io/geo)).
24
+
25
+ Some resources only cover single entity types (e.g., HGNC), some cover a small
26
+ number (e.g., Gene Ontology), and some are expansive (e.g., [MeSH](https://bioregistry.io/mesh),
27
+ [UMLS](https://bioregistry.io/umls), [NCI Thesaurus (NCIT)](https://bioregistry.io/efo)).
28
+
29
+ Some resources are complete by definition (e.g., [Enzyme Classification](https://bioregistry.io/eccode)),
30
+ some resources are complete but subject to change (e.g., HGNC), and some are
31
+ always incomplete (e.g., PDB).
32
+
33
+ Resources do not always correspond one-to-one with projects, such as how the
34
+ ChEMBL database contains both
35
+ the [ChEMBL Compound](https://bioregistry.io/chembl.compound)
36
+ and [ChEMBL Target](https://bioregistry.io/chembl.target)
37
+ resources or how the Uber Anatomy Ontology (UBERON) contains
38
+ both [UBERON](https://bioregistry.io/uberon)) and UBPROP resources for terms and
39
+ properties, respectively.
40
+
41
+ There are a variety of patterns used for identifiers, including
42
+ integers (`^\d+$`; e.g., PubMed), zero padded integers (`^\d{7}$`; e.g., GO,
43
+ ChEBI, other OBO Ontologies), universally unique identifiers (UUIDs; e.g., NCI
44
+ Pathway Interaction Database, NDEx), and many other variations.
45
+
46
+ ## Record
47
+
48
+ A record is an entry in the Bioregistry or other external registry that has
49
+ information about a resource, such as its prefix, title, homepage, description,
50
+ etc.
51
+
52
+ ## Provider
53
+
54
+ A provider returns information about entities from a given resource. A provider
55
+ is characterized by a URI format string into which an identifier from its
56
+ resource can be substituted for a special token (e.g., `$1`). For example, the
57
+ following formatter can be used to get a web page about a given HGNC entity
58
+ based on its identifier by replacing the `$1` with a given HGNC gene identifier
59
+ like `5173` for
60
+ HRAS: `http://www.genenames.org/cgi-bin/gene_symbol_report?hgnc_id=$1`.
61
+
62
+ Well-behaved URI format strings only have one instance of the special token that
63
+ occurs at the end. Poorly-behaved URI format strings may have additional
64
+ characters following the special token as
65
+ in `http://rebase.neb.com/rebase/enz/$1.html`
66
+ for [REBASE](https://bioregistry.io/rebase) or as
67
+ in http://eawag-bbd.ethz.ch/$1/$1_map.html for
68
+ the [UM-BBD Pathway database](https://bioregistry.io/umbbd.pathway). Providers
69
+ can return information HTML as in the previous example, images (e.g., https://www.ebi.ac.uk/chebi/displayImage.do?defaultImage=true&chebiId=132964
70
+ for the ChEBI entry on fluazifop-P-butyl), XML (e.g., https://www.uniprot.org/uniprot/P10636.xml
71
+ for UniProt entry on human
72
+ Microtubule-associated protein tau), or any other information that can be
73
+ transferred via HTTP, FTP, or related data transfer protocols. Alternatively,
74
+ content negotiation could be used to return multiple kinds of data from the same
75
+ provider URL. Most resources have an associated first-party provider that
76
+ returns information via a web page. Some resources, like ChEBI, have several
77
+ first-party providers for different content types (e.g., HTML, image). Some
78
+ resources, like Entrez Gene, have additional external providers, including
79
+ databases that use its identifiers like the Comparative Toxicogenomics
80
+ Database (CTD). Some resources, such as many OBO ontologies, do not have an
81
+ associated first party provider and rely solely on third party browsers like
82
+ AberOWL, OntoBee, and the Ontology Lookup Service.
83
+
84
+ ## Registry
85
+
86
+ A registry is a special kind of resource that assigns unique identifiers to a
87
+ collection of resources. For historical reasons, these identifiers are
88
+ colloquially called prefixes. A registry collects additional metadata about each
89
+ resource, though there is a wide variety of metadata standards across existing
90
+ registries (see https://bioregistry.io/related). These metadata may include the
91
+ name, homepage, a regular expression pattern for validating identifiers, one or
92
+ more example identifiers, a default provider, and potentially additional
93
+ providers. Like with resources, a high-quality registry should have an
94
+ associated first-party provider that comprises a web site for exploring its
95
+ entries and their associated metadata. Some registries are directly imported and
96
+ reused in other places (e.g., GO Registry reused in
97
+ psi-mi-CV [https://github.com/HUPO-PSI/psi-ms-CV/blob/master/db-xrefs.yaml],
98
+ NCBI GenBank Registry reused in https://www.ddbj.nig.ac.jp/ddbj/db_xref-e.html).
99
+
100
+ ## Metaregistry
101
+
102
+ A metaregistry is a special kind of registry that assigns unique identifiers to
103
+ a collection of registries; it could even contain an entry about itself. It
104
+ collects additional metadata about each registry, such as a description of its
105
+ metadata standards and capabilities (see https://bioregistry.io/related). Most
106
+ importantly, a metaregistry contains mappings between equivalent entries in its
107
+ constituent registries. Before the publication of this article, to the best of
108
+ our knowledge, there were no dedicated metaregistries. Some registries such as
109
+ FAIRSharing and the MIRIAM/Identifiers.org registry contain limited numbers of
110
+ entries referring to other registries (e.g., BioPortal), but they neither
111
+ delineate these records as representing registries, provide additional metadata,
112
+ nor provide mappings.
113
+
114
+ ## Resolver
115
+
116
+ A resolver uses a registry to generate a URL for a given prefix/identifier pair
117
+ based on the registry's default provider for the resource with the given prefix,
118
+ then redirects the requester to the constructed URL. Resolvers are different
119
+ from providers in that they are general for many resources and do not host
120
+ content themselves. Four well-known resolvers are purl.org, the OBO PURL
121
+ service, and Identifiers.org. Name-To-Thing also includes other resolvers and is
122
+ therefore sometimes called a meta-resolver.
123
+
124
+ ## Lookup Service
125
+
126
+ A lookup service is like a provider but generalized to provide for many
127
+ resources. They typically have a URL format string into which a compact
128
+ identifier can be placed like OntoBee, but many require more complicated
129
+ programmatic logic to construct. Some well-known lookup services are the OLS,
130
+ AberOWL, OntoBee, and BioPortal.
131
+
132
+ ## Bioregistra
133
+
134
+ Noun: a developer, contributor, user, or supporter of the Bioregistry who loves cute
135
+ names for things. Plural: _Bioregistras_
testbed/biopragmatics__bioregistry/docs/guides/README.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Curation Guides
2
+
3
+ This folder contains various task-specific curation guides.
4
+
5
+ - [Curating new providers](curation/providers)
6
+ - [Curating new publications and references](curation/publications)
7
+
8
+ ## How to add new guides
9
+
10
+ 1. Create a new markdown file in this directory (`bioregistry/docs/guides/`)
11
+ 2. Use appropriate front-matter so that Jekyll can give it a permalink
12
+ (see
13
+ [here](https://github.com/biopragmatics/bioregistry/blob/fe2a685503ae2c9ff863908bf885c71fd240c21d/docs/guides/providers.md?plain=1#L1-L5)
14
+ for an example)
15
+ 3. Add it to the list above. Don't include a forward slash `/` in the beginning of the link!
16
+
17
+ ## What makes a good guide
18
+
19
+ A good guide is able to educate and guide a curator through a new scenario.
20
+
21
+ As a guide writer, you should assume a small amount of background knowledge on the Bioregistry
22
+ and using GitHub, but effectively none about the internal structure of the Bioregistry repository
23
+ nor its data schema.
24
+
25
+ Your guide should do the following:
26
+
27
+ 1. Give some high-level motivation on what curation from your guide accomplishes
28
+ 2. Explain in what files curation should be done. Give links to that file on the GitHub main branch for the
29
+ repository, so they can navigate in the web browser and see it.
30
+ 3. Explain how to do the curation
31
+ - Give a step-by-step guide
32
+ - Illustrate your guide with screenshots, code blocks (with highlighting),
33
+ permalinks to files or sections of files in the Bioregistry GitHub repository
testbed/biopragmatics__bioregistry/docs/guides/publications.md ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ layout: page
3
+ title: Curating Publications and References
4
+ permalink: /curation/publications
5
+ ---
6
+
7
+ The example below shows a subset of the record for
8
+ [3D Metabolites (3dmet)](https://bioregistry.io/3dmet) that highlights the `publications` list.
9
+ Note that each entry is a dictionary with several parts:
10
+
11
+ 1. `title` (required) - the title of the paper
12
+ 2. `year` (highly recommended) - the year of publication of the paper
13
+ 3. `pubmed`, `doi`, and `pmc` (one or more required) - identifiers for the paper
14
+
15
+ ```json
16
+ "3dmet": {
17
+ "name": "3D Metabolites",
18
+ "publications": [
19
+ {
20
+ "doi": "10.2142/biophysico.15.0_87",
21
+ "pmc": "PMC5992871",
22
+ "pubmed": "29892514",
23
+ "title": "Chemical curation to improve data accuracy: recent development of the 3DMET database",
24
+ "year": 2018
25
+ },
26
+ {
27
+ "doi": "10.1021/ci300309k",
28
+ "pubmed": "23293959",
29
+ "title": "Three-dimensional structure database of natural metabolites (3DMET): a novel database of curated 3D structures",
30
+ "year": 2013
31
+ }
32
+ ]
33
+ },
34
+ ```
35
+
36
+ Similarly, there are URL references that are not _publications_ that are worth curating. These can be
37
+ stored in the `references` list. For example, the
38
+ [Registry of Toxic Effects of Chemical Substances (rtecs)](https://bioregistry.io/rtecs) entry appears in the
39
+ Bioregistry because of its usage, but it is hard to find information on the internet about it. Therefore, the
40
+ references list is perfect for storing references to PDFs and webpages that describe the resource.
41
+
42
+ ```json
43
+ "rtecs": {
44
+ "name": "Registry of Toxic Effects of Chemical Substances",
45
+ "publications": [
46
+ {
47
+ "doi": "10.1016/s1074-9098%2899%2900058-1",
48
+ "title": "An overview of the Registry of Toxic Effects of Chemical Substances (RTECS): Critical information on chemical hazards",
49
+ "year": 1999
50
+ }
51
+ ],
52
+ "references": [
53
+ "https://www.cdc.gov/niosh/docs/97-119/pdfs/97-119.pdf",
54
+ "https://www.cdc.gov/niosh/npg/npgdrtec.html"
55
+ ]
56
+ }
57
+ ```
58
+
59
+ What else is good to keep track of in the references list:
60
+
61
+ 1. Bioregistry issue or pull requests about the resource
62
+ 2. Links to webpages describing the identifier resource
63
+ 3. Links to discussions on Slack or other platforms (keeping in mind links might not last forever)
64
+ 4. Any other context that's useful for a Bioregistry reader
65
+
66
+ ## Why Should I Curate Publications and References?
67
+
68
+ 1. They give additional context for Bioregistry readers who want to know more about the paper
69
+ 2. They make it easier to attribute usage of identifiers from a given resource to its authors
70
+ 3. They enable global landscape analysis of when and where identifier resources are being made. The following image is
71
+ automatically regenerated with each Bioregistry update:
72
+
73
+ ![](https://raw.githubusercontent.com/biopragmatics/bioregistry/refs/heads/main/docs/img/bibliography_years.svg)
74
+ 4. They support the training of a machine learning for semi-automated curation of additional literature. See
75
+ this [talk](https://docs.google.com/presentation/d/1h2IajyGkUxUPHubEi8_WE6xW6TOuOihn5zsmi4kYrrc/edit?usp=sharing)
76
+ from the 2022 Workshop on Prefixes, CURIEs, and IRIs.
testbed/biopragmatics__bioregistry/docs/health.md ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ layout: page
3
+ title: Health Report
4
+ permalink: /health/
5
+ ---
6
+
7
+ {% assign run = site.data.health.runs[0] %}
8
+
9
+ Of the {{ run.summary.total_measured }} prefixes in the Bioregistry that have
10
+ both an example local unique identifiers and at least one URI format string,
11
+ {{ run.summary.total_success }} ({{ run.summary.success_percent }}%)
12
+ were able to resolve (with a HTTP 200 status code) and {{ run.summary.total_failed }}
13
+ ({{ run.summary.failure_percent }}%) were not.
14
+
15
+ This comes with a few caveats:
16
+
17
+ 1. Some websites do not send appropriate HTTP statuses, and may return HTTP 200
18
+ even when redirecting to a default "Page Not Found" page. This means that this
19
+ number might be artificially high.
20
+ 2. There are several reasons why resolution might fail, some of which are false
21
+ positives (see below).
22
+
23
+ ## Background
24
+
25
+ ### Why Does Resolution Fail?
26
+
27
+ 1. Often, the website suffered from a temporary issue and failed to resolve during
28
+ check, but still works. Because this is possible, it's better to compare the
29
+ last few checks for any newly failing prefixes.
30
+ 2. **gone** - The website has been fully taken down. This often happens to academic websites
31
+ 3. **hijacked** - The website has been replaced with another unrelated website, and the URI
32
+ format does not correspond to an existing endpoint anymore (e.g., the old
33
+ site for `atfdb.family` has been replaced by something unrelated).
34
+ 4. **moved** - The website has been updated, and the URI format does not correspond to an
35
+ existing endpoint anymore (solvable with additional curation).
36
+ 5. **degraded** - The website has been modified, and it's no longer possible to link directly to a page for an entity
37
+ (e.g., the site switched to using form data or has a single page application)
38
+ 6. **uri-only** - The website never existed in the first place. Some URI format strings are
39
+ generated as artifacts of ontology curation,
40
+ e.g., with [Protégé](https://protege.stanford.edu), and were not meant to
41
+ resolve. Ontologies typically use IRIs (a superset of URIs), which do not
42
+ necessarily imply that their content are resolvable as a URL.
43
+ 7. **misconfigured** - The URI corresponds to a redirect that is misconfigured in the redirection
44
+ service (e.g., this happened for several CropOCT ontologies
45
+ (ref: [#527](https://github.com/biopragmatics/bioregistry/issues/527)) and
46
+ sporadically for the OBO PURL service).
47
+ 8. **curation-error** - The URI format string was curated incorrectly.
48
+
49
+ ### Why Store URI Formats for Dead Resources?
50
+
51
+ It's still valuable to store URI format strings, even if the websites don't work
52
+ anymore (or never did in the first place), because URIs based on these URI
53
+ format strings may appear in biomedical resources like ontologies or databases.
54
+ This makes the Bioregistry a more valuable tool for parsing these URIs and
55
+ ultimately for standardizing data.
56
+
57
+ {% if run.delta %}
58
+ ## Changes
59
+
60
+ There are {{ run.delta.alive }} prefixes that remain passing and
61
+ {{ run.delta.dead }} that remained failing.
62
+
63
+ {% if run.delta.new.size > 0 or run.delta.fallen.size > 0 %}
64
+ ### New failures
65
+
66
+ The following resources were passing in the previous check but not in the current check:
67
+
68
+ <ul>
69
+ {% for prefix in run.delta.new %}
70
+ <li><a href="https://bioregistry.io/{{ prefix }}">{{ prefix }}</a> (first check)</li>
71
+ {% endfor %}
72
+ {% for prefix in run.delta.fallen %}
73
+ <li><a href="https://bioregistry.io/{{ prefix }}">{{ prefix }}</a></li>
74
+ {% endfor %}
75
+ </ul>
76
+ {% endif %}
77
+
78
+ {% if run.delta.revived and run.delta.revived.size > 0 %}
79
+ ### Revived
80
+
81
+ The following resources failed in the previous check but passed in the current check:
82
+
83
+ <ul>
84
+ {% for prefix in run.delta.revived %}
85
+ <li><a href="https://bioregistry.io/{{ prefix }}">{{ prefix }}</a></li>
86
+ {% endfor %}
87
+ </ul>
88
+ {% endif %}
89
+
90
+ {% if run.delta.forgotten and run.delta.forgotten.size > 0 %}
91
+ ### Forgotten
92
+
93
+ The following resources tested in the previous check but not this check:
94
+
95
+ <ul>
96
+ {% for prefix in run.delta.forgotten %}
97
+ <li><a href="https://bioregistry.io/{{ prefix }}">{{ prefix }}</a></li>
98
+ {% endfor %}
99
+ </ul>
100
+ {% endif %}
101
+ {% endif %}
102
+
103
+ ## Results
104
+
105
+ These results were run on {{ run.date }}.
106
+
107
+ <table>
108
+ <thead>
109
+ <tr>
110
+ <th>Prefix</th>
111
+ <th>Example LUID</th>
112
+ <th>Status</th>
113
+ </tr>
114
+ </thead>
115
+ <tbody>
116
+ {% for record in run.results %}
117
+ {% if record.exception %}
118
+ {% assign color = "#FFDDDB" %}
119
+ {% elsif record.status_code == 200 %}
120
+ {% assign color = "#B0EEB0" %}
121
+ {% else %}
122
+ {% assign color = "#FFFFE0" %}
123
+ {% endif %}
124
+ <tr style="background-color: {{ color }}">
125
+ <td><a href="https://bioregistry.io/{{ record.prefix }}">{{ record.prefix }}</a></td>
126
+ <td><a href="{{ record.url | uri_escape }}">{{ record.example | truncate: 30 }}</a></td>
127
+ <td>
128
+ {% if record.exception %}
129
+ {{ record.exception }}
130
+ {% else %}
131
+ HTTP {{ record.status_code }}
132
+ {% endif %}
133
+ </td>
134
+ </tr>
135
+ {% endfor %}
136
+ </tbody>
137
+ </table>
testbed/biopragmatics__bioregistry/docs/img/bioregistry_coverage.svg ADDED
testbed/biopragmatics__bioregistry/docs/img/bioregistry_coverage_bar.svg ADDED
testbed/biopragmatics__bioregistry/docs/img/bioregistry_coverage_bar_short.svg ADDED
testbed/biopragmatics__bioregistry/docs/img/providers.svg ADDED
testbed/biopragmatics__bioregistry/docs/img/regex_report.svg ADDED
testbed/biopragmatics__bioregistry/docs/img/xrefs.svg ADDED
testbed/biopragmatics__bioregistry/docs/index.md ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ layout: home
3
+ ---
4
+ <p align="center">
5
+ <img src="https://raw.githubusercontent.com/bioregistry/bioregistry/main/docs/source/logo.png" height="150">
6
+ </p>
7
+
8
+ An integrative meta-registry of biological databases, ontologies, and nomenclatures. See the full listing
9
+ at [https://bioregistry.io/registry](https://bioregistry.io/registry/). This site hosts the curation and warning
10
+ summary pages, automatically generated and served with GitHub Pages.
11
+
testbed/biopragmatics__bioregistry/docs/source/alignment.rst ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ Alignment
2
+ =========
3
+ .. automodapi:: bioregistry.external
testbed/biopragmatics__bioregistry/docs/source/cli.rst ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ Command Line Interface
2
+ ======================
3
+ bioregistry automatically installs the command :code:`bioregistry`. See
4
+ :code:`bioregistry --help` for usage details.
5
+
6
+ .. click:: bioregistry.cli:main
7
+ :prog: bioregistry
8
+ :show-nested:
testbed/biopragmatics__bioregistry/docs/source/conf.py ADDED
@@ -0,0 +1,256 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Configuration file for the Sphinx documentation builder.
3
+
4
+ This file does only contain a selection of the most common options. For a
5
+ full list see the documentation:
6
+ http://www.sphinx-doc.org/en/master/config
7
+
8
+ -- Path setup --------------------------------------------------------------
9
+
10
+ If extensions (or modules to document with autodoc) are in another directory,
11
+ add these directories to ``sys.path`` here. If the directory is relative to the
12
+ documentation root, use ``os.path.abspath`` to make it absolute, like shown here.
13
+ """
14
+
15
+ import os
16
+ import re
17
+ import sys
18
+ from datetime import date
19
+
20
+ sys.path.insert(0, os.path.abspath("../../src"))
21
+
22
+ # -- Project information -----------------------------------------------------
23
+
24
+ project = "bioregistry"
25
+ copyright = f"{date.today().year}, Charles Tapley Hoyt"
26
+ author = "Charles Tapley Hoyt"
27
+
28
+ # The full version, including alpha/beta/rc tags.
29
+ release = "0.11.19-dev"
30
+
31
+ # The short X.Y version.
32
+ parsed_version = re.match(
33
+ r"(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:-(?P<release>[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+(?P<build>[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?",
34
+ release,
35
+ )
36
+ version = parsed_version.expand(r"\g<major>.\g<minor>.\g<patch>")
37
+
38
+ if parsed_version.group("release"):
39
+ tags.add("prerelease") # noqa: F821
40
+
41
+
42
+ # See https://about.readthedocs.com/blog/2024/07/addons-by-default/
43
+ # Define the canonical URL if you are using a custom domain on Read the Docs
44
+ html_baseurl = os.environ.get("READTHEDOCS_CANONICAL_URL", "")
45
+
46
+ # See https://about.readthedocs.com/blog/2024/07/addons-by-default/
47
+ # Tell Jinja2 templates the build is running on Read the Docs
48
+ if os.environ.get("READTHEDOCS", "") == "True":
49
+ if "html_context" not in globals():
50
+ html_context = {}
51
+ html_context["READTHEDOCS"] = True # noqa: F821
52
+
53
+
54
+ # -- General configuration ---------------------------------------------------
55
+
56
+ # If your documentation needs a minimal Sphinx version, state it here.
57
+ #
58
+ # needs_sphinx = '1.0'
59
+
60
+ # If true, the current module name will be prepended to all description
61
+ # unit titles (such as .. function::).
62
+ add_module_names = False
63
+
64
+ # A list of prefixes that are ignored when creating the module index. (new in Sphinx 0.6)
65
+ modindex_common_prefix = ["bioregistry."]
66
+
67
+ # Add any Sphinx extension module names here, as strings. They can be
68
+ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
69
+ # ones.
70
+ extensions = [
71
+ "sphinx.ext.autosummary",
72
+ "sphinx.ext.autodoc",
73
+ "sphinx.ext.coverage",
74
+ "sphinx.ext.intersphinx",
75
+ "sphinx.ext.todo",
76
+ # 'sphinx.ext.mathjax',
77
+ "sphinx.ext.viewcode",
78
+ "sphinx_click.ext",
79
+ "sphinx_automodapi.automodapi",
80
+ "sphinx_automodapi.smart_resolver",
81
+ "sphinxcontrib.autodoc_pydantic",
82
+ # 'texext',
83
+ ]
84
+
85
+ # generate autosummary pages
86
+ autosummary_generate = True
87
+
88
+ # Add any paths that contain templates here, relative to this directory.
89
+ templates_path = ["_templates"]
90
+
91
+ # The suffix(es) of source filenames.
92
+ # You can specify multiple suffix as a list of string:
93
+ #
94
+ # source_suffix = ['.rst', '.md']
95
+ source_suffix = {
96
+ ".rst": "restructuredtext",
97
+ }
98
+
99
+ # The master toctree document.
100
+ master_doc = "index"
101
+
102
+ # The language for content autogenerated by Sphinx. Refer to documentation
103
+ # for a list of supported languages.
104
+ #
105
+ # This is also used if you do content translation via gettext catalogs.
106
+ # Usually you set "language" from the command line for these cases.
107
+ language = "en"
108
+
109
+ # List of patterns, relative to source directory, that match files and
110
+ # directories to ignore when looking for source files.
111
+ # This pattern also affects html_static_path and html_extra_path.
112
+ exclude_patterns = []
113
+
114
+ # The name of the Pygments (syntax highlighting) style to use.
115
+ pygments_style = "sphinx"
116
+
117
+ # -- Options for HTML output -------------------------------------------------
118
+
119
+ # The theme to use for HTML and HTML Help pages. See the documentation for
120
+ # a list of builtin themes.
121
+ #
122
+ html_theme = "sphinx_rtd_theme"
123
+
124
+ # Theme options are theme-specific and customize the look and feel of a theme
125
+ # further. For a list of options available for each theme, see the
126
+ # documentation.
127
+ #
128
+ # html_theme_options = {}
129
+
130
+ # Add any paths that contain custom static files (such as style sheets) here,
131
+ # relative to this directory. They are copied after the builtin static files,
132
+ # so a file named "default.css" will overwrite the builtin "default.css".
133
+ # html_static_path = ['_static']
134
+
135
+ # Custom sidebar templates, must be a dictionary that maps document names
136
+ # to template names.
137
+ #
138
+ # The default sidebars (for documents that don't match any pattern) are
139
+ # defined by theme itself. Builtin themes are using these templates by
140
+ # default: ``['localtoc.html', 'relations.html', 'sourcelink.html',
141
+ # 'searchbox.html']``.
142
+ #
143
+ # html_sidebars = {}
144
+
145
+ # The name of an image file (relative to this directory) to place at the top
146
+ # of the sidebar.
147
+ #
148
+ if os.path.exists("logo.png"):
149
+ html_logo = "logo.png"
150
+
151
+ # -- Options for HTMLHelp output ---------------------------------------------
152
+
153
+ # Output file base name for HTML help builder.
154
+ htmlhelp_basename = "bioregistry_doc"
155
+
156
+ # -- Options for LaTeX output ------------------------------------------------
157
+
158
+ # latex_elements = {
159
+ # The paper size ('letterpaper' or 'a4paper').
160
+ #
161
+ # 'papersize': 'letterpaper',
162
+ #
163
+ # The font size ('10pt', '11pt' or '12pt').
164
+ #
165
+ # 'pointsize': '10pt',
166
+ #
167
+ # Additional stuff for the LaTeX preamble.
168
+ #
169
+ # 'preamble': '',
170
+ #
171
+ # Latex figure (float) alignment
172
+ #
173
+ # 'figure_align': 'htbp',
174
+ # }
175
+
176
+ # Grouping the document tree into LaTeX files. List of tuples
177
+ # (source start file, target name, title,
178
+ # author, documentclass [howto, manual, or own class]).
179
+ # latex_documents = [
180
+ # (
181
+ # master_doc,
182
+ # 'bioregistry.tex',
183
+ # 'Bioregistry Documentation',
184
+ # author,
185
+ # 'manual',
186
+ # ),
187
+ # ]
188
+
189
+ # -- Options for manual page output ------------------------------------------
190
+
191
+ # One entry per manual page. List of tuples
192
+ # (source start file, name, description, authors, manual section).
193
+ man_pages = [
194
+ (
195
+ master_doc,
196
+ "bioregistry",
197
+ "Bioregistry Documentation",
198
+ [author],
199
+ 1,
200
+ ),
201
+ ]
202
+
203
+ # -- Options for Texinfo output ----------------------------------------------
204
+
205
+ # Grouping the document tree into Texinfo files. List of tuples
206
+ # (source start file, target name, title, author,
207
+ # dir menu entry, description, category)
208
+ texinfo_documents = [
209
+ (
210
+ master_doc,
211
+ "bioregistry",
212
+ "Bioregistry Documentation",
213
+ author,
214
+ "Charles Tapley Hoyt",
215
+ "An integrative registry of biological databases, ontologies, and nomenclatures.",
216
+ "Miscellaneous",
217
+ ),
218
+ ]
219
+
220
+ # -- Options for Epub output -------------------------------------------------
221
+
222
+ # Bibliographic Dublin Core info.
223
+ # epub_title = project
224
+
225
+ # The unique identifier of the text. This can be a ISBN number
226
+ # or the project homepage.
227
+ #
228
+ # epub_identifier = ''
229
+
230
+ # A unique identification for the text.
231
+ #
232
+ # epub_uid = ''
233
+
234
+ # A list of files that should not be packed into the epub file.
235
+ # epub_exclude_files = ['search.html']
236
+
237
+ # -- Extension configuration -------------------------------------------------
238
+
239
+ # -- Options for intersphinx extension ---------------------------------------
240
+
241
+ # Example configuration for intersphinx: refer to the Python standard library.
242
+ # Note: don't add trailing slashes, since sphinx adds "/objects.inv" to the end
243
+ intersphinx_mapping = {
244
+ "python": ("https://docs.python.org/3", None),
245
+ "rdflib": ("https://rdflib.readthedocs.io/en/stable/", None),
246
+ "pandas": ("https://pandas.pydata.org/docs", None),
247
+ }
248
+
249
+ autoclass_content = "both"
250
+
251
+ # Don't sort alphabetically, explained at:
252
+ # https://stackoverflow.com/questions/37209921/python-how-not-to-sort-sphinx-output-in-alphabetical-order
253
+ autodoc_member_order = "bysource"
254
+
255
+ todo_include_todos = True
256
+ todo_emit_warnings = True
testbed/biopragmatics__bioregistry/docs/source/curation.rst ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ Curation
2
+ ========
3
+ There are several curation workflows implemented in :mod:`bioregistry.curation`.
4
+
5
+ Bulk Import
6
+ -----------
7
+ .. automodapi:: bioregistry.curation.bulk_import
testbed/biopragmatics__bioregistry/docs/source/deployment.rst ADDED
@@ -0,0 +1,198 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Deploying the Bioregistry
2
+ =========================
3
+ The Bioregistry web application is a part of the ``bioregistry`` Python package which is updated,
4
+ packaged, and pushed weekly to the `Python Package Index (PyPI) <https://pypi.org/project/bioregistry/>`_.
5
+ A new deploy can also be triggered by admins using the
6
+ `update workflow <https://github.com/biopragmatics/bioregistry/actions/workflows/update.yml>`_ on GitHub.
7
+ It can be installed and run interactively in the command line with the following commands:
8
+
9
+ .. code-block:: shell
10
+
11
+ python -m pip install --upgrade gunicorn bioregistry[web]
12
+ python -m bioregistry web \
13
+ --with-gunicorn --workers 4 \
14
+ --port 8766 \
15
+ --host "0.0.0.0" \
16
+ --base-url https://example.com
17
+
18
+ .. note::
19
+
20
+ The Bioregistry uses port 8766 by default. Using ``0.0.0.0`` makes sure that this
21
+ works on a variety of systems, including docker, Mac, and Linux. The ``--base-url``
22
+ should correspond to the location through which the service is accessed. In this
23
+ example, https://example.com is used as the base.
24
+
25
+ The Bioregistry is also containerized and pushed during the weekly build to
26
+ `Docker Hub <https://hub.docker.com/r/biopragmatics/bioregistry>`_.
27
+ You can pull then run the latest in the command line with the following commands:
28
+
29
+ .. code-block:: shell
30
+
31
+ docker pull biopragmatics/bioregistry:latest
32
+ docker run --detach -i --name bioregistry -p 8766:8766 biopragmatics/bioregistry:latest
33
+
34
+ Note that ``-p`` says what ports to remap. Note that the base Bioregistry image uses ``8766``
35
+ as its port, so this is simply exposed via the same port.
36
+
37
+ The following shell script can be used to automatically update the containerized deployment:
38
+
39
+ .. code-block:: shell
40
+
41
+ # restart.sh
42
+ #!/bin/bash
43
+
44
+ # Store the container's hash
45
+ BIOREGISTRY_CONTAINER_ID=$(docker ps --filter "name=bioregistry" -aq)
46
+
47
+ # Stop and remove the old container, taking advantage of the fact that it's named specifically
48
+ if [ -n "BIOREGISTRY_CONTAINER_ID" ]; then
49
+ docker stop $BIOREGISTRY_CONTAINER_ID
50
+ docker rm $BIOREGISTRY_CONTAINER_ID
51
+ fi
52
+
53
+ # Pull the latest
54
+ docker pull biopragmatics/bioregistry:latest
55
+
56
+ # Run the start script
57
+ docker run --detach -i --name bioregistry -p 8766:8766 biopragmatics/bioregistry:latest
58
+
59
+ Deploying a custom Bioregistry
60
+ ==============================
61
+ This is a tutorial on how to run a custom instance of the Bioregistry that contains custom content.
62
+ If you don't need custom content, see the instructions above for deploying a vanilla copy of the Bioregistry.
63
+
64
+ Creating custom content
65
+ -----------------------
66
+ In the following example, a slimmed down registry is generated from the base
67
+ Bioregistry. It's also possible to add additional :class:`bioregistry.Resource`
68
+ instances from arbitrary sources.
69
+
70
+ .. code-block:: python
71
+
72
+ import bioregistry
73
+ from pathlib import Path
74
+
75
+ slim_prefixes = {"chebi", "go", "ncbitaxonomy"}
76
+ slim_registry: dict[str, bioregistry.Resource] = {
77
+ resource.prefix: resource
78
+ for resource in bioregistry.resources()
79
+ if resource.prefix in slim_prefixes
80
+ }
81
+ bioregistry.write_registry(
82
+ slim_registry,
83
+ path=Path.home().joinpath("Desktop", "registry.json"),
84
+ )
85
+
86
+ This script creates a new file that will be used when running the Bioregistry
87
+ with the ``--registry`` flag from the command line.
88
+
89
+ .. note:: The same is possible for collections, contexts, and even the metaregistry.
90
+
91
+ Custom configuration and branding
92
+ ---------------------------------
93
+ The Bioregistry can be configured in several ways, including replacing various text in
94
+ the case of custom deployments. Please use good judgement with the following features to
95
+ best represent the Bioregistry project. The following table includes the keys that you
96
+ can put in a configuration JSON file, an explanation of the keys, and suggestions on
97
+ how to replace them.
98
+
99
+ +--------------------------------------+----------------------------------------------------------+
100
+ | Key | Description |
101
+ +======================================+==========================================================+
102
+ | ``METAREGISTRY_TITLE`` | The title on the home page, defaults to "Bioregistry". |
103
+ +--------------------------------------+----------------------------------------------------------+
104
+ | ``METAREGISTRY_HEADER`` | The header text on the home page. Can include arbitrary |
105
+ | | HTML. Suggestions: use a ``<p class="lead">``. |
106
+ +--------------------------------------+----------------------------------------------------------+
107
+ | ``METAREGISTRY_FOOTER`` | The footer text that appears on all pages. Can include |
108
+ | | arbitrary HTML. |
109
+ +--------------------------------------+----------------------------------------------------------+
110
+ | ``METAREGISTRY_RESOURCES_SUBHEADER`` | The second paragraph on https://bioregistry.io/registry. |
111
+ +--------------------------------------+----------------------------------------------------------+
112
+ | ``METAREGISTRY_VERSION`` | The version to display in the top-right of each page. |
113
+ | | Can be set to an empty string if no meaningful version |
114
+ | | information exists. |
115
+ +--------------------------------------+----------------------------------------------------------+
116
+ | ``METAREGISTRY_EXAMPLE_PREFIX`` | An example prefix. Defaults to ``chebi``. |
117
+ +--------------------------------------+----------------------------------------------------------+
118
+ | ``METAREGISTRY_EXAMPLE_IDENTIFIER`` | An example local unique identifier to go with the |
119
+ | | example prefix |
120
+ +--------------------------------------+----------------------------------------------------------+
121
+
122
+ Finally, after filling up a configuration JSON file and naming it something like ``config.json``,
123
+ you can use the ``--config config.json`` flag in the Python commands to run the web service below.
124
+
125
+ Running in the command line with Python
126
+ ---------------------------------------
127
+ The Bioregistry can be run from the Python shell directly following installation
128
+ from the Python Package Index. This example assumes ``registry.json``
129
+ is in the same directory, but any valid paths can be given.
130
+
131
+ .. code-block:: shell
132
+
133
+ python -m pip install gunicorn bioregistry[web]
134
+ python -m bioregistry web \
135
+ --with-gunicorn --workers 4 \
136
+ --port 8766 \
137
+ --host "0.0.0.0" \
138
+ --base-url https://example.com \
139
+ --registry registry.json
140
+
141
+ .. note:: This is the same as deploying the vanilla Bioregistry except the usage of ``--registry registry.json``
142
+
143
+ Running with Docker
144
+ -------------------
145
+ Create the following ``Dockerfile`` in the same directory as your ``registry.json``, ``config.json``,
146
+ and any other custom files.
147
+
148
+ .. code-block:: docker
149
+
150
+ # Dockerfile
151
+ FROM python:3.11-alpine
152
+
153
+ COPY registry.json
154
+ COPY config.json
155
+
156
+ RUN python -m pip install gunicorn bioregistry[web]
157
+ ENTRYPOINT python -m bioregistry web \
158
+ ---with-gunicorn --workers 4 \
159
+ --port 8766 \
160
+ --host "0.0.0.0" \
161
+ --base-url https://example.com \
162
+ --registry registry.json \
163
+ --config config.json
164
+
165
+ There are two options for running the ``Dockerfile``. The first option
166
+ is by running the following two commands in the command line:
167
+
168
+ .. code-block:: shell
169
+
170
+ # Build the docker image from the same directory as the Dockerfile
171
+ docker build --tag bioregistry_custom:latest .
172
+
173
+ # Run the docker image, -d means "detach"
174
+ docker run -d -p 8766:8766 bioregistry_custom:latest
175
+
176
+ The second option is to use an additional `Docker compose <https://docs.docker.com/compose/>`_
177
+ file to orchestrate building, tagging, and running. It works by creating (yet another)
178
+ configuration file ``docker-compose.yml`` in the same directory as ``Dockerfile`` with
179
+ the following:
180
+
181
+ .. code-block:: yaml
182
+
183
+ # docker-compose.yml
184
+ version: '3'
185
+ services:
186
+ app:
187
+ build: .
188
+ restart: always
189
+ ports:
190
+ - "8766:8766"
191
+
192
+ .. note:: This is a relatively simple configuration, Docker Compose is capable of much more than this in general
193
+
194
+ The following command can be used to bring up the docker-compose configuration:
195
+
196
+ .. code-block:: shell
197
+
198
+ docker-compose up
testbed/biopragmatics__bioregistry/docs/source/index.rst ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Bioregistry |release| Documentation
2
+ ===================================
3
+ The Bioregistry is an integrative, open, community-driven meta-registry
4
+ of databases, ontologies, and other nomenclature resources in the life sciences.
5
+ It relies on an open code, open data, and open infrastructure paradigm to support
6
+ its longevity along with a sustainable governance model that enables community
7
+ curation and discussion.
8
+
9
+ This documentation is specifically for the Python package that can
10
+ access the Bioregistry and use it for common tasks like metadata lookup,
11
+ CURIE expansion, URI contraction, and more.
12
+
13
+ .. seealso::
14
+
15
+ - `About this project <https://bioregistry.io/summary>`_
16
+ - `Bioregistry Website <https://bioregistry.io>`_
17
+ - `A list of all prefixes <https://bioregistry.io/registry/>`_
18
+ - `Source Code on GitHub <https://github.com/biopragmatics/bioregistry>`_
19
+ - `Data Downloads <https://github.com/biopragmatics/bioregistry/tree/main/exports>`_
20
+ - `Project Governance <https://github.com/biopragmatics/bioregistry/blob/main/docs/GOVERNANCE.md>`_
21
+ - `Contribution Guidelines <https://github.com/biopragmatics/bioregistry/blob/main/docs/CONTRIBUTING.md>`_
22
+ - `Programming language-agnostic API <https://bioregistry.io/apidocs>`_
23
+ - `Python Package on PyPI <https://pypi.org/project/bioregistry>`_
24
+ - `Docker container on DockerHub <https://hub.docker.com/r/biopragmatics/bioregistry>`_
25
+
26
+ Installation
27
+ ------------
28
+ The most recent release of the Bioregistry Python package can be installed from
29
+ `PyPI <https://pypi.org/project/bioregistry>`_ with:
30
+
31
+ .. code-block:: shell
32
+
33
+ $ pip install bioregistry
34
+
35
+ The most recent code and data can be installed directly from GitHub with:
36
+
37
+ .. code-block:: shell
38
+
39
+ $ pip install git+https://github.com/biopragmatics/bioregistry.git
40
+
41
+ To install in development mode, use the following:
42
+
43
+ .. code-block:: shell
44
+
45
+ $ git clone git+https://github.com/biopragmatics/bioregistry.git
46
+ $ cd bioregistry
47
+ $ pip install -e .
48
+
49
+
50
+ .. toctree::
51
+ :maxdepth: 2
52
+ :caption: Getting Started
53
+ :name: start
54
+
55
+ reference
56
+ alignment
57
+ cli
58
+ pandas
59
+ deployment
60
+ curation
61
+
62
+ Indices and Tables
63
+ ------------------
64
+ * :ref:`genindex`
65
+ * :ref:`modindex`
66
+ * :ref:`search`
testbed/biopragmatics__bioregistry/docs/source/pandas.rst ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ Tabular Data Processing
2
+ =======================
3
+ .. automodule:: bioregistry.pandas
4
+ :members:
testbed/biopragmatics__bioregistry/docs/source/reference.rst ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ Reference
2
+ =========
3
+ This page includes the reference documentation for all
4
+ user-facing code from the Bioregistry Python package.
5
+
6
+ .. automodapi:: bioregistry
7
+ :no-heading:
8
+ :no-main-docstr:
9
+ :no-inheritance-diagram:
testbed/biopragmatics__bioregistry/docs/users.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ layout: page
3
+ title: Who's Using the Bioregistry?
4
+ permalink: /usages/
5
+ ---
6
+
7
+ Are you using the Bioregistry and want your project/organization on this list?
8
+ Please let us know on the [issue tracker](https://github.com/biopragmatics/bioregistry/issues/new).
9
+
10
+ To find new users, start with
11
+ this [GitHub search for the Bioregistry](https://github.com/search?q=%22import+bioregistry%22+OR+%22from+bioregistry+import%22+-user%3Acthoyt+-user%3Asorgerlab+-user%3Abiopragmatics+-is%3Afork+-user%3Apyobo+-user%3Apybel+-user%3Agyorilab&type=code).
12
+ Similarly, downstream users of the Bioregistry often use the [`curies`](https://github.com/cthoyt/curies) package.
13
+ See its usages
14
+ with [this search](https://github.com/search?q=%22import+curies%22+OR+%22from+curies+import%22+-user%3Acthoyt+-user%3Asorgerlab+-user%3Abiopragmatics+-is%3Afork+-user%3Apyobo+-user%3Apybel+-user%3Agyorilab+-repo%3ANCATS-Gamma%2Frobokop+-repo%3Anutanix%2Fcurie+language%3APython&type=code&p=4&l=Python).
15
+
16
+ {% for entry in site.data.usages %}
17
+
18
+ ### {{ entry.name }}{% if entry.logo %}<img src="{{ entry.logo }}" style="margin-left: 5px; max-height: 35px;" />{% endif %}
19
+
20
+ <table class="table">
21
+ {% if entry.description %}
22
+ <tr>
23
+ <td><strong>Description</strong></td>
24
+ <td>{{ entry.description }}</td>
25
+ </tr>
26
+ {% endif %}
27
+ <tr>
28
+ <td><strong>Type</strong></td>
29
+ <td>{{ entry.type | capitalize }}</td>
30
+ </tr>
31
+ <tr>
32
+ <td><strong>Homepage</strong></td>
33
+ <td><a href="{{ entry.homepage }}">{{ entry.homepage }}</a></td>
34
+ </tr>
35
+ {% if entry.repository and entry.repository != entry.homepage %}
36
+ <tr>
37
+ <td><strong>Repository</strong></td>
38
+ <td><a href="{{ entry.repository }}">{{ entry.repository }}</a></td>
39
+ </tr>
40
+ {% endif %}
41
+ {% if entry.wikidata %}
42
+ <tr>
43
+ <td><strong>Wikidata</strong></td>
44
+ <td><a href="https://scholia.toolforge.org/{{ entry.wikidata }}">{{ entry.wikidata }}</a></td>
45
+ </tr>
46
+ {% endif %}
47
+ <tr>
48
+ <td><strong>Usages</strong></td>
49
+ <td>
50
+ <ul>
51
+ {% for usage in entry['uses'] %}
52
+ <li>
53
+ {{ usage['description'] }}
54
+ {% for link in usage['links'] %}
55
+ <a href="{{ link }}">(ref)</a>
56
+ {% endfor %}
57
+ </li>
58
+ {% endfor %}
59
+ </ul>
60
+ </td>
61
+ </tr>
62
+ </table>
63
+
64
+ {% endfor %}
testbed/biopragmatics__bioregistry/docs/warnings.md ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ layout: page
3
+ title: Warnings
4
+ permalink: /warnings/
5
+ ---
6
+ This lists any sorts of things that should be fixed upstream, but are instead
7
+ manually curated in the Bioregistry.
8
+
9
+ ## License Conflicts
10
+
11
+ The following chart shows which manual annotations in the OBO Foundry are
12
+ inconsistent with those extracted by the OLS.
13
+
14
+ <table>
15
+ <thead>
16
+ <tr>
17
+ <th>Prefix</th>
18
+ <th>OBO License</th>
19
+ <th>OLS License</th>
20
+ </tr>
21
+ </thead>
22
+ <tbody>
23
+ {% for entry in site.data.warnings["license_conflict"] %}
24
+ <tr>
25
+ <td><a href="https://bioregistry.io/{{ entry.prefix }}"><code>{{ entry.prefix }}</code></a></td>
26
+ <td><code>{{ entry.obo }}</code></td>
27
+ <td><code>{{ entry.ols }}</code></td>
28
+ </tr>
29
+ {% endfor %}
30
+ </tbody>
31
+ </table>
32
+
33
+ ## MIRIAM
34
+
35
+ The following issues are with the integrity of the data in the MIRIAM registry (
36
+ identifiers.org).
37
+
38
+ ### Incorrect Pattern
39
+
40
+ The following entries have an incorrect value in the `pattern` field.
41
+
42
+ <table>
43
+ <thead>
44
+ <tr>
45
+ <th>Prefix</th>
46
+ <th>Name</th>
47
+ <th>MIRIAM</th>
48
+ <th>Correct</th>
49
+ </tr>
50
+ </thead>
51
+ <tbody>
52
+ {% for entry in site.data.warnings["wrong_patterns"] %}
53
+ <tr>
54
+ <td><code>{{ entry.prefix }}</code></td>
55
+ <td><a href="{{ entry.homepage }}">{{ entry.name }}</a></td>
56
+ <td><code>{{ entry.miriam }}</code></td>
57
+ <td><code>{{ entry.correct }}</code></td>
58
+ </tr>
59
+ {% endfor %}
60
+ </tbody>
61
+ </table>
62
+
63
+ ### Embedding of Namespace in LUI
64
+
65
+ The following entries have an incorrect value in the `namespaceEmbeddedInLui`
66
+ field.
67
+
68
+ <table>
69
+ <thead>
70
+ <tr>
71
+ <th>Prefix</th>
72
+ <th>Name</th>
73
+ <th>Pattern</th>
74
+ <th>MIRIAM</th>
75
+ <th>Correct</th>
76
+ </tr>
77
+ </thead>
78
+ <tbody>
79
+ {% for entry in site.data.warnings["embedding_rewrites"] %}
80
+ <tr>
81
+ <td><code>{{ entry.prefix }}</code></td>
82
+ <td><a href="{{ entry.homepage }}">{{ entry.name }}</a></td>
83
+ <td>{{ entry.pattern }}</td>
84
+ <td>{{ entry.miriam }}</td>
85
+ <td>{{ entry.correct }}</td>
86
+ </tr>
87
+ {% endfor %}
88
+ </tbody>
89
+ </table>
90
+
91
+ ### Prefix Mismatch when Namespace Embedded in LUI
92
+
93
+ When the namespace is embedded in the LUI, it's expected that the prefix should
94
+ be uppercased. This is often not the case.
95
+
96
+ <table>
97
+ <thead>
98
+ <tr>
99
+ <th>Prefix</th>
100
+ <th>Name</th>
101
+ <th>Pattern</th>
102
+ <th>Correct Prefix</th>
103
+ </tr>
104
+ </thead>
105
+ <tbody>
106
+ {% for entry in site.data.warnings["prefix_rewrites"] %}
107
+ <tr>
108
+ <td><code>{{ entry.prefix }}</code></td>
109
+ <td><a href="{{ entry.homepage }}">{{ entry.name }}</a></td>
110
+ <td><code>{{ entry.pattern }}</code></td>
111
+ <td><code>{{ entry.correct }}</code></td>
112
+ </tr>
113
+ {% endfor %}
114
+ </tbody>
115
+ </table>
testbed/biopragmatics__bioregistry/exports/alignment/aberowl.tsv ADDED
The diff for this file is too large to render. See raw diff
 
testbed/biopragmatics__bioregistry/exports/alignment/agroportal.tsv ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ prefix name homepage description
2
+ AEO Agricultural Experiments Ontology http://lovinra.inra.fr/ AEO is an ontology aimed to represent objects related to agricultural practices.
3
+ AFEO Agri-Food Experiment Ontology http://opensilex.org/vocabulary/2016/v1/afeo.owl The Agri-Food Experiment Ontology (AFEO), a new ontology network was developed based on two existing ontology resources, i.e., OAE (Ontology for Agriculture Experiment) and OFPE (Ontology for Food Processing Experiment).
4
+ AFO Agriculture and Forestry Ontology The Agriculture and Forestry Ontology (AFO) is based on the Agriforest thesaurus maintained by the Viikki Campus Library, University of Helsinki. The combination of AFO and the Finnish General Upper Ontology YSO has been created in the FinnONTO project by the Viikki Science Library in cooperation with the Semantic Computing Research Group. The ontology was created by aligning the Agriculture and Forestry Ontology with the Finnish General Upper Ontology (YSO) using the top ontology and other modelling principles of YSO. This way the equivalent and differing concepts and their links to more general concepts could be explicitly described. This combination of ontologies can be used for describing resources especially in domain of agriculture, forestry, veterinary medicine, food science, environmental science and biology.
5
+ AGFOOD Agri-food vocabulary http://www.inist.fr "This bilingual vocabulary contains 3117 concepts covering the domains of agri-food science and technology, ranging ""from farm to table"", as well as nutritional and environmental aspects, taking into account the ongoing agricultural and food transition. The terminology is enriched with a large number of alternative entries (3230 in English or French) and hidden terms for easy searching., Ce vocabulaire bilingue comprend 3117 concepts des domaines de la science et de la technologie agroalimentaire, allant « de la ferme à la table », ainsi que des aspects nutritionnels et environnementaux, tenant compte de la transition agricole et alimentaire en cours. La terminologie est enrichie d’un grand nombre d’accès synonymes (3230 en français ou en anglais) et de formes cachées facilitant la recherche. Il est aligné avec l’ontologie FoodOn., taking into account the ongoing agricultural and food transition. The terminology is enriched with a large number of alternative entries (3230 in English or French) and hidden terms for easy searching. It has been aligned with the FoodOn ontology., Este vocabulario bilingüe (francés e inglés) contiene 3117 conceptos que abarcan los ámbitos de la ciencia y la tecnología agroalimentarias, que van ""de la granja a la mesa"", así como aspectos nutricionales y medioambientales, teniendo en cuenta la transición agrícola y alimentaria en curso. La terminología se enriquece con un gran número de entradas alternativas (3230 en francés o inglés) y términos ocultos para facilitar la búsqueda. Se ha alineado con la ontología FoodOn."
6
+ AGRONTOLOGY AgrOntology https://www.fao.org/agrovoc/agrontology Agrontology is the Web Ontology Language (OWL) vocabulary providing a set of domain properties to the AGROVOC thesaurus.
7
+ AGRORDF AGRORDF http://www.openagramap.org agroXML is an XML dialect for representing and describing farm work. It provides elements and XML data types for representing data on work processes on the farm including accompanying operating supplies like fertilizers, pesticides, crops and the like. It can be used within farm management information systems as a file format for documentation purposes but also within web services and interfaces between the farm and external stakeholders as a means to exchange data in a structured, standardized and easy to use way. It covers topics relevant to on farm activity including “crop”, “cropSpecies”, “chemical substance”, “harvestDate”, “enginePower”. There exists an XML version and an RDF version.
8
+ AHOL Animal Health Ontology for Livestock http://www.atol-ontology.com/ AHOL définit et organise les caractères phénotypiques des animaux d’élevage, en prenant en compte les préoccupations sociétales et les grands types de production (lait, œuf, viande, fertilité, alimentation)., AHOL (Animal Health Ontology for Livestock) is an ontology of characteristics defining phenotypes of livestock in their environment (EOL). AHOL aims to: - provide a reference ontology of phenotypic traits of farm animals for the international scientific and educational - communities, farmers, etc.; - deliver this reference ontology in a language which can be used by computers in order to support database management, semantic analysis and modeling; - represent traits as generic as possible for livestock vertebrates; - make the AHOL ontology as operational as possible and closely related to measurement techniques; - structure the ontology in relation to animal production
9
+ ANAEETHES AnaEE Thesaurus https://www.anaee-france.fr The AnaEE thesaurus aims to provide a controlled vocabulary for the semantic description of the study of continental ecosystems and their biodiversity. It has been developed within the framework of the AnaEE-France infrastructure through an iterative process combining both top down and bottom up approaches: import of concepts from other thesauri and collection of concepts used in the AnaEE data bases and/or modeling platforms.
10
+ ANDO Animal Disease Ontology L'ontologie des maladies animales est un référentiel de maladies touchant des animaux de rente et d'agents pathogènes ainsi que des relations qu'ils entretiennent. Ce référentiel est en français avec des équivalents anglais. Il contient plus de 500 couples maladie-hôtes et plus de 500 agents pathogènes associés. Il a été constitué au fil des ans par un travail de veille réglementaire à l'INRA., The Animal Diseases Ontology includes information on diseases of production animals and their related pathogenic agents in French and English. This version contains more than 500 pairs of host-disease and their more than 500 associated pathogens.
11
+ ANT Agricultural and Nutrition Technology Ontology Agricultural ontology for CRP mapping.
12
+ AQFO Aquatic Food Ontology The Aquatic Food Ontology (AQFO) is currently being developed to enable easy aggregation and analysis of data generated by the CGIAR Initiative on Aquatic Foods. The ontology covers two domains - aquaculture and small scale fisheries. The development of AQFO is currently led by WorldFish and supported by the Alliance of Bioversity and CIAT.
13
+ ASCOPAIN-T Terminology of French bread descriptors The AsCoPain-T terminology lists and defines the main quality assessment descriptors used by bread-making professionals and those used in scientific studies. It aims at linking professional and scientific terminologies, as language can vary greatly to denote similar processing operations and observations that are made on the dough and bread. The AsCoPain-T terminology is the result of successive efforts: expert knowledge collected by the INRA AsCoPain project first resulted in the definition of the relations between bread-making control variables and the different states of the dough and bread. These relations were implemented into the expert system used to predict the state of the dough throughout the kneading process. The terminology collected during this work was then published in the form of a glossary in a document referenced by the FAO (see http://prodinra.inra.fr/record/48319). The recent adaptation of its content to the semantic web standards now allows unforeseen uses, in particular by applications. The terminology is available in French. Its translation in English will soon be under way. , La terminologie AsCoPain-T définit les descripteurs qualité utilisés usuellement par les professionnels de la panification et ceux issus des travaux scientifiques. Son objectif est d’établir un lien entre terminologies professionnelles et scientifiques ; le langage employé pour caractériser les mêmes opérations de la transformation et les nécessaires observations de la pâte étant très varié. La terminologie AsCoPain-T est issue d’un travail préalable de recueil de connaissances dans le cadre du projet INRA AsCoPain qui a permis d’intégrer les relations entre des variables de contrôle du procédé de panification et des états de la pâte et du pain dans un système expert de prédiction de l’état de la pâte tout au long de l’opération de pétrissage. Ce travail a aussi produit un glossaire terminologique publié dans un document référencé par la FAO (voir http://prodinra.inra.fr/record/48319). L’adaptation de son contenu aux standards du web sémantique permet d’envisager de nouveaux usages de la terminologie, notamment son utilisation par des programmes informatiques. La terminologie est disponible en français et une version en anglais est en projet.
14
+ ASFA ASFA Thesaurus https://www.fao.org/asfa/en The ASFA Thesaurus contains over 5000 terms related to aquatic sciences, fisheries and aquaculture. The thesaurus covers all topics within ASFA’s subject scope: science, technology, management, and conservation of marine, brackish water, and freshwater resources and environments, including their socio-economic and legal aspects. Maintained by ASFA partners and available in 40 languages, the ASFA thesaurus is an AGROVOC’s sub-scheme.
15
+ ATC AgronomicTaxon http://ontology.irstea.fr/pmwiki.php/Site/AgronomicTaxon This ontology is a module that is based on skos vocabulary, linnean taxonomy ODP and classification ODP. The module was enriched by specialising taxonomic relationship based on the AOS ontology. Taxon ranks are linked to their agrovoc concepts. Some disjoint axioms between ranks were added.
16
+ AWS Ontology for Meteorological Sensors This ontology is part of the Agriculture Meteorology example showcasing the ontology developed by the W3C Semantic Sensor Networks incubator group (SSN-XG). It is published here in order to generalize the potential usage and the alignment with other standardization efforts of the SSN ontology.
17
+ BAGO BioAGgressor Ontology This ontology and related knowledge graph was build during the D2KAB project. The goal is to model all the living organisms involved in cultivated plant disease appearance. The ontology and its documentation represent the point of view of some french researchers from differents intstitutions., This ontology and related knowledge graph was build during the D2KAB project. The goal is to model all the living organisms involved in cultivated plant disease appearance. The ontology and its documentation represent the point of view of some french researchers from differents institutions.
18
+ BDG BigDataGrapes Ontology Ontology, semantic model and semantic data for the H2020 BigDataGrapes EU project. BigDataGrapes ontology is used for representing observations about soil, weather, agriculture, viticulture, wine making, etc. It also contains extra units of measure based on QUDT 2.0.
19
+ BIODIVTHES Biodiversity Thesaurus http://www.inist.fr This bilingual thesaurus organizes the key concepts of biodiversity sciences, in their basic and applied ecological components. It uses polyhierarchy and includes 818 reciprocal associative relationships. The 1654 French and English descriptors (designating 827 concepts) are enriched with a large number of synonyms (1860) and hidden variants (7020) in both languages. Concepts are grouped into 82 collections, by semantic categories, thematic fields and EBV classes (Essential Biodiversity Variables). Definitions are given with their sources. It could be utilized as a controlled vocabulary to enrich metadata of biodiversity data portals, enhancing semantic interoperability. It aims to extend (via narrower concepts, and synonyms) generic environmental science thesauri/ontologies., Ce thésaurus entièrement bilingue organise les concepts clés des sciences de la biodiversité, dans leurs composantes écologiques fondamentales et appliquées. Il utilise la polyhiérarchie et comprend 818 relations associatives réciproques. Les 1654 descripteurs français et anglais (désignant 827 concepts) sont accompagnés d'un grand nombre de synonymes (1860) et de variantes cachées (7020) dans les 2 langues. Les concepts sont regroupés en 82 collections, par catégories sémantiques, domaines thématiques et classes de VEB (variables essentielles de biodiversité). Les définitions sont données avec leurs sources. Cette ressource est alignée sur les thésaurus internationaux AGROVOC, GEMET (GEneral Multilingual Environmental Thesaurus) et EnvThes (Environmental Thesaurus), ainsi que sur l'ontologie ENVO (Environment Ontology)., thematic fields and EBV classes (Essential Biodiversity Variables). Definitions are given with their sources. This resource is aligned with the international thesauri AGROVOC, GEMET (GEneral Multilingual Environmental Thesaurus) and EnvThes (Environmental Thesaurus), as well as with the ontology ENVO (Environment Ontology).
20
+ BIOREFINERY Biorefinery https://www6.inra.fr/cati-icat-atweb/Ontologies/Biorefinery The biorefinery ontology (BIOREFINERY) is dedicated to the description of biomass transformation processes and characterisation of samples.
21
+ BIPOM Biological interlocked Process Ontology for metabolism BiPOm is an ontology based on systemic representation of metabolic processes. BiPOm is an ontological model carrying the main biological processes and molecular roles/functions at a high level of genericity where the usual annotated resources are treated as instances. BiPOm, 1) contains biological knowledge as instances and 2) uses automatic reasoning through Semantic Web Rule Language (SWRL) in order to automatically infer, formalize and refine properties of molecules.
22
+ BIPON Bacterial interlocked Process ONtology BiPON is an ontology permitting a multi-scale systemic representation of bacterial cellular processes and the coupling to their mathematical models. BiPON is further composed of two sub- ontologies, bioBiPON and modelBiPON. bioBiPON aims at organizing the systemic description of biological information while modelBiPON aims at describing the mathematical models (including parameters) associated to each biological process.
23
+ BOHLMANN Bohlmann Ontology An ontology listing the natural substances that occur in the plant family of Compositae (Asteraceae)., An ontology listing the natural substances that occur in the plant family of Compositae (Asteraceae)
24
+ C3PO Crop Planning and Production Process Ontology https://www.elzeard.co/ontologies/c3po/ Crop Planning and Production Process Ontology aims at representing vegetable farming crop management knowledge. The ontology is composed of several modules, each one representing specific domain of interest for vegetable agriculture planning
25
+ CASO Context-Aware System Ontology https://w3id.org/def/caso CASO (Context Aware System Observation) is an ontology for context aware system and observation services. Its goal is to describe all the processing of the context.
26
+ CCON Cerrado Concepts and Plant Community Dynamics http://cerrado.linkeddata.es/ecology/ccon/ The ontology of Cerrado wood plant dynamics was created in order to represent the set of concepts about the dynamics, that is, changes over time of the wood vegetation structure, of Cerrado. Ccon describes the main parameters used to measure the changes, such as mortality rate and recruitment rate., The Ccon represents the main concepts about the Cerrado plant communities structure and dynamics. This ontology will be part of the GeoLinked Data Ontology network to enrich the web of data with geospatial information of the Cerrado Biome, especially with regard the wood plant dynamics.
27
+ CD Crop Disease A basic ontology for crop-disease-pesticide information, mostly pertaining to Indian Agriculture
28
+ CGO Common Greenhouse Ontology https://gitlab.com/ddings/common-greenhouse-ontology This ontology defines common concepts in the greenhouse domain and covers three main aspects of the greenhouse, namely (1) greenhouse construction concepts, (2) real-time measurements and action concepts and (3) dynamic objects and situation concepts. The construction concepts are defined together with main greenhouse construction companies. The real-time measurements and action concepts are based on the SSN Ontology by the W3C Semantic Sensor Networks Incubator Group (SSN-XG), together with considerations from the W3C/OGC Spatial Data on the Web Working Group. The dynamic objects and situation concepts are defined based on the DOLCE+DnS Ultralite (DUL) ontology. The definition and usage of units are based on the Ontology of Measurements (OM). This ontology does not describe generic concepts, time, locations, etc. these are intended to be included from other ontologies via OWL imports.
29
+ CIQUAL CIQUAL This ontology contains a OWL representation of Ciqual food terms using Langual thesaurus. Ciqual is the nutritional database managed by ANSES in France.
30
+ CLC Corine Land Cover Nomenclature https://www.w3.org/2015/03/corine This is the human-readable version of the SKOS concept scheme developed from the Corine Land Cover Classes published by the European Environment Agency. In any variance between the EEA documentation and this document, the original documentation is authoritative.
31
+ CO_020 Multi-Crop Passport Ontology http://www.cropontology.org/ FAO/Bioversity Multi-Crop Passport Descriptors V.2.1 [MCPD V.2.1] standard
32
+ CO_121 Wheat Plant Anatomy and Development Ontology http://www.cropontology.org/ Defines growth stages of wheat
33
+ CO_125 Banana Anatomy http://www.cropontology.org/ This ontology is a part of the the Crop Ontology project (http://www.cropontology.org), created in 2008 by the CGIAR, as an essential source of traits and variables to support the standardization of the breeding databases.
34
+ CO_369 Sainfoin Ontology https://cropontology.org/term/CO_369:ROOT This ontology describes a standard trait lexicon used in phenotyping the forage and pulse crop, Sainfoin (Onobrychis viciifolia), with the intention of increasing trait consistency across different breeding programs.
35
+ CO_371 Blueberry Ontology https://cropontology.org/term/CO_371:ROOT Blueberry (Vaccinium) ontology defines crop traits and variables to support the standardization of phenotypic data collection for blueberry breeding programs in the USA. The ontology provides a description of agronomic, biochemical, morphological, phenological, physiological, quality, abiotic and biotic stress traits with their methods and scales used for each trait.
36
+ CO_715 Crop Research Ontology http://www.cropontology.org/ Describes experimental design, environmental conditions and methods associated with the crop study/experiment/trail and their evaluation
37
+ CROPUSAGE French Crop Usage thesaurus (Classification des plantes cultivées en France en fonction des usages) http://ontology.inrae.fr/pmwiki.php/Site/FrenchCropUsage "An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies., Les sources utilisées sont le registre parcellaire, le larousse agricole, wikipédia, le catalogue officiel des espèces et variétés de plantes cultivées en France du GEVES, les fiches ""les plantes fourragères pour les pairies"" du GNIS, la base Ephy, la liste des cultures à utiliser pour renseigner le descriptif des parcelles et les statistiques agricoles annuelle de l'Agreste, les tables du catalogue de l'Acta publié en 2021. Concernant les légumes et leur classification nous avons cherché les points communs entre plusieurs sources: Wikipedia, Bonduelle, FranceAgriMer, Encyclopedia Universalis, AM Nagelseim, la ferme du Bec Hellouin. A notre qu'il n'existe pas de consensus sur la classification des legumes. Cette classification est utilisée pour organiser les Bulletins de Santé du Végétal (BSV) et les fiches GECO. Cette classification n'est pas complète et aura besoin d'évoluer au cours du temps en fonction des besoins. auteur est catherine roussey de l'INRAE catherine.roussey@inrae.fr, les tables du catalogue de l'Acta publié en 2021. Concernant les légumes et leur classification nous avons cherché les points communs entre plusieurs sources: Wikipedia, la ferme du Bec Hellouin. A notre qu'il n'existe pas de consensus sur la classification des legumes. Cette classification est utilisée pour organiser les Bulletins de Santé du Végétal (BSV) et les fiches GECO. Cette classification n'est pas complète et aura besoin d'évoluer au cours du temps en fonction des besoins. auteur est catherine roussey de l'INRAE catherine.roussey@inrae.fr"
38
+ CSOPRA Soil organic carbon storage and agricultural practices modeling This ontology was created to support the development of the csopra libraries and the modelToolBox, which enables the modeling of soil organic changes, as a result of soil management, such as agricultural practices. It also aims at enabling interoperability between various data sources and various crop or biogeochemical models.
39
+ CVO Crop Vocabulary http://www.cavoc.org/cvo.php Crop Vocabulary provides taxonomy of crops in farming. Terms are mainly collected in agricultural documents published by Japanese Government. Crop is basically classified by plant but some are classified by cultivation method, edible parts, and and so on. Links to AGROVOC and NCBI taxonomy are included.
40
+ DATA4CPLUS Thesaurus to define land management practices in agriculture and forestry for soil carbon storage http://data4c-plus.net/admin/thesaurus/index DATA4C+ is a thesaurus classifying and defining land management practices in agriculture and forestry for soil carbon storage. DATA4C+ thesaurus is focussed on land management practices identified in the scientific literature as drivers of soil organic carbon (SOC) changes. DATA4C+ thesaurus aim was to fill the gap of lack of a comprehensive thesaurus for land management practices which directly or indirectly affect SOC dynamics. DATA4C+ thesaurus was developped by Cirad, INRAE and IRD during the ANR DATA4C+ project (https://www.data4c-plus-project.fr/en, Projet ANR- 19-DATA-0005). DATA4C+ thesaurus contains 224 classified and defined terms related to land management practices in agriculture and forestry. DATA4C+ thesaurus is organized as a hierarchical tree reflecting the drivers of SOC storage. To have access to the definition of a given term, the user must click on it in the tree. Then a “pop up” appears with the definition of the term and the source of the definition. A link to the source of the definition (URL or DOI) is given for each term. By clicking on this link, a new web page appears.
41
+ DEMETER-AIM DEMETER Agriculture Information Model https://gitlab.com/demeterproject/wp2/agriculturalinformationmodel/domainspecificontologies The DEMETER Agri Profile is a master profile importing focused specific profiles/modules of DEMETER AIM.
42
+ DSW Darwin-SW https://github.com/darwin-sw/ Version 0.4 to 1.0 fixed reversed dsw:locates and dsw:locatedAt. Added labels. Changed comments and descriptions to conform to DC and DwC precedent. Added subClassOf relations to RO hasEvidence and isEvidenceFor. Specified preferred direction for inverse object property pairs., Changes from version 0.2.1 to version 0.3: removal of all functional and inverse function properties of object property terms, use of dwctype classes, deprecation of terms replaced by dwciri: terms, removal of references to TDWG Ontology., Changes from version 0.3 to 0.4 change DwC class namespace from dwctype: to dwc: to follow class proposal, removed references to TDWG TaxonConcept ontology; deprecated terms that now have equivalent terms in Darwin Core., Change from version 1.0 to 1.0.1 Add CC0 license.
43
+ DURUM_WHEAT Durum Wheat http://lovinra.inra.fr/ The durum wheat ontology (DURUM_WHEAT) is dedicated to the sustainability analysis of the durum wheat chain.Current data available on this ontology concern durum wheat quality criteria criteria used in different countries (Moisture content rate, chemical content, etc.).
44
+ E-PHY Catalogue des produits phytopharmaceutiques et de leurs usages, des matières fertilisantes et des supports de culture autorisés en France Le catalogue des produits phytopharmaceutiques de l’ANSES en une base de connaissances OWL dont le modèle ontologique est celui de la base de données E-Phy (https://ephy.anses.fr/) et les instances sont les produits qui y sont listés, alignées avec d’autres ressources sémantiques tel que le thésaurus French Crop Usage pour les cultures et l’ontologie CHEBI pour les familles chimiques. Cependant considérant que nos organismes ne sont pas des autorités pour ce catalogue, notre modèle de données est volontairement “bridé” pour être complètement rétro-compatible avec la base d’origine de façon à facilement mettre à jour notre ontologie à partir de nouveaux exports de l’ANSES., E-Phy est une base de connaissances (ontologie+instances) tirée de la base de données E-Phy de l'ANSES (https://ephy.anses.fr) qui contient le catalogue des produits phytopharmaceutiques et de leurs usages, des matières fertilisantes et des supports de culture autorisés en France. Cette base de connaissances a été crée dans le cadre du projet ANR D2KAB par le LIRMM et l'INRAE. Elle a vocation à proposer une version RDF de la base de données E-Phy.
45
+ EBO Environmental Biorefinery Ontology An ontology for describing environmental biorefinery data for the information system EnviBIS, using the application core ontology OESO and the core ontology PO2.
46
+ FCUO French Crop Usage Ontology http://ontology.inrae.fr/pmwiki.php/Site/FrenchCropUsage "This ontology specialized the skos model to create a new class Crop subclass of skos:Concept. fcuo:Crop is a defined class. Thus a reasoner like Hermit should be used to classify all the instances of skos:Concept that belongs to the scheme fcuo:thesaurus_FrenchCropUsage as an instance of Crop. FCUO contains also new objet properties and annotation properties dedicated to FCU alignement with taxonomy like TAXREF-LD., ontologie associée au thésaurus Usage des plantes cultivées en France et définissant des relations d'alignements entre les usgaes des plantes définies dans ce thésaurus et les taxonomies scientifiques comme NCBI taxon ou TAXREF-LD., ontology related to the thesaurus French Crop Usage. This ontology defines mapping relations between FCU thesaurus and scientific taxonomies like TAXREF-LD or NCBI taxon., Les sources utilisées sont le registre parcellaire, le larousse agricole, wikipédia, le catalogue officiel des espèces et variétés de plantes cultivées en France du GEVES, les fiches ""les plantes fourragères pour les pairies"" du GNIS, la base Ephy, la liste des cultures à utiliser pour renseigner le descriptif des parcelles et les statistiques agricoles annuelle de l'Agreste, les tables du catalogue de l'Acta publié en 2021. Concernant les légumes et leur classification nous avons cherché les points communs entre plusieurs sources: Wikipedia, Bonduelle, FranceAgriMer, Encyclopedia Universalis, AM Nagelseim, la ferme du Bec Hellouin. A notre qu'il n'existe pas de consensus sur la classification des legumes. Cette classification est utilisée pour organiser les Bulletins de Santé du Végétal (BSV) et les fiches GECO. Cette classification n'est pas complète et aura besoin d'évoluer au cours du temps en fonction des besoins. auteur est catherine roussey de l'INRAE catherine.roussey@inrae.fr"
47
+ FLAIR Wine Descriptors Ontology https://github.com/XavierDelpuech/flair Ce fichier au format RDF contient les éléments d'une modélisation de l'analyse sensorielle des vins. Cette ontologie a été construite lors du projet CASDAR VITISDATACROP (France, 2021-2023). Contacter Xavier DELPUECH pour toute modification dans ce fichier.
48
+ FOODIE FOODIE Core Ontology http://foodie-cloud.github.io/model/FOODIE.html This release 4.6.3 added missing crop property; release 4.6.2 fixes model regarding DoseUnit that cannot be a codelist, and is defined as datatype, FOODIE ontology has been generated from FOODIE application schema (UML model), Revision 4.6.1, and translated into an ontology according to ISO/DIS 19150-2 using ShapeChange plus several pre and post processing changes. This is a revision of v4.3.2, manually updated to v4.6.1.
49
+ GACS Global Agricultural Concept Scheme http://agrisemantics.org/gacs/ The Global Agricultural Concept Scheme (GACS) is a hub for concepts related to agriculture, in multiple languages, for use in Linked Data. The idea for GACS emerged out of discussions at the World Congress of IAALD, the International Association of Agricultural Information Specialists, in July 2013. The Food and Agricultural Organization of the United Nations (FAO), CAB International (CABI), and the National Agricultural Library of the USA (NAL) agreed in October 2013 to explore the feasibility of developing a shared concept scheme by integrating their three thesauri: the AGROVOC Concept Scheme, the CAB Thesaurus (CABT), and NAL Thesaurus (NALT). In the GACS vision, the integration of these three thesauri is but the first step towards the realization of a hub that links to and from the concept schemes beyond the initial three, and in multiple language areas.
50
+ GAO Grapevine Anatomy Ontology Describes a list of organs classified by biological function, Décrit une liste d'organes classé par fonction biologique, Describes a list of organs classified by biological function, Décrit une liste d'organes classé par fonction biologique
51
+ GECO Agroecology Knowledge Management (GECO ontology) https://geco.ecophytopic.fr/ Agroecology knowledge management is an application ontology for the description and organization of knowledge to design innovative crop systems. , Gestion des connaissances en agroécologie est une ontologie d’application décrivant et organisant les connaissances permettant de concevoir des systèmes de culture innovants.
52
+ GFVO Genomic Feature and Variation Ontology https://github.com/BioInterchange/Ontologies The Genomic Feature and Variation Ontology (GFVO) is modeled to represent genomic data using the Resource Description Format (RDF). It is captures the contents of data files that adhere to the Generic Feature Format Version 3 (GFF3, http://www.sequenceontology.org/resources/gff3.html), the General Transfer Format (GTF, http://mblab.wustl.edu/GTF22.html), the Genome Variation Format Version 1 (GVF, http://www.sequenceontology.org/resources/gvf.html), and the Variant Call Format (VCF, http://vcftools.sourceforge.net/specs.html). The creation of the ontology was inspired by previous work of Robert Hoehndorf on RDF2OWL (http://code.google.com/p/rdf2owl).
53
+ GR-TAX Gramene Taxonomy Ontology http://www.gramene.org/ It is a representation of the taxonomy tree in the ontology format. Each term in this ontology can represent subspecies, species, genus, order, class or any rank in the classification. Primarily derived from NCBI Taxonomy, the revisions were made as and when/where required in the rankings. The rank of genome types was added by this project. This taxonomy ontology focuses on the Poaceae (Gramineae) family of plant taxonomy only.
54
+ ICC Indicative Crop Classification http://www.fao.org/world-census-agriculture/wcarounds/wca2010/en The Indicative Crop Classification (ICC) was developed for the 2020 round of agricultural censuses.
55
+ INFRARISK InfraRisk Ontology http://vocabs.datagraft.net/infrarisk.html The InfraRisk Ontology: Enabling Semantic Interoperability for Critical Infrastructures at Risk from Natural Hazards. This InfraRisk ontology may be used for representing relevant information about natural hazard events and their impact on infrastructure components. Earthquakes, landslides, and other natural hazard events have severe negative socio-economic impacts.
56
+ INIA-RDM INIA Research Datasets http://data.inia.es/def/ This ontology is used to describe datasets hosted on Spanish National Institute for Agricultural and Food Research and Technology (INIA) Research Data Repository. It combines terms from dataset ontologies such as DCAT, with some specific terms in Agriculture Research, e.g., keywords based on AGROVOC.
57
+ INRAETHES INRAE Thesaurus https://thesaurus.inrae.fr INRAE Thesaurus is the open and shared thesaurus covering INRAE's research fields. It serves as a controled vocabulary within the institute for indexing and annotating documents, web pages, descriptions of activities, datasets, etc. for research or information analysis purposes. It is maintained by an editorial committee under the responsibility of INRAE DipSO.
58
+ IRRIG Irrigation Ontology https://w3id.org/def/irrig IRRIG is an Irrigation Ontology for experimentation in TSCF, Irstea Clermont-Fd.
59
+ LANDVOC Linked Land Governance Thesaurus http://landvoc.org LandVoc is a thesaurus (controlled vocabulary) covering 310 concepts related to all areas of interest to the land community including land administration, land governance, land use and cover etc. It is built by the Land Portal Foundation and relies on a subset of AGROVOC concepts.
60
+ LEXEAU A stratified lexicon of water related geophysical and textual data "L'ontologie LEXEAU est la source d'un lexique de l'eau bilingue des services de l'eau et du développement durable. Elle a été conçue et développée dans le cadre d'un projet global (projet Lexeau®) pour améliorer l'intercompréhension des acteurs du domaine : usagers de l'eau publics et privés, élus européens, nationaux et locaux, dirigeants et salariés d'entreprise, ingénieurs et scientifiques, techniciens de maintenance, juristes, fonctionnaires, journalistes, etc. Les entités du lexique sont des unités lexicales, des entités du monde et des acronymes. Les unités lexicales sont spécifiques (propres au domaine de l'eau) ou auxiliaires (partagées avec d'autres domaines de connaissance). Les unités lexicales spécifiques sont préfixées ""1-TS"", ""2-TA"" ou ""3-C"" lorsqu'elles sont utilisées, respectivement, dans la strate discursive spécifique technico-scientifique, technico-administrative ou courante. Les unités lexicales auxiliaires sont préfixées ""A"". Les unités lexicales sont dérivées des libellés des classes de l'ontologie et des entités contrôlées. Les entités du monde du lexique sont des objets concrets, ""référents"" de l'unité lexicale dérivée du libellé de leur classe d'origine dans l'ontologie. Les articles du lexique sont introduits en commentaire (annotation ""comment"") du libellé de l'unité lexicale (sous le libellé de la classe), du libellé de l'entité contrôlée, réputé libellé de l'unité lexicale, ou du libellé de l'entité monde. Les relations lexicales qui suivent chaque article sont dérivées de la hiérarchie des classes, de l'instanciation des classes et des ""assertions de propriété"" associées aux propriétés de l'ontologie. Un graphe conceptuel est édité pour chaque unité lexicale et exporté comme ""image"" (format ""png""). L'édition électronique du lexique avec des liens hypertexte, y compris les graphes conceptuels, est directement issue de l'ontologie. Elle est disponible sur demande. Face à la transition énergétique et à l'adaptation climatique, la structure de l'ontologie est bien adaptée à la mise à jour du lexique des services de l'eau et du développement durable et à son extension à d'autres thèmes tels que le dessalement de l'eau, le recyclage des eaux usées, l'exploitation pérenne des eaux souterraine, la protection du littoral, ainsi que la prévention et la réparation des dommages liés aux sécheresses et aux inondations. Bordeaux, le 7 juin 2024 Jean-Louis Janin"
61
+ LHO Livestock Health Ontology The Livestock Health Ontology (LHO) contains information on the health and well-being of livestock animal species such as cattle, pigs, and poultry. Furthermore, it represents the explicit structured and standardized framework for specific domain knowledge and data integration of livestock species. During the development process, knowledge can be retrieved from domain experts, and after the retrieving process, the prototype is designed for reasoning and planning of data related to cattle, pigs, and poultry. Moreover, LHO contains information regarding farms Identifications, their samples, geolocation, breed, diagnostic tests, Pathogen identifications, and Pathogen results for specific bacteria such as Histophilus Somni (HS), Mannheimia Haemolytica (MH), Pasteurella Multocida (PM), Bovine Coronavirus (BCV) bacterial mycoplasma and aerobic culture results for the respiratory diseases in cattle. This information is represented as concepts of classes, subclasses, and their relationship in the form of object and data properties. For pigs, it includes farm type, age, weight, pig stages and pathogens like PRRS, SwineInfluenza, and M_Hyponemoniea. In poultry, LHO incorporates farm type, with specific pathogen names such as Infectious Bronchitis (IB), providing a concise overview of health aspects across livestock species. Incorporating pathogen identification results, whether positive or negative, within the Livestock Health Ontology (LHO), not only enhances data organization but also supports projects like DECIDE EU Horizon 2020. By providing a structured framework for analyzing disease emergence and options for diagnostic confirmation, LHO contributes to the development of robust data-driven decision-support tools in livestock health management.
62
+ MEAT-T Meat Thesaurus The meat thesaurus describes different facets of the meat production chain, such as the meat market, breed, slaughtering, culinary preparations, etc. It contains terms and definitions in French and English. It was derived and adapted from the Dictionnaire de la viande, Académie de la viande (France). Publisher, Autres voix, 2012. ISBN, 2918237086, 9782918237082
63
+ MICROFILTRATION Milk Microfiltration Ontology The Microfiltration ontology (MICROFILTRATION) is dedicated to the description of milk transformation itineraries for microfiltration purposes and characterisation of associated samples.
64
+ MILKOLIGO Milk Oligosaccharide Thesaurus - HoloOLIGO project https://doi.org/10.57745/RA5DAC This thesaurus gathers milk oligosaccharide synonyms., This dataset is a thesaurus gathering milk oligosaccharide synonyms
65
+ MS2O Multi-scale Multi-step ontology http://lovinra.inra.fr/2015/12/16/multi-scale-multi-step-ontology/ The Multi-scale Multi-step ontology (MS²O) is an ontology to describe transformation processes., Multi-scale Multi-step ontology (MS²O) est une ontologie permettant de décrire des processus de transformation.
66
+ NALT National Agricultural Library Thesaurus https://agclass.nal.usda.gov/agt.shtml "The Thesaurus is an online vocabulary of agricultural terms in English and Spanish and is cooperatively produced by the National Agricultural Library, USDA and the Inter-American Institute for Cooperation on Agriculture as well as other Latin American agricultural institutions belonging to the Agriculture Information and Documentation Service of the Americas (SIDALC). The NAL Agricultural Thesaurus (NALT) was first published in 1967 and converted to SKOS in 2019 then released by the National Agricultural Library in 2002, with in-depth coverage of agriculture, biology, and related disciplines. The Spanish language version of NALT was first published in May 2007 under the Spanish language name ""Tesauro Agrícola"", and was created in cooperation with the Inter-American Institute for Cooperation on Agriculture (IICA) and other Latin American agricultural institutions belonging to the Agriculture Information and Documentation Service of the Americas (SIDALC). In 2022 NALT was redesigned as part of the Library's ""NALT for the Machine Age"" initiative, and is a state-of-the-art multischeme concept space with added structural features for enhanced scalability and machine readability. Inaugural schemes included NALT Core, and NALT Full."
67
+ OBOE The Extensible Observation Ontology https://github.com/NCEAS/oboe/ The Extensible Observation Ontology (OBOE) is a formal ontology for capturing the semantics of scientific observation and measurement. The ontology supports researchers to add detailed semantic annotations to scientific data, thereby clarifying the inherent meaning of scientific observations.
68
+ OEEV Ontology of Experimental Events The Ontology of Experimental Events (OEEv), characterises events that occur during an experiment, e.g. dates of sowing, application of a given treatment, harvesting, measurements or sampling for -omic measurements, or any category of technical problem.
69
+ OEPO Ontology for Experimental Phenotypic Objects The Ontology for Experimental Phenotypic Objects (OEPO), allows assigning types (e.g. Experimental organization and context, Environment type, Germplasm, Physical Object) to objects involved in phenotyping experiments and defining specialization hierarchy between them according to the specificities of the installations and experiments.
70
+ OESO-CORE Ontology for Experimental Scientific Objects Core http://opensilex.org/vocabulary/oeso.owl The Ontology for Experimental Scientific Objects (OESO), allows assigning types (e.g. Experimental organization and context, Environment type, Germplasm, Physical Object) to objects involved in experiments and defining specialization hierarchy between them according to the specificities of the installations and experiments. OESO core contains the main concept for OpenSILEX application. This core ontology should be extend with the application domain concepts.
71
+ OFPE Ontology for Food Processing Experiment OFPE is a generic ontology specialized for food processing experiments, where raw materials are transformed into final products. It includes different classes that represent products and activities during food transformation processes, which can be classified into four main concepts, i.e., Product, Operation, Attribute, and Observation., OFPE is a generic ontology specialized for food processing experiments, where raw ma- terials are transformed into final products. It includes dif- ferent classes that represent products and activities during food transformation processes, which can be classified into four main concepts, and Observation.
72
+ OFSMR Open Predictive Microbiology Ontology Food-matrix ontology for Open Food Safety Model Repository
73
+ ONTOAGROHIDRO OntoAgroHidro OntoAgroHidro is an ontology that represents knowledge about impacts of agricultural activities and climatic changes on water resources.
74
+ ONTOBIOTOPE OntoBiotope OntoBiotope is an ontology of microorganism habitats, phenotypes and use. Its modeling principle and its lexicon reflect the biotope classification used by biologists to describe microorganism isolation sites, phenotypes and uses. OntoBiotope is developed and maintained by the Bibliome group of MaIAGE lab and microbiologists from INRAE (French National Research Institute for Agriculture, Food and Environment) from all fields of applied microbiology. OntoBiotope classes are used in the Bacteria Biotope reference dataset of BioNLP shared task to annotate the habitats and phenotype entities. It is also used to index the data of the Omnicrobe DataBase
75
+ OWSD Ontology for the management of Wine Sensory analysis Descriptors http://opendata.inrae.fr/owsd Les descripteurs d'analyse sensorielle du vin, une nouvelle ontologie, décrit une liste de groupes de descripteurs (classes) utilisés pour classer les descripteurs sensoriels (instances)., The Wine Sensory analysis Descriptors, a new ontology describes a list of descriptors groups (classes) used to classify sensorial descriptors (instances).
76
+ PBO Plant Breeding Ontology Plant Breeding Ontology (PBO): an ontology for the plant breeding community which captures more than 2200 entries where 80 represent the core terms. PBO has translations in 8 different languages: English (main language), Spanish, French, Dutch, German, Japanese, Catalan and Thai, as well as their definitions, synonyms, derived terms and samples of their usage. PBO has been built partially manually and semi automatically.
77
+ PDO_CAS Plant Diversity Ontology Plant Diversity Ontology (PDO) is the outcome of the construction tasks of domain ontology of science in the project of Scientific & Technological Knowledge Organization Systems (STKOS). The structure of PDO centers on species, including micro level of molecular, cell and tissue, medium level of plant organs, species and population, and macro level of ecosystem. The classes of PDO also capture the habitat, environmental conditions and expand the general characteristics of plants, completing the instances richness for plant species, geographical, classification and morphology. Furthermore, PDO builds the relationships among species, region, morphology, plant organs, developmental stage, revealing the list of species in an area, the morphology and life form of plants, and development process of species. In sum, PDO shows a growth process or development stage of a species and its structure characteristics in particular space and time scale, realizing the description of species diversity, ecosystem diversity and genetic diversity. At present, PDO has been applied to the platform of Go to Selected Open Access Journals (GoOA) developed by National Science Library of Chinese Academy of Sciences, supporting concept retrieval and concept extension for GoOA.
78
+ PEAO Plant Experimental Assay Ontology https://bitbucket.org/PlantExpAssay/ontology The Plant domain has been the subject of several attempts to structure and formally define terms and corresponding relations, such as their anatomical features, developmental stages, and the application of particular experimental procedures to a biological problem. However, a focus on experimental assays in order to describe the whole experimental procedure, to the best of our knowledge, has only been attempted in the context of a very general description based on classical views of the scientific method. In this study, we focus on the development and proposal of an ontology dedicated to the description of these experimental procedures, regardless of the scientific questions that prompted the assays. This ontology includes entities from three distinct realms (biological, physical and data), which include both experimental products, their relations and the protocols describing their manipulation.
79
+ PO2 Process and Observation Ontology http://lovinra.inra.fr/2016/08/03/process-and-observation-ontology/ A core ontology for modeling transformation processes and their observations. PO2 is part of an interdisciplinary project called Delicious concerning the production and transformation processes in food science. The project combines data from different disciplines like food composition, food structure, sensorial perception and nutrition.
80
+ POLAPGEN_BARLEY Barley Trait POLAPGEN Ontology http://www.cropontology.org/ Barley Trait Ontology template v 4, 6 June 2013 submitted by the Institute of Plant Genetics Poznan on behalf of Polapgen Consortium Poland
81
+ PPDO BBCH-based Plant Phenological Description Ontology http://ontology.irstea.fr/pmwiki.php/Site/Ppdo This RDF file contains an extension of the SKOS model to model the development stages (or phenological stages) of cultivated plants. This model defines classes representing the main stages and the secondary stages (2 and 3 digits). The general BBCH scale is represented as an instance of skos:ConceptScheme. A new scale was created, intitled, BBCH global scale, that gather all the stages existing in all BBCh cales. It was built during the ANR D2KAB project., that gather all the stages existing in all BBCh cales. It was built during the ANR D2KAB project. Contact Catherine Roussey (catherine.roussey@inrae.fr) for any modification in this file. This extension of SKOS model was build using 4 versions of BBCH monograph: * Growth stages of mono- and dicotyledonous plants BBCH Monograph edited by Uwe Meier Julius Kühn-Institut (JKI) Quedlinburg 2018 DOI: 10.5073/20180906-074619 ISBN: 978-3-95547-071-5 * Stades phénologiques des mono-et dicotylédones cultivées BBCH Monographie rédigé par Uwe Meier Instituto Julius Kühn (JKI, siglas en alomán) Quedlinburg, 2018 DOI: 10.5073/20180906-075455 ISBN: 978-3-95547-072-2 * Estadios de las plantas mono-y dicotyledóneas BBCH Monografia Elaborado por Uwe Meier Instituto Julius Kühn (JKI, 2018 DOI: 10.5073/20180906-075743 ISBN: 978-3-95547-069-2 * Entwicklungsstadien mono- und dikotyler Pflanzen BBCH Monografie bearbeitet von Uwe Meier Julius Kühn-Institut (JKI) Quedlinburg 2018 DOI: 10.5073/20180906-075119 ISBN: 978-3-95547-070-8 All versions are licensed under a Creative Commons Attribution 4.0 International License., Ce fichier RDF contient une extension du modèle SKOS pour modeliser les stades de développement (ou stades phénologiques) des plantes cultivées. Ce modèle défini des classes représentant les stades principaux et les stades secondaires (à 2 et 3 chiffres). l'échelle BBCH générale est représentée sous forme d'une instance de skos:ConceptScheme. Une nouvelle échelle a été créée, appelée échelle BBCH globale, regroupant tous les stades existant dans toutes les échelles BBCH. L'ontologie a été construite pendant le projet ANR D2KAB. Contacter Catherine Roussey (catherine.roussey@inrae.fr) pour toute modification dans ce fichier. Ce modele skos a été construit en utilisant 4 versions de la monographie BBCH toutes sous licence Creative Commons Attribution 4.0 International: * Growth stages of mono- and dicotyledonous plants BBCH Monograph edited by Uwe Meier Julius Kühn-Institut (JKI) Quedlinburg 2018 DOI: 10.5073/20180906-074619 ISBN: 978-3-95547-071-5 * Stades phénologiques des mono-et dicotylédones cultivées BBCH Monographie rédigé par Uwe Meier Instituto Julius Kühn (JKI, 2018 DOI: 10.5073/20180906-075743 ISBN: 978-3-95547-069-2 * Entwicklungsstadien mono- und dikotyler Pflanzen BBCH Monografie bearbeitet von Uwe Meier Julius Kühn-Institut (JKI) Quedlinburg 2018 DOI: 10.5073/20180906-075119 ISBN: 978-3-95547-070-8, that gather all the stages existing in all BBCh cales. It was built during the ANR D2KAB project. Contact Catherine Roussey (catherine.roussey@inrae.fr) for any modification in this file. This extension of SKOS model was build using 4 versions of BBCH monograph. All versions are licensed under a Creative Commons Attribution 4.0 International License., regroupant tous les stades existant dans toutes les échelles BBCH. L'ontologie a été construite pendant le projet ANR D2KAB. Contacter Catherine Roussey (catherine.roussey@inrae.fr) pour toute modification dans ce fichier. Ce modele skos a été construit en utilisant 4 versions de la monographie BBCH toutes sous licence Creative Commons Attribution 4.0 International.
82
+ PPEO Plant Phenotype Experiment Ontology http://purl.org/ppeo The Plant Phenotyping Experiment Ontology (PPEO) is an implementation of the Minimal Information About Plant Phenotyping Experiment. It lists and organises all the informations necessary to describe and reuse a phenotyping dataset following FAIR principles (Findable Interoperable Accessible Reusable). It has been initiated with experts from Elixir, Emphasis, Bioversity International - CGIAR and RDA.
83
+ SAREF Smart Applications REFerence ontology https://saref.etsi.org/ The Smart Applications REFerence ontology (SAREF) is intended to enable interoperability between solutions from different providers and among various activity sectors in the Internet of Things (IoT), thus contributing to the development of the global digital market.
84
+ SAREF4AGRI SAREF4AGRI: an extension of SAREF for the agriculture and food domain SAREF4AGRI is an extension of SAREF for the agriculture and food domain. SAREF4AGRI is specified and published by ETSI in the TS 103 410-6 associated to this ontology file. The list of use cases, standards and requirements that guided the creation of SAREF4AGRI are described in the associated ETSI TR 103 511., This ontology extends the SAREF ontology for the Agricultural domain. This work has been developed in the context of the STF 534 (https://portal.etsi.org/STF/STFs/STFHomePages/STF534.aspx), which was established with the goal to create three SAREF extensions, one of them for the Agricultural domain.
85
+ SAREF4ENVI SAREF4ENVI: an extension of SAREF for the environment domain https://saref.etsi.org/saref4envi/ The present document is the technical specification of SAREF4ENVI, an extension of SAREF [1] for the environment domain. The extension was created in collaboration with domain experts in the field of light pollution currently working in the STARS4ALL European H2020 project (http://www.stars4all.eu/index.php/lpi/). The STARS4ALL project is composed by partners such as Universidad Politécnica de Madrid, Universidad Complutense de Madrid, ESCP Europe, Leibniz Institute of Freshwater Ecology and Inland Fisheries, Instituto de Astrofísica de Canarias, University of Southampton, Europan Crowdfunding Network, and CEFRIEL (Società Consortile a Responsabilita Limitata). SAREF4ENVI has two main aims: on the one hand, to be the basis for enabling the use of SAREF in the environment domain and, on the other hand, to exemplify how to enable interoperability between environmental devices in cooperation. SAREF4ENVI is an OWL-DL ontology that extends SAREF with 32 classes (24 defined in SAREF4ENVI and 7 reused from the time, SAREF and geo ontologies), 24 object properties (22 defined in SAREF4ENVI and 2 reused from the SAREF and geo ontologies), 13 data type properties (9 defined in SAREF4ENVI and 4 reused from the SAREF ontology), and 24 individuals (9 defined in SAREF4ENVI and 12 reused from the OM ontology). SAREF4ENVI focuses on extending SAREF for photometers to solve the lack of interoperability between sensors that can measure and share information about light pollution. Such extension involves the following use cases (more details can be found in ETSI TR 103 411 [i.1]): Use case 1: Monitor light pollution in a city, through the data collected by photometers about the magnitude of the light emitted in a given area. Use case 2: Adjust lampposts light intensity due to high pollution, after identifying the most contaminating lampposts and therefore the areas where more energy is being thrown away. Use case 3: Register a photometer, in which a new collection of photometers is incorporated into an existing sensor network., This ontology extends the SAREF ontology for the environment domain, specifically for the light pollution domain, including concepts like photometers, light, etc.
86
+ SEONT Socio-Economic Ontology https://github.com/AgriculturalSemantics/SEONT?tab=readme-ov-file This ontology is the socio-economic ontology developed by CGIAR and partners. Socio-economic ontology team gratefully acknowledges the Platform for big data in agriculture (https://bigdata.cgiar.org) and CGIAR Research program on Policies, Instiutions and Markets(http://pim.cgiar.org/) for their financial support to implement this ontology., None
87
+ SFWO Soil Food Web Ontology The Soil Food Web Ontology (SFWO) is a OWL ontology which provides a standardised terminology and a logical formalisation of the domain of soil trophic ecology. It proposes a reference vocabulary to describe information about trophic interactions, feeding-related functional traits, and feeding processes of soil biota. By harmonizing the definitions of trophic groups, SFWO provides a common, logically-sound framework for soil-associated consumers classification across taxonomic groups and trophic levels. The Soil Food Web Ontology aims at being a reference ontology for soil trophic ecology, and a resource for ontology-driven applications in the field, including: trophic trait datasets standardization, trophic data integration and knowledge graph construction, automated soil food web reconstruction using OWL reasoning, and trophic information extraction., The Soil Food Web Ontology (SFWO) describes concepts related to the trophic ecology of soil organisms, including diets, food resources, trophic processes, and trophic groups, across taxonomic groups and trophic levels. SFWO aims at being both a reference ontology -including a standardised vocabulary- for soil trophic ecology, and an application ontology, with a focus on reasoning-based applications.
88
+ SNPO Single-Nucleotide Polymorphism (SNP) Ontology https://members.loria.fr/ACoulet/files/snpontology1.6_description.html SNP-Ontology is a domain ontology that provides a formal representation (OWL-DL) of genomic variations. Despite its name, SNP-Ontology, is not limited to the representation of SNPs but it encompasses genomic variations in a broader meaning. SNP-Ontology is general enough to enable the representation of variations observed in genome of various species. Latest versions of SNP-Ontology include the representation of haplotype and of CNV. The unambiguous representation of genomic variations provided by SNP-Ontology enables to integrate heterogeneous data related to genomic variations. To achieve this goal SNP-Ontology enables (1) to represent one variation in accordance with various ways that exist for describing it, (2) to represent the equivalence between two distinct descriptions of one variation, and (3) to represent correspondence between a genomic variation and its outcome at the transcriptome and proteome levels.
89
+ SOIL agINFRA Soil Vocabulary http://vocabularies.aginfra.eu/soil This vocabulary is a first formalization of the INSPIRE data model into an RDFs vocabulary.Developed by the Italian Consiglio per la Ricerca e la Sperimentazione in Agricoltura (CRA) in collaboration with the Global Forum on Agricultural Research (GFAR) and the Food and Agriculture Organization of the United Nations (FAO).
90
+ SOSA Sensor, Observation, Sample, and Actuator Ontology https://www.w3.org/TR/vocab-ssn/ This ontology is based on the SSN Ontology by the W3C Semantic Sensor Networks Incubator Group (SSN-XG), together with considerations from the W3C/OGC Spatial Data on the Web Working Group.
91
+ SOY Soy Ontology https://www.soybase.org/ Soybean Growth and Trait Ontology
92
+ SPO-FDM SmartProducts Network of Ontologies Food Domain Model SmartProducts Network of Ontologies (SPO) provides a clear specification of the conceptual model underlying the work on the SmartProducts project, and maximises interoperability not just among all SmartProducts applications, but also between these and other applications in related domains. SPO Food ontologies have been designed according to a smart kitchen application scenario. Food Domain Model (FDM) defines concepts and properties specific for the Philips use case (cooking domain)
93
+ SPO-FND SmartProducts Network of Ontologies Food Nutrition Data "SmartProducts Network of Ontologies (SPO) provides a clear specification of the conceptual model underlying the work on the SmartProducts project, and maximises interoperability not just among all SmartProducts applications, but also between these and other applications in related domains. SPO Food ontologies have been designed according to a smart kitchen application scenario. Food Nutrition Data (FND) contains nutritional information from Freebase and defines individuals for a ""dummy"" test scenario for Philips"
94
+ SPO-FTM SmartProducts Network of Ontologies Food Taxonomy Model SmartProducts Network of Ontologies (SPO) provides a clear specification of the conceptual model underlying the work on the SmartProducts project, and maximises interoperability not just among all SmartProducts applications, but also between these and other applications in related domains. SPO Food ontologies have been designed according to a smart kitchen application scenario. Food Taxonomy Model (FTM) contains food taxonomy constructed using PowerAqua and edited manually
95
+ SPTO Solanaceae Phenotype Ontology https://solgenomics.net/ Solanaceae crop phenotypes and traits, developed in collaboration with the research community, especially for breeder traits of agronomic importance.
96
+ SSN Semantic Sensor Network Ontology https://www.w3.org/TR/vocab-ssn/ This ontology describes sensors, actuators and observations, and related concepts. It does not describe domain concepts, time, locations, etc. these are intended to be included from other ontologies via OWL imports.
97
+ TAXREF-LD TAXREF-LD https://inpn.mnhn.fr/programme/referentiel-taxonomique-taxref?lg=en Representation of the TAXREF taxonomic register as linked data. This resource is at the same time an ontology of classes depicting the taxa and a thesaurus (SKOS concept scheme) of the scientific names attached to the taxa., Représentation du référentiel taxonomique TAXREF comme un jeu de données liées. Cette ressource est à la fois une ontologies des classes représentant les taxons, et un thésaurus (SKOS concept scheme) des noms scientifiques désignant ces taxons.
98
+ THESAE Agroecology Thesaurus Thésaurus d'Agroécologie is a thesaurus in French containing 556 concepts denoting the issues, levers, indicators and agricultural production systems involved in an agro-ecological approach. This thesaurus, based on the results of a territorial watch on the scale of the Midi-Pyrénées region, is the result of expert work carried out by researchers and specialists in scientific and technical information from the Institut National de la Recherche Agronomique, Le Thésaurus d'Agroécologie est un thésaurus en français présentant 556 concepts dénotant les enjeux, leviers, indicateurs et systèmes de production agricoles impliqués dans une démarche agroécologique. Ce thésaurus, basé sur les résultats d'une veille territoriale à l'échelle de la région Midi-Pyrénées est issu d’un travail d’expertise réalisé par des chercheurs et des spécialistes de l’information scientifique et technique de l’Institut National de la Recherche Agronomique
99
+ TOP Thesaurus of Plant Characteristics http://top-thesaurus.org The Thesaurus Of Plant characteristics (TOP), aims to harmonize and formalize concepts for plant characteristics widely used in ecology. TOP concentrates on two types of plant characteristics: traits and environmental associations. Characteristics are modelled as the ‘Quality’ of an ‘Entity’ used in the context of Open Biological Ontologies. Whenever possible, the Entities and Qualities are taken from existing terminology standards, mainly the Plant Ontology (PO) and Phenotypic Quality Ontology (PATO) ontologies. TOP provides names, definitions, units, synonyms and related terms for about 850 plant characteristics.
100
+ TRANSFORMON PO2/TransformON Domain ontology on food and bioproduct processing and characterization. The ontology is a specialization of the PO2 ontology (Process and Observation Ontology).
101
+ TRANSMAT Matter Transfer Ontology https://www6.inra.fr/cati-icat-atweb/Ontologies/Transmat The Matter Transfer ontology is dedicated to matter transfer (e.g. O2, CO2, H2O) and mechanical properties of materials (eg food packaging tensile strength).
102
+ TRIPHASE Thesaurus for Animal Physiology and Livestock Systems TODO, TriPhase est un thésaurus couvrant le domaine de la physiologie animale et de l'élevage conçu par l'INRA. , TriPhase is a large thesaurus in the domain of animal physiology and livestock designed by INRA.
103
+ UC_SENSE Unambiguous Characterization of Sensory Experiences Ontology uc_Sense is an ontology for unambiguous characterization (UC) of sensory experiences and their descriptive terms. The uc_Sense ontology provides terms gathered from food and beverage flavor wheels in order to provide a vocabulary that will distinguish how a sensory event is perceived and how the same event is processed by an individual.
104
+ USE Ontobiotope_Use http://migale.jouy.inra.fr/florilege/#&searchByUse "The Use ontology is a subpart of the Ontobiotope ontology. It defines the uses and applications of microorganisms. Microorganisms are linked to the classes of the Use ontology by the relationship ""is studied for"". See examples in the Florilege database."
105
+ WCACROPS FAO WCA Crop http://stats-class.fao.uniroma2.it/skosmos_demo/WCACrops/en/ The more granular crop classification used in the FAO WCA. Used in the 2010 round of agricultural censuses.
106
+ WHEAT_TAX Wheat Taxa Gold Standard http://ontology.irstea.fr/pmwiki.php/Site/AgronomicTaxon Manually built by Catherine Roussey, inspired by https://fr.wikipedia.org/wiki/Taxonomiedublé. Each species proposed into the wheat species table have been validated with European Wheat data base http://genbank.vurv.cz/ewdb/. The taxon name and its ranking was firstly validated with the use of taxref reference table from INPN. NCBI's taxonomy have been used when not found in taxref. Then links to agrovoc's thesaurus, NAL and CABI Have been added. Links to ITIS database have been added, and also the links to DBpedia. Be warned : DBpedia contains two missing species :triticum zhukovsyi and triticum compactum erinaceum which are not in taxref. triticum zhukovsyi is in European Wheat data base. Links to TAXREF-LD have also been added.
107
+ WHEATPHENOTYPE Wheat Trait and Phenotype Ontology WheatPhenotype (also called Wheat Treat Ontology) is an ontology in OBO format that describes the traits of soft wheat (Triticum aestivum) and the environmental factors that affect these traits. Traits include traits of resistance, development, nutritional, baking quality, etc. Environmental factors include biotic and abiotic factors.
108
+ XEO XEML Environment Ontology https://xeo.codeplex.com/ XeO has been created to help plant scientists in documenting and sharing metadata describing the abiotic environment.
testbed/biopragmatics__bioregistry/exports/alignment/bartoc.tsv ADDED
The diff for this file is too large to render. See raw diff
 
testbed/biopragmatics__bioregistry/exports/alignment/biocontext.tsv ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ prefix uri_format
2
+ https://monarchinitiative.org/$1
3
+ 2D-PAGE.PROTEIN http://identifiers.org/2d-page.protein/$1
4
+ AGD http://identifiers.org/agd/$1
5
+ APB http://pb.apf.edu.au/phenbank/strain.html?id=$1
6
+ AQTLPub https://www.animalgenome.org/cgi-bin/QTLdb/BT/qabstract?PUBMED_ID=$1
7
+ AQTLTrait http://identifiers.org/animalqtltrait/$1
8
+ BNODE https://monarchinitiative.org/.well-known/genid/$1
9
+ BT http://c.biothings.io/#$1
10
+ catfishQTL https://www.animalgenome.org/cgi-bin/QTLdb/IP/qdetails?QTL_ID=$1
11
+ cattleQTL https://www.animalgenome.org/cgi-bin/QTLdb/BT/qdetails?QTL_D=$1
12
+ chickenQTL https://www.animalgenome.org/cgi-bin/QTLdb/GG/qdetails?QTL_ID=$1
13
+ CHR http://purl.obolibrary.org/obo/CHR_$1
14
+ ClinVarSubmitters http://www.ncbi.nlm.nih.gov/clinvar/submitters/$1
15
+ CLUSTR http://identifiers.org/clustr/$1
16
+ CMMR http://www.cmmr.ca/order.php?t=m&id=$1
17
+ CMR.GENE http://identifiers.org/cmr.gene/$1
18
+ COGS http://identifiers.org/cogs/$1
19
+ COGS.FUNCTION http://identifiers.org/cogs.function/$1
20
+ CoriellCollection https://catalog.coriell.org/1/$1
21
+ CoriellFamily https://catalog.coriell.org/0/Sections/BrowseCatalog/FamilyTypeSubDetail.aspx?fam=$1
22
+ CoriellIndividual https://catalog.coriell.org/Search?q=$1
23
+ CYGD http://identifiers.org/cygd/$1
24
+ DATA http://edamontology.org/data_$1
25
+ dbSNPIndividual http://www.ncbi.nlm.nih.gov/SNP/snp_ind.cgi?ind_id=$1
26
+ dbVar http://www.ncbi.nlm.nih.gov/dbvar/$1
27
+ EBIMETAGENOMICS.PROJ http://identifiers.org/ebimetagenomics.proj/$1
28
+ EBIMETAGENOMICS.SAMP http://identifiers.org/ebimetagenomics.samp/$1
29
+ EMMA https://www.infrafrontier.eu/search?keyword=EM:$1
30
+ EOM http://purl.obolibrary.org/obo/EOM_$1
31
+ FDADrug http://www.fda.gov/Drugs/InformationOnDrugs/$1
32
+ FLYSTOCK http://identifiers.org/flystock/$1
33
+ FUNCAT http://identifiers.org/funcat/$1
34
+ GeneReviews http://www.ncbi.nlm.nih.gov/books/$1
35
+ GINAS http://tripod.nih.gov/ginas/app/substance#$1
36
+ GRO http://purl.obolibrary.org/obo/GRO_$1
37
+ horseQTL https://www.animalgenome.org/cgi-bin/QTLdb/EC/qdetails?QTL_ID=$1
38
+ IMPC http://www.mousephenotype.org/data/genes/$1
39
+ IMPRESS-parameter https://www.mousephenotype.org/impress/parameterontologies/$1
40
+ IMPRESS-procedure https://www.mousephenotype.org/impress/procedures/$1
41
+ IMPRESS-protocol https://www.mousephenotype.org/impress/protocol/$1
42
+ J http://www.informatics.jax.org/reference/J:$1
43
+ KEGG-ds http://purl.obolibrary.org/KEGG-ds_$1
44
+ KEGG-hsa http://www.kegg.jp/dbget-bin/www_bget?hsa:$1
45
+ KEGG-ko http://www.kegg.jp/dbget-bin/www_bget?ko:$1
46
+ MEROPS http://identifiers.org/merops/$1
47
+ MONARCH https://monarchinitiative.org/MONARCH_$1
48
+ MonarchArchive https://archive.monarchinitiative.org/201806/$1
49
+ MonarchData https://data.monarchinitiative.org/ttl/$1
50
+ MPD https://phenome.jax.org/$1
51
+ MPD-assay https://phenome.jax.org/db/qp?rtn=views/catlines&keymeas=$1
52
+ MPD-strain http://phenome.jax.org/db/q?rtn=strains/details&strainid=$1
53
+ MUGEN http://bioit.fleming.gr/mugen/Controller?workflow=ViewModel&expand_all=true&name_begins=model.block&eid=$1
54
+ NCIMR https://mouse.ncifcrf.gov/available_details.asp?ID=$1
55
+ OMIA-breed https://monarchinitiative.org/model/OMIA-breed:$1
56
+ PAINT_REF http://www.geneontology.org/gene-associations/submission/paint/$1
57
+ PANTHER http://www.pantherdb.org/panther/family.do?clsAccession=$1
58
+ PATHEMA http://identifiers.org/pathema/$1
59
+ PGN http://identifiers.org/pgn/$1
60
+ pigQTL https://www.animalgenome.org/cgi-bin/QTLdb/SS/qdetails?QTL_ID=$1
61
+ rainbow_troutQTL https://www.animalgenome.org/cgi-bin/QTLdb/OM/qdetails?QTL_ID=$1
62
+ RBRC http://www2.brc.riken.jp/lab/animal/detail.php?brc_no=RBRC$1
63
+ RGDRef http://rgd.mcw.edu/rgdweb/report/reference/main.html?id=$1
64
+ SCIENCESIGNALING.PATH http://identifiers.org/sciencesignaling.path/$1
65
+ SCIENCESIGNALING.PDC http://identifiers.org/sciencesignaling.pdc/$1
66
+ SCIENCESIGNALING.PIC http://identifiers.org/sciencesignaling.pic/$1
67
+ SGD_REF https://www.yeastgenome.org/reference/$1
68
+ sheepQTL https://www.animalgenome.org/cgi-bin/QTLdb/OA/qdetails?QTL_ID=$1
69
+ TAIR https://www.arabidopsis.org/servlets/TairObject?type=locus&id=$1
70
+ TrEMBL http://purl.uniprot.org/uniprot/$1
71
+ VIVO http://vivoweb.org/ontology/core#$1
72
+ ZFIN.EXPRESSION http://identifiers.org/zfin.expression/$1
73
+ ZFIN.PHENOTYPE http://identifiers.org/zfin.phenotype/$1
testbed/biopragmatics__bioregistry/exports/alignment/biolink.tsv ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ prefix uri_format identifiers purl
2
+ apollo https://github.com/GMOD/Apollo$1 False False
3
+ COAR_RESOURCE http://purl.org/coar/resource_type/$1 False False
4
+ CTD http://ctdbase.org/$1 False False
5
+ DGIdb https://www.dgidb.org/interaction_types$1 False False
6
+ DOID-PROPERTY http://purl.obolibrary.org/obo/doid#$1 False True
7
+ gff3 https://github.com/The-Sequence-Ontology/Specifications/blob/master/gff3.md#$1 False False
8
+ GOP http://purl.obolibrary.org/obo/go#$1 False True
9
+ gtpo https://rdf.guidetopharmacology.org/ns/gtpo#$1 False False
10
+ NBO-PROPERTY http://purl.obolibrary.org/obo/nbo#$1 False True
11
+ NCIT-OBO http://purl.obolibrary.org/obo/ncit#$1 False True
12
+ PHARMGKB.VARIANT https://www.pharmgkb.org/variant/$1 False False
13
+ PHAROS http://pharos.nih.gov$1 False False
14
+ SEMMEDDB https://skr3.nlm.nih.gov/SemMedDB$1 False False
15
+ UBERGRAPH http://translator.renci.org/ubergraph-axioms.ofn#$1 False False
16
+ UBERON_CORE http://purl.obolibrary.org/obo/uberon/core#$1 False True
17
+ UBERON_NONAMESPACE http://purl.obolibrary.org/obo/core#$1 False True
18
+ UO-PROPERTY http://purl.obolibrary.org/obo/uo#$1 False True
testbed/biopragmatics__bioregistry/exports/alignment/bioportal.tsv ADDED
The diff for this file is too large to render. See raw diff
 
testbed/biopragmatics__bioregistry/exports/alignment/cellosaurus.tsv ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ prefix name homepage category uri_format
2
+ Abeomics Abeomics cell line products https://www.abeomics.com/ Cell line collections (Providers) https://www.abeomics.com/advanced-search-result?keywords=$1
3
+ BioGRID_ORCS_Cell_line BioGRID Open Repository of CRISPR Screens cell lines https://orcs.thebiogrid.org/ CRISP screens repositories https://orcs.thebiogrid.org/Search?searchType=10&search=$1&organism=all
4
+ cancercelllines cancercelllines.org - cancer cell line oncogenomic online resource https://cancercelllines.org/ Cell line databases/resources https://cancercelllines.org/cellline/?id=cellosaurus:$1
5
+ CancerTools CancerTools.org https://www.cancertools.org/cell-lines Cell line collections (Providers) https://www.cancertools.org/cell-lines/$1
6
+ DSHB Developmental Studies Hybridoma Bank https://dshb.biology.uiowa.edu/ Cell line collections (Providers) https://dshb.biology.uiowa.edu/$1
7
+ EGA European Genome-Phenome Archive https://ega-archive.org/ Sequence databases https://ega-archive.org/studies/$1
8
+ FCDI FujiFilm Cellular Dynamics, Inc https://www.fujifilmcdi.com/cirm-ipsc-products/ Cell line collections (Providers)
9
+ FlyBase_Gene Drosophila genome database; gene entry https://flybase.org Organism-specific databases https://flybase.org/reports/$1.htm
10
+ FlyBase_Strain Drosophila genome database; strain entry https://flybase.org Organism-specific databases https://flybase.org/reports/$1.htm
11
+ FPbase Fluorescent Protein database https://www.fpbase.org/ Sequence databases https://www.fpbase.org/protein/$1
12
+ GeneCopoeia GeneCopoeia cell line products https://www.genecopoeia.com/ Cell line collections (Providers) https://www.genecopoeia.com/product/search3/?s=$1
13
+ Genomeditech Genomeditech cell line products https://en.genomeditech.com/product?id=9 Cell line collections (Providers) https://en.genomeditech.com/search?kwd=$1
14
+ Hysigen Hysigen cell line collection https://hysigen.com/ Cell line collections (Providers) https://hysigen.com/$1.html
15
+ IARC_TP53 IARC TP53 Database https://tp53.isb-cgc.org/explore_cl Polymorphism and mutation databases
16
+ IBRC Iranian Biological Research Center cell line collection http://www.en.ibrc.ir/ Cell line collections (Providers)
17
+ Innoprot Innoprot cell line products https://innoprot.com/ Cell line collections (Providers) https://innoprot.com/?s=$1&lang=en
18
+ IZSLER Istituto Zooprofilattico Sperimentale della Lombardia e dell'Emilia Romagna biobank http://www.ibvr.org/Services/CellCultures.aspx Cell line collections (Providers)
19
+ KCB Kunming Cell Bank of Type Culture Collection http://www.kmcellbank.com/ Cell line collections (Providers)
20
+ LINCS_HMS Harvard Medical School (HMS) LINCS Center http://lincs.hms.harvard.edu/db/cells/ Cell line databases/resources http://lincs.hms.harvard.edu/db/cells/$1
21
+ MCCL Molecular Connection Cell Line ontology https://bioportal.bioontology.org/ontologies/MCCL Cell line databases/resources
22
+ NCBI_Iran National Cell Bank of Iran https://en.pasteur.ac.ir/Department%20of%20Cell%20Bank Cell line collections (Providers)
23
+ NCI-DTP NCI Development Therapeutics Program https://dtp.cancer.gov/repositories/ Cell line collections (Providers)
24
+ NISES National Institute of Sericultural and Entomological Science Cell Database https://web.archive.org/web/20160709065305/https://www.gene.affrc.go.jp/ex-nises/NISESCells/CellindexE1.html Cell line collections (Providers)
25
+ PubChem_Cell_line PubChem compound database; cell line pages https://pubchem.ncbi.nlm.nih.gov Chemistry resources https://pubchem.ncbi.nlm.nih.gov/cell/$1
26
+ RIKEN_BRC_EPD RIKEN BRC Experimental Plant Division cell lines https://epd.brc.riken.jp/en/ Cell line collections (Providers) https://plant.rtc.riken.jp/resource/cell_line/cell_line_detail.html?brcno=%S
27
+ Rockland Rockland cell line products https://www.rockland.com/categories/cell-lines-and-lysates/ Cell line collections (Providers) https://www.rockland.com/search/?searchString=$1
28
+ RSCB Royan Stem Cell Bank https://web.archive.org/web/20201001144644/http://www.royaninstitute.org/cmsen/index.php?option=com_content&task=view&id=205&Itemid=40 Cell line collections (Providers)
29
+ SKY/M-FISH/CGH SKY/M-FISH and CGH database https://www.ncbi.nlm.nih.gov/dbvar/studies/nstd136/ Cell line databases/resources
30
+ Ubigene Ubigene Biosciences cell line products https://www.ubigene.us/ Cell line collections (Providers) https://www.ubigene.us/product/?cate=0&mykeyword=$1
testbed/biopragmatics__bioregistry/exports/alignment/cheminf.tsv ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ prefix name description
2
+ 000570 SwissLipids
3
+ 000571 MolMeDB
4
+ 000572 PDB ligand
5
+ 000573 PDB structure
testbed/biopragmatics__bioregistry/exports/alignment/cropoct.tsv ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ prefix name homepage description
2
+ CO_369 Sainfoin ontology http://cropontology.org/term/CO_369:ROOT This ontology describes a standard trait lexicon used in phenotyping the forage and pulse crop, Sainfoin (Onobrychis viciifolia), with the intention of increasing trait consistency across different breeding programs. Submitted on behalf of the Sainfoin Consortium on November 3rd, 2022. Version 1.0.
3
+ CO_371 Blueberry ontology http://cropontology.org/term/CO_371:ROOT Blueberry (Vaccinium) ontology defines crop traits and variables to support the standardization of phenotypic data collection for blueberry breeding programs in the USA. The ontology provides a description of agronomic, biochemical, morphological, phenological, physiological, quality, abiotic and biotic stress traits with their methods and scales used for each trait.
4
+ CO_372 Strawberry ontology http://cropontology.org/term/CO_372:ROOT Strawberry trait ontology by USDA, GDR, 24 June 2024
5
+ CO_374 Red clover ontology http://cropontology.org/term/CO_374:ROOT This red clover (Trifolium pratense) onthology defines variables and traits to support the standardization of phenotypic data collected in the framework of breeding. The ontology describes agronomic traits, productivity traits, traits related to flowering and seed production, and disease and insect pest resistance traits, together with their methods and scales for each traits.
testbed/biopragmatics__bioregistry/exports/alignment/ecoportal.tsv ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ prefix name homepage description
2
+ ACFORMAT Audubon Core Controlled Vocabulary for Dublin Core format Audubon Core borrows the Dublin Core terms dc:format and dcterms:format to provide information about the physical or electronic format of a media item. This controlled vocabulary provides values for those two terms.
3
+ ACSUBTYPE Audubon Core subtype Controlled Vocabulary http://rs.tdwg.org/ac/doc/subtype/ Audubon Core uses the terms ac:subtype and ac:subtypeLiteral to refine the type of a media item to a level more specific than the Dublin Core Type Vocabulary, http://purl.org/dc/dcmitype/. This controlled vocabulary provides values for ac:subtype and ac:subtypeLiteral.
4
+ ACTRIS_CL ACTRIS Controlled Lists https://vocabulary.actris.nilu.no/skosmos/actris_ctrl_lists/en/ Lists of controlled terms used in ACTRIS
5
+ ACTRIS_VOCAB ACTRIS Vocabulary https://vocabulary.actris.nilu.no/skosmos/actris_vocab/en/ Controlled vocabulary of terms used in ACTRIS
6
+ ACVARIANT Audubon Core variant Controlled Vocabulary Audubon Core uses the terms ac:variant and ac:variantLiteral to provide information about the size, extent, and availability of the Service Access Point of a media item. This controlled vocabulary provides values for those terms.
7
+ ALIENSPECIES Alien Species Thesaurus The Alien Species Thesaurus is an initiative to deal with the semantics about alien and invasive species. It has been developed and published by LifeWatch Italy, the Italian node of the e-science European infrastructure for biodiversity and ecosystem research (LifeWatch ERIC). It is developed on the basis of already existing glossaries created within the framework of international initiatives aimed at the study of alien and invasive species. The terms (or concepts) are shared very broadly by the scientific community, and their definitions derive from guidelines prepared by relevant international organizations, and only in few occasions by peer reviewed papers. The Thesaurus currently consists of 157 terms.
8
+ BIODIVTHES Biodiversity Thesaurus This bilingual thesaurus organizes the key concepts of biodiversity sciences, in their basic and applied ecological components. It uses polyhierarchy and includes 818 reciprocal associative relationships. The 1654 French and English descriptors (designating 827 concepts) are enriched with a large number of synonyms (1860) and hidden variants (7020) in both languages. Concepts are grouped into 82 collections, by semantic categories, thematic fields and EBV classes (Essential Biodiversity Variables). Definitions are given with their sources. This resource is aligned with the international thesauri AGROVOC, GEMET (GEneral Multilingual Environmental Thesaurus) and EnvThes (Environmental Thesaurus), as well as with the ontology ENVO (Environment Ontology).
9
+ CPMETA Ontology of Integrated Carbon Observation System (ICOS) https://github.com/ICOS-Carbon-Portal/meta/blob/master/src/main/resources/owl/cpmeta.owl OWL vocabulary describing metadata of two environmental research infrastructures: ICOS and SITES, as well as of a pilot project ICOS Cities
10
+ DSW Darwin-SW https://github.com/darwin-sw/dsw Darwin-SW (DSW) is an RDF vocabulary designed to complement the Biodiversity Information Standards (TDWG) Darwin Core Standard. DSW is based on a model derived from a community discussion about the relationships among the main Darwin Core classes.
11
+ DWCDOE Darwin Core Degree Of Establishment Controlled Vocabulary The Darwin Core term degreeOfEstablishment provides information about degree to which an Organism survives, reproduces, and expands its range at the given place and time. The Degree of Establishment Controlled Vocabulary provides term that should be used as values for dwc:degreeOfEstablishment and dwciri:degreeOfEstablishment
12
+ DWCEM Darwin Core Establishment Means Controlled Vocabulary http://rs.tdwg.org/dwc/doc/em/ The Darwin Core term establishmentMeans provides information about whether an organism or organisms have been introduced to a given place and time through the direct or indirect activity of modern humans. The Establishment Means Controlled Vocabulary provides terms that should be used as values for dwc:establishmentMeans and dwciri:establishmentMeans.
13
+ DWCPW Darwin Core Pathway Controlled Vocabulary http://rs.tdwg.org/dwc/doc/pw/ The Darwin Core term pathway provides information about the process by which an Organism came to be in a given place at a given time. The Pathway Controlled Vocabulary provides terms that should be used as values for dwc:pathway and dwciri:pathway.
14
+ ELTER_CL eLTER Controlled Lists eLTER_CL is a thesaurus for controlled lists used by the eLTER community
15
+ ENDEMISMS Endemisms Thesaurus Thesaurus on endemisms
16
+ ENVTHES Environmental Thesaurus EnvThes compiles a set of terms in order to describe in a harmonised way data resulting from observations and measurements of ecosystem processes across different domain specific sciences. It is used by DEIMS-SDR for common keywords for annotation and quering metadata purposes.
17
+ EURIO eurio https://op.europa.eu/en/web/eu-vocabularies/dataset/-/resource?uri=http://publications.europa.eu/resource/dataset/eurio EURIO (EUropean Research Information Ontology) conceptualises, formally encodes and makes available in an open, structured and machine-readable format data about resarch projects funded by the EU's framework programmes for research and innovation.
18
+ EUROSCIVOC EuroSciVoc https://op.europa.eu/s/y4UK European Science Vocabulary (EuroSciVoc) is the taxonomy of fields of science based on OECD's 2015 Frascati Manual taxonomy. It was extended with fields of science categories extracted from CORDIS content through a semi-automatic process developed with Natural Language Processing (NLP) techniques.
19
+ EUROVOC EuroVoc Core Concepts https://op.europa.eu/s/y4TH EuroVoc is a multilingual, multidisciplinary thesaurus covering the activities of the EU. It contains terms in 24 EU languages, plus in three languages of countries which are candidate for EU accession. EuroVoc is managed by the Publications Office of the European Union, which moved forward to ontology-based thesaurus management and semantic web technologies conformant to W3C recommendations as well as latest trends in thesaurus standards. EuroVoc users include the European Union institutions, the Publications Office of the EU, national and regional parliaments in Europe, plus national governments and private users around the world. EcoPortal is currently hosting the core concepts of EuroVoc, including all their attributes, except alternative labels.
20
+ FISHTRAITS Fish Traits Thesaurus The Fish Traits Thesaurus is the first initiative to deal with the semantics of fish functional traits. It has been developed by LifeWatch Italy, the Italian node of the e-science European infrastructure for biodiversity and ecosystem research (LifeWatch ERIC). FishTraits reflects the agreement of a scientific expert community to fix semantic properties (e.g. label, definition, relationships) of approximately 220 concepts.
21
+ I-ADOPT I-ADOPT Framework ontology "The I-ADOPT Framework is an ontology designed to facilitate interoperability between existing variable description models (including ontologies, taxonomy, and structured controlled vocabularies). One of the challenges in representing semantic descriptions of variables is getting people to agree about what they mean when describing the components that define the variables. The I-ADOPT ontology addresses this by providing core components and their relations that can be applied to define machine-interpretable variable descriptions that re-use FAIR vocabulary terms. It was developed by a core group of terminology experts and users from the Research Data Alliance (RDA) InteroperAble Descriptions of Observable Property Terminology (I-ADOPT) Working Group. The first published versions of the ontology up to v0.9.1 satisfied the basic cross-domain interoperability requirements. It defines four classes or ""concepts"" (Variable, Property, Entity, Constraint), and six object properties (hasProperty, hasObjectOfInterest, hasContextObject, hasMatrix, hasConstraint, constrains). The Variable is the top concept. It represents the description of something observed or mathematically derived. It minimally consists of one entity (the ObjectOfInterest) and its Property; a Property being a type of characteristic (i.e. a quantity or a quality). More complex variables can involve additional entities, for example an entity may have the role of Matrix and/or of ContextObject(s). The framework does not capture units, instruments, methods, and geographical location information; however its usage recommendation will make explicit reference to these by connecting the I-ADOPT framework to existing and complementary ontologies. This new version of the ontology (v1.0) adds one optional new class (VariableSet) and four optional new object properties (hasApplicableProperty, hasApplicableObjectOfInterest, hasApplicableMatrix, hasApplicableContextObject). This was necessary in order to enable flexibility in assigning optional and user-defined machine-interpretable categorizations of I-ADOPT variables under one or multiple coarser grouping concepts to facilitate dataset discovery and dataset aggregation. With the introduction of these concepts and properties, the framework enables different user communities or product developers to develop their own grouping criteria. While the Variable class must be connected to at least two classes via the mandatory properties hasProperty and hasObjectOIfInterest, the VariableSet class can have either of the new properties. Additionally, the VariableSet class can also be optionally connected to the Variable class using the property [ro:hasMember](http://purl.obolibrary.org/obo/RO_0002351) from the [OBO Relations Ontology](https://obofoundry.org/ontology/ro.html)."
22
+ LUPO LifeWatch ERIC Upper Ontology The LifeWatch ERIC Upper Ontology (LUPO) is the model defining the core set of LifeWatch ERIC elements (Actors, Services and Infrastructure) and describing their high-level arrangement. LUPO is extendable and will foster, connect and describe lower level models of its core elements, with the vision to provide functionalities that facilitate the uptake, re-use and enrichment of LifeWatch ERIC resources by an ever broader community.
23
+ MACROALGAETRAITS Macroalgae Traits Thesaurus The Macroalgae Traits Thesaurus contains several concepts on demographic and functional traits. It has been developed and published by LifeWatch Italy, the Italian node of the e-science European infrastructure for biodiversity and ecosystem research (LifeWatch ERIC). It reflects the agreement of a scientific expert community to fix semantic properties (e.g. label, definition) of approximately 100 traits.
24
+ MR Marine Regions ontology https://www.marineregions.org/ The Marine Regions ontology provides definitions for the classes and properties used in the Marine Regions dataset.
25
+ MRPTCODELIST Marine Regions PlaceTypes code list https://www.marineregions.org/ The Marine Regions PlaceType code list provides definitions for the PlaceTypes used in the Marine Regions dataset.
26
+ OBOE The Extensible Observation Ontology https://github.com/NCEAS/oboe/ The Extensible Observation Ontology (OBOE) is a formal ontology for capturing the semantics of scientific observation and measurement. The ontology supports researchers to add detailed semantic annotations to scientific data, thereby clarifying the inherent meaning of scientific observations.
27
+ PHYTOTRAITS Phytoplankton Traits Thesaurus The Phytoplankton Traits Thesaurus is the first initiative to deal with the semantics of phytoplankton functional traits focusing on morpho-functional traits. It has been developed and published by LifeWatch Italy, the Italian node of the e-science European infrastructure for biodiversity and ecosystem research (LifeWatch ERIC). PhytoTraits reflects the agreement of a scientific expert community to fix semantic properties (e.g. label, definition) of approximately 120 traits.
28
+ ZOOPLANKTRAITS Zooplankton Traits Thesaurus The Zooplankton Traits Thesaurus contains several concepts mainly on zooplankton morpho-functional traits. It has been developed and published by LifeWatch Italy, the Italian node of the e-science European infrastructure for biodiversity and ecosystem research (LifeWatch ERIC). It reflects the agreement of a scientific expert community to fix semantic properties (e.g. label, definition) of approximately 90 traits.
testbed/biopragmatics__bioregistry/exports/alignment/edam.tsv ADDED
@@ -0,0 +1,169 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ prefix name description
2
+ 1031 Gene ID (CGD) Identifier of a gene or feature from the CGD database.
3
+ 1032 Gene ID (DictyBase) Identifier of a gene from DictyBase.
4
+ 1033 Ensembl gene Unique identifier for a gene (or other feature) from the Ensembl database.
5
+ 1034 Gene ID (SGD) Identifier of an entry from the SGD database.
6
+ 1036 TIGR Identifier of an entry from the TIGR database.
7
+ 1037 TAIR accession (gene) Identifier of an gene from the TAIR database.
8
+ 1043 CATH node A code number identifying a node from the CATH database.
9
+ 1066 Sequence alignment Identifier of a molecular sequence alignment, for example a record from an alignment database.
10
+ 1100 PIR An identifier of PIR sequence database entry.
11
+ 1102 Gramene primary Primary identifier of a Gramene database entry.
12
+ 1103 EMBL/GenBank/DDBJ Identifier of a (nucleic acid) entry from the EMBL/GenBank/DDBJ databases.
13
+ 1104 Sequence cluster ID (UniGene) A unique identifier of an entry (gene cluster) from the NCBI UniGene database.
14
+ 1113 Sequence cluster ID (COG) Unique identifier of an entry from the COG database.
15
+ 1118 HMMER hidden Markov model Unique identifier or name of a HMMER hidden Markov model.
16
+ 1119 JASPAR profile Unique identifier or name of a profile from the JASPAR database.
17
+ 1123 TreeBASE study accession number Accession number of an entry from the TreeBASE database.
18
+ 1124 TreeFam accession number Accession number of an entry from the TreeFam database.
19
+ 1130 IntAct accession number Accession number of an entry from the IntAct database.
20
+ 1134 InterPro secondary Secondary accession number of an InterPro entry.
21
+ 1135 Gene3D Unique identifier of an entry from the Gene3D database.
22
+ 1137 PRINTS code The unique identifier of an entry in the PRINTS database.
23
+ 1139 SMART accession number Accession number of an entry from the SMART database.
24
+ 1140 Superfamily hidden Markov model number Unique identifier (number) of a hidden Markov model from the Superfamily database.
25
+ 1142 ProDom accession number A ProDom domain family accession number.
26
+ 1143 TRANSFAC accession number Identifier of an entry from the TRANSFAC database.
27
+ 1148 GermOnline Identifier of an entry from the GermOnline database.
28
+ 1149 EMAGE Identifier of an entry from the EMAGE database.
29
+ 1151 HGVbase Identifier of an entry from the HGVbase database.
30
+ 1154 KEGG object Unique identifier of an object from one of the KEGG databases (excluding the GENES division).
31
+ 1157 Pathway ID (BioCyc) Identifier of an pathway from the BioCyc biological pathways database.
32
+ 1158 Pathway ID (INOH) Identifier of an entry from the INOH database.
33
+ 1159 Pathway ID (PATIKA) Identifier of an entry from the PATIKA database.
34
+ 1160 Pathway ID (CPDB) Identifier of an entry from the CPDB (ConsensusPathDB) biological pathways database, which is an identifier from an external database integrated into CPDB.
35
+ 1167 Taverna workflow Unique identifier of a Taverna workflow.
36
+ 1171 BioModel Unique identifier of an entry from the BioModel database.
37
+ 1172 PubChem C Chemical structure specified in PubChem Compound Identification (CID), a non-zero integer identifier for a unique chemical structure.
38
+ 1178 HGNC concept An identifier of a concept from the HGNC controlled vocabulary.
39
+ 1183 EMAP concept An identifier of a concept from the EMAP mouse ontology.
40
+ 1184 ChEBI concept An identifier of a concept from the ChEBI ontology.
41
+ 1185 MGED concept An identifier of a concept from the MGED ontology.
42
+ 1186 myGrid concept An identifier of a concept from the myGrid ontology.
43
+ 1189 Medline UI Medline UI (unique identifier) of an article.
44
+ 1794 Gene ID (PlasmoDB) Identifier of a gene from PlasmoDB Plasmodium Genome Resource.
45
+ 1795 Gene ID (EcoGene) Identifier of a gene from EcoGene Database.
46
+ 1796 Gene ID (FlyBase) Gene identifier from FlyBase database.
47
+ 1802 Gene ID (Gramene) Gene identifier from Gramene database.
48
+ 1803 Gene ID (Virginia microbial) Gene identifier from Virginia Bioinformatics Institute microbial database.
49
+ 1804 Gene ID (SGN) Gene identifier from Sol Genomics Network.
50
+ 1873 iHOP organism A unique identifier for an organism used in the iHOP database.
51
+ 1885 Gene ID (GeneFarm) Identifier of a gene from the GeneFarm database.
52
+ 1886 Blattner number The blattner identifier for a gene.
53
+ 1891 iHOP symbol A unique identifier of a protein or gene used in the iHOP database.
54
+ 1895 Locus ID (AGI) Locus identifier for Arabidopsis Genome Initiative (TAIR, TIGR and MIPS databases).
55
+ 1896 Locus ID (ASPGD) Identifier for loci from ASPGD (Aspergillus Genome Database).
56
+ 1897 Locus ID (MGG) Identifier for loci from Magnaporthe grisea Database at the Broad Institute.
57
+ 1898 Locus ID (CGD) Identifier for loci from CGD (Candida Genome Database).
58
+ 1899 Locus ID (CMR) Locus identifier for Comprehensive Microbial Resource at the J. Craig Venter Institute.
59
+ 1900 NCBI locus tag Identifier for loci from NCBI database.
60
+ 1901 Locus ID (SGD) Identifier for loci from SGD (Saccharomyces Genome Database).
61
+ 1902 Locus ID (MMP) Identifier of loci from Maize Mapping Project.
62
+ 1903 Locus ID (DictyBase) Identifier of locus from DictyBase (Dictyostelium discoideum).
63
+ 1904 Locus ID (EntrezGene) Identifier of a locus from EntrezGene database.
64
+ 1905 Locus ID (MaizeGDB) Identifier of locus from MaizeGDB (Maize genome database).
65
+ 1907 Gene ID (KOME) Identifier of a gene from the KOME database.
66
+ 1908 Locus ID (Tropgene) Identifier of a locus from the Tropgene database.
67
+ 2102 KEGG organism code A three-letter code used in the KEGG databases to uniquely identify organisms.
68
+ 2105 Compound ID (BioCyc) Identifier of a compound from the BioCyc chemical compounds database.
69
+ 2106 Reaction ID (BioCyc) Identifier of a biological reaction from the BioCyc reactions database.
70
+ 2107 Enzyme ID (BioCyc) Identifier of an enzyme from the BioCyc enzymes database.
71
+ 2112 FlyBase primary Primary identifier of an object from the FlyBase database.
72
+ 2114 WormBase wormpep Protein identifier used by WormBase database.
73
+ 2174 FlyBase secondary Secondary identifier of an object from the FlyBase database.
74
+ 2209 Mutation A unique identifier of a specific mutation catalogued in a database.
75
+ 2220 Sequence cluster ID (SYSTERS) Unique identifier of a sequence cluster from the SYSTERS database.
76
+ 2285 Gene ID (MIPS) Identifier for genetic elements in MIPS database.
77
+ 2290 EMBL An accession number of an entry from the EMBL sequence database.
78
+ 2293 Gramene secondary Secondary (internal) identifier of a Gramene database entry.
79
+ 2297 Gene ID (ECK) Identifier of an E. coli K-12 gene from EcoGene Database.
80
+ 2315 NCBI version An identifier assigned to sequence records processed by NCBI, made of the accession number of the database record followed by a dot and a version number.
81
+ 2327 GI number (protein) A unique identifier assigned to NCBI protein sequence records.
82
+ 2345 Pathway ID (ConsensusPathDB) Identifier of a pathway from the ConsensusPathDB pathway database.
83
+ 2347 Sequence cluster ID (UniRef100) Unique identifier of an entry from the UniRef100 database.
84
+ 2348 Sequence cluster ID (UniRef90) Unique identifier of an entry from the UniRef90 database.
85
+ 2349 Sequence cluster ID (UniRef50) Unique identifier of an entry from the UniRef50 database.
86
+ 2368 ASTD ID (exon) Identifier of an exon from the ASTD database.
87
+ 2369 ASTD ID (intron) Identifier of an intron from the ASTD database.
88
+ 2370 ASTD ID (polya) Identifier of a polyA signal from the ASTD database.
89
+ 2371 ASTD ID (tss) Identifier of a transcription start site from the ASTD database.
90
+ 2374 Spot serial number Unique identifier of a spot from a two-dimensional (protein) gel in the SWISS-2DPAGE database.
91
+ 2375 Spot ID (HSC-2DPAGE) Unique identifier of a spot from a two-dimensional (protein) gel from a HSC-2DPAGE database.
92
+ 2383 EGA Identifier of an entry from the EGA database.
93
+ 2384 IPI protein Identifier of a protein entry catalogued in the International Protein Index (IPI) database.
94
+ 2385 RefSeq accession (protein) Accession number of a protein from the RefSeq database.
95
+ 2387 TAIR Identifier of an entry from the TAIR database.
96
+ 2388 TAIR accession (At gene) Identifier of an Arabidopsis thaliana gene from the TAIR database.
97
+ 2391 UTR Identifier of an entry from the UTR database.
98
+ 2393 mFLJ/mKIAA number Identifier of an entry from the Rouge or HUGE databases.
99
+ 2398 Ensembl protein Unique identifier for a protein from the Ensembl database.
100
+ 2580 BindingDB Monomer Unique identifier of a monomer from the BindingDB database.
101
+ 2588 BlotBase blot Unique identifier of a blot from a Northern Blot from the BlotBase database.
102
+ 2591 Brite hierarchy Identifier of an entry from the Brite database of biological hierarchies.
103
+ 2593 BRENDA organism A unique identifier for an organism used in the BRENDA database.
104
+ 2612 Sequence cluster ID (CluSTr) Unique identifier of a sequence cluster from the CluSTr database.
105
+ 2617 Signaling Gateway protein Unique identifier of a protein listed in the UCSD-Nature Signaling Gateway Molecule Pages database.
106
+ 2621 TAIR accession (protein) Identifier of a protein sequence from the TAIR database.
107
+ 2636 MatrixDB interaction A unique identifier of an interaction from the MatrixDB database.
108
+ 2637 cPath A unique identifier for pathways, reactions, complexes and small molecules from the cPath (Pathway Commons) database.
109
+ 2643 Gene ID (ZFIN) Identifier for a gene from the Zebrafish information network genome (ZFIN) database.
110
+ 2647 LGICdb Unique identifier of an entry from the Ligand-gated ion channel (LGICdb) database.
111
+ 2648 Reaction kinetics ID (SABIO-RK) Identifier of a biological reaction (kinetics entry) from the SABIO-RK reactions database.
112
+ 2649 PharmGKB Identifier of an entry from the pharmacogenetics and pharmacogenomics knowledge base (PharmGKB).
113
+ 2668 iRefIndex Unique identifier of an entry from the iRefIndex database of protein-protein interactions.
114
+ 2670 Pathway ID (DQCS) Identifier of a signaling pathway from the Database of Quantitative Cellular Signaling (DQCS).
115
+ 2701 CATH node ID (family) A code number identifying a family from the CATH database.
116
+ 2702 Enzyme ID (CAZy) Identifier of an enzyme from the CAZy enzymes database.
117
+ 2704 Clone ID (IMAGE) A unique identifier assigned by the I.M.A.G.E. consortium to a clone (cloned molecular sequence).
118
+ 2705 GO concept ID (cellular component) An identifier of a 'cellular component' concept from the Gene Ontology.
119
+ 2709 CleanEx entry name An identifier of a gene expression profile from the CleanEx database.
120
+ 2713 Protein ID (CORUM) Unique identifier for a protein complex from the CORUM database.
121
+ 2714 CDD PSSM- Unique identifier of a position-specific scoring matrix from the CDD database.
122
+ 2715 Protein ID (CuticleDB) Unique identifier for a protein from the CuticleDB database.
123
+ 2721 DiProDB Identifier of an dinucleotide property from the DiProDB database.
124
+ 2725 Ensembl transcript Unique identifier for a gene transcript from the Ensembl database.
125
+ 2729 COGEME EST Identifier of an EST sequence from the COGEME database.
126
+ 2730 COGEME unisequence Identifier of a unisequence from the COGEME database.
127
+ 2731 Protein family ID (GeneFarm) Accession number of an entry (protein family) from the GeneFarm database.
128
+ 2736 Sequence feature ID (SwissRegulon) A feature identifier as used in the SwissRegulon database.
129
+ 2737 FIG A unique identifier of gene in the NMPDR database.
130
+ 2739 Gene ID (Genolist) A unique identifier of gene in the Genolist database.
131
+ 2742 AraC-XylS Identifier of a transcription factor from the AraC-XylS database.
132
+ 2744 Locus ID (PseudoCAP) Identifier of a locus from the PseudoCAP database.
133
+ 2745 Locus ID (UTR) Identifier of a locus from the UTR database.
134
+ 2746 MonosaccharideDB Unique identifier of a monosaccharide from the MonosaccharideDB database.
135
+ 2752 GlycoMap Identifier of an entry from the GlycoMapsDB (Glycosciences.de) database.
136
+ 2759 Gene ID (VectorBase) Identifier for a gene from the VectorBase database.
137
+ 2770 HIT Identifier of an RNA transcript from the H-InvDB database.
138
+ 2771 HIX A unique identifier of gene cluster in the H-InvDB database.
139
+ 2772 HPA antibody id Identifier of a antibody from the HPA database.
140
+ 2774 Gene ID (JCVI) A unique identifier of gene assigned by the J. Craig Venter Institute (JCVI).
141
+ 2776 ConsensusPathDB entity Identifier of a physical entity from the ConsensusPathDB database.
142
+ 2778 CCAP strain number The number of a strain of algae and protozoa from the CCAP database.
143
+ 2780 Stock number (TAIR) A stock number from The Arabidopsis information resource (TAIR).
144
+ 2781 REDIdb Identifier of an entry from the RNA editing database (REDIdb).
145
+ 2783 Protein family ID (PANTHER) Accession number of an entry (family) from the PANTHER database.
146
+ 2784 RNAVirusDB A unique identifier for a virus from the RNAVirusDB database.
147
+ 2786 NCBI Genome Project An identifier of a genome project assigned by NCBI.
148
+ 2792 Protein ID (PeroxiBase) Unique identifier for a peroxidase protein from the PeroxiBase database.
149
+ 2793 SISYPHUS Identifier of an entry from the SISYPHUS database of tertiary structure alignments.
150
+ 2794 ORF Accession of an open reading frame (catalogued in a database).
151
+ 2796 LINUCS Identifier of an entry from the GlycosciencesDB database.
152
+ 2797 Protein ID (LGICdb) Unique identifier for a ligand-gated ion channel protein from the LGICdb database.
153
+ 2798 MaizeDB Identifier of an EST sequence from the MaizeDB database.
154
+ 2799 Gene ID (MfunGD) A unique identifier of gene in the MfunGD database.
155
+ 2800 Orpha number An identifier of a disease from the Orpha database.
156
+ 2802 Protein ID (EcID) Unique identifier for a protein from the EcID database.
157
+ 2803 Clone ID (RefSeq) A unique identifier of a cDNA molecule catalogued in the RefSeq database.
158
+ 2804 Protein ID (ConoServer) Unique identifier for a cone snail toxin protein from the ConoServer database.
159
+ 2805 GeneSNP Identifier of a GeneSNP database entry.
160
+ 2835 Gene ID (VBASE2) Identifier for a gene from the VBASE2 database.
161
+ 2836 DPVweb A unique identifier for a virus from the DPVweb database.
162
+ 2837 Pathway ID (BioSystems) Identifier of a pathway from the BioSystems pathway database.
163
+ 2915 Gramene Identifier of a Gramene database entry.
164
+ 2916 DDBJ An identifier of an entry from the DDBJ sequence database.
165
+ 3022 NCBI genetic code Identifier of a genetic code in the NCBI list of genetic codes.
166
+ 3029 Protein ID (EMBL/GenBank/DDBJ) EMBL/GENBANK/DDBJ coding feature protein identifier, issued by International collaborators.
167
+ 3238 Cell type ontology Cell type ontology concept ID.
168
+ 3270 Ensembl gene tree Unique identifier for a gene tree from the Ensembl database.
169
+ 3769 BRENDA ontology concept An identifier of a concept from the BRENDA ontology.
testbed/biopragmatics__bioregistry/exports/alignment/fairsharing.tsv ADDED
The diff for this file is too large to render. See raw diff