bioregistry 0.13.9__py3-none-any.whl → 0.13.10__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/.DS_Store ADDED
Binary file
bioregistry/__init__.py CHANGED
@@ -127,7 +127,7 @@ from .resolve_identifier import (
127
127
  standardize_identifier,
128
128
  )
129
129
  from .resource_manager import Manager, manager
130
- from .schema.struct import (
130
+ from .schema import (
131
131
  Author,
132
132
  Collection,
133
133
  Context,
@@ -400,7 +400,7 @@ def predict_and_save(
400
400
  :param path: Path to save the predictions.
401
401
  """
402
402
  x_meta = pd.DataFrame()
403
- x_transformed = vectorizer.transform(df["title"] + " " + df["abstract"])
403
+ x_transformed = vectorizer.transform(_concat(df))
404
404
  for name, clf in classifiers:
405
405
  x_meta[name] = _predict(clf, x_transformed)
406
406
 
@@ -524,7 +524,7 @@ def train(
524
524
  df = pd.concat(curated_dfs)[["pubmed", "title", "abstract", "relevant"]]
525
525
 
526
526
  df["abstract"] = df["abstract"].fillna("")
527
- df["title_abstract"] = df["title"] + " " + df["abstract"]
527
+ df["title_abstract"] = _concat(df)
528
528
  df = df[df.title_abstract.notna()]
529
529
  df = df.drop_duplicates()
530
530
  _echo_stats(df, "combine curated publications")
@@ -582,5 +582,9 @@ def train(
582
582
  return TrainingResult(curated_pubmed_ids, vectorizer, classifiers, meta_clf)
583
583
 
584
584
 
585
+ def _concat(df: pd.DataFrame) -> pd.Series[str]:
586
+ return cast("pd.Series[str]", df["title"]) + " " + cast("pd.Series[str]", df["abstract"])
587
+
588
+
585
589
  if __name__ == "__main__":
586
590
  main()
Binary file
bioregistry/app/api.py CHANGED
@@ -19,8 +19,7 @@ from ..export.rdf_export import (
19
19
  resource_to_rdf_str,
20
20
  )
21
21
  from ..resource_manager import Manager
22
- from ..schema import Attributable, sanitize_mapping
23
- from ..schema.struct import Collection, Context, Registry, Resource
22
+ from ..schema import Attributable, Collection, Context, Registry, Resource, sanitize_mapping
24
23
  from ..schema_utils import (
25
24
  read_collections_contributions,
26
25
  read_prefix_contacts,
Binary file
bioregistry/app/ui.py CHANGED
@@ -38,9 +38,8 @@ from ..export.rdf_export import (
38
38
  metaresource_to_rdf_str,
39
39
  resource_to_rdf_str,
40
40
  )
41
- from ..schema import Context
42
- from ..schema.constants import SCHEMA_TERMS
43
- from ..schema.struct import (
41
+ from ..schema import (
42
+ Context,
44
43
  Registry,
45
44
  RegistryGovernance,
46
45
  RegistryQualities,
@@ -49,6 +48,7 @@ from ..schema.struct import (
49
48
  get_json_schema,
50
49
  schema_status_map,
51
50
  )
51
+ from ..schema.constants import SCHEMA_TERMS
52
52
  from ..schema_utils import (
53
53
  read_collections_contributions,
54
54
  read_context_contributions,
@@ -8,7 +8,7 @@ from collections.abc import Iterable
8
8
  from typing import TYPE_CHECKING
9
9
 
10
10
  from .resource_manager import manager
11
- from .schema.struct import Publication, deduplicate_publications
11
+ from .schema import Publication, deduplicate_publications
12
12
 
13
13
  if TYPE_CHECKING:
14
14
  import pandas
bioregistry/cli.py CHANGED
@@ -8,7 +8,7 @@ from .app.cli import web
8
8
  from .compare import compare
9
9
  from .export.cli import export
10
10
  from .lint import lint
11
- from .schema.struct import generate_schema
11
+ from .schema import generate_schema
12
12
  from .utils import get_hexdigests, secho
13
13
  from .validate.cli import validate
14
14
  from .version import VERSION
Binary file
@@ -13,7 +13,7 @@ from tabulate import tabulate
13
13
  from tqdm import tqdm
14
14
 
15
15
  import bioregistry
16
- from bioregistry.schema.struct import Author, Organization
16
+ from bioregistry.schema import Author, Organization
17
17
 
18
18
  BASE = "https://vocabularies.cessda.eu"
19
19
  MODULE = pystow.module("cessda")
@@ -8,7 +8,7 @@ import pandas as pd
8
8
  from tqdm import tqdm
9
9
 
10
10
  from bioregistry import manager
11
- from bioregistry.schema.struct import StatusCheck
11
+ from bioregistry.schema import StatusCheck
12
12
 
13
13
  URL = "https://docs.google.com/spreadsheets/d/e/2PACX-1vSC8RAMlNGauLHJb1RGwFuvC2LBJBjeeICRtq596npE6G4ZjZwX8W_Fz031hAfqsbu6f9Ruxl2PTsFx/pub?gid=1207894592&single=true&output=tsv"
14
14
 
@@ -7,7 +7,7 @@
7
7
  import click
8
8
 
9
9
  import bioregistry
10
- from bioregistry.schema.struct import deduplicate_publications
10
+ from bioregistry.schema import deduplicate_publications
11
11
 
12
12
 
13
13
  @click.command()
@@ -13,7 +13,7 @@ from manubot.cite.pubmed import get_pmid_for_doi, get_pubmed_csl_item
13
13
  from tqdm import tqdm
14
14
 
15
15
  from bioregistry import manager
16
- from bioregistry.schema.struct import Publication, deduplicate_publications
16
+ from bioregistry.schema import Publication, deduplicate_publications
17
17
  from bioregistry.utils import removeprefix
18
18
 
19
19
 
@@ -10915,15 +10915,38 @@
10915
10915
  "orcid": "0000-0003-4423-4370"
10916
10916
  },
10917
10917
  "description": "Bioschemas aims to improve the Findability on the Web of life sciences resources such as datasets, software, and training materials. It does this by encouraging people in the life sciences to use Schema.org markup in their websites so that they are indexable by search engines and other services. Bioschemas encourages the consistent use of markup to ease the consumption of the contained markup across many sites. This structured information then makes it easier to discover, collate, and analyse distributed resources. [from BioSchemas.org]",
10918
+ "download_rdf": "https://bioschemas.org/types/bioschemas_types.ttl",
10918
10919
  "example": "Dataset",
10919
10920
  "homepage": "https://bioschemas.org",
10920
10921
  "mappings": {
10921
10922
  "biolink": "bioschemas"
10922
10923
  },
10923
10924
  "name": "BioSchemas",
10925
+ "providers": [
10926
+ {
10927
+ "code": "draft",
10928
+ "description": "BioSchemas makes a difference between its draft and released terms by putting them in different namespaces. This causes problems when consuming it, so this URI format maps them all into a unified semantic space",
10929
+ "homepage": "https://bioschemas.org",
10930
+ "name": "BioSchemas Draft",
10931
+ "uri_format": "https://bioschemas.org/draft_terms/$1"
10932
+ },
10933
+ {
10934
+ "code": "w3id",
10935
+ "uri_format": "https://w3id.org/bioschemas/terms/$1"
10936
+ },
10937
+ {
10938
+ "code": "term",
10939
+ "uri_format": "https://bioschemas.org/terms/$1"
10940
+ },
10941
+ {
10942
+ "code": "biothings",
10943
+ "uri_format": "https://discovery.biothings.io/view/bioschemastypes/$1"
10944
+ }
10945
+ ],
10924
10946
  "repository": "https://github.com/BioSchemas/specifications",
10925
10947
  "synonyms": [
10926
- "bioschema"
10948
+ "bioschema",
10949
+ "bioschemas_draft"
10927
10950
  ],
10928
10951
  "twitter": "bioschemas",
10929
10952
  "uri_format": "https://bioschemas.org/profiles/$1"
@@ -18388,6 +18411,8 @@
18388
18411
  "name": "Charles Tapley Hoyt",
18389
18412
  "orcid": "0000-0003-4423-4370"
18390
18413
  },
18414
+ "description": "A data model for managing information about chemical entities, ranging from atoms through molecules to complex mixtures.",
18415
+ "download_owl": "https://raw.githubusercontent.com/chemkg/chemrof/main/schema/owl/chemrof.owl.ttl",
18391
18416
  "example": "FullySpecifiedAtom",
18392
18417
  "homepage": "https://chemkg.github.io/chemrof/",
18393
18418
  "mappings": {
@@ -39764,6 +39789,31 @@
39764
39789
  "homepage": "https://www.ema.europa.eu/en/medicines",
39765
39790
  "name": "European Medicines Evaluation Agency"
39766
39791
  },
39792
+ "emg": {
39793
+ "contact": {
39794
+ "email": "oonagh.mannix@helmholtz-berlin.de",
39795
+ "name": "Oonagh Brendike-Mannix",
39796
+ "orcid": "0000-0003-0575-2853"
39797
+ },
39798
+ "contributor": {
39799
+ "email": "cthoyt@gmail.com",
39800
+ "github": "cthoyt",
39801
+ "name": "Charles Tapley Hoyt",
39802
+ "orcid": "0000-0003-4423-4370"
39803
+ },
39804
+ "description": "The Electron Microscopy (EM) Glossary is a widespread community effort to harmonize terminology in the electron and ion microscopies. It is created in a not-for profit collaboration between academic and non-university research institutions including domain and metadata experts. It provides harmonized terminology for application level semantic artifacts to source from and align with. [from homepage]",
39805
+ "download_owl": "https://owl.emglossary.helmholtz-metadaten.de/ontology.owl",
39806
+ "download_rdf": "https://owl.emglossary.helmholtz-metadaten.de/ontology.ttl",
39807
+ "example": "00000005",
39808
+ "homepage": "https://purls.helmholtz-metadaten.de/emg",
39809
+ "license": "CC-BY-4.0",
39810
+ "logo": "https://codebase.helmholtz.cloud/em_glossary/em_glossary/-/raw/main/EMGlossary.png",
39811
+ "name": "Electron Microscopy Glossary",
39812
+ "pattern": "^\\d{8}$",
39813
+ "rdf_uri_format": "https://purls.helmholtz-metadaten.de/emg/EMG_$1",
39814
+ "repository": "https://codebase.helmholtz.cloud/em_glossary/em_glossary",
39815
+ "uri_format": "https://purls.helmholtz-metadaten.de/emg/EMG_$1"
39816
+ },
39767
39817
  "emi": {
39768
39818
  "contact": {
39769
39819
  "email": "Tarcisio.Mendes@sib.swiss",
@@ -1196,6 +1196,22 @@
1196
1196
  "nfdi4culture.cto",
1197
1197
  "premis"
1198
1198
  ]
1199
+ },
1200
+ {
1201
+ "authors": [
1202
+ {
1203
+ "email": "cthoyt@gmail.com",
1204
+ "github": "cthoyt",
1205
+ "name": "Charles Tapley Hoyt",
1206
+ "orcid": "0000-0003-4423-4370"
1207
+ }
1208
+ ],
1209
+ "description": "Prefixes for ontologies relevant for DAPHNE4NFDI.",
1210
+ "identifier": "0000026",
1211
+ "name": "DAPHNE4NFDI Ontologies",
1212
+ "resources": [
1213
+ "emg"
1214
+ ]
1199
1215
  }
1200
1216
  ]
1201
1217
  }
@@ -32,6 +32,7 @@ from ..constants import (
32
32
  SCHEMA_TURTLE_PATH,
33
33
  )
34
34
  from ..resource_manager import Manager, manager
35
+ from ..schema import Collection, Registry, Resource
35
36
  from ..schema.constants import (
36
37
  ROR,
37
38
  WIKIDATA,
@@ -42,7 +43,6 @@ from ..schema.constants import (
42
43
  bioregistry_schema,
43
44
  get_schema_rdf,
44
45
  )
45
- from ..schema.struct import Collection, Registry, Resource
46
46
 
47
47
  logger = logging.getLogger(__name__)
48
48
 
@@ -14,7 +14,7 @@ from ..constants import (
14
14
  TABLES_SUMMARY_LATEX_PATH,
15
15
  )
16
16
  from ..resolve import count_mappings
17
- from ..schema.struct import Registry
17
+ from ..schema import Registry
18
18
  from ..schema_utils import read_metaregistry
19
19
  from ..summary import BioregistrySummary
20
20
 
Binary file
Binary file
@@ -12,7 +12,7 @@ import curies
12
12
  from curies import Converter, Record
13
13
  from curies.w3c import NCNAME_RE
14
14
 
15
- from .schema.struct import Resource
15
+ from .schema import Resource
16
16
 
17
17
  __all__ = [
18
18
  "get_converter",
bioregistry/resolve.py CHANGED
@@ -11,8 +11,7 @@ from typing import Any, Literal, overload
11
11
  import curies
12
12
 
13
13
  from .resource_manager import MetaresourceAnnotatedValue, manager
14
- from .schema import Attributable, Resource
15
- from .schema.struct import AnnotatedURL, Collection
14
+ from .schema import AnnotatedURL, Attributable, Collection, Resource
16
15
 
17
16
  __all__ = [
18
17
  "add_resource",
@@ -44,11 +44,11 @@ from .schema import (
44
44
  Attributable,
45
45
  Collection,
46
46
  Context,
47
+ MetaprefixAnnotatedValue,
47
48
  Registry,
48
49
  Resource,
49
50
  sanitize_model,
50
51
  )
51
- from .schema.struct import MetaprefixAnnotatedValue
52
52
  from .schema_utils import (
53
53
  _collections_from_path,
54
54
  _contexts_from_path,
Binary file
@@ -1,26 +1,50 @@
1
1
  """Data structures."""
2
2
 
3
3
  from .struct import (
4
+ AnnotatedURL,
4
5
  Attributable,
5
6
  Author,
6
7
  Collection,
7
8
  Context,
9
+ MetaprefixAnnotatedValue,
10
+ Organization,
11
+ Provider,
8
12
  Publication,
13
+ RDFFormat,
9
14
  Registry,
15
+ RegistryGovernance,
16
+ RegistryQualities,
17
+ RegistrySchema,
10
18
  Resource,
19
+ StatusCheck,
20
+ deduplicate_publications,
21
+ generate_schema,
11
22
  get_json_schema,
23
+ schema_status_map,
12
24
  )
13
25
  from .utils import sanitize_mapping, sanitize_model
14
26
 
15
27
  __all__ = [
28
+ "AnnotatedURL",
16
29
  "Attributable",
17
30
  "Author",
18
31
  "Collection",
19
32
  "Context",
33
+ "MetaprefixAnnotatedValue",
34
+ "Organization",
35
+ "Provider",
20
36
  "Publication",
37
+ "RDFFormat",
21
38
  "Registry",
39
+ "RegistryGovernance",
40
+ "RegistryQualities",
41
+ "RegistrySchema",
22
42
  "Resource",
43
+ "StatusCheck",
44
+ "deduplicate_publications",
45
+ "generate_schema",
23
46
  "get_json_schema",
24
47
  "sanitize_mapping",
25
48
  "sanitize_model",
49
+ "schema_status_map",
26
50
  ]
@@ -56,9 +56,12 @@ __all__ = [
56
56
  "Organization",
57
57
  "Provider",
58
58
  "Publication",
59
+ "RDFFormat",
59
60
  "Registry",
60
61
  "Resource",
61
62
  "ResourceStatus",
63
+ "StatusCheck",
64
+ "deduplicate_publications",
62
65
  "get_json_schema",
63
66
  ]
64
67
 
bioregistry/version.py CHANGED
@@ -11,7 +11,7 @@ __all__ = [
11
11
  "get_version",
12
12
  ]
13
13
 
14
- VERSION = "0.13.9"
14
+ VERSION = "0.13.10"
15
15
 
16
16
 
17
17
  def get_git_hash() -> str | None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bioregistry
3
- Version: 0.13.9
3
+ Version: 0.13.10
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,11 +1,13 @@
1
- bioregistry/__init__.py,sha256=H_NXlpw8NaiZq1yUAFMdB4BMrgS3ht--9efzB7GW6sc,6749
1
+ bioregistry/.DS_Store,sha256=MtEQz-j0qLB8mBzZ2s0qvjaV6xHF3Z2A1YUEa_dogB8,10244
2
+ bioregistry/__init__.py,sha256=ghFOK7i2zfm5vEwVF-xXuivIMD7giyImmmbhHlMfEQo,6742
2
3
  bioregistry/__main__.py,sha256=hfyt3xyxKdAp969VpjqhTMdpG7CxtDCA7y8bYc0-ZKU,92
3
4
  bioregistry/analysis/__init__.py,sha256=z0F0QjavayAY0-otbu92g1wR3KK5ZmRNS24r76nxVJI,41
4
5
  bioregistry/analysis/bioregistry_diff.py,sha256=0GEjk3OgjToUKO0nH4RmFUpZl8L2rikSy0qDDtqB2o4,10278
5
6
  bioregistry/analysis/mapping_checking.py,sha256=QM5r2p67httXGd-LcinjwCyVmL4_d9pYSu98RrspsE8,8009
6
- bioregistry/analysis/paper_ranking.py,sha256=2mP-uPhpUH027panlVbgaWhUpD_Mih9CB0z2Dc2N_3c,19612
7
+ bioregistry/analysis/paper_ranking.py,sha256=YUupzOKpOpMLmRqXKgEPDe72zoIRYVu5Fmn5qqbgXgY,19711
8
+ bioregistry/app/.DS_Store,sha256=NK1e45m6DjaPTOTxN8yC9uUYgE9W2jH55YNfoEQLPVM,6148
7
9
  bioregistry/app/__init__.py,sha256=Y2NMn6HNPdg398xdizYaS2tjSk4JX_luU1qehve5jXk,23
8
- bioregistry/app/api.py,sha256=P6-4vhA34IaCvs7VlTPQOhL_yK0HLOk7weug9jKP4jo,19107
10
+ bioregistry/app/api.py,sha256=1ad-szASI6C7dxpqZfPGEZdf2HEJ6gk470xwyljiPrw,19080
9
11
  bioregistry/app/cli.py,sha256=Zu3Kqf8TGONpxuWSfjLBSz-ohJVju1gugo5SZGjNhFQ,2306
10
12
  bioregistry/app/constants.py,sha256=zu6C-hrYAi7XOY-REAp1KjwNjer7CcTJlsZ0ov2w5Q8,2015
11
13
  bioregistry/app/impl.py,sha256=cNdQYoHcDs3VLUnIlilNE1KSLUnJ-em2ftaDCvLr8X0,20941
@@ -18,6 +20,7 @@ bioregistry/app/static/logo.svg,sha256=ppQehHfqK9Twey3FnVJm3nrKys5xZmfcvbnMOYNrj
18
20
  bioregistry/app/static/nfdi4chem.svg,sha256=jjHtKDadcnfgkfU_NGpuXb8E4oH8stbyWftZci6bm9s,5063
19
21
  bioregistry/app/static/northeastern.svg,sha256=1TOrV0kNHLM9iEMhXjZBt1WYwmSRHmyJ5wSkNpfckdE,7086
20
22
  bioregistry/app/static/rwth-iac.svg,sha256=UpvCVjb9wflykVH-8r1QkpI5zEz-ID72nnobFQv6nP4,19228
23
+ bioregistry/app/templates/.DS_Store,sha256=-h9BoY3FbmzzXlHeJRERn_I7ipCKSoYZbNch6jKcGHM,6148
21
24
  bioregistry/app/templates/base.html,sha256=BQxzPOOzuTu3Z-y4pio5nZGZNExpoUxqxJgmwQfW4Jc,10799
22
25
  bioregistry/app/templates/collection.html,sha256=Tgd4lkCNl2Bguw5wgq1yMj1kwv81V3fpwH_lsSx74GU,3761
23
26
  bioregistry/app/templates/collections.html,sha256=3G7qtao8nPlbMJN2i9DjwGvTqLi0Rbvl9_Vl7W48RPc,3474
@@ -50,7 +53,7 @@ bioregistry/app/templates/resolve_errors/missing_providers.html,sha256=9xFAcxM7o
50
53
  bioregistry/app/templates/resource.html,sha256=5heriFhs2yaLAehxsYaRBmHA5Q6KUkzQSHr5DqhX1sI,41303
51
54
  bioregistry/app/templates/resources.html,sha256=HJdvJtF2FrkEVyfGLKD_5G0wlqDXEJrxzdJwObzLxTA,3930
52
55
  bioregistry/app/test.py,sha256=mr0erF32i45CWbkdoJeb907FTKoYiJsjUIe-XA_G2qI,2057
53
- bioregistry/app/ui.py,sha256=cq3rLNJ0AGFnmTgUSaIzOGaB1-BIPqeBBcX915d2i4k,23957
56
+ bioregistry/app/ui.py,sha256=Fh2Aq2q6ZJRQhLlbgnZ7xTzqMQFGxXKIqpb2Tu_0uzo,23934
54
57
  bioregistry/app/utils.py,sha256=pw2rQq8RnkDwv11BA1xRKyVlxNfMBlwVhoiCIKAJ0nY,8245
55
58
  bioregistry/app/wsgi.py,sha256=yUHziJFE9iixZEZgu02xqGa4ZEEy8xEU5O0XkNvdA8o,256
56
59
  bioregistry/benchmarks/__init__.py,sha256=M-bvh_Cz0MbpoIqAzEvL38fHIYvZzJO1OgSBNMaZDBI,38
@@ -59,28 +62,29 @@ bioregistry/benchmarks/cli.py,sha256=6sdEKdZ9yea_5n9dtUDvhOfCDR1bTOrFKLCsKMOWGeE
59
62
  bioregistry/benchmarks/curie_parsing.py,sha256=cmEbpQdhciwqPwMtPBSijOgJbk6Olj4ljaMNqwzAfSo,3300
60
63
  bioregistry/benchmarks/curie_validation.py,sha256=MlJbVxRRzYX39Z1JuzT_ElI7ZUH0cn0kjpk_61eU1qY,4539
61
64
  bioregistry/benchmarks/uri_parsing.py,sha256=mRu0kf8uWH2yQT04ZRgqYpeMx-gyfD2pyehPwHaGKqg,2612
62
- bioregistry/bibliometrics.py,sha256=raFJyycSG4QNcMkeF7F3Mh2clba0lQFo_PZ4neRa0Nk,2171
63
- bioregistry/cli.py,sha256=6CB4weLBiqM5130mdOc6xY4dzJka6F1n_BpZy6uEAnU,3375
65
+ bioregistry/bibliometrics.py,sha256=NlwUz78KpoMzTBR_MNrdOXunQt8jEnDWgJx3FtaawBs,2164
66
+ bioregistry/cli.py,sha256=viLC4itr1_zI9cZ93NqHJhjhwH0_rJ9B1ldnd8ogw-E,3368
64
67
  bioregistry/collection_api.py,sha256=ayuFB4A5_ZeCPeQYLogsCMEndonDcKOxUN-YzQ_C3dM,2378
65
68
  bioregistry/compare.py,sha256=zumg66bgfrYr5-WabdIGJlYbaTbsR2nyInwlTG8IXqY,25069
66
69
  bioregistry/constants.py,sha256=_E6YOFl7LtdbFllhapD0qfWTHUVUVNvXAtArpQX1o34,11919
70
+ bioregistry/curation/.DS_Store,sha256=en3II7c-35LCfjtDGo7ecJ2jBvMxoW0ne70gH0sxTEw,6148
67
71
  bioregistry/curation/__init__.py,sha256=X_Qod6ZnK31NYxKw_hwOXc35TI3HBZQzkp1URkmQU-I,22
68
- bioregistry/curation/add_cessda.py,sha256=s5E1Qwr-IReFxQpJ7XAWrAnqNTAC7qCSnBqrYvMVCvs,4211
72
+ bioregistry/curation/add_cessda.py,sha256=Jx2H_jY9E3ZRBG78kHoY9DhcN1P7-qBr_iWV_y3HUMg,4204
69
73
  bioregistry/curation/add_co_providers.py,sha256=s14caK1lCRLBEW_NsbgIV93eqoBpr56kD1Ted5_KD8Y,1216
70
74
  bioregistry/curation/add_descriptions_from_gs.py,sha256=v5qomc7NSdPiSHOJZAsf7Jsc7Ia7Pcz7xu0e7Ejso6M,1055
71
75
  bioregistry/curation/add_examples.py,sha256=3S2F4BrbJebWG32AvnBG4rb0rzTC2mBuZzVucx58YcA,1295
72
76
  bioregistry/curation/add_examples_from_ols.py,sha256=g09hNkni-4jR_hzaJ-IYN8J8TV2Jk91htwXPDwi85As,2961
73
77
  bioregistry/curation/add_ontology_regexes.py,sha256=QdsMrma7meYPK_xCLj8U13XPM6ayWPG_LyL3WiAe7y4,1624
74
- bioregistry/curation/add_provider_status_curations.py,sha256=Jeh5xmx9Ix8L8SabTP6jYA8zPXHzfKlg-QVYUH5TbZ8,1963
78
+ bioregistry/curation/add_provider_status_curations.py,sha256=_ydRS1AT4z06z1Ur9If7eyuSmWRoCMZQGM9t2dpofdI,1956
75
79
  bioregistry/curation/add_sweet.py,sha256=ooVbCzzoicj1Q0xsYCYF4CSt4GKLQUCMSy-lfiCue2E,5060
76
80
  bioregistry/curation/add_wikidata_database.py,sha256=TBzaBmTreXcxZII2ihSAu2iK5leSaiZ36k9e-In7J-4,1394
77
81
  bioregistry/curation/bulk_import.py,sha256=RwWPxtlV9HpIIdIu4JjKB_DgtP200sLQ5xzwNAiCcFg,2710
78
82
  bioregistry/curation/clean_licenses.py,sha256=01fy-DlpmkbyYV-F2V-2ofZ97D0nSFpJx4SCo0PcL5g,627
79
83
  bioregistry/curation/clean_name_suffixes.py,sha256=ItqqXYJKHymNy2-T37wwvFSSaWM7uuMeF2Im3CWZ0oI,729
80
- bioregistry/curation/clean_publications.py,sha256=4CDU8NF8l0Z3h_Be5vVjLWR1mF53UO78K6xmWKdtcUw,723
84
+ bioregistry/curation/clean_publications.py,sha256=u3JOvo6ZQ2A8aY4ikGOOdxHLYeMjCGhA1SQ7yjfjdeY,716
81
85
  bioregistry/curation/cleanup_authors.py,sha256=oVJgh6hONRQ1hqqXi2IeyIZsfYUyILdQH3tuNGdp9uM,2568
82
86
  bioregistry/curation/deprecation_diff.py,sha256=L3W8MX3IT3WG_S0t3hpdSKFaMXcN3EbjcIB9GWVcKpc,1555
83
- bioregistry/curation/enrich_publications.py,sha256=q0Rrz1kKgXduUPmHyzyXSqTW4SaK40semexbrpS1LKg,5296
87
+ bioregistry/curation/enrich_publications.py,sha256=W7VL-TO3xC6K13pJIWp2He3KjD7Pc3vUox_6jonEyv0,5289
84
88
  bioregistry/curation/find_contact_groups.py,sha256=pktZ3B6Nn8GtutGs5WnFf7ykcIYR9KLcVMEVYdLAwdM,1122
85
89
  bioregistry/curation/fix_obo_purls.py,sha256=5mOn7KKOJvR9qNlMHIF17lzIrB8d7PIZLoBaA_1xKf0,581
86
90
  bioregistry/curation/import_pc_semiautomatic.py,sha256=enXSH29bLFdoVHpRNJaPbuXuSeX_JY-z8z2EFW07fFA,3555
@@ -99,8 +103,8 @@ bioregistry/curation/suggest_author_curation.py,sha256=ecD9v6yOx5LbTAi0_wNhk9fKO
99
103
  bioregistry/curation/suggest_uniprot_providers.py,sha256=b9_LZ9hjavJ0iigGThZJuH_wEjVWCu3njJWdwvBSXj4,835
100
104
  bioregistry/data/README.md,sha256=vlWWGV0jOmcm4wu1hGUq01jZa41rDwfqIDffVs2somg,1796
101
105
  bioregistry/data/__init__.py,sha256=6oMVGRsmEoVd5caRr1Q_Zk-u3rOj382rIi2AoGMEVc8,41
102
- bioregistry/data/bioregistry.json,sha256=DNy1S2Mu0CY-krx4k2JGT25S4Xgn-J2zjhAOYeUVoCc,6377971
103
- bioregistry/data/collections.json,sha256=RQ1-vIvqTANNDzCtLAjSP54snCz35o2c8dH8RC2BLPY,32233
106
+ bioregistry/data/bioregistry.json,sha256=0ZWnbXyIhlakf8peL-H4XN1PbjIbrDhYZiU_LfvwZWg,6380512
107
+ bioregistry/data/collections.json,sha256=A5lqwOekyQwfT2SK81GoxCk0XS5s-cDb_qw7M43JfrA,32633
104
108
  bioregistry/data/contexts.json,sha256=nUHDGrZe2oF9P5I8CeMoEYsaUfwNweTc5n7t8Hj2iJw,1436
105
109
  bioregistry/data/curated_mappings.sssom.tsv,sha256=n5l_fOSDmzV23gUQhgnefdqqJGyLwyH7YE9FGGIn3Gc,45034
106
110
  bioregistry/data/curated_papers.tsv,sha256=XdqIGcP1s2xbIn9851M_3wjOnNbIqTlvGeJqbg2rlVo,27397
@@ -110,13 +114,14 @@ bioregistry/export/__main__.py,sha256=u9XDrUWAC952AzgUNHlfFPhDl0tBPVv_PChPRxKJhO
110
114
  bioregistry/export/cli.py,sha256=zWgNydlZUyfpjC4AksmT_npD20OBUA28CwSK4s63_C0,744
111
115
  bioregistry/export/prefix_maps.py,sha256=ZUfv91MniUWI32rFph79fdKoKp1m-NflHvYM1uZgGq4,2486
112
116
  bioregistry/export/prefixcc.py,sha256=s0SrrSytHSXgENvEQ05_nWDY37GwZLzsPruAYMxUXMU,1839
113
- bioregistry/export/rdf_export.py,sha256=dhiyGnceiS-qJ_HVK9prdFmVGgee3xVRlfB5tM70ORM,9148
117
+ bioregistry/export/rdf_export.py,sha256=mMcG-IpxTFp-ZnLXvpPQQGn2zhglFDgub1rQKG16EGs,9141
114
118
  bioregistry/export/schema_export.py,sha256=JkpbTvgJ94CrLxtPNgToMZ16FbmoTrC3E33-eHq8jnY,494
115
119
  bioregistry/export/sssom_export.py,sha256=1xImgzpeQNAGWBXr6WQ-iBmBr0aNjB73lF-Tv_wsTRE,3302
116
- bioregistry/export/tables_export.py,sha256=_ZS5_xFQJ8CWr_YbtkuzA36EpX6AH2qjxmMT11U5isw,8890
120
+ bioregistry/export/tables_export.py,sha256=IVzRc2US3CDRo13upYBfy3lN8btMyyP5MFVhEZ7XN4o,8883
117
121
  bioregistry/export/tsv_export.py,sha256=apkwHiZbehekbfwxe4a4fIvD-6guh0GM8JE7Qf_7_l8,4164
118
122
  bioregistry/export/warnings_export.py,sha256=LH3YsTzlJfi_KYEEvU0HzGScp0EuR0pei7pi6IjX6J4,4901
119
123
  bioregistry/export/yaml_export.py,sha256=08W93quZWirWv5TltvgltKxWbF1nMlzrlWsVocc7T8k,1308
124
+ bioregistry/external/.DS_Store,sha256=Z9kAJuxxll_hDHDy-OWxUT4EEDpbh4KAuaMfi5CYz7s,14340
120
125
  bioregistry/external/__init__.py,sha256=cjcfwBprqBx_X8IJh6Vug6gGgbCf5vLcJAe4Ql_0Cuc,2989
121
126
  bioregistry/external/aberowl/__init__.py,sha256=5xOVxU7SMXlTvI0zWi6cMbiga1jVXD0Joh-N_rBH1As,2475
122
127
  bioregistry/external/aberowl/processed.json,sha256=7dk3dP6s23SAT6rzYOzdkdWzHjsHkYRQ9yyxcU5dg3k,746926
@@ -155,6 +160,7 @@ bioregistry/external/integbio/__init__.py,sha256=Bpsf4-rgPixVa-_YW0IGYuLVkQ9xRpY
155
160
  bioregistry/external/integbio/processed.json,sha256=CjDlI067QJp7thh95fXHvWcSRdSD6xLbgwNgexkt5wQ,1796147
156
161
  bioregistry/external/lov/__init__.py,sha256=18vZoxRhvX6UqQLAHmyHEMrIB_8Xe4KSGXSNd_PdCw0,2655
157
162
  bioregistry/external/lov/processed.json,sha256=e7LWe7xhaiBOMz9lCdAbsYAVWotheNmB5NPhaspJRC8,479432
163
+ bioregistry/external/miriam/.DS_Store,sha256=UgtGnk8l1Yy0lhP02coFpdu_O1ethJwPURlpZRTp0LY,6148
158
164
  bioregistry/external/miriam/__init__.py,sha256=SJMcH2Nh00tT0uCfl4yYCgsi3XC1OD6w1JnAZnEzzJ0,4768
159
165
  bioregistry/external/miriam/processed.json,sha256=0IUtSsNECP-4GVbz6Ol3QIFUbsn-m-fZWvjqnV2P10M,596526
160
166
  bioregistry/external/n2t/__init__.py,sha256=hQhp_yhOMvXANuuwSDniTysHkwnx61LpTca-E5b9aMY,2954
@@ -200,15 +206,16 @@ bioregistry/pandas.py,sha256=0F5FMgMmwuV1PMWEyl5A4liLwtrPcEyZSj5W1gFal1I,19558
200
206
  bioregistry/parse_iri.py,sha256=utlolaC68ilx2rs-FSBIkcuF8rUV76sOB7IHL_fXsqg,12897
201
207
  bioregistry/parse_version_iri.py,sha256=ELmpALOa4Nvk8twkbkosZYV3bhpES0Zty1IsFpuvOJY,2499
202
208
  bioregistry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
203
- bioregistry/record_accumulator.py,sha256=U5NiwdlfuJ4VbpBjq_32dA3XuDSQg3gE7fo7doL39mg,20565
209
+ bioregistry/record_accumulator.py,sha256=gbRPS7eWf3daZyuEVCxC-zUqDPz7eX0noqJpoAy7RWw,20558
204
210
  bioregistry/reference.py,sha256=7r13osgKqjeTzHu84MPuNRbxWYmZ89eBgdaPHHxpL2o,9020
205
- bioregistry/resolve.py,sha256=73rMeadqicCXxKX09ovF8BM6r2O4U7cVOy04haENCbY,31979
211
+ bioregistry/resolve.py,sha256=j1Z65pN2NvNsPX5ywhbio_kefUoqTT6MSsnoa-H7nWI,31953
206
212
  bioregistry/resolve_identifier.py,sha256=YsMIcog9uXQt6IirqJ34yKmv-3kY97yNoi-IK3Ft7tw,17000
207
- bioregistry/resource_manager.py,sha256=UYvUMmYK1GLcbJRSbOtSyGq20f24K1g8rTeilYR7KxE,82603
208
- bioregistry/schema/__init__.py,sha256=5sug6y2IhhDy9fMgoiseLnJwuj1682NRftSEbOToHVo,427
213
+ bioregistry/resource_manager.py,sha256=fK4NU3-3q4gnm6tDLBsZmaqlIPSzBUB209k68NX0E3Y,82581
214
+ bioregistry/schema/.DS_Store,sha256=ZtEuRder-nSDznMn7EklKQngSW-_kJxHtcU0KF_qRbc,6148
215
+ bioregistry/schema/__init__.py,sha256=P_YbooDhrvtLt1L-6DrGbB0y2vsk_FxUXCbUIQNCZEo,957
209
216
  bioregistry/schema/constants.py,sha256=R_UgSWWjlm1T9DdbG3VQXt1Pq4HNucHPV5sXJNQSlso,13619
210
217
  bioregistry/schema/schema.json,sha256=tC5D0nZ5sLNwJo5pWn3CKjgtqB9lF_UZ6ssEVzzJQhE,70691
211
- bioregistry/schema/struct.py,sha256=fVKYKcYYgMeE7fDebEZXjwpYjFus20b7X4e_OUS8BsA,128737
218
+ bioregistry/schema/struct.py,sha256=FOo7PtuoeW3UFbqWM8eQsz7DUmvTctgieRdZaESfOlM,128805
212
219
  bioregistry/schema/utils.py,sha256=CBFOP0sz_XYWRKNJooElgrF6IVl-q4Dhsc8ynUT6ibE,994
213
220
  bioregistry/schema_utils.py,sha256=ut_l8Vz3kcLgLWJStN17-lLMfvY0bmxtFrEopSaOG_U,12568
214
221
  bioregistry/summary.py,sha256=hxGeDedxqQ4MVT_svs-PHI_ICAeRCEN8nS1IoF-CXFE,10449
@@ -218,8 +225,8 @@ bioregistry/utils.py,sha256=UtoHc3XzaUxv5aayJkcGyE5qjYP36SjvnVGt9sG2X-U,9207
218
225
  bioregistry/validate/__init__.py,sha256=ffUYuZYBcPGl1Ggw65DB9NZO4ma1tlsflRJRpKE4JWw,28
219
226
  bioregistry/validate/cli.py,sha256=tiP1vLYzyHdpKZd-YEUQjk3OAIwjwHzTtyiIkmKGt2I,3226
220
227
  bioregistry/validate/utils.py,sha256=KEGu6AReWc8LH3SDPjjNH5BA8YiTpGYjYRItOjoCc58,9578
221
- bioregistry/version.py,sha256=0mgtWt-hR1fRFu8dW00f8q-OGdUkJmMMuY3FYNHmFpc,1017
222
- bioregistry-0.13.9.dist-info/WHEEL,sha256=3id4o64OvRm9dUknh3mMJNcfoTRK08ua5cU6DFyVy-4,79
223
- bioregistry-0.13.9.dist-info/entry_points.txt,sha256=zb2PWaMsW1NKdtweyHF8saPf9P4P7doqCNkwP_zxzYY,54
224
- bioregistry-0.13.9.dist-info/METADATA,sha256=9i3JveIoJla6lRx40A2X7rz29-H3v_FLYw5l9NIkANs,36839
225
- bioregistry-0.13.9.dist-info/RECORD,,
228
+ bioregistry/version.py,sha256=9qZ7LKRMCbunSz9GWXsal63o0sBSXJWi3nlQApCZo3A,1018
229
+ bioregistry-0.13.10.dist-info/WHEEL,sha256=ZHijuPszqKbNczrBXkSuoxdxocbxgFghqnequ9ZQlVk,79
230
+ bioregistry-0.13.10.dist-info/entry_points.txt,sha256=zb2PWaMsW1NKdtweyHF8saPf9P4P7doqCNkwP_zxzYY,54
231
+ bioregistry-0.13.10.dist-info/METADATA,sha256=-tCTYbSkkoC85y7F5Y7tHswbo0gw13ePx73nBmn_BdM,36840
232
+ bioregistry-0.13.10.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: uv 0.9.13
2
+ Generator: uv 0.9.10
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any