bioregistry 0.13.10__py3-none-any.whl → 0.13.12__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bioregistry/__init__.py +2 -0
- bioregistry/app/templates/base.html +6 -0
- bioregistry/app/templates/collection.html +13 -6
- bioregistry/app/templates/resource-bibliometrics.html +79 -0
- bioregistry/app/templates/resource-standards.html +89 -0
- bioregistry/app/templates/resource.html +10 -177
- bioregistry/curation/add_linkml.py +89 -0
- bioregistry/curation/add_nfdi_section_collections.py +60 -0
- bioregistry/data/bioregistry.json +300 -38
- bioregistry/data/collections.json +528 -9
- bioregistry/data/curated_papers.tsv +1 -0
- bioregistry/external/aberowl/processed.json +49 -20
- bioregistry/external/bartoc/processed.json +133 -11
- bioregistry/external/bioportal/agroportal.json +11 -1
- bioregistry/external/fairsharing/processed.json +96 -4
- bioregistry/external/integbio/processed.json +6 -4
- bioregistry/external/lov/processed.json +10 -0
- bioregistry/external/obofoundry/processed.json +4 -0
- bioregistry/external/ols/processed.json +39 -27
- bioregistry/external/re3data/processed.json +22 -8
- bioregistry/resource_manager.py +4 -0
- bioregistry/schema/schema.json +21 -1
- bioregistry/schema/struct.py +9 -1
- bioregistry/schema_utils.py +6 -1
- bioregistry/validate/cli.py +16 -0
- bioregistry/validate/utils.py +28 -1
- bioregistry/version.py +1 -1
- {bioregistry-0.13.10.dist-info → bioregistry-0.13.12.dist-info}/METADATA +1 -1
- {bioregistry-0.13.10.dist-info → bioregistry-0.13.12.dist-info}/RECORD +31 -27
- {bioregistry-0.13.10.dist-info → bioregistry-0.13.12.dist-info}/WHEEL +0 -0
- {bioregistry-0.13.10.dist-info → bioregistry-0.13.12.dist-info}/entry_points.txt +0 -0
bioregistry/validate/cli.py
CHANGED
|
@@ -102,3 +102,19 @@ def validate_virtuoso(
|
|
|
102
102
|
url, strict=not relax, use_preferred=use_preferred, context=context
|
|
103
103
|
)
|
|
104
104
|
click_write_messages(messages, tablefmt=tablefmt)
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
@validate.command(name="linkml")
|
|
108
|
+
@click.argument("url")
|
|
109
|
+
@RELAX_OPTION
|
|
110
|
+
@CONTEXT_OPTION
|
|
111
|
+
@PREFERRED_OPTION
|
|
112
|
+
@FORMAT_OPTION
|
|
113
|
+
def validate_linkml(
|
|
114
|
+
url: str, relax: bool, use_preferred: bool, context: str | None, tablefmt: str | None
|
|
115
|
+
) -> None:
|
|
116
|
+
"""Validate prefixes in a LinkMK YAML configuration."""
|
|
117
|
+
from .utils import click_write_messages, validate_linkml
|
|
118
|
+
|
|
119
|
+
messages = validate_linkml(url, strict=not relax, use_preferred=use_preferred, context=context)
|
|
120
|
+
click_write_messages(messages, tablefmt=tablefmt)
|
bioregistry/validate/utils.py
CHANGED
|
@@ -5,7 +5,7 @@ from __future__ import annotations
|
|
|
5
5
|
import json
|
|
6
6
|
from collections.abc import Callable, Mapping
|
|
7
7
|
from pathlib import Path
|
|
8
|
-
from typing import TYPE_CHECKING, Any, Literal
|
|
8
|
+
from typing import TYPE_CHECKING, Any, Literal, cast
|
|
9
9
|
|
|
10
10
|
import click
|
|
11
11
|
from pydantic import BaseModel
|
|
@@ -18,6 +18,7 @@ __all__ = [
|
|
|
18
18
|
"Message",
|
|
19
19
|
"click_write_messages",
|
|
20
20
|
"validate_jsonld",
|
|
21
|
+
"validate_linkml",
|
|
21
22
|
"validate_ttl",
|
|
22
23
|
"validate_virtuoso",
|
|
23
24
|
]
|
|
@@ -150,6 +151,13 @@ def validate_virtuoso(url: str, **kwargs: Any) -> list[Message]:
|
|
|
150
151
|
return _get_all_messages(inputs, **kwargs)
|
|
151
152
|
|
|
152
153
|
|
|
154
|
+
def validate_linkml(url: str, **kwargs: Any) -> list[Message]:
|
|
155
|
+
"""Validate a LinkML YAML configuration's prefix map."""
|
|
156
|
+
prefix_map = get_linkml_prefix_map(url)
|
|
157
|
+
inputs: list[tuple[str, str, int | None]] = [(k, v, None) for k, v in prefix_map.items()]
|
|
158
|
+
return _get_all_messages(inputs, **kwargs)
|
|
159
|
+
|
|
160
|
+
|
|
153
161
|
def _get_all_messages(
|
|
154
162
|
inputs: list[tuple[str, str, int | None]],
|
|
155
163
|
*,
|
|
@@ -309,3 +317,22 @@ def get_virtuoso_prefix_map(url: str) -> dict[str, str]:
|
|
|
309
317
|
)
|
|
310
318
|
rv = {left.text: right.text for left, right in table_body_tag.find_all("tr")}
|
|
311
319
|
return rv
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
def get_linkml_prefix_map(url: str) -> dict[str, str]:
|
|
323
|
+
"""Get the prefix map from a LinkML YAML configuration.
|
|
324
|
+
|
|
325
|
+
:param url: The URL for the LinkML YAML configuration. Examples:
|
|
326
|
+
|
|
327
|
+
- https://github.com/HendrikBorgelt/CatCore/raw/refs/heads/main/src/catcore/schema/catcore.yaml
|
|
328
|
+
- https://github.com/mapping-commons/sssom/raw/refs/heads/master/src/sssom_schema/schema/sssom_schema.yaml
|
|
329
|
+
|
|
330
|
+
:returns: The prefix map defined in the LinkML configuration
|
|
331
|
+
"""
|
|
332
|
+
import requests
|
|
333
|
+
import yaml
|
|
334
|
+
|
|
335
|
+
res = requests.get(url, timeout=5)
|
|
336
|
+
res.raise_for_status()
|
|
337
|
+
data = yaml.safe_load(res.text)
|
|
338
|
+
return cast(dict[str, str], data["prefixes"])
|
bioregistry/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: bioregistry
|
|
3
|
-
Version: 0.13.
|
|
3
|
+
Version: 0.13.12
|
|
4
4
|
Summary: Integrated registry of biological databases and nomenclatures
|
|
5
5
|
Keywords: snekpack,cookiecutter,databases,biological databases,biomedical databases,persistent identifiers
|
|
6
6
|
Author: Charles Tapley Hoyt
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
bioregistry/.DS_Store,sha256=MtEQz-j0qLB8mBzZ2s0qvjaV6xHF3Z2A1YUEa_dogB8,10244
|
|
2
|
-
bioregistry/__init__.py,sha256=
|
|
2
|
+
bioregistry/__init__.py,sha256=LZF2oEQZoKh4DC38reMoH31dNJR7kQO8dwqpMv5NVqw,6780
|
|
3
3
|
bioregistry/__main__.py,sha256=hfyt3xyxKdAp969VpjqhTMdpG7CxtDCA7y8bYc0-ZKU,92
|
|
4
4
|
bioregistry/analysis/__init__.py,sha256=z0F0QjavayAY0-otbu92g1wR3KK5ZmRNS24r76nxVJI,41
|
|
5
5
|
bioregistry/analysis/bioregistry_diff.py,sha256=0GEjk3OgjToUKO0nH4RmFUpZl8L2rikSy0qDDtqB2o4,10278
|
|
@@ -21,8 +21,8 @@ bioregistry/app/static/nfdi4chem.svg,sha256=jjHtKDadcnfgkfU_NGpuXb8E4oH8stbyWftZ
|
|
|
21
21
|
bioregistry/app/static/northeastern.svg,sha256=1TOrV0kNHLM9iEMhXjZBt1WYwmSRHmyJ5wSkNpfckdE,7086
|
|
22
22
|
bioregistry/app/static/rwth-iac.svg,sha256=UpvCVjb9wflykVH-8r1QkpI5zEz-ID72nnobFQv6nP4,19228
|
|
23
23
|
bioregistry/app/templates/.DS_Store,sha256=-h9BoY3FbmzzXlHeJRERn_I7ipCKSoYZbNch6jKcGHM,6148
|
|
24
|
-
bioregistry/app/templates/base.html,sha256=
|
|
25
|
-
bioregistry/app/templates/collection.html,sha256=
|
|
24
|
+
bioregistry/app/templates/base.html,sha256=6QXePUhDYMIIaDYxVdsvricVyj7itmXSkTOsh0BpDF4,10967
|
|
25
|
+
bioregistry/app/templates/collection.html,sha256=JGsfojujafDhFJKJh7hrUnKwo2w6rkppQOBkxwI0GmY,4135
|
|
26
26
|
bioregistry/app/templates/collections.html,sha256=3G7qtao8nPlbMJN2i9DjwGvTqLi0Rbvl9_Vl7W48RPc,3474
|
|
27
27
|
bioregistry/app/templates/context.html,sha256=LptXmIMJiQEeZXYaC4KEQq6CnZGvbj6KI_Nub6I800k,6754
|
|
28
28
|
bioregistry/app/templates/contexts.html,sha256=tYJpX6i58mIfA-QdUKg_cXAK6zuReR1ZmSyMpkdlmhw,2379
|
|
@@ -50,7 +50,9 @@ bioregistry/app/templates/resolve_errors/disallowed_identifier.html,sha256=jWQA0
|
|
|
50
50
|
bioregistry/app/templates/resolve_errors/invalid_identifier.html,sha256=l0A8r1xhjSoqyfj5YagWnEbUaZgxYKKZN5VzSLFbIYc,2064
|
|
51
51
|
bioregistry/app/templates/resolve_errors/missing_prefix.html,sha256=1c2lqB5bd2NycaAaV9bFKi23TUTncG8ywNReDxGTAS4,1568
|
|
52
52
|
bioregistry/app/templates/resolve_errors/missing_providers.html,sha256=9xFAcxM7ooGbipOB48sGbSwjD9t892L9RnceMd6QuwI,1339
|
|
53
|
-
bioregistry/app/templates/resource.html,sha256=
|
|
53
|
+
bioregistry/app/templates/resource-bibliometrics.html,sha256=mb5q3M-RpOK6_PSkfUyGroHDdHUuBY1qKEqJdxLnDjs,3451
|
|
54
|
+
bioregistry/app/templates/resource-standards.html,sha256=lI8MYT04Ob9UdZ1bqegrg7BYpysertk83tbEpShfyD8,4330
|
|
55
|
+
bioregistry/app/templates/resource.html,sha256=aReg1no9h8DGXzfNCV11CuHyILuhkP74agPP2IPDaaI,32133
|
|
54
56
|
bioregistry/app/templates/resources.html,sha256=HJdvJtF2FrkEVyfGLKD_5G0wlqDXEJrxzdJwObzLxTA,3930
|
|
55
57
|
bioregistry/app/test.py,sha256=mr0erF32i45CWbkdoJeb907FTKoYiJsjUIe-XA_G2qI,2057
|
|
56
58
|
bioregistry/app/ui.py,sha256=Fh2Aq2q6ZJRQhLlbgnZ7xTzqMQFGxXKIqpb2Tu_0uzo,23934
|
|
@@ -74,6 +76,8 @@ bioregistry/curation/add_co_providers.py,sha256=s14caK1lCRLBEW_NsbgIV93eqoBpr56k
|
|
|
74
76
|
bioregistry/curation/add_descriptions_from_gs.py,sha256=v5qomc7NSdPiSHOJZAsf7Jsc7Ia7Pcz7xu0e7Ejso6M,1055
|
|
75
77
|
bioregistry/curation/add_examples.py,sha256=3S2F4BrbJebWG32AvnBG4rb0rzTC2mBuZzVucx58YcA,1295
|
|
76
78
|
bioregistry/curation/add_examples_from_ols.py,sha256=g09hNkni-4jR_hzaJ-IYN8J8TV2Jk91htwXPDwi85As,2961
|
|
79
|
+
bioregistry/curation/add_linkml.py,sha256=mOAFlovm6RgQwAozOCNF0JjduKMx_IMa2N797pN4GJ4,2475
|
|
80
|
+
bioregistry/curation/add_nfdi_section_collections.py,sha256=n6zpSSTTj_16FKLZSKm4ws3nPL7nvHag3S5FPRBu1wI,2034
|
|
77
81
|
bioregistry/curation/add_ontology_regexes.py,sha256=QdsMrma7meYPK_xCLj8U13XPM6ayWPG_LyL3WiAe7y4,1624
|
|
78
82
|
bioregistry/curation/add_provider_status_curations.py,sha256=_ydRS1AT4z06z1Ur9If7eyuSmWRoCMZQGM9t2dpofdI,1956
|
|
79
83
|
bioregistry/curation/add_sweet.py,sha256=ooVbCzzoicj1Q0xsYCYF4CSt4GKLQUCMSy-lfiCue2E,5060
|
|
@@ -103,11 +107,11 @@ bioregistry/curation/suggest_author_curation.py,sha256=ecD9v6yOx5LbTAi0_wNhk9fKO
|
|
|
103
107
|
bioregistry/curation/suggest_uniprot_providers.py,sha256=b9_LZ9hjavJ0iigGThZJuH_wEjVWCu3njJWdwvBSXj4,835
|
|
104
108
|
bioregistry/data/README.md,sha256=vlWWGV0jOmcm4wu1hGUq01jZa41rDwfqIDffVs2somg,1796
|
|
105
109
|
bioregistry/data/__init__.py,sha256=6oMVGRsmEoVd5caRr1Q_Zk-u3rOj382rIi2AoGMEVc8,41
|
|
106
|
-
bioregistry/data/bioregistry.json,sha256=
|
|
107
|
-
bioregistry/data/collections.json,sha256=
|
|
110
|
+
bioregistry/data/bioregistry.json,sha256=gcF4zU1srSRGDyUlhC25WF15thyw2S1ul3r4bulCBAE,6393747
|
|
111
|
+
bioregistry/data/collections.json,sha256=m05boqYauMGm2rYLBITMRygYHU9EY0TlCDNCwaT-4W8,45771
|
|
108
112
|
bioregistry/data/contexts.json,sha256=nUHDGrZe2oF9P5I8CeMoEYsaUfwNweTc5n7t8Hj2iJw,1436
|
|
109
113
|
bioregistry/data/curated_mappings.sssom.tsv,sha256=n5l_fOSDmzV23gUQhgnefdqqJGyLwyH7YE9FGGIn3Gc,45034
|
|
110
|
-
bioregistry/data/curated_papers.tsv,sha256=
|
|
114
|
+
bioregistry/data/curated_papers.tsv,sha256=Ldb0f42mu6gYWbe6bwLSo0xurQ9NE3MXW3PqJrmb1BU,27481
|
|
111
115
|
bioregistry/data/metaregistry.json,sha256=Icu0SHyyTHfHRkCne5itdjPy-1fNAk72Gf09o-fBryA,63800
|
|
112
116
|
bioregistry/export/__init__.py,sha256=EfApHN9voMJt4sr3T-U6r50szl7I3QBnaw0s7KKjkek,35
|
|
113
117
|
bioregistry/export/__main__.py,sha256=u9XDrUWAC952AzgUNHlfFPhDl0tBPVv_PChPRxKJhOY,96
|
|
@@ -124,18 +128,18 @@ bioregistry/export/yaml_export.py,sha256=08W93quZWirWv5TltvgltKxWbF1nMlzrlWsVocc
|
|
|
124
128
|
bioregistry/external/.DS_Store,sha256=Z9kAJuxxll_hDHDy-OWxUT4EEDpbh4KAuaMfi5CYz7s,14340
|
|
125
129
|
bioregistry/external/__init__.py,sha256=cjcfwBprqBx_X8IJh6Vug6gGgbCf5vLcJAe4Ql_0Cuc,2989
|
|
126
130
|
bioregistry/external/aberowl/__init__.py,sha256=5xOVxU7SMXlTvI0zWi6cMbiga1jVXD0Joh-N_rBH1As,2475
|
|
127
|
-
bioregistry/external/aberowl/processed.json,sha256=
|
|
131
|
+
bioregistry/external/aberowl/processed.json,sha256=eveGQAZB_38rPZZIFKZ6vyDNyjUDxJmvsCf_S0IvKGg,751341
|
|
128
132
|
bioregistry/external/align.py,sha256=x2N910eaTHFR5BnvwuWRC9Me2z2PsKPaBeK78inoujU,2101
|
|
129
133
|
bioregistry/external/alignment_utils.py,sha256=CcSFc6bMiyTiLsASKsSVpaEBoK5UC36xIffTdzcLvw8,11752
|
|
130
134
|
bioregistry/external/bartoc/__init__.py,sha256=lbtUoxCLyWFIMkmIxPA7TTmbgoDEQTfd0GQcclBtEcU,3173
|
|
131
|
-
bioregistry/external/bartoc/processed.json,sha256=
|
|
135
|
+
bioregistry/external/bartoc/processed.json,sha256=AUkcvliNg_vCt-e4q5EOB0TfOI5gPDxT9iaTuMJ7s5k,2547094
|
|
132
136
|
bioregistry/external/biocontext/__init__.py,sha256=gLytdKfeN2dFIW_ugl4W5hJetfciMs171uzeMiHMCdo,2589
|
|
133
137
|
bioregistry/external/biocontext/processed.json,sha256=XRUGK63S5OVRBS0BrbUjepsFI8NPVVVZFmeWbbfXWUQ,74913
|
|
134
138
|
bioregistry/external/biolink/__init__.py,sha256=o57Dhg5Z65oYYe-RU0S6q0OKjc8p-uTk3s3iqroAUXM,2613
|
|
135
139
|
bioregistry/external/biolink/processed.json,sha256=vGT0La8q9dJ1TTwRM9ZNmT7HRPCFdVqA_oQPpoT2LeI,10725
|
|
136
140
|
bioregistry/external/biolink/processing_biolink.json,sha256=lITU-JFBbXU0FEQR3q1Y9A8E_2YxRHyHnzogqadGKtI,508
|
|
137
141
|
bioregistry/external/bioportal/__init__.py,sha256=zXL7D5eNPUHnlseEiIsuGQk66RnIE5QWXYDLDj2Lq74,7645
|
|
138
|
-
bioregistry/external/bioportal/agroportal.json,sha256=
|
|
142
|
+
bioregistry/external/bioportal/agroportal.json,sha256=hZ6lDYi_eVIxKM-KHvgxa3tn0rjRDyz_CDPK9E0kAvE,216764
|
|
139
143
|
bioregistry/external/bioportal/agroportal.py,sha256=Y5KGAkLqSoSS9czW0oFe7CNLzsiByLxtC3LLb5HB3XQ,147
|
|
140
144
|
bioregistry/external/bioportal/bioportal.json,sha256=MSNIlCR4BHCbYIEnvJIl6waeweai7BrLQNUjYMn8gyI,761456
|
|
141
145
|
bioregistry/external/bioportal/bioportal.py,sha256=8YSiaisYPPc3TkxE7GPrZz2s-mRjV6nXAXzmJ5U0NBs,1011
|
|
@@ -150,16 +154,16 @@ bioregistry/external/cropoct/processed.json,sha256=EHkMx_ywPXsGtXSz9DK-DWDMXEi4_
|
|
|
150
154
|
bioregistry/external/edam/__init__.py,sha256=4rkiMRlFjfEcYXKx8TM8KWPV2H58kxr0cavJoK2LrbQ,1715
|
|
151
155
|
bioregistry/external/edam/processed.json,sha256=3jmBdNwwCXtXZw4jf40riBOHC_HE2GAnYIcnStm4N0k,45513
|
|
152
156
|
bioregistry/external/fairsharing/__init__.py,sha256=bk4EfQIA40mU2xkVYq_Ipl4Mnq79qUVBMfekxU4woqE,5364
|
|
153
|
-
bioregistry/external/fairsharing/processed.json,sha256=
|
|
157
|
+
bioregistry/external/fairsharing/processed.json,sha256=tMA1c-qDzrnBUe0urqKNisI8ohFc9APoC4zZrkpiqzI,910405
|
|
154
158
|
bioregistry/external/go/__init__.py,sha256=ZrVhZfi0uowNWxymNarFm8TeqxFFRE1HzXB-5kBcz98,4104
|
|
155
159
|
bioregistry/external/go/processed.json,sha256=9xHAqVtUgwPmZZP3byxf585MC3UABNMVoZ2ImW8LTnA,146014
|
|
156
160
|
bioregistry/external/go/processing_go.json,sha256=fuubtH1RyiBWFrMnZq9iT83dlN_uFtyX5uZPVlfrwfo,137
|
|
157
161
|
bioregistry/external/hl7/OID_Report.csv,sha256=7Z2mu6gRb-KIEIkniwfcF_KD3ycL6SBfPEBDOxRlJlI,319976
|
|
158
162
|
bioregistry/external/hl7/__init__.py,sha256=YfwcyCp1IzdxsCVVw9Dy77NS3u4q_T0DeyQrTjNB7FQ,2131
|
|
159
163
|
bioregistry/external/integbio/__init__.py,sha256=Bpsf4-rgPixVa-_YW0IGYuLVkQ9xRpY1DVKd_Joiuz8,5268
|
|
160
|
-
bioregistry/external/integbio/processed.json,sha256=
|
|
164
|
+
bioregistry/external/integbio/processed.json,sha256=rzejF6evYRWHrpNJ7YXhQjdblJ9Qq-WtbbkxMyEidEs,1796188
|
|
161
165
|
bioregistry/external/lov/__init__.py,sha256=18vZoxRhvX6UqQLAHmyHEMrIB_8Xe4KSGXSNd_PdCw0,2655
|
|
162
|
-
bioregistry/external/lov/processed.json,sha256=
|
|
166
|
+
bioregistry/external/lov/processed.json,sha256=AmorG5N4kEMlrBf4QklEu5MNWHGeaPX8xoRLVJCyxEY,480851
|
|
163
167
|
bioregistry/external/miriam/.DS_Store,sha256=UgtGnk8l1Yy0lhP02coFpdu_O1ethJwPURlpZRTp0LY,6148
|
|
164
168
|
bioregistry/external/miriam/__init__.py,sha256=SJMcH2Nh00tT0uCfl4yYCgsi3XC1OD6w1JnAZnEzzJ0,4768
|
|
165
169
|
bioregistry/external/miriam/processed.json,sha256=0IUtSsNECP-4GVbz6Ol3QIFUbsn-m-fZWvjqnV2P10M,596526
|
|
@@ -168,9 +172,9 @@ bioregistry/external/n2t/processed.json,sha256=2SRCY0OnRTjoSV1t6by5xEaqD_wDVK3xG
|
|
|
168
172
|
bioregistry/external/ncbi/__init__.py,sha256=276xtZL1b2s9vS8voXuaNybQX6sEtoKyViK4WAfuDb8,5573
|
|
169
173
|
bioregistry/external/ncbi/processed.json,sha256=2bnV32V-vMJmpQDMTEQkdhG28A3Vvfs_67mI2ZPqePY,18072
|
|
170
174
|
bioregistry/external/obofoundry/__init__.py,sha256=XWZpAfCCJCtOxFUvA3xRxgMaFLerHQZoUzByq-AQ1mg,5351
|
|
171
|
-
bioregistry/external/obofoundry/processed.json,sha256=
|
|
175
|
+
bioregistry/external/obofoundry/processed.json,sha256=bbVOafzCQaMVj6fpJvE8COOpdywB7rgEhp1OLnSfc40,225668
|
|
172
176
|
bioregistry/external/ols/__init__.py,sha256=EpX_3gpB6Lc5PpqXF_tvAmr57fAVbBtQqswDlrfTC7w,11541
|
|
173
|
-
bioregistry/external/ols/processed.json,sha256=
|
|
177
|
+
bioregistry/external/ols/processed.json,sha256=GkjV0y-6nzWgOO_0heDGtEjhX8JehDHxXoo5SP4Vs5c,163289
|
|
174
178
|
bioregistry/external/ols/processing_ols.json,sha256=nxKL7Mi12vmo7v2LWSx_Ryd8U2bPuebN1kBW1FYHSPs,35976
|
|
175
179
|
bioregistry/external/ols/tib-processed.json,sha256=LQvtTlcAavxLirqkylBkhlcTsG9JtXBbB4eNQ7KoKtI,198055
|
|
176
180
|
bioregistry/external/ols/tib-processing-config.json,sha256=qQsdTmQTnM-ZCLj-rmztJV25lrJqQcg9esQbYGVB1f4,29
|
|
@@ -181,7 +185,7 @@ bioregistry/external/pathguide/__init__.py,sha256=Q6p01FuBU-PxSJUFrZP-fqE_ZOV_lM
|
|
|
181
185
|
bioregistry/external/prefixcommons/__init__.py,sha256=Nka5nbxg0Nh5YSbvYut2p6GtxXXA5dnMt_HPRlnXgCA,9154
|
|
182
186
|
bioregistry/external/prefixcommons/processed.json,sha256=RlHKDfPca_f38FOwx7UTU_HUlP4Zuq6_jvLuTbx9wh0,514876
|
|
183
187
|
bioregistry/external/re3data/__init__.py,sha256=XyKol_Hhej4kbc56d6COc6MjoUBVrThrOeMurzciRwM,6578
|
|
184
|
-
bioregistry/external/re3data/processed.json,sha256=
|
|
188
|
+
bioregistry/external/re3data/processed.json,sha256=tS5jdc-uEoWExGj2lEWIEksqaMT1Xo_tyYl9ZD2tJeM,2719804
|
|
185
189
|
bioregistry/external/rrid/__init__.py,sha256=NEKpP5N2xPt5K4hw8fsDEbOmwfh8yLoHC4Yl50iSbVQ,3780
|
|
186
190
|
bioregistry/external/togoid/__init__.py,sha256=AUZn69q0Di7o5yb11kGyi8QF9RIFkgiAvZkgnjkmfHo,3506
|
|
187
191
|
bioregistry/external/togoid/processed.json,sha256=h2LeypcVdJvL6wByOo8lJeLCFr4_UQb1EfVR6FjJXEg,81494
|
|
@@ -210,23 +214,23 @@ bioregistry/record_accumulator.py,sha256=gbRPS7eWf3daZyuEVCxC-zUqDPz7eX0noqJpoAy
|
|
|
210
214
|
bioregistry/reference.py,sha256=7r13osgKqjeTzHu84MPuNRbxWYmZ89eBgdaPHHxpL2o,9020
|
|
211
215
|
bioregistry/resolve.py,sha256=j1Z65pN2NvNsPX5ywhbio_kefUoqTT6MSsnoa-H7nWI,31953
|
|
212
216
|
bioregistry/resolve_identifier.py,sha256=YsMIcog9uXQt6IirqJ34yKmv-3kY97yNoi-IK3Ft7tw,17000
|
|
213
|
-
bioregistry/resource_manager.py,sha256=
|
|
217
|
+
bioregistry/resource_manager.py,sha256=BN9E1X_m76iB2avt6T-7XJ4UB6pIcG2aUsvkJuznmSQ,82737
|
|
214
218
|
bioregistry/schema/.DS_Store,sha256=ZtEuRder-nSDznMn7EklKQngSW-_kJxHtcU0KF_qRbc,6148
|
|
215
219
|
bioregistry/schema/__init__.py,sha256=P_YbooDhrvtLt1L-6DrGbB0y2vsk_FxUXCbUIQNCZEo,957
|
|
216
220
|
bioregistry/schema/constants.py,sha256=R_UgSWWjlm1T9DdbG3VQXt1Pq4HNucHPV5sXJNQSlso,13619
|
|
217
|
-
bioregistry/schema/schema.json,sha256=
|
|
218
|
-
bioregistry/schema/struct.py,sha256=
|
|
221
|
+
bioregistry/schema/schema.json,sha256=IIMCW9vyMPd1lBBKsPy1MzTCa0S0mKr2wSLgg2uxx64,71222
|
|
222
|
+
bioregistry/schema/struct.py,sha256=Aj3J10u0M65y2ssyLH5NN973-Se8ctMELGHC1q9Uqr8,129049
|
|
219
223
|
bioregistry/schema/utils.py,sha256=CBFOP0sz_XYWRKNJooElgrF6IVl-q4Dhsc8ynUT6ibE,994
|
|
220
|
-
bioregistry/schema_utils.py,sha256=
|
|
224
|
+
bioregistry/schema_utils.py,sha256=s-bs_Nxf1k0_6QLSy-3e6JuEwC1lE1-uWDQG-W9gpds,12699
|
|
221
225
|
bioregistry/summary.py,sha256=hxGeDedxqQ4MVT_svs-PHI_ICAeRCEN8nS1IoF-CXFE,10449
|
|
222
226
|
bioregistry/upload_ndex.py,sha256=VsD_3IcEbKiWJJZao95uZyjOiN5p4aKjHtW018hzyig,5535
|
|
223
227
|
bioregistry/uri_format.py,sha256=A-qLpn93FYpzPK1e_HeicWfbbfcuFDRMdizov9xGhzk,4566
|
|
224
228
|
bioregistry/utils.py,sha256=UtoHc3XzaUxv5aayJkcGyE5qjYP36SjvnVGt9sG2X-U,9207
|
|
225
229
|
bioregistry/validate/__init__.py,sha256=ffUYuZYBcPGl1Ggw65DB9NZO4ma1tlsflRJRpKE4JWw,28
|
|
226
|
-
bioregistry/validate/cli.py,sha256=
|
|
227
|
-
bioregistry/validate/utils.py,sha256=
|
|
228
|
-
bioregistry/version.py,sha256=
|
|
229
|
-
bioregistry-0.13.
|
|
230
|
-
bioregistry-0.13.
|
|
231
|
-
bioregistry-0.13.
|
|
232
|
-
bioregistry-0.13.
|
|
230
|
+
bioregistry/validate/cli.py,sha256=nDCdMfANsxUZ-l1LTmcHgnDRr3uXqqgy6zr0uwfSjwI,3745
|
|
231
|
+
bioregistry/validate/utils.py,sha256=7U2az-Y5IzdNEYmTQJSbfemdHZG0mh4k7nP61rpVtjI,10588
|
|
232
|
+
bioregistry/version.py,sha256=xFWjXJCG6V6JfFd_G8QmupbcQzVVYbCQfjSjnBdEAwk,1018
|
|
233
|
+
bioregistry-0.13.12.dist-info/WHEEL,sha256=ZHijuPszqKbNczrBXkSuoxdxocbxgFghqnequ9ZQlVk,79
|
|
234
|
+
bioregistry-0.13.12.dist-info/entry_points.txt,sha256=zb2PWaMsW1NKdtweyHF8saPf9P4P7doqCNkwP_zxzYY,54
|
|
235
|
+
bioregistry-0.13.12.dist-info/METADATA,sha256=uWyMmzADFGSMyJAULrcKGx4fxgELq9LK7Ve3gvWTKO4,36840
|
|
236
|
+
bioregistry-0.13.12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|