diff --git a/.gitignore b/.gitignore index a2244bfa..98fd20cd 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ __pycache__/ *.so # Distribution / packaging +go-basic.jso* .Python env/ build/ @@ -14,6 +15,8 @@ develop-eggs/ dist/ downloads/ eggs/ +mgi-* +groups/ .eggs/ lib/ lib64/ diff --git a/Makefile b/Makefile index 5ffb8954..1bf975f8 100644 --- a/Makefile +++ b/Makefile @@ -24,13 +24,24 @@ foo: # only run local tests travis_test: - pytest tests/test_*local*.py tests/test_*parse*.py tests/test*writer*.py tests/test_qc.py \ - tests/test_rdfgen.py tests/test_phenosim_engine.py tests/test_ontol.py \ - tests/test_validation_rules.py tests/unit/test_annotation_scorer.py \ - tests/test_goassociation_model.py tests/test_relations.py \ - tests/unit/test_golr_search_query.py tests/unit/test_owlsim2_api.py \ - tests/test_collections.py \ - tests/test_gocamgen.py + @if [ -d ".venv" ] && [ -f "pyproject.toml" ]; then \ + echo "Running tests in Poetry environment..."; \ + poetry run pytest tests/test_*local*.py tests/test_*parse*.py tests/test*writer*.py tests/test_qc.py \ + tests/test_rdfgen.py tests/test_phenosim_engine.py tests/test_ontol.py \ + tests/test_validation_rules.py tests/unit/test_annotation_scorer.py \ + tests/test_goassociation_model.py tests/test_relations.py \ + tests/unit/test_golr_search_query.py tests/unit/test_owlsim2_api.py \ + tests/test_collections.py \ + tests/test_gocamgen.py; \ + else \ + pytest tests/test_*local*.py tests/test_*parse*.py tests/test*writer*.py tests/test_qc.py \ + tests/test_rdfgen.py tests/test_phenosim_engine.py tests/test_ontol.py \ + tests/test_validation_rules.py tests/unit/test_annotation_scorer.py \ + tests/test_goassociation_model.py tests/test_relations.py \ + tests/unit/test_golr_search_query.py tests/unit/test_owlsim2_api.py \ + tests/test_collections.py \ + tests/test_gocamgen.py; \ + fi cleandist: rm dist/* || true diff --git a/bin/README.md b/bin/README.md index 19796e28..f5aae56b 100644 --- a/bin/README.md +++ b/bin/README.md @@ -1 +1,17 @@ See [command line docs](http://ontobio.readthedocs.io/en/latest/commandline.html#commandline) on ReadTheDocs + +To test validate.py "validate" command, the command that produces the final GPADs in the pipeline via the "mega make" +(aka: "produces GAFs, GPADs, ttl" stage), on a particular source: + +```bash +poetry install +poetry run validate produce -m ../go-site/metadata --gpad -t . -o go-basic.json --base-download-url "http://skyhook.berkeleybop.org/[PIPELINE_BRANCH_NAME]/" --only-dataset mgi MGI +poetry run validate produce -m ../go-site/metadata --gpad -t . -o go-basic.json --base-download-url "http://skyhook.berkeleybop.org/[PIPELINE_BRANCH_NAME]/" --only-dataset goa_chicken goa +``` + + +To test whether a GAF file is valid (passes all the GORules): +```bash +poetry install +poetry run python3 ontobio-parse-assocs.py --file [path_to_file.gaf] --format GAF -o mgi_valid.gaf --report-md mgi.report.md -r [path_to_go.json] -l all validate +``` \ No newline at end of file diff --git a/bin/validate.py b/bin/validate.py index ed024015..b59f4c04 100755 --- a/bin/validate.py +++ b/bin/validate.py @@ -45,7 +45,8 @@ def thispath(): os.path.normpath(os.path.abspath(__file__)) -def download_a_dataset_source(group, dataset_metadata, target_dir, source_url, base_download_url=None, replace_existing_files=True): +def download_a_dataset_source(group, dataset_metadata, target_dir, source_url, base_download_url=None, + replace_existing_files=True): """ This will download a dataset source given the group name, the metadata stanza for the dataset, and the target directory that all downloads @@ -96,10 +97,13 @@ def download_a_dataset_source(group, dataset_metadata, target_dir, source_url, b joined_url = urllib.parse.urljoin(base_download_url, source_url) else: # This is bad and we have to jump out`since we have no way of constructing a real gaf url - raise click.ClickException("Option `--base-download-url` was not specified and the config url {} is a relative path.".format(source_url)) + raise click.ClickException( + "Option `--base-download-url` was not specified and the config url {} is a relative path.".format( + source_url)) # including scheme and such - reconstructed_url = urllib.parse.urlunsplit((scheme, urllib.parse.urlparse(joined_url).netloc, urllib.parse.urlparse(joined_url).path, source_url_parsed.query, "")) + reconstructed_url = urllib.parse.urlunsplit((scheme, urllib.parse.urlparse(joined_url).netloc, + urllib.parse.urlparse(joined_url).path, source_url_parsed.query, "")) click.echo("Using URL `{}`".format(reconstructed_url)) @@ -111,7 +115,8 @@ def download_a_dataset_source(group, dataset_metadata, target_dir, source_url, b content_length = int(response.headers.get("Content-Length", 0)) with open(path, "wb") as downloaded: - with click.progressbar(iterable=response.iter_content(chunk_size=512 * 1024), length=content_length, show_percent=True) as chunks: + with click.progressbar(iterable=response.iter_content(chunk_size=512 * 1024), length=content_length, + show_percent=True) as chunks: for chunk in chunks: if chunk: downloaded.write(chunk) @@ -119,7 +124,8 @@ def download_a_dataset_source(group, dataset_metadata, target_dir, source_url, b return path -def download_source_gafs(group_metadata, target_dir, exclusions=[], base_download_url=None, replace_existing_files=True, only_dataset=None): +def download_source_gafs(group_metadata, target_dir, exclusions=[], base_download_url=None, replace_existing_files=True, + only_dataset=None): """ This looks at a group metadata dictionary and downloads each GAF source that is not in the exclusions list. For each downloaded file, keep track of the path of the file. If the file is zipped, it will unzip it here. @@ -128,17 +134,20 @@ def download_source_gafs(group_metadata, target_dir, exclusions=[], base_downloa # Grab all datasets in a group, excluding non-gaf, datasets that are explicitely excluded from an option, and excluding datasets with the `exclude key` set to true gaf_urls = [] if only_dataset is None: - gaf_urls = [ (data, data["source"]) for data in group_metadata["datasets"] if data["type"] == "gaf" and data["dataset"] not in exclusions and not data.get("exclude", False)] + gaf_urls = [(data, data["source"]) for data in group_metadata["datasets"] if + data["type"] == "gaf" and data["dataset"] not in exclusions and not data.get("exclude", False)] else: - gaf_urls = [ (data, data["source"]) for data in group_metadata["datasets"] if data["dataset"] == only_dataset ] + gaf_urls = [(data, data["source"]) for data in group_metadata["datasets"] if data["dataset"] == only_dataset] # List of dataset metadata to gaf download url - click.echo("Found {}".format(", ".join( [ kv[0]["dataset"] for kv in gaf_urls ] ))) + click.echo("Found {}".format(", ".join([kv[0]["dataset"] for kv in gaf_urls]))) downloaded_paths = [] for dataset_metadata, gaf_url in gaf_urls: dataset = dataset_metadata["dataset"] # Local target download path setup - path and then directories - path = download_a_dataset_source(group_metadata["id"], dataset_metadata, target_dir, gaf_url, base_download_url=base_download_url, replace_existing_files=replace_existing_files) + path = download_a_dataset_source(group_metadata["id"], dataset_metadata, target_dir, gaf_url, + base_download_url=base_download_url, + replace_existing_files=replace_existing_files) if dataset_metadata.get("compression", None) == "gzip": # Unzip any downloaded file that has gzip, strip of the gzip extension @@ -153,22 +162,24 @@ def download_source_gafs(group_metadata, target_dir, exclusions=[], base_downloa return downloaded_paths -def check_and_download_mixin_source(mixin_metadata, group_id, dataset, target_dir, base_download_url=None, replace_existing_files=True): +def check_and_download_mixin_source(mixin_metadata, group_id, dataset, target_dir, base_download_url=None, + replace_existing_files=True): mixin_dataset = tools.find(mixin_metadata["datasets"], lambda d: d.get("merges_into", "") == dataset) if mixin_dataset is None: return None - click.echo("Merging mixin dataset {}".format(mixin_dataset["source"])) - path = download_a_dataset_source(group_id, mixin_dataset, target_dir, mixin_dataset["source"], base_download_url=base_download_url, replace_existing_files=replace_existing_files) + click.echo("Downloading dataset {}".format(mixin_dataset["source"])) + path = download_a_dataset_source(group_id, mixin_dataset, target_dir, mixin_dataset["source"], + base_download_url=base_download_url, replace_existing_files=replace_existing_files) - unzipped = unzip_simple(path) # Strip off the .gz extension, leaving just the unzipped filename + unzipped = unzip_simple(path) # Strip off the .gz extension, leaving just the unzipped filename return unzipped def mixin_dataset(mixin_metadata, dataset): mixin_dataset_version = tools.find(mixin_metadata["datasets"], lambda d: d.get("merges_into", "") == dataset) if mixin_dataset_version is None: - return None # Blah + return None # Blah return mixin_dataset_version @@ -209,8 +220,13 @@ def create_parser(config, group, dataset, format="gaf"): Produce validated gaf using the gaf parser/ """ + @tools.gzips -def produce_gaf(dataset, source_gaf, ontology_graph, gpipaths=None, paint=False, group="unknown", rule_metadata=None, goref_metadata=None, ref_species_metadata=None, db_entities=None, group_idspace=None, format="gaf", suppress_rule_reporting_tags=[], annotation_inferences=None, group_metadata=None, extensions_constraints=None, rule_contexts=[], gaf_output_version="2.2", rule_set=assocparser.RuleSet.ALL): +def produce_gaf(dataset, source_gaf, ontology_graph, gpipaths=None, paint=False, group="unknown", rule_metadata=None, + goref_metadata=None, ref_species_metadata=None, db_entities=None, group_idspace=None, + format="gaf", suppress_rule_reporting_tags=[], annotation_inferences=None, group_metadata=None, + extensions_constraints=None, rule_contexts=[], gaf_output_version="2.2", + rule_set=assocparser.RuleSet.ALL) -> list[str]: filtered_associations = open(os.path.join(os.path.split(source_gaf)[0], "{}_noiea.gaf".format(dataset)), "w") config = assocparser.AssocParserConfig( ontology=ontology_graph, @@ -268,7 +284,8 @@ def produce_gaf(dataset, source_gaf, ontology_graph, gpipaths=None, paint=False, report_json.write(json.dumps(parser.report.to_report_json(), indent=4)) logger.info("json {} written out".format(report_markdown_path)) - logger.info("gorule-13 first 10 messages: {}".format(json.dumps(parser.report.to_report_json()["messages"].get("gorule-0000013", [])[:10], indent=4))) + logger.info("gorule-13 first 10 messages: {}".format( + json.dumps(parser.report.to_report_json()["messages"].get("gorule-0000013", [])[:10], indent=4))) logger.info("json current Stack:") if logger.getEffectiveLevel() == logging.INFO: traceback.print_stack() @@ -277,17 +294,15 @@ def produce_gaf(dataset, source_gaf, ontology_graph, gpipaths=None, paint=False, @tools.gzips -def make_products(dataset, target_dir, gaf_path, products, ontology_graph): - +def make_ttls(dataset, gaf_path, products, ontology_graph): with open(gaf_path) as sg: lines = sum(1 for line in sg) product_files = { - "gpad": open(os.path.join(os.path.split(gaf_path)[0], "{}.gpad".format(dataset)), "w"), "ttl": open(os.path.join(os.path.split(gaf_path)[0], "{}_cam.ttl".format(dataset)), "wb") } - if not products["gpad"] and not products["ttl"]: + if not products["ttl"]: # Bail if we have no products return [] @@ -302,23 +317,16 @@ def make_products(dataset, target_dir, gaf_path, products, ontology_graph): click.echo("Using {} as the gaf to build data products with".format(gaf_path)) if products["ttl"]: click.echo("Setting up {}".format(product_files["ttl"].name)) - rdf_writer = assoc_rdfgen.TurtleRdfWriter(label=os.path.split(product_files["ttl"].name)[1] ) + rdf_writer = assoc_rdfgen.TurtleRdfWriter(label=os.path.split(product_files["ttl"].name)[1]) transformer = assoc_rdfgen.CamRdfTransform(writer=rdf_writer) - if products["gpad"]: - click.echo("Setting up {}".format(product_files["gpad"].name)) - gpadwriter = GpadWriter(file=product_files["gpad"]) - - click.echo("Making products...") + click.echo("Making ttl products...") with click.progressbar(iterable=gafparser.association_generator(file=gf), length=lines) as associations: for association in associations: if products["ttl"]: transformer.provenance() transformer.translate(association) - if products["gpad"]: - gpadwriter.write_assoc(association) - # post ttl steps if products["ttl"]: click.echo("Writing ttl to disk") @@ -330,8 +338,106 @@ def make_products(dataset, target_dir, gaf_path, products, ontology_graph): return [product_files[prod].name for prod in sorted(product_files.keys()) if products[prod]] + @tools.gzips -def produce_gpi(dataset, target_dir, gaf_path, ontology_graph): +def make_gpads(dataset, gaf_path, products, ontology_graph, + noctua_gpad_file, paint_gaf_src, gpi, gpad_gpi_output_version): + """ + Using the gaf files and the noctua gpad file, produce a gpad file that contains both kinds of annotations + without any loss. + + :param dataset: The dataset name + :param gaf_path: The path to the gaf file + :param products: The products to make + :param ontology_graph: The ontology graph to use for parsing the associations + :param noctua_gpad_file: The path to the noctua gpad file + :param paint_gaf_src: The source of the paint gaf file + :param gpi: The path to the gpi file -- needed to convert isoform annotations from Noctua files + to gene annotations in GAF outputs. + :return: The path to the gpad file + + """ + gpad_file_path = os.path.join(os.path.split(gaf_path)[0], f"{dataset}.gpad") + + if not products["gpad"]: + return [] + + # Open the file once and keep it open for all operations within this block + with open(gpad_file_path, "w") as outfile: + gpadwriter = GpadWriter(file=outfile, version=gpad_gpi_output_version) + + # If there's a noctua gpad file, process it + if noctua_gpad_file: + click.echo("Making noctua gpad products...{}".format(noctua_gpad_file)) + # Process noctua gpad file + process_noctua_gpad_file(noctua_gpad_file, gpadwriter, ontology_graph, gpi) + + # Process the GAF file + process_gaf_file(gaf_path, gpadwriter, ontology_graph, paint_gaf_src) + + # The file will be automatically closed here, after exiting the 'with' block + return [gpad_file_path] + + +def process_noctua_gpad_file(noctua_gpad_file, gpadwriter, ontology_graph, gpi): + """ + Process a noctua gpad file and write the associations to the gpad writer. + + :param noctua_gpad_file: The path to the noctua gpad file + :param gpadwriter: The gpad writer to write the associations to + :param ontology_graph: The ontology graph to use for parsing the associations + :param gpi: The path to the gpi file -- needed to convert isoform annotations from Noctua files + """ + + with open(noctua_gpad_file) as nf: + lines = sum(1 for line in nf) + nf.seek(0) # Reset file pointer to the beginning after counting lines + gpadparser = GpadParser(config=assocparser.AssocParserConfig(ontology=ontology_graph, + paint=False, + rule_set="all")) + click.echo("Making noctua gpad products...") + with click.progressbar(iterable=gpadparser.association_generator(file=nf), length=lines) as associations: + for association in associations: + # If the association is an isoform annotation, convert it to a gene annotation + gpadwriter.write_assoc(association) + + +def process_gaf_file(gaf_path, gpadwriter, ontology_graph, paint_gaf_src): + """ + Process a gaf file and write the associations to the gpad writer. + + :param gaf_path: The path to the gaf file + :param gpadwriter: The gpad writer to write the associations to + :param ontology_graph: The ontology graph to use for parsing the associations + :param paint_gaf_src: The source of the paint gaf file + + """ + with open(gaf_path) as gf: + lines = sum(1 for line in gf) + gf.seek(0) # Reset file pointer to the beginning after counting lines + gafparser = GafParser(config=assocparser.AssocParserConfig(ontology=ontology_graph, + paint=True, + rule_set="all")) + click.echo("Merging in source gaf to gpad product...") + with click.progressbar(iterable=gafparser.association_generator(file=gf), length=lines) as associations: + for association in associations: + gpadwriter.write_assoc(association) + + if paint_gaf_src is not None: + with open(paint_gaf_src) as pgf: + lines = sum(1 for line in pgf) + pgf.seek(0) + gafparser = GafParser(config=assocparser.AssocParserConfig(ontology=ontology_graph, + paint=True, + rule_set="all")) + click.echo("Merging in paint gaf to gpad product...") + with click.progressbar(iterable=gafparser.association_generator(file=pgf), length=lines) as associations: + for association in associations: + gpadwriter.write_assoc(association) + + +@tools.gzips +def produce_gpi(dataset, target_dir, gaf_path, ontology_graph, gpad_gpi_output_version): gafparser = GafParser() gafparser.config = assocparser.AssocParserConfig( ontology=ontology_graph @@ -342,13 +448,13 @@ def produce_gpi(dataset, target_dir, gaf_path, ontology_graph): gpi_path = os.path.join(os.path.split(gaf_path)[0], "{}.gpi".format(dataset)) with open(gaf_path) as gf, open(gpi_path, "w") as gpi: click.echo("Using {} as the gaf to build gpi with".format(gaf_path)) - bridge = gafgpibridge.GafGpiBridge() - gpiwriter = entitywriter.GpiWriter(file=gpi) + bridge = gafgpibridge + gpiwriter = entitywriter.GpiWriter(file=gpi, version=gpad_gpi_output_version) gpi_cache = set() with click.progressbar(iterable=gafparser.association_generator(file=gf), length=lines) as associations: for association in associations: - entity = bridge.convert_association(association) + entity = bridge.convert_association(association, gpad_gpi_output_version) if entity not in gpi_cache and entity is not None: # If the entity is not in the cache, add it and write it out gpi_cache.add(entity) @@ -404,10 +510,11 @@ def header_and_annotations(gaf_file): def make_mixin_header(header_lines, path): the_header = [ - "!Header copied from {}".format(os.path.basename(path)), - "!=================================" - ] + header_lines[8:] + ["!"] + "!Header copied from {}".format(os.path.basename(path)), + "!=================================" + ] + header_lines[8:] + ["!"] return the_header + # #################################################################### # Set up merged final gaf product path @@ -427,16 +534,16 @@ def make_mixin_header(header_lines, path): annotations += mixin_annotations full_header = valid_header + \ - [ - "!=================================", - "!" - ] + mixin_headers + \ - [ - "!=================================", - "!", - "!Documentation about this header can be found here: https://github.com/geneontology/go-site/blob/master/docs/gaf_validation.md", - "!" - ] + [ + "!=================================", + "!" + ] + mixin_headers + \ + [ + "!=================================", + "!", + "!Documentation about this header can be found here: https://github.com/geneontology/go-site/blob/master/docs/gaf_validation.md", + "!" + ] all_lines = full_header + annotations with open(merged_path, "w") as merged_file: @@ -445,19 +552,25 @@ def make_mixin_header(header_lines, path): return merged_path -def mixin_a_dataset(valid_gaf, mixin_metadata_list, group_id, dataset, target, ontology, gpipaths=None, base_download_url=None, rule_metadata={}, replace_existing_files=True, rule_contexts=[], gaf_output_version="2.2"): - +def mixin_a_dataset(valid_gaf, mixin_metadata_list, group_id, dataset, target, ontology, gpipaths=None, + base_download_url=None, rule_metadata={}, replace_existing_files=True, rule_contexts=[], + gaf_output_version="2.2"): end_gaf = valid_gaf mixin_gaf_paths = [] for mixin_metadata in mixin_metadata_list: - mixin_src = check_and_download_mixin_source(mixin_metadata, group_id, dataset, target, base_download_url=base_download_url, replace_existing_files=replace_existing_files) + click.echo("Merging mixin dataset {}".format(mixin_metadata["id"])) + mixin_src = check_and_download_mixin_source(mixin_metadata, group_id, dataset, target, + base_download_url=base_download_url, + replace_existing_files=replace_existing_files) if mixin_src is not None: mixin_dataset_metadata = mixin_dataset(mixin_metadata, dataset) mixin_dataset_id = mixin_dataset_metadata["dataset"] format = mixin_dataset_metadata["type"] context = ["import"] if mixin_metadata.get("import", False) else [] - mixin_gaf = produce_gaf(mixin_dataset_id, mixin_src, ontology, gpipaths=gpipaths, paint=True, group=mixin_metadata["id"], rule_metadata=rule_metadata, format=format, rule_contexts=context, gaf_output_version=gaf_output_version)[0] + mixin_gaf = produce_gaf(mixin_dataset_id, mixin_src, ontology, gpipaths=gpipaths, paint=True, + group=mixin_metadata["id"], rule_metadata=rule_metadata, format=format, + rule_contexts=context, gaf_output_version=gaf_output_version)[0] mixin_gaf_paths.append(mixin_gaf) if mixin_gaf_paths: @@ -477,24 +590,30 @@ def cli(ctx, verbose): if verbose: logger.setLevel(logging.INFO) + @cli.command() @click.pass_context @click.argument("group") @click.option("--metadata", "-m", "metadata_dir", type=click.Path(), required=True) @click.option("--gpad", default=False, is_flag=True) +@click.option("--https://github.com/microbiomedata/nmdc-schema/issues/1925", default="2.0", type=click.Choice(["1.2", "2.0"])) @click.option("--ttl", default=False, is_flag=True) @click.option("--target", "-t", type=click.Path(), required=True) @click.option("--ontology", "-o", type=click.Path(exists=True), required=False) @click.option("--exclude", "-x", multiple=True) @click.option("--base-download-url", "-b", default=None) -@click.option("--suppress-rule-reporting-tag", "-S", multiple=True, help="Suppress markdown output messages from rules tagged with this tag") -@click.option("--skip-existing-files", "-K", is_flag=True, default=False, help="When downloading files, if a file already exists it won't downloaded over") -@click.option("--gaferencer-file", "-I", type=click.Path(exists=True), default=None, required=False, help="Path to Gaferencer output to be used for inferences") +@click.option("--suppress-rule-reporting-tag", "-S", multiple=True, + help="Suppress markdown output messages from rules tagged with this tag") +@click.option("--skip-existing-files", "-K", is_flag=True, default=False, + help="When downloading files, if a file already exists it won't downloaded over") +@click.option("--gaferencer-file", "-I", type=click.Path(exists=True), default=None, required=False, + help="Path to Gaferencer output to be used for inferences") @click.option("--only-dataset", default=None) @click.option("--gaf-output-version", default="2.2", type=click.Choice(["2.1", "2.2"])) @click.option("--rule-set", "-l", "rule_set", default=[assocparser.RuleSet.ALL], multiple=True) -def produce(ctx, group, metadata_dir, gpad, ttl, target, ontology, exclude, base_download_url, suppress_rule_reporting_tag, skip_existing_files, gaferencer_file, only_dataset, gaf_output_version, rule_set): - +def produce(ctx, group, metadata_dir, gpad, gpad_gpi_output_version, ttl, target, ontology, exclude, base_download_url, + suppress_rule_reporting_tag, skip_existing_files, gaferencer_file, only_dataset, gaf_output_version, + rule_set): logger.info("Logging is verbose") products = { "gaf": True, @@ -512,7 +631,10 @@ def produce(ctx, group, metadata_dir, gpad, ttl, target, ontology, exclude, base click.echo("Loading ontology: {}...".format(ontology)) ontology_graph = OntologyFactory().create(ontology, ignore_cache=True) - downloaded_gaf_sources = download_source_gafs(group_metadata, absolute_target, exclusions=exclude, base_download_url=base_download_url, replace_existing_files=not skip_existing_files, only_dataset=only_dataset) + downloaded_gaf_sources = download_source_gafs(group_metadata, absolute_target, exclusions=exclude, + base_download_url=base_download_url, + replace_existing_files=not skip_existing_files, + only_dataset=only_dataset) # extract the titles for the go rules, this is a dictionary comprehension rule_metadata = metadata.yamldown_lookup(os.path.join(absolute_metadata, "rules")) @@ -525,7 +647,7 @@ def produce(ctx, group, metadata_dir, gpad, ttl, target, ontology, exclude, base paint_metadata = metadata.dataset_metadata_file(absolute_metadata, "paint") noctua_metadata = metadata.dataset_metadata_file(absolute_metadata, "noctua") - mixin_metadata_list = list(filter(lambda m: m != None, [paint_metadata, noctua_metadata])) + mixin_metadata_list = list(filter(lambda m: m != None, [paint_metadata])) db_entities = metadata.database_entities(absolute_metadata) group_ids = metadata.groups(absolute_metadata) @@ -544,24 +666,25 @@ def produce(ctx, group, metadata_dir, gpad, ttl, target, ontology, exclude, base # Set paint to True when the group is "paint". # This will prevent filtering of IBA (GO_RULE:26) when paint is being treated as a top level group, # like for paint_other. + click.echo("source_gaf: {}".format(source_gaf)) valid_gaf = produce_gaf(dataset, source_gaf, ontology_graph, - paint=(group=="paint"), - group=group, - rule_metadata=rule_metadata, - goref_metadata=goref_metadata, - ref_species_metadata=ref_species_metadata, - db_entities=db_entities, - group_idspace=group_ids, - suppress_rule_reporting_tags=suppress_rule_reporting_tag, - annotation_inferences=gaferences, - group_metadata=group_metadata, - extensions_constraints=extensions_constraints, - rule_contexts=["import"] if dataset_metadata.get("import", False) else [], - gaf_output_version=gaf_output_version, - rule_set=rule_set - )[0] - - gpi = produce_gpi(dataset, absolute_target, valid_gaf, ontology_graph) + paint=(group == "paint"), + group=group, + rule_metadata=rule_metadata, + goref_metadata=goref_metadata, + ref_species_metadata=ref_species_metadata, + db_entities=db_entities, + group_idspace=group_ids, + suppress_rule_reporting_tags=suppress_rule_reporting_tag, + annotation_inferences=gaferences, + group_metadata=group_metadata, + extensions_constraints=extensions_constraints, + rule_contexts=["import"] if dataset_metadata.get("import", False) else [], + gaf_output_version=gaf_output_version, + rule_set=rule_set + )[0] + + gpi = produce_gpi(dataset, absolute_target, valid_gaf, ontology_graph, gpad_gpi_output_version) gpi_list = [gpi] # Try to find other GPIs in metadata and merge @@ -574,11 +697,27 @@ def produce(ctx, group, metadata_dir, gpad, ttl, target, ontology, exclude, base matching_gpi_path = unzip_simple(matching_gpi_path) gpi_list.append(matching_gpi_path) - end_gaf = mixin_a_dataset(valid_gaf, mixin_metadata_list, group_metadata["id"], dataset, absolute_target, + noctua_gpad_src = check_and_download_mixin_source(noctua_metadata, group_metadata["id"], dataset, target, + base_download_url=base_download_url, + replace_existing_files=not skip_existing_files) + paint_gaf_src = (check_and_download_mixin_source(paint_metadata, group_metadata["id"], dataset, target, + base_download_url=base_download_url, + replace_existing_files=not skip_existing_files) + if paint_metadata else None) + + make_gpads(dataset, valid_gaf, products, + ontology_graph, noctua_gpad_src, paint_gaf_src, + gpi, gpad_gpi_output_version) + + end_gaf = mixin_a_dataset(valid_gaf, [noctua_metadata, paint_metadata], + group_metadata["id"], dataset, absolute_target, ontology_graph, gpipaths=gpi_list, base_download_url=base_download_url, rule_metadata=rule_metadata, replace_existing_files=not skip_existing_files, gaf_output_version=gaf_output_version) - make_products(dataset, absolute_target, end_gaf, products, ontology_graph) + + click.echo(end_gaf) + + make_ttls(dataset, end_gaf, products, ontology_graph) @cli.command() diff --git a/ontobio/io/assocparser.py b/ontobio/io/assocparser.py index 8f00c72e..14b7ce48 100644 --- a/ontobio/io/assocparser.py +++ b/ontobio/io/assocparser.py @@ -534,7 +534,10 @@ def association_generator(self, file, skipheader=False, outfile=None) -> Dict: file = self._ensure_file(file) for line in file: parsed_result = self.parse_line(line) - self.report.report_parsed_result(parsed_result, outfile, self.config.filtered_evidence_file, self.config.filter_out_evidence) + self.report.report_parsed_result(parsed_result, + outfile, + self.config.filtered_evidence_file, + self.config.filter_out_evidence) for association in parsed_result.associations: # yield association if we don't care if it's a header or if it's definitely a real gaf line if not skipheader or not isinstance(association, dict): @@ -962,6 +965,7 @@ def parse_date(date: str, report: Report, line: List) -> Optional[association.Da return d + def parse_iso_date(date: str, report: Report, line: List) -> Optional[association.Date]: def parse_with_dateutil(date: str, repot: Report, line: List) -> Optional[association.Date]: @@ -978,7 +982,6 @@ def parse_with_dateutil(date: str, repot: Report, line: List) -> Optional[associ day="{:02d}".format(parsed.day), time=parsed.time().isoformat()) - if date == "": report.error(line, Report.INVALID_DATE, "\'\'", "GORULE:0000001: empty", rule=1) return None @@ -986,7 +989,7 @@ def parse_with_dateutil(date: str, repot: Report, line: List) -> Optional[associ d = None if len(date) >= 10: # For ISO style date, should be YYYY-MM-DD all as digits and - # a well formed date string here will be at least 10 characters long. + # a well-formed date string here will be at least 10 characters long. # Optionally, there could be an appended THH:MM year = date[0:4] month = date[5:7] diff --git a/ontobio/io/assocwriter.py b/ontobio/io/assocwriter.py index 697438f4..f930e515 100644 --- a/ontobio/io/assocwriter.py +++ b/ontobio/io/assocwriter.py @@ -6,6 +6,7 @@ import datetime import json import logging +import click from typing import List, Union @@ -108,18 +109,23 @@ def write(self, assocs, meta=None): GPAD_2_0 = "2.0" GPAD_1_2 = "1.2" + class GpadWriter(AssocWriter): """ Writes Associations in GPAD format """ - def __init__(self, file=None, version=GPAD_1_2): + def __init__(self, file=None, version=None): self.file = file + click.echo("Writing GPAD version: {}".format(version)) if version in [GPAD_1_2, GPAD_2_0]: self.version = version else: self.version = GPAD_1_2 - self._write("!gpa-version: {}\n".format(self.version)) + self._write("!gpad-version: {}\n".format(self.version)) + click.echo("Writing GPAD version: {}".format(self.version)) + self._write("!generated-by: {}\n".format("GO Central")) + self._write("!date-generated: {}\n".format(str(datetime.datetime.now().strftime("%Y-%m-%dT%H:%M")))) self.ecomap = ecomap.EcoMap() def as_tsv(self, assoc: Union[association.GoAssociation, dict]): @@ -136,7 +142,6 @@ def as_tsv(self, assoc: Union[association.GoAssociation, dict]): return assoc.to_gpad_1_2_tsv() - class GafWriter(AssocWriter): """ Writes Associations in GAF format. @@ -151,13 +156,13 @@ class GafWriter(AssocWriter): The only difference in 2.1 and 2.2 are how qualifiers (column 4) are handled. GAF 2.1 allows empty or only `NOT` qualifier values, and only allows - `colocalizes_with` and `contributes_to` as qualifer values. However in 2.2 + `colocalizes_with` and `contributes_to` as qualifier values. However, in 2.2 qualifier must *not* be empty and cannot have only `NOT` as it's a modifier - on existing qualifers. The set of allowed qualifiers in 2.2 is also expanded. + on existing qualifiers. The set of allowed qualifiers in 2.2 is also expanded. So if there's a mismatch between converting from an annotation and a GAF version then that annotation is just skipped and not written out with an - error message displayed. Mismatch occurances of this kind would appear if + error message displayed. Mismatch occurrences of this kind would appear if the incoming annotation has a qualifier in the 2.2 set, but 2.1 is being written out, or if the qualifier is empty and 2.2 is being written. """ diff --git a/ontobio/io/entityparser.py b/ontobio/io/entityparser.py index 8695b3df..f82d36c7 100644 --- a/ontobio/io/entityparser.py +++ b/ontobio/io/entityparser.py @@ -100,6 +100,7 @@ def list_field(self, field: str) -> List: # If there is no config file path, return None # return None + class GpiParser(EntityParser): def __init__(self, config=None): diff --git a/ontobio/io/entitywriter.py b/ontobio/io/entitywriter.py index 9438f0ea..e538598f 100644 --- a/ontobio/io/entitywriter.py +++ b/ontobio/io/entitywriter.py @@ -71,11 +71,16 @@ def write(self, entities, meta=None): for e in entities: self.write_entity(e) + class GpiWriter(EntityWriter): """ - Writes entities in GPI format + Writes entities in GPI 1.2 or 2.0 (https://github.com/geneontology/go-annotation/blob/master/specs/gpad-gpi-2-0.md) format + + :param file: file + :param version: str + + Takes an "entity" dictionary generated typically from a GoAssociation object - Takes an entity dictionary: { 'id': id, (String) 'label': db_object_symbol, (String) @@ -89,29 +94,80 @@ class GpiWriter(EntityWriter): } } """ - def __init__(self, file=None): + def __init__(self, file=None, version=None): self.file = file + self.version = version if self.file: - self.file.write("!gpi-version: 1.2\n") + if self.version == "2.0": + self.file.write("!gpi-version: 2.0\n") + else: + self.file.write("!gpi-version: 1.2\n") def write_entity(self, entity): """ Write a single entity to a line in the output file + + :param entity: dict ; typically a dictionary representing an instance of a GoAssociation object + :param gpi_output_version: str ; the version of the GPAD output file to write + :return: None + + GPI 2.0 spec <-- entity attributes + + 1. DB_Object_ID <-- entity.id (CURIE format) + 2. DB_Object_symbol <-- entity.label + 3. DB_Object_Name <-- entity.full_name + 4. DB_Object_Synonyms <-- entity.synonyms + 5. DB_Object_Type <-- entity.type + 6. DB_Object_Taxon <-- entity.taxon + 7. Encoded_by <-- does not appear in GAF file, this is optional in GPI + 8. Parent_Protein <-- entity.parents # unclear if this is a list or a single value + 9. Protein_Containing_Complex_Members <-- does not appear in GAF file, this is optional in GPI + 10. DB_Xrefs <-- entity.xrefs + 11. Gene_Product_Properties <-- entity.properties + + GPI 1.2 spec <-- entity attributes + + 1. DB <-- entity.id.prefix + 2. DB_Object_ID <-- entity.id.local_id + 3. DB_Object_Symbol <-- entity.label + 4. DB_Object_Name <-- entity.full_name + 5. DB_Object_Synonym(s) <-- entity.synonyms + 6. DB_Object_Type <-- entity.type + 7. Taxon <-- entity.taxon + 8. Parent_Object_ID <-- entity.parents # unclear if this is a list or a single value + 9. DB_Xref(s) <-- entity.xrefs + 10. Properties <-- entity.properties + """ - db, db_object_id = self._split_prefix(entity) - taxon = normalize_taxon(entity["taxon"]["id"]) - - vals = [ - db, - db_object_id, - entity.get('label'), - entity.get('full_name'), - entity.get('synonyms'), - entity.get('type'), - taxon, - entity.get('parents'), - entity.get('xrefs'), - entity.get('properties') - ] + print(entity.get('taxon')) + + if self.version == "2.0": + vals = [ + entity.get('id'), # DB_Object_ID + entity.get('label'), # DB_Object_symbol + entity.get('full_name'), # DB_Object_Name + entity.get('synonyms'), # DB_Object_Synonyms + entity.get('type'), # DB_Object_Type + normalize_taxon(entity.get("taxon").get("id")), # DB_Object_Taxon + "", # Encoded_by + entity.get('parents'), # Parent_Protein + "", # Protein_Containing_Complex_Members + entity.get('xrefs'), # DB_Xrefs + entity.get('properties') # Gene_Product_Properties + ] + else: + prefix, local_id = self._split_prefix(entity) + vals = [ + prefix, # DB + local_id, # DB_Object_ID + entity.get('label'), # DB_Object_Symbol + entity.get('full_name'), # DB_Object_Symbol + entity.get('synonyms'), # DB_Object_Name + entity.get('type'), # DB_Object_Synonyms + normalize_taxon(entity.get("taxon").get("id")), # taxon + entity.get('parents'), # Parent_Object_ID + entity.get('xrefs'), # DB_Xref(s) + entity.get('properties') # Properties + ] self._write_row(vals) diff --git a/ontobio/io/gafgpibridge.py b/ontobio/io/gafgpibridge.py index 4a6604e2..8cc542f9 100644 --- a/ontobio/io/gafgpibridge.py +++ b/ontobio/io/gafgpibridge.py @@ -13,18 +13,18 @@ def __hash__(self): return hash(d) -class GafGpiBridge(object): +def convert_association(association, gpad_gpi_output_version="2.0") -> Entity: + """ + 'id' is already `join`ed in both the Association and the Entity, + so we don't have to worry about what that looks like. We assume + it's correct. - def __init__(self): - self.cache = [] - - def convert_association(self, association) -> Entity: - """ - 'id' is already `join`ed in both the Association and the Entity, - so we don't have to worry about what that looks like. We assume - it's correct. - """ - if isinstance(association, GoAssociation): + :param association: GoAssociation + :param gpad_gpi_output_version: str value of the GPAD/GPI version to write - either 2.0 or 1.2 + :return: Entity + """ + if isinstance(association, GoAssociation): + if gpad_gpi_output_version == "2.0": # print(json.dumps(association, indent=4)) gpi_obj = { 'id': str(association.subject.id), @@ -36,11 +36,36 @@ def convert_association(self, association) -> Entity: 'xrefs': "", # GAF does not have this field, but it's optional in GPI 'taxon': { 'id': str(association.subject.taxon) - } + }, + 'encoded_by': "" # GAF does not have this field, but it's optional in GPI + + } + return Entity(gpi_obj) + else: + gpi_obj = { + 'db': str(association.subject.id.split(":")[0]), + 'id': str(association.subject.id.split(":")[1]), + 'label': association.subject.label, # db_object_symbol, + 'full_name': association.subject.fullname, # db_object_name, + 'synonyms': association.subject.synonyms, + 'type': [gp_type_label_to_curie(association.subject.type[0])], # db_object_type, + 'parents': "", # GAF does not have this field, but it's optional in GPI + 'xrefs': "", # GAF does not have this field, but it's optional in GPI + 'taxon': { + 'id': str(association.subject.taxon) + }, + 'encoded_by': "" # GAF does not have this field, but it's optional in GPI + } return Entity(gpi_obj) - return None + return None + + +class GafGpiBridge(object): + + def __init__(self): + self.cache = [] def entities(self) -> List[Entity]: return list(self.cache) diff --git a/ontobio/io/qc.py b/ontobio/io/qc.py index f15e73f0..91aa08c9 100644 --- a/ontobio/io/qc.py +++ b/ontobio/io/qc.py @@ -919,7 +919,6 @@ def test(self, annotation: association.GoAssociation, config: assocparser.AssocP evidence = str(annotation.evidence.type) withfrom = annotation.evidence.with_support_from - if evidence in [iss_eco, isa_eco, iso_eco] and (withfrom is None or len(withfrom) == 0): return self._result(False) diff --git a/ontobio/model/association.py b/ontobio/model/association.py index 968dffab..f3231c0b 100644 --- a/ontobio/model/association.py +++ b/ontobio/model/association.py @@ -491,7 +491,7 @@ class GoAssociation: """ The internal model used by the parsers and qc Rules engine that all annotations are parsed into. - If an annotation textual line cannot be parsed into a GoAssociation then it is not a well formed line. + If an annotation textual line cannot be parsed into a GoAssociation then it is not a well-formed line. This class provides several methods to convert this GoAssociation into other representations, like GAF and GPAD of each version, as well as the old style dictionary Association that this class replaced (for compatibility if needed). @@ -501,7 +501,7 @@ class GoAssociation: """ source_line: Optional[str] subject: Subject - relation: Curie # This is the relation Curie + relation: Curie # This is the relation Curie object: Term negated: bool qualifiers: List[Curie] @@ -644,6 +644,12 @@ def to_gpad_2_0_tsv(self) -> List: """ props_list = ["{key}={value}".format(key=key, value=value) for key, value in self.properties] + gp_isoforms = None + if self.subject_extensions: + gp_isoforms = self.subject_extensions[0].term + if gp_isoforms: + self.subject.id = gp_isoforms + return [ str(self.subject.id), "NOT" if self.negated else "", @@ -656,7 +662,7 @@ def to_gpad_2_0_tsv(self) -> List: ymd_str(self.date, "-"), self.provided_by, ConjunctiveSet.list_to_str(self.object_extensions, - conjunct_to_str=lambda conj: conj.display()), + conjunct_to_str=lambda conj: conj.display()), "|".join(props_list) ] diff --git a/poetry.lock b/poetry.lock index 948be443..8087b3e0 100644 --- a/poetry.lock +++ b/poetry.lock @@ -28,109 +28,78 @@ docs = ["furo", "sphinx", "sphinx-copybutton"] lint = ["pre-commit"] test = ["hypothesis", "pytest", "pytest-benchmark[histogram]", "pytest-cov", "pytest-xdist", "sortedcollections", "sortedcontainers", "sphinx"] -[[package]] -name = "bleach" -version = "6.0.0" -description = "An easy safelist-based HTML-sanitizing tool." -category = "main" -optional = false -python-versions = ">=3.7" -files = [ - {file = "bleach-6.0.0-py3-none-any.whl", hash = "sha256:33c16e3353dbd13028ab4799a0f89a83f113405c766e9c122df8a06f5b85b3f4"}, - {file = "bleach-6.0.0.tar.gz", hash = "sha256:1a1a85c1595e07d8db14c5f09f09e6433502c51c595970edc090551f0db99414"}, -] - -[package.dependencies] -six = ">=1.9.0" -webencodings = "*" - -[package.extras] -css = ["tinycss2 (>=1.1.0,<1.2)"] - [[package]] name = "certifi" -version = "2023.7.22" +version = "2023.11.17" description = "Python package for providing Mozilla's CA Bundle." category = "main" optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, - {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, + {file = "certifi-2023.11.17-py3-none-any.whl", hash = "sha256:e036ab49d5b79556f99cfc2d9320b34cfbe5be05c5871b51de9329f0603b0474"}, + {file = "certifi-2023.11.17.tar.gz", hash = "sha256:9b469f3a900bf28dc19b8cfbf8019bf47f7fdd1a65a1d4ffb98fc14166beb4d1"}, ] [[package]] name = "cffi" -version = "1.15.1" +version = "1.16.0" description = "Foreign Function Interface for Python calling C code." category = "main" optional = false -python-versions = "*" +python-versions = ">=3.8" files = [ - {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, - {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, - {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, - {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, - {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, - {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, - {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, - {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, - {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, - {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, - {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, - {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, - {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, - {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, - {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, - {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, - {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, - {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, - {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, - {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, - {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, - {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, - {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, - {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, - {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, - {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, - {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, - {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, - {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, - {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, - {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, - {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, - {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, - {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, - {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, + {file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"}, + {file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"}, + {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"}, + {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"}, + {file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"}, + {file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"}, + {file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"}, + {file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"}, + {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"}, + {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"}, + {file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"}, + {file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"}, + {file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"}, + {file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"}, + {file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"}, + {file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"}, + {file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"}, + {file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"}, + {file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"}, + {file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"}, + {file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"}, + {file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"}, + {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"}, + {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"}, + {file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"}, + {file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"}, + {file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"}, ] [package.dependencies] @@ -164,87 +133,102 @@ files = [ [[package]] name = "charset-normalizer" -version = "3.2.0" +version = "3.3.2" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." category = "main" optional = false python-versions = ">=3.7.0" files = [ - {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, - {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, + {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, + {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, ] [[package]] @@ -276,121 +260,139 @@ files = [ [[package]] name = "contourpy" -version = "1.1.0" +version = "1.2.0" description = "Python library for calculating contours of 2D quadrilateral grids" category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "contourpy-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:89f06eff3ce2f4b3eb24c1055a26981bffe4e7264acd86f15b97e40530b794bc"}, - {file = "contourpy-1.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:dffcc2ddec1782dd2f2ce1ef16f070861af4fb78c69862ce0aab801495dda6a3"}, - {file = "contourpy-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25ae46595e22f93592d39a7eac3d638cda552c3e1160255258b695f7b58e5655"}, - {file = "contourpy-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:17cfaf5ec9862bc93af1ec1f302457371c34e688fbd381f4035a06cd47324f48"}, - {file = "contourpy-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:18a64814ae7bce73925131381603fff0116e2df25230dfc80d6d690aa6e20b37"}, - {file = "contourpy-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90c81f22b4f572f8a2110b0b741bb64e5a6427e0a198b2cdc1fbaf85f352a3aa"}, - {file = "contourpy-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:53cc3a40635abedbec7f1bde60f8c189c49e84ac180c665f2cd7c162cc454baa"}, - {file = "contourpy-1.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:1f795597073b09d631782e7245016a4323cf1cf0b4e06eef7ea6627e06a37ff2"}, - {file = "contourpy-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0b7b04ed0961647691cfe5d82115dd072af7ce8846d31a5fac6c142dcce8b882"}, - {file = "contourpy-1.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:27bc79200c742f9746d7dd51a734ee326a292d77e7d94c8af6e08d1e6c15d545"}, - {file = "contourpy-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:052cc634bf903c604ef1a00a5aa093c54f81a2612faedaa43295809ffdde885e"}, - {file = "contourpy-1.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9382a1c0bc46230fb881c36229bfa23d8c303b889b788b939365578d762b5c18"}, - {file = "contourpy-1.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5cec36c5090e75a9ac9dbd0ff4a8cf7cecd60f1b6dc23a374c7d980a1cd710e"}, - {file = "contourpy-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f0cbd657e9bde94cd0e33aa7df94fb73c1ab7799378d3b3f902eb8eb2e04a3a"}, - {file = "contourpy-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:181cbace49874f4358e2929aaf7ba84006acb76694102e88dd15af861996c16e"}, - {file = "contourpy-1.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:fb3b7d9e6243bfa1efb93ccfe64ec610d85cfe5aec2c25f97fbbd2e58b531256"}, - {file = "contourpy-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bcb41692aa09aeb19c7c213411854402f29f6613845ad2453d30bf421fe68fed"}, - {file = "contourpy-1.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5d123a5bc63cd34c27ff9c7ac1cd978909e9c71da12e05be0231c608048bb2ae"}, - {file = "contourpy-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:62013a2cf68abc80dadfd2307299bfa8f5aa0dcaec5b2954caeb5fa094171103"}, - {file = "contourpy-1.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0b6616375d7de55797d7a66ee7d087efe27f03d336c27cf1f32c02b8c1a5ac70"}, - {file = "contourpy-1.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:317267d915490d1e84577924bd61ba71bf8681a30e0d6c545f577363157e5e94"}, - {file = "contourpy-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d551f3a442655f3dcc1285723f9acd646ca5858834efeab4598d706206b09c9f"}, - {file = "contourpy-1.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:e7a117ce7df5a938fe035cad481b0189049e8d92433b4b33aa7fc609344aafa1"}, - {file = "contourpy-1.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:d4f26b25b4f86087e7d75e63212756c38546e70f2a92d2be44f80114826e1cd4"}, - {file = "contourpy-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bc00bb4225d57bff7ebb634646c0ee2a1298402ec10a5fe7af79df9a51c1bfd9"}, - {file = "contourpy-1.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:189ceb1525eb0655ab8487a9a9c41f42a73ba52d6789754788d1883fb06b2d8a"}, - {file = "contourpy-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f2931ed4741f98f74b410b16e5213f71dcccee67518970c42f64153ea9313b9"}, - {file = "contourpy-1.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:30f511c05fab7f12e0b1b7730ebdc2ec8deedcfb505bc27eb570ff47c51a8f15"}, - {file = "contourpy-1.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:143dde50520a9f90e4a2703f367cf8ec96a73042b72e68fcd184e1279962eb6f"}, - {file = "contourpy-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e94bef2580e25b5fdb183bf98a2faa2adc5b638736b2c0a4da98691da641316a"}, - {file = "contourpy-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ed614aea8462735e7d70141374bd7650afd1c3f3cb0c2dbbcbe44e14331bf002"}, - {file = "contourpy-1.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:438ba416d02f82b692e371858143970ed2eb6337d9cdbbede0d8ad9f3d7dd17d"}, - {file = "contourpy-1.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a698c6a7a432789e587168573a864a7ea374c6be8d4f31f9d87c001d5a843493"}, - {file = "contourpy-1.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:397b0ac8a12880412da3551a8cb5a187d3298a72802b45a3bd1805e204ad8439"}, - {file = "contourpy-1.1.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:a67259c2b493b00e5a4d0f7bfae51fb4b3371395e47d079a4446e9b0f4d70e76"}, - {file = "contourpy-1.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2b836d22bd2c7bb2700348e4521b25e077255ebb6ab68e351ab5aa91ca27e027"}, - {file = "contourpy-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:084eaa568400cfaf7179b847ac871582199b1b44d5699198e9602ecbbb5f6104"}, - {file = "contourpy-1.1.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:911ff4fd53e26b019f898f32db0d4956c9d227d51338fb3b03ec72ff0084ee5f"}, - {file = "contourpy-1.1.0.tar.gz", hash = "sha256:e53046c3863828d21d531cc3b53786e6580eb1ba02477e8681009b6aa0870b21"}, + {file = "contourpy-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0274c1cb63625972c0c007ab14dd9ba9e199c36ae1a231ce45d725cbcbfd10a8"}, + {file = "contourpy-1.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ab459a1cbbf18e8698399c595a01f6dcc5c138220ca3ea9e7e6126232d102bb4"}, + {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fdd887f17c2f4572ce548461e4f96396681212d858cae7bd52ba3310bc6f00f"}, + {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5d16edfc3fc09968e09ddffada434b3bf989bf4911535e04eada58469873e28e"}, + {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1c203f617abc0dde5792beb586f827021069fb6d403d7f4d5c2b543d87edceb9"}, + {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b69303ceb2e4d4f146bf82fda78891ef7bcd80c41bf16bfca3d0d7eb545448aa"}, + {file = "contourpy-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:884c3f9d42d7218304bc74a8a7693d172685c84bd7ab2bab1ee567b769696df9"}, + {file = "contourpy-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4a1b1208102be6e851f20066bf0e7a96b7d48a07c9b0cfe6d0d4545c2f6cadab"}, + {file = "contourpy-1.2.0-cp310-cp310-win32.whl", hash = "sha256:34b9071c040d6fe45d9826cbbe3727d20d83f1b6110d219b83eb0e2a01d79488"}, + {file = "contourpy-1.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:bd2f1ae63998da104f16a8b788f685e55d65760cd1929518fd94cd682bf03e41"}, + {file = "contourpy-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dd10c26b4eadae44783c45ad6655220426f971c61d9b239e6f7b16d5cdaaa727"}, + {file = "contourpy-1.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5c6b28956b7b232ae801406e529ad7b350d3f09a4fde958dfdf3c0520cdde0dd"}, + {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebeac59e9e1eb4b84940d076d9f9a6cec0064e241818bcb6e32124cc5c3e377a"}, + {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:139d8d2e1c1dd52d78682f505e980f592ba53c9f73bd6be102233e358b401063"}, + {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1e9dc350fb4c58adc64df3e0703ab076f60aac06e67d48b3848c23647ae4310e"}, + {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18fc2b4ed8e4a8fe849d18dce4bd3c7ea637758c6343a1f2bae1e9bd4c9f4686"}, + {file = "contourpy-1.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:16a7380e943a6d52472096cb7ad5264ecee36ed60888e2a3d3814991a0107286"}, + {file = "contourpy-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8d8faf05be5ec8e02a4d86f616fc2a0322ff4a4ce26c0f09d9f7fb5330a35c95"}, + {file = "contourpy-1.2.0-cp311-cp311-win32.whl", hash = "sha256:67b7f17679fa62ec82b7e3e611c43a016b887bd64fb933b3ae8638583006c6d6"}, + {file = "contourpy-1.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:99ad97258985328b4f207a5e777c1b44a83bfe7cf1f87b99f9c11d4ee477c4de"}, + {file = "contourpy-1.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:575bcaf957a25d1194903a10bc9f316c136c19f24e0985a2b9b5608bdf5dbfe0"}, + {file = "contourpy-1.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9e6c93b5b2dbcedad20a2f18ec22cae47da0d705d454308063421a3b290d9ea4"}, + {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:464b423bc2a009088f19bdf1f232299e8b6917963e2b7e1d277da5041f33a779"}, + {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:68ce4788b7d93e47f84edd3f1f95acdcd142ae60bc0e5493bfd120683d2d4316"}, + {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d7d1f8871998cdff5d2ff6a087e5e1780139abe2838e85b0b46b7ae6cc25399"}, + {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e739530c662a8d6d42c37c2ed52a6f0932c2d4a3e8c1f90692ad0ce1274abe0"}, + {file = "contourpy-1.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:247b9d16535acaa766d03037d8e8fb20866d054d3c7fbf6fd1f993f11fc60ca0"}, + {file = "contourpy-1.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:461e3ae84cd90b30f8d533f07d87c00379644205b1d33a5ea03381edc4b69431"}, + {file = "contourpy-1.2.0-cp312-cp312-win32.whl", hash = "sha256:1c2559d6cffc94890b0529ea7eeecc20d6fadc1539273aa27faf503eb4656d8f"}, + {file = "contourpy-1.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:491b1917afdd8638a05b611a56d46587d5a632cabead889a5440f7c638bc6ed9"}, + {file = "contourpy-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5fd1810973a375ca0e097dee059c407913ba35723b111df75671a1976efa04bc"}, + {file = "contourpy-1.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:999c71939aad2780f003979b25ac5b8f2df651dac7b38fb8ce6c46ba5abe6ae9"}, + {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7caf9b241464c404613512d5594a6e2ff0cc9cb5615c9475cc1d9b514218ae8"}, + {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:266270c6f6608340f6c9836a0fb9b367be61dde0c9a9a18d5ece97774105ff3e"}, + {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbd50d0a0539ae2e96e537553aff6d02c10ed165ef40c65b0e27e744a0f10af8"}, + {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11f8d2554e52f459918f7b8e6aa20ec2a3bce35ce95c1f0ef4ba36fbda306df5"}, + {file = "contourpy-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ce96dd400486e80ac7d195b2d800b03e3e6a787e2a522bfb83755938465a819e"}, + {file = "contourpy-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6d3364b999c62f539cd403f8123ae426da946e142312a514162adb2addd8d808"}, + {file = "contourpy-1.2.0-cp39-cp39-win32.whl", hash = "sha256:1c88dfb9e0c77612febebb6ac69d44a8d81e3dc60f993215425b62c1161353f4"}, + {file = "contourpy-1.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:78e6ad33cf2e2e80c5dfaaa0beec3d61face0fb650557100ee36db808bfa6843"}, + {file = "contourpy-1.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:be16975d94c320432657ad2402f6760990cb640c161ae6da1363051805fa8108"}, + {file = "contourpy-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b95a225d4948b26a28c08307a60ac00fb8671b14f2047fc5476613252a129776"}, + {file = "contourpy-1.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:0d7e03c0f9a4f90dc18d4e77e9ef4ec7b7bbb437f7f675be8e530d65ae6ef956"}, + {file = "contourpy-1.2.0.tar.gz", hash = "sha256:171f311cb758de7da13fc53af221ae47a5877be5a0843a9fe150818c51ed276a"}, ] [package.dependencies] -numpy = ">=1.16" +numpy = ">=1.20,<2.0" [package.extras] bokeh = ["bokeh", "selenium"] -docs = ["furo", "sphinx-copybutton"] -mypy = ["contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.2.0)", "types-Pillow"] +docs = ["furo", "sphinx (>=7.2)", "sphinx-copybutton"] +mypy = ["contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.6.1)", "types-Pillow"] test = ["Pillow", "contourpy[test-no-images]", "matplotlib"] -test-no-images = ["pytest", "pytest-cov", "wurlitzer"] +test-no-images = ["pytest", "pytest-cov", "pytest-xdist", "wurlitzer"] [[package]] name = "cryptography" -version = "41.0.3" +version = "42.0.2" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "cryptography-41.0.3-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:652627a055cb52a84f8c448185922241dd5217443ca194d5739b44612c5e6507"}, - {file = "cryptography-41.0.3-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:8f09daa483aedea50d249ef98ed500569841d6498aa9c9f4b0531b9964658922"}, - {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4fd871184321100fb400d759ad0cddddf284c4b696568204d281c902fc7b0d81"}, - {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84537453d57f55a50a5b6835622ee405816999a7113267739a1b4581f83535bd"}, - {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:3fb248989b6363906827284cd20cca63bb1a757e0a2864d4c1682a985e3dca47"}, - {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:42cb413e01a5d36da9929baa9d70ca90d90b969269e5a12d39c1e0d475010116"}, - {file = "cryptography-41.0.3-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:aeb57c421b34af8f9fe830e1955bf493a86a7996cc1338fe41b30047d16e962c"}, - {file = "cryptography-41.0.3-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:6af1c6387c531cd364b72c28daa29232162010d952ceb7e5ca8e2827526aceae"}, - {file = "cryptography-41.0.3-cp37-abi3-win32.whl", hash = "sha256:0d09fb5356f975974dbcb595ad2d178305e5050656affb7890a1583f5e02a306"}, - {file = "cryptography-41.0.3-cp37-abi3-win_amd64.whl", hash = "sha256:a983e441a00a9d57a4d7c91b3116a37ae602907a7618b882c8013b5762e80574"}, - {file = "cryptography-41.0.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5259cb659aa43005eb55a0e4ff2c825ca111a0da1814202c64d28a985d33b087"}, - {file = "cryptography-41.0.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:67e120e9a577c64fe1f611e53b30b3e69744e5910ff3b6e97e935aeb96005858"}, - {file = "cryptography-41.0.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:7efe8041897fe7a50863e51b77789b657a133c75c3b094e51b5e4b5cec7bf906"}, - {file = "cryptography-41.0.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ce785cf81a7bdade534297ef9e490ddff800d956625020ab2ec2780a556c313e"}, - {file = "cryptography-41.0.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:57a51b89f954f216a81c9d057bf1a24e2f36e764a1ca9a501a6964eb4a6800dd"}, - {file = "cryptography-41.0.3-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:4c2f0d35703d61002a2bbdcf15548ebb701cfdd83cdc12471d2bae80878a4207"}, - {file = "cryptography-41.0.3-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:23c2d778cf829f7d0ae180600b17e9fceea3c2ef8b31a99e3c694cbbf3a24b84"}, - {file = "cryptography-41.0.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:95dd7f261bb76948b52a5330ba5202b91a26fbac13ad0e9fc8a3ac04752058c7"}, - {file = "cryptography-41.0.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:41d7aa7cdfded09b3d73a47f429c298e80796c8e825ddfadc84c8a7f12df212d"}, - {file = "cryptography-41.0.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:d0d651aa754ef58d75cec6edfbd21259d93810b73f6ec246436a21b7841908de"}, - {file = "cryptography-41.0.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:ab8de0d091acbf778f74286f4989cf3d1528336af1b59f3e5d2ebca8b5fe49e1"}, - {file = "cryptography-41.0.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a74fbcdb2a0d46fe00504f571a2a540532f4c188e6ccf26f1f178480117b33c4"}, - {file = "cryptography-41.0.3.tar.gz", hash = "sha256:6d192741113ef5e30d89dcb5b956ef4e1578f304708701b8b73d38e3e1461f34"}, + {file = "cryptography-42.0.2-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:701171f825dcab90969596ce2af253143b93b08f1a716d4b2a9d2db5084ef7be"}, + {file = "cryptography-42.0.2-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:61321672b3ac7aade25c40449ccedbc6db72c7f5f0fdf34def5e2f8b51ca530d"}, + {file = "cryptography-42.0.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea2c3ffb662fec8bbbfce5602e2c159ff097a4631d96235fcf0fb00e59e3ece4"}, + {file = "cryptography-42.0.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b15c678f27d66d247132cbf13df2f75255627bcc9b6a570f7d2fd08e8c081d2"}, + {file = "cryptography-42.0.2-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:8e88bb9eafbf6a4014d55fb222e7360eef53e613215085e65a13290577394529"}, + {file = "cryptography-42.0.2-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:a047682d324ba56e61b7ea7c7299d51e61fd3bca7dad2ccc39b72bd0118d60a1"}, + {file = "cryptography-42.0.2-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:36d4b7c4be6411f58f60d9ce555a73df8406d484ba12a63549c88bd64f7967f1"}, + {file = "cryptography-42.0.2-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:a00aee5d1b6c20620161984f8ab2ab69134466c51f58c052c11b076715e72929"}, + {file = "cryptography-42.0.2-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:b97fe7d7991c25e6a31e5d5e795986b18fbbb3107b873d5f3ae6dc9a103278e9"}, + {file = "cryptography-42.0.2-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:5fa82a26f92871eca593b53359c12ad7949772462f887c35edaf36f87953c0e2"}, + {file = "cryptography-42.0.2-cp37-abi3-win32.whl", hash = "sha256:4b063d3413f853e056161eb0c7724822a9740ad3caa24b8424d776cebf98e7ee"}, + {file = "cryptography-42.0.2-cp37-abi3-win_amd64.whl", hash = "sha256:841ec8af7a8491ac76ec5a9522226e287187a3107e12b7d686ad354bb78facee"}, + {file = "cryptography-42.0.2-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:55d1580e2d7e17f45d19d3b12098e352f3a37fe86d380bf45846ef257054b242"}, + {file = "cryptography-42.0.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28cb2c41f131a5758d6ba6a0504150d644054fd9f3203a1e8e8d7ac3aea7f73a"}, + {file = "cryptography-42.0.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9097a208875fc7bbeb1286d0125d90bdfed961f61f214d3f5be62cd4ed8a446"}, + {file = "cryptography-42.0.2-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:44c95c0e96b3cb628e8452ec060413a49002a247b2b9938989e23a2c8291fc90"}, + {file = "cryptography-42.0.2-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:2f9f14185962e6a04ab32d1abe34eae8a9001569ee4edb64d2304bf0d65c53f3"}, + {file = "cryptography-42.0.2-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:09a77e5b2e8ca732a19a90c5bca2d124621a1edb5438c5daa2d2738bfeb02589"}, + {file = "cryptography-42.0.2-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:ad28cff53f60d99a928dfcf1e861e0b2ceb2bc1f08a074fdd601b314e1cc9e0a"}, + {file = "cryptography-42.0.2-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:130c0f77022b2b9c99d8cebcdd834d81705f61c68e91ddd614ce74c657f8b3ea"}, + {file = "cryptography-42.0.2-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:fa3dec4ba8fb6e662770b74f62f1a0c7d4e37e25b58b2bf2c1be4c95372b4a33"}, + {file = "cryptography-42.0.2-cp39-abi3-win32.whl", hash = "sha256:3dbd37e14ce795b4af61b89b037d4bc157f2cb23e676fa16932185a04dfbf635"}, + {file = "cryptography-42.0.2-cp39-abi3-win_amd64.whl", hash = "sha256:8a06641fb07d4e8f6c7dda4fc3f8871d327803ab6542e33831c7ccfdcb4d0ad6"}, + {file = "cryptography-42.0.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:087887e55e0b9c8724cf05361357875adb5c20dec27e5816b653492980d20380"}, + {file = "cryptography-42.0.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:a7ef8dd0bf2e1d0a27042b231a3baac6883cdd5557036f5e8df7139255feaac6"}, + {file = "cryptography-42.0.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4383b47f45b14459cab66048d384614019965ba6c1a1a141f11b5a551cace1b2"}, + {file = "cryptography-42.0.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:fbeb725c9dc799a574518109336acccaf1303c30d45c075c665c0793c2f79a7f"}, + {file = "cryptography-42.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:320948ab49883557a256eab46149df79435a22d2fefd6a66fe6946f1b9d9d008"}, + {file = "cryptography-42.0.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:5ef9bc3d046ce83c4bbf4c25e1e0547b9c441c01d30922d812e887dc5f125c12"}, + {file = "cryptography-42.0.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:52ed9ebf8ac602385126c9a2fe951db36f2cb0c2538d22971487f89d0de4065a"}, + {file = "cryptography-42.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:141e2aa5ba100d3788c0ad7919b288f89d1fe015878b9659b307c9ef867d3a65"}, + {file = "cryptography-42.0.2.tar.gz", hash = "sha256:e0ec52ba3c7f1b7d813cd52649a5b3ef1fc0d433219dc8c93827c57eab6cf888"}, ] [package.dependencies] -cffi = ">=1.12" +cffi = {version = ">=1.12", markers = "platform_python_implementation != \"PyPy\""} [package.extras] docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] -docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"] +docstest = ["pyenchant (>=1.6.11)", "readme-renderer", "sphinxcontrib-spelling (>=4.0.1)"] nox = ["nox"] -pep8test = ["black", "check-sdist", "mypy", "ruff"] +pep8test = ["check-sdist", "click", "mypy", "ruff"] sdist = ["build"] ssh = ["bcrypt (>=3.1.5)"] -test = ["pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] +test = ["certifi", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] test-randomorder = ["pytest-randomly"] [[package]] name = "cycler" -version = "0.11.0" +version = "0.12.1" description = "Composable style cycles" category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "cycler-0.11.0-py3-none-any.whl", hash = "sha256:3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3"}, - {file = "cycler-0.11.0.tar.gz", hash = "sha256:9c87405839a19696e837b3b818fed3f5f69f16f1eec1a1ad77e043dcea9c772f"}, + {file = "cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30"}, + {file = "cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c"}, ] +[package.extras] +docs = ["ipython", "matplotlib", "numpydoc", "sphinx"] +tests = ["pytest", "pytest-cov", "pytest-xdist"] + [[package]] name = "dacite" version = "1.8.1" @@ -419,14 +421,14 @@ files = [ [[package]] name = "diskcache" -version = "5.6.1" +version = "5.6.3" description = "Disk Cache -- Disk and file backed persistent cache." category = "main" optional = false python-versions = ">=3" files = [ - {file = "diskcache-5.6.1-py3-none-any.whl", hash = "sha256:558c6a2d5d7c721bb00e40711803d6804850c9f76c426ed81ecc627fe9d2ce2d"}, - {file = "diskcache-5.6.1.tar.gz", hash = "sha256:e4c978532feff5814c4cc00fe1e11e40501985946643d73220d41ee7737c72c3"}, + {file = "diskcache-5.6.3-py3-none-any.whl", hash = "sha256:5e31b2d5fbad117cc363ebaf6b689474db18a1f6438bc82358b024abd4c2ca19"}, + {file = "diskcache-5.6.3.tar.gz", hash = "sha256:2c3a3fa2743d8535d832ec61c2054a1641f41775aa7c556758a109941e33e4fc"}, ] [[package]] @@ -443,14 +445,14 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.1.3" +version = "1.2.0" description = "Backport of PEP 654 (exception groups)" category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.1.3-py3-none-any.whl", hash = "sha256:343280667a4585d195ca1cf9cef84a4e178c4b6cf2274caef9859782b567d5e3"}, - {file = "exceptiongroup-1.1.3.tar.gz", hash = "sha256:097acd85d473d75af5bb98e41b61ff7fe35efe6675e4f9370ec6ec5126d160e9"}, + {file = "exceptiongroup-1.2.0-py3-none-any.whl", hash = "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14"}, + {file = "exceptiongroup-1.2.0.tar.gz", hash = "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68"}, ] [package.extras] @@ -458,52 +460,60 @@ test = ["pytest (>=6)"] [[package]] name = "fonttools" -version = "4.42.1" +version = "4.47.2" description = "Tools to manipulate font files" category = "main" optional = false python-versions = ">=3.8" files = [ - {file = "fonttools-4.42.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ed1a13a27f59d1fc1920394a7f596792e9d546c9ca5a044419dca70c37815d7c"}, - {file = "fonttools-4.42.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c9b1ce7a45978b821a06d375b83763b27a3a5e8a2e4570b3065abad240a18760"}, - {file = "fonttools-4.42.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f720fa82a11c0f9042376fd509b5ed88dab7e3cd602eee63a1af08883b37342b"}, - {file = "fonttools-4.42.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db55cbaea02a20b49fefbd8e9d62bd481aaabe1f2301dabc575acc6b358874fa"}, - {file = "fonttools-4.42.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3a35981d90feebeaef05e46e33e6b9e5b5e618504672ca9cd0ff96b171e4bfff"}, - {file = "fonttools-4.42.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:68a02bbe020dc22ee0540e040117535f06df9358106d3775e8817d826047f3fd"}, - {file = "fonttools-4.42.1-cp310-cp310-win32.whl", hash = "sha256:12a7c247d1b946829bfa2f331107a629ea77dc5391dfd34fdcd78efa61f354ca"}, - {file = "fonttools-4.42.1-cp310-cp310-win_amd64.whl", hash = "sha256:a398bdadb055f8de69f62b0fc70625f7cbdab436bbb31eef5816e28cab083ee8"}, - {file = "fonttools-4.42.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:689508b918332fb40ce117131633647731d098b1b10d092234aa959b4251add5"}, - {file = "fonttools-4.42.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9e36344e48af3e3bde867a1ca54f97c308735dd8697005c2d24a86054a114a71"}, - {file = "fonttools-4.42.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19b7db825c8adee96fac0692e6e1ecd858cae9affb3b4812cdb9d934a898b29e"}, - {file = "fonttools-4.42.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:113337c2d29665839b7d90b39f99b3cac731f72a0eda9306165a305c7c31d341"}, - {file = "fonttools-4.42.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:37983b6bdab42c501202500a2be3a572f50d4efe3237e0686ee9d5f794d76b35"}, - {file = "fonttools-4.42.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6ed2662a3d9c832afa36405f8748c250be94ae5dfc5283d668308391f2102861"}, - {file = "fonttools-4.42.1-cp311-cp311-win32.whl", hash = "sha256:179737095eb98332a2744e8f12037b2977f22948cf23ff96656928923ddf560a"}, - {file = "fonttools-4.42.1-cp311-cp311-win_amd64.whl", hash = "sha256:f2b82f46917d8722e6b5eafeefb4fb585d23babd15d8246c664cd88a5bddd19c"}, - {file = "fonttools-4.42.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:62f481ac772fd68901573956231aea3e4b1ad87b9b1089a61613a91e2b50bb9b"}, - {file = "fonttools-4.42.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f2f806990160d1ce42d287aa419df3ffc42dfefe60d473695fb048355fe0c6a0"}, - {file = "fonttools-4.42.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:db372213d39fa33af667c2aa586a0c1235e88e9c850f5dd5c8e1f17515861868"}, - {file = "fonttools-4.42.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d18fc642fd0ac29236ff88ecfccff229ec0386090a839dd3f1162e9a7944a40"}, - {file = "fonttools-4.42.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:8708b98c278012ad267ee8a7433baeb809948855e81922878118464b274c909d"}, - {file = "fonttools-4.42.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c95b0724a6deea2c8c5d3222191783ced0a2f09bd6d33f93e563f6f1a4b3b3a4"}, - {file = "fonttools-4.42.1-cp38-cp38-win32.whl", hash = "sha256:4aa79366e442dbca6e2c8595645a3a605d9eeabdb7a094d745ed6106816bef5d"}, - {file = "fonttools-4.42.1-cp38-cp38-win_amd64.whl", hash = "sha256:acb47f6f8680de24c1ab65ebde39dd035768e2a9b571a07c7b8da95f6c8815fd"}, - {file = "fonttools-4.42.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5fb289b7a815638a7613d46bcf324c9106804725b2bb8ad913c12b6958ffc4ec"}, - {file = "fonttools-4.42.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:53eb5091ddc8b1199330bb7b4a8a2e7995ad5d43376cadce84523d8223ef3136"}, - {file = "fonttools-4.42.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46a0ec8adbc6ff13494eb0c9c2e643b6f009ce7320cf640de106fb614e4d4360"}, - {file = "fonttools-4.42.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7cc7d685b8eeca7ae69dc6416833fbfea61660684b7089bca666067cb2937dcf"}, - {file = "fonttools-4.42.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:be24fcb80493b2c94eae21df70017351851652a37de514de553435b256b2f249"}, - {file = "fonttools-4.42.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:515607ec756d7865f23070682622c49d922901943697871fc292277cf1e71967"}, - {file = "fonttools-4.42.1-cp39-cp39-win32.whl", hash = "sha256:0eb79a2da5eb6457a6f8ab904838454accc7d4cccdaff1fd2bd3a0679ea33d64"}, - {file = "fonttools-4.42.1-cp39-cp39-win_amd64.whl", hash = "sha256:7286aed4ea271df9eab8d7a9b29e507094b51397812f7ce051ecd77915a6e26b"}, - {file = "fonttools-4.42.1-py3-none-any.whl", hash = "sha256:9398f244e28e0596e2ee6024f808b06060109e33ed38dcc9bded452fd9bbb853"}, - {file = "fonttools-4.42.1.tar.gz", hash = "sha256:c391cd5af88aacaf41dd7cfb96eeedfad297b5899a39e12f4c2c3706d0a3329d"}, + {file = "fonttools-4.47.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3b629108351d25512d4ea1a8393a2dba325b7b7d7308116b605ea3f8e1be88df"}, + {file = "fonttools-4.47.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c19044256c44fe299d9a73456aabee4b4d06c6b930287be93b533b4737d70aa1"}, + {file = "fonttools-4.47.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b8be28c036b9f186e8c7eaf8a11b42373e7e4949f9e9f370202b9da4c4c3f56c"}, + {file = "fonttools-4.47.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f83a4daef6d2a202acb9bf572958f91cfde5b10c8ee7fb1d09a4c81e5d851fd8"}, + {file = "fonttools-4.47.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:4a5a5318ba5365d992666ac4fe35365f93004109d18858a3e18ae46f67907670"}, + {file = "fonttools-4.47.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8f57ecd742545362a0f7186774b2d1c53423ed9ece67689c93a1055b236f638c"}, + {file = "fonttools-4.47.2-cp310-cp310-win32.whl", hash = "sha256:a1c154bb85dc9a4cf145250c88d112d88eb414bad81d4cb524d06258dea1bdc0"}, + {file = "fonttools-4.47.2-cp310-cp310-win_amd64.whl", hash = "sha256:3e2b95dce2ead58fb12524d0ca7d63a63459dd489e7e5838c3cd53557f8933e1"}, + {file = "fonttools-4.47.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:29495d6d109cdbabe73cfb6f419ce67080c3ef9ea1e08d5750240fd4b0c4763b"}, + {file = "fonttools-4.47.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0a1d313a415eaaba2b35d6cd33536560deeebd2ed758b9bfb89ab5d97dc5deac"}, + {file = "fonttools-4.47.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:90f898cdd67f52f18049250a6474185ef6544c91f27a7bee70d87d77a8daf89c"}, + {file = "fonttools-4.47.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3480eeb52770ff75140fe7d9a2ec33fb67b07efea0ab5129c7e0c6a639c40c70"}, + {file = "fonttools-4.47.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0255dbc128fee75fb9be364806b940ed450dd6838672a150d501ee86523ac61e"}, + {file = "fonttools-4.47.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f791446ff297fd5f1e2247c188de53c1bfb9dd7f0549eba55b73a3c2087a2703"}, + {file = "fonttools-4.47.2-cp311-cp311-win32.whl", hash = "sha256:740947906590a878a4bde7dd748e85fefa4d470a268b964748403b3ab2aeed6c"}, + {file = "fonttools-4.47.2-cp311-cp311-win_amd64.whl", hash = "sha256:63fbed184979f09a65aa9c88b395ca539c94287ba3a364517698462e13e457c9"}, + {file = "fonttools-4.47.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:4ec558c543609e71b2275c4894e93493f65d2f41c15fe1d089080c1d0bb4d635"}, + {file = "fonttools-4.47.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e040f905d542362e07e72e03612a6270c33d38281fd573160e1003e43718d68d"}, + {file = "fonttools-4.47.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6dd58cc03016b281bd2c74c84cdaa6bd3ce54c5a7f47478b7657b930ac3ed8eb"}, + {file = "fonttools-4.47.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:32ab2e9702dff0dd4510c7bb958f265a8d3dd5c0e2547e7b5f7a3df4979abb07"}, + {file = "fonttools-4.47.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3a808f3c1d1df1f5bf39be869b6e0c263570cdafb5bdb2df66087733f566ea71"}, + {file = "fonttools-4.47.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ac71e2e201df041a2891067dc36256755b1229ae167edbdc419b16da78732c2f"}, + {file = "fonttools-4.47.2-cp312-cp312-win32.whl", hash = "sha256:69731e8bea0578b3c28fdb43dbf95b9386e2d49a399e9a4ad736b8e479b08085"}, + {file = "fonttools-4.47.2-cp312-cp312-win_amd64.whl", hash = "sha256:b3e1304e5f19ca861d86a72218ecce68f391646d85c851742d265787f55457a4"}, + {file = "fonttools-4.47.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:254d9a6f7be00212bf0c3159e0a420eb19c63793b2c05e049eb337f3023c5ecc"}, + {file = "fonttools-4.47.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:eabae77a07c41ae0b35184894202305c3ad211a93b2eb53837c2a1143c8bc952"}, + {file = "fonttools-4.47.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a86a5ab2873ed2575d0fcdf1828143cfc6b977ac448e3dc616bb1e3d20efbafa"}, + {file = "fonttools-4.47.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13819db8445a0cec8c3ff5f243af6418ab19175072a9a92f6cc8ca7d1452754b"}, + {file = "fonttools-4.47.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:4e743935139aa485fe3253fc33fe467eab6ea42583fa681223ea3f1a93dd01e6"}, + {file = "fonttools-4.47.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d49ce3ea7b7173faebc5664872243b40cf88814ca3eb135c4a3cdff66af71946"}, + {file = "fonttools-4.47.2-cp38-cp38-win32.whl", hash = "sha256:94208ea750e3f96e267f394d5588579bb64cc628e321dbb1d4243ffbc291b18b"}, + {file = "fonttools-4.47.2-cp38-cp38-win_amd64.whl", hash = "sha256:0f750037e02beb8b3569fbff701a572e62a685d2a0e840d75816592280e5feae"}, + {file = "fonttools-4.47.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3d71606c9321f6701642bd4746f99b6089e53d7e9817fc6b964e90d9c5f0ecc6"}, + {file = "fonttools-4.47.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:86e0427864c6c91cf77f16d1fb9bf1bbf7453e824589e8fb8461b6ee1144f506"}, + {file = "fonttools-4.47.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a00bd0e68e88987dcc047ea31c26d40a3c61185153b03457956a87e39d43c37"}, + {file = "fonttools-4.47.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5d77479fb885ef38a16a253a2f4096bc3d14e63a56d6246bfdb56365a12b20c"}, + {file = "fonttools-4.47.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5465df494f20a7d01712b072ae3ee9ad2887004701b95cb2cc6dcb9c2c97a899"}, + {file = "fonttools-4.47.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4c811d3c73b6abac275babb8aa439206288f56fdb2c6f8835e3d7b70de8937a7"}, + {file = "fonttools-4.47.2-cp39-cp39-win32.whl", hash = "sha256:5b60e3afa9635e3dfd3ace2757039593e3bd3cf128be0ddb7a1ff4ac45fa5a50"}, + {file = "fonttools-4.47.2-cp39-cp39-win_amd64.whl", hash = "sha256:7ee48bd9d6b7e8f66866c9090807e3a4a56cf43ffad48962725a190e0dd774c8"}, + {file = "fonttools-4.47.2-py3-none-any.whl", hash = "sha256:7eb7ad665258fba68fd22228a09f347469d95a97fb88198e133595947a20a184"}, + {file = "fonttools-4.47.2.tar.gz", hash = "sha256:7df26dd3650e98ca45f1e29883c96a0b9f5bb6af8d632a6a108bc744fa0bd9b3"}, ] [package.extras] -all = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "fs (>=2.2.0,<3)", "lxml (>=4.0,<5)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres", "scipy", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=15.0.0)", "xattr", "zopfli (>=0.1.4)"] +all = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "fs (>=2.2.0,<3)", "lxml (>=4.0,<5)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres", "pycairo", "scipy", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=15.1.0)", "xattr", "zopfli (>=0.1.4)"] graphite = ["lz4 (>=1.7.4.2)"] -interpolatable = ["munkres", "scipy"] +interpolatable = ["munkres", "pycairo", "scipy"] lxml = ["lxml (>=4.0,<5)"] pathops = ["skia-pathops (>=0.5.0)"] plot = ["matplotlib"] @@ -511,38 +521,38 @@ repacker = ["uharfbuzz (>=0.23.0)"] symfont = ["sympy"] type1 = ["xattr"] ufo = ["fs (>=2.2.0,<3)"] -unicode = ["unicodedata2 (>=15.0.0)"] +unicode = ["unicodedata2 (>=15.1.0)"] woff = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "zopfli (>=0.1.4)"] [[package]] name = "idna" -version = "3.4" +version = "3.6" description = "Internationalized Domain Names in Applications (IDNA)" category = "main" optional = false python-versions = ">=3.5" files = [ - {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, - {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, + {file = "idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"}, + {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"}, ] [[package]] name = "importlib-metadata" -version = "6.8.0" +version = "6.11.0" description = "Read metadata from Python packages" category = "main" optional = false python-versions = ">=3.8" files = [ - {file = "importlib_metadata-6.8.0-py3-none-any.whl", hash = "sha256:3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb"}, - {file = "importlib_metadata-6.8.0.tar.gz", hash = "sha256:dbace7892d8c0c4ac1ad096662232f831d4e64f4c4545bd53016a3e9d4654743"}, + {file = "importlib_metadata-6.11.0-py3-none-any.whl", hash = "sha256:f0afba6205ad8f8947c7d338b5342d5db2afbfd82f9cbef7879a9539cc12eb9b"}, + {file = "importlib_metadata-6.11.0.tar.gz", hash = "sha256:1231cf92d825c9e03cfc4da076a16de6422c863558229ea0b22b675657463443"}, ] [package.dependencies] zipp = ">=0.5" [package.extras] -docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] perf = ["ipython"] testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)", "pytest-ruff"] @@ -666,14 +676,14 @@ testing-libs = ["simplejson", "ujson"] [[package]] name = "keyring" -version = "24.2.0" +version = "24.3.0" description = "Store and access your passwords safely." category = "main" optional = false python-versions = ">=3.8" files = [ - {file = "keyring-24.2.0-py3-none-any.whl", hash = "sha256:4901caaf597bfd3bbd78c9a0c7c4c29fcd8310dab2cffefe749e916b6527acd6"}, - {file = "keyring-24.2.0.tar.gz", hash = "sha256:ca0746a19ec421219f4d713f848fa297a661a8a8c1504867e55bfb5e09091509"}, + {file = "keyring-24.3.0-py3-none-any.whl", hash = "sha256:4446d35d636e6a10b8bce7caa66913dd9eca5fd222ca03a3d42c38608ac30836"}, + {file = "keyring-24.3.0.tar.gz", hash = "sha256:e730ecffd309658a08ee82535a3b5ec4b4c8669a9be11efb66249d8e0aeb9a25"}, ] [package.dependencies] @@ -684,9 +694,9 @@ pywin32-ctypes = {version = ">=0.2.0", markers = "sys_platform == \"win32\""} SecretStorage = {version = ">=3.2", markers = "sys_platform == \"linux\""} [package.extras] -completion = ["shtab"] -docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-mypy (>=0.9.1)", "pytest-ruff"] +completion = ["shtab (>=1.1.0)"] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] +testing = ["pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-ruff"] [[package]] name = "kiwisolver" @@ -829,85 +839,72 @@ testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"] [[package]] name = "marshmallow" -version = "3.20.1" +version = "3.20.2" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." category = "main" optional = false python-versions = ">=3.8" files = [ - {file = "marshmallow-3.20.1-py3-none-any.whl", hash = "sha256:684939db93e80ad3561392f47be0230743131560a41c5110684c16e21ade0a5c"}, - {file = "marshmallow-3.20.1.tar.gz", hash = "sha256:5d2371bbe42000f2b3fb5eaa065224df7d8f8597bc19a1bbfa5bfe7fba8da889"}, + {file = "marshmallow-3.20.2-py3-none-any.whl", hash = "sha256:c21d4b98fee747c130e6bc8f45c4b3199ea66bc00c12ee1f639f0aeca034d5e9"}, + {file = "marshmallow-3.20.2.tar.gz", hash = "sha256:4c1daff273513dc5eb24b219a8035559dc573c8f322558ef85f5438ddd1236dd"}, ] [package.dependencies] packaging = ">=17.0" [package.extras] -dev = ["flake8 (==6.0.0)", "flake8-bugbear (==23.7.10)", "mypy (==1.4.1)", "pre-commit (>=2.4,<4.0)", "pytest", "pytz", "simplejson", "tox"] -docs = ["alabaster (==0.7.13)", "autodocsumm (==0.2.11)", "sphinx (==7.0.1)", "sphinx-issues (==3.0.1)", "sphinx-version-warning (==1.1.2)"] -lint = ["flake8 (==6.0.0)", "flake8-bugbear (==23.7.10)", "mypy (==1.4.1)", "pre-commit (>=2.4,<4.0)"] +dev = ["pre-commit (>=2.4,<4.0)", "pytest", "pytz", "simplejson", "tox"] +docs = ["alabaster (==0.7.15)", "autodocsumm (==0.2.12)", "sphinx (==7.2.6)", "sphinx-issues (==3.0.1)", "sphinx-version-warning (==1.1.2)"] +lint = ["pre-commit (>=2.4,<4.0)"] tests = ["pytest", "pytz", "simplejson"] [[package]] name = "matplotlib" -version = "3.7.2" +version = "3.8.2" description = "Python plotting package" category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "matplotlib-3.7.2-cp310-cp310-macosx_10_12_universal2.whl", hash = "sha256:2699f7e73a76d4c110f4f25be9d2496d6ab4f17345307738557d345f099e07de"}, - {file = "matplotlib-3.7.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:a8035ba590658bae7562786c9cc6ea1a84aa49d3afab157e414c9e2ea74f496d"}, - {file = "matplotlib-3.7.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2f8e4a49493add46ad4a8c92f63e19d548b2b6ebbed75c6b4c7f46f57d36cdd1"}, - {file = "matplotlib-3.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71667eb2ccca4c3537d9414b1bc00554cb7f91527c17ee4ec38027201f8f1603"}, - {file = "matplotlib-3.7.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:152ee0b569a37630d8628534c628456b28686e085d51394da6b71ef84c4da201"}, - {file = "matplotlib-3.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:070f8dddd1f5939e60aacb8fa08f19551f4b0140fab16a3669d5cd6e9cb28fc8"}, - {file = "matplotlib-3.7.2-cp310-cp310-win32.whl", hash = "sha256:fdbb46fad4fb47443b5b8ac76904b2e7a66556844f33370861b4788db0f8816a"}, - {file = "matplotlib-3.7.2-cp310-cp310-win_amd64.whl", hash = "sha256:23fb1750934e5f0128f9423db27c474aa32534cec21f7b2153262b066a581fd1"}, - {file = "matplotlib-3.7.2-cp311-cp311-macosx_10_12_universal2.whl", hash = "sha256:30e1409b857aa8a747c5d4f85f63a79e479835f8dffc52992ac1f3f25837b544"}, - {file = "matplotlib-3.7.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:50e0a55ec74bf2d7a0ebf50ac580a209582c2dd0f7ab51bc270f1b4a0027454e"}, - {file = "matplotlib-3.7.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ac60daa1dc83e8821eed155796b0f7888b6b916cf61d620a4ddd8200ac70cd64"}, - {file = "matplotlib-3.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:305e3da477dc8607336ba10bac96986d6308d614706cae2efe7d3ffa60465b24"}, - {file = "matplotlib-3.7.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c308b255efb9b06b23874236ec0f10f026673ad6515f602027cc8ac7805352d"}, - {file = "matplotlib-3.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60c521e21031632aa0d87ca5ba0c1c05f3daacadb34c093585a0be6780f698e4"}, - {file = "matplotlib-3.7.2-cp311-cp311-win32.whl", hash = "sha256:26bede320d77e469fdf1bde212de0ec889169b04f7f1179b8930d66f82b30cbc"}, - {file = "matplotlib-3.7.2-cp311-cp311-win_amd64.whl", hash = "sha256:af4860132c8c05261a5f5f8467f1b269bf1c7c23902d75f2be57c4a7f2394b3e"}, - {file = "matplotlib-3.7.2-cp38-cp38-macosx_10_12_universal2.whl", hash = "sha256:a1733b8e84e7e40a9853e505fe68cc54339f97273bdfe6f3ed980095f769ddc7"}, - {file = "matplotlib-3.7.2-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:d9881356dc48e58910c53af82b57183879129fa30492be69058c5b0d9fddf391"}, - {file = "matplotlib-3.7.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f081c03f413f59390a80b3e351cc2b2ea0205839714dbc364519bcf51f4b56ca"}, - {file = "matplotlib-3.7.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:1cd120fca3407a225168238b790bd5c528f0fafde6172b140a2f3ab7a4ea63e9"}, - {file = "matplotlib-3.7.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a2c1590b90aa7bd741b54c62b78de05d4186271e34e2377e0289d943b3522273"}, - {file = "matplotlib-3.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6d2ff3c984b8a569bc1383cd468fc06b70d7b59d5c2854ca39f1436ae8394117"}, - {file = "matplotlib-3.7.2-cp38-cp38-win32.whl", hash = "sha256:5dea00b62d28654b71ca92463656d80646675628d0828e08a5f3b57e12869e13"}, - {file = "matplotlib-3.7.2-cp38-cp38-win_amd64.whl", hash = "sha256:0f506a1776ee94f9e131af1ac6efa6e5bc7cb606a3e389b0ccb6e657f60bb676"}, - {file = "matplotlib-3.7.2-cp39-cp39-macosx_10_12_universal2.whl", hash = "sha256:6515e878f91894c2e4340d81f0911857998ccaf04dbc1bba781e3d89cbf70608"}, - {file = "matplotlib-3.7.2-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:71f7a8c6b124e904db550f5b9fe483d28b896d4135e45c4ea381ad3b8a0e3256"}, - {file = "matplotlib-3.7.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:12f01b92ecd518e0697da4d97d163b2b3aa55eb3eb4e2c98235b3396d7dad55f"}, - {file = "matplotlib-3.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a7e28d6396563955f7af437894a36bf2b279462239a41028323e04b85179058b"}, - {file = "matplotlib-3.7.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbcf59334ff645e6a67cd5f78b4b2cdb76384cdf587fa0d2dc85f634a72e1a3e"}, - {file = "matplotlib-3.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:318c89edde72ff95d8df67d82aca03861240512994a597a435a1011ba18dbc7f"}, - {file = "matplotlib-3.7.2-cp39-cp39-win32.whl", hash = "sha256:ce55289d5659b5b12b3db4dc9b7075b70cef5631e56530f14b2945e8836f2d20"}, - {file = "matplotlib-3.7.2-cp39-cp39-win_amd64.whl", hash = "sha256:2ecb5be2b2815431c81dc115667e33da0f5a1bcf6143980d180d09a717c4a12e"}, - {file = "matplotlib-3.7.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:fdcd28360dbb6203fb5219b1a5658df226ac9bebc2542a9e8f457de959d713d0"}, - {file = "matplotlib-3.7.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0c3cca3e842b11b55b52c6fb8bd6a4088693829acbfcdb3e815fa9b7d5c92c1b"}, - {file = "matplotlib-3.7.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ebf577c7a6744e9e1bd3fee45fc74a02710b214f94e2bde344912d85e0c9af7c"}, - {file = "matplotlib-3.7.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:936bba394682049919dda062d33435b3be211dc3dcaa011e09634f060ec878b2"}, - {file = "matplotlib-3.7.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:bc221ffbc2150458b1cd71cdd9ddd5bb37962b036e41b8be258280b5b01da1dd"}, - {file = "matplotlib-3.7.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:35d74ebdb3f71f112b36c2629cf32323adfbf42679e2751252acd468f5001c07"}, - {file = "matplotlib-3.7.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:717157e61b3a71d3d26ad4e1770dc85156c9af435659a25ee6407dc866cb258d"}, - {file = "matplotlib-3.7.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:20f844d6be031948148ba49605c8b96dfe7d3711d1b63592830d650622458c11"}, - {file = "matplotlib-3.7.2.tar.gz", hash = "sha256:a8cdb91dddb04436bd2f098b8fdf4b81352e68cf4d2c6756fcc414791076569b"}, + {file = "matplotlib-3.8.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:09796f89fb71a0c0e1e2f4bdaf63fb2cefc84446bb963ecdeb40dfee7dfa98c7"}, + {file = "matplotlib-3.8.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6f9c6976748a25e8b9be51ea028df49b8e561eed7809146da7a47dbecebab367"}, + {file = "matplotlib-3.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b78e4f2cedf303869b782071b55fdde5987fda3038e9d09e58c91cc261b5ad18"}, + {file = "matplotlib-3.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4e208f46cf6576a7624195aa047cb344a7f802e113bb1a06cfd4bee431de5e31"}, + {file = "matplotlib-3.8.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:46a569130ff53798ea5f50afce7406e91fdc471ca1e0e26ba976a8c734c9427a"}, + {file = "matplotlib-3.8.2-cp310-cp310-win_amd64.whl", hash = "sha256:830f00640c965c5b7f6bc32f0d4ce0c36dfe0379f7dd65b07a00c801713ec40a"}, + {file = "matplotlib-3.8.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d86593ccf546223eb75a39b44c32788e6f6440d13cfc4750c1c15d0fcb850b63"}, + {file = "matplotlib-3.8.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9a5430836811b7652991939012f43d2808a2db9b64ee240387e8c43e2e5578c8"}, + {file = "matplotlib-3.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9576723858a78751d5aacd2497b8aef29ffea6d1c95981505877f7ac28215c6"}, + {file = "matplotlib-3.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ba9cbd8ac6cf422f3102622b20f8552d601bf8837e49a3afed188d560152788"}, + {file = "matplotlib-3.8.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:03f9d160a29e0b65c0790bb07f4f45d6a181b1ac33eb1bb0dd225986450148f0"}, + {file = "matplotlib-3.8.2-cp311-cp311-win_amd64.whl", hash = "sha256:3773002da767f0a9323ba1a9b9b5d00d6257dbd2a93107233167cfb581f64717"}, + {file = "matplotlib-3.8.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:4c318c1e95e2f5926fba326f68177dee364aa791d6df022ceb91b8221bd0a627"}, + {file = "matplotlib-3.8.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:091275d18d942cf1ee9609c830a1bc36610607d8223b1b981c37d5c9fc3e46a4"}, + {file = "matplotlib-3.8.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b0f3b8ea0e99e233a4bcc44590f01604840d833c280ebb8fe5554fd3e6cfe8d"}, + {file = "matplotlib-3.8.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7b1704a530395aaf73912be741c04d181f82ca78084fbd80bc737be04848331"}, + {file = "matplotlib-3.8.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:533b0e3b0c6768eef8cbe4b583731ce25a91ab54a22f830db2b031e83cca9213"}, + {file = "matplotlib-3.8.2-cp312-cp312-win_amd64.whl", hash = "sha256:0f4fc5d72b75e2c18e55eb32292659cf731d9d5b312a6eb036506304f4675630"}, + {file = "matplotlib-3.8.2-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:deaed9ad4da0b1aea77fe0aa0cebb9ef611c70b3177be936a95e5d01fa05094f"}, + {file = "matplotlib-3.8.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:172f4d0fbac3383d39164c6caafd3255ce6fa58f08fc392513a0b1d3b89c4f89"}, + {file = "matplotlib-3.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c7d36c2209d9136cd8e02fab1c0ddc185ce79bc914c45054a9f514e44c787917"}, + {file = "matplotlib-3.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5864bdd7da445e4e5e011b199bb67168cdad10b501750367c496420f2ad00843"}, + {file = "matplotlib-3.8.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ef8345b48e95cee45ff25192ed1f4857273117917a4dcd48e3905619bcd9c9b8"}, + {file = "matplotlib-3.8.2-cp39-cp39-win_amd64.whl", hash = "sha256:7c48d9e221b637c017232e3760ed30b4e8d5dfd081daf327e829bf2a72c731b4"}, + {file = "matplotlib-3.8.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:aa11b3c6928a1e496c1a79917d51d4cd5d04f8a2e75f21df4949eeefdf697f4b"}, + {file = "matplotlib-3.8.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d1095fecf99eeb7384dabad4bf44b965f929a5f6079654b681193edf7169ec20"}, + {file = "matplotlib-3.8.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:bddfb1db89bfaa855912261c805bd0e10218923cc262b9159a49c29a7a1c1afa"}, + {file = "matplotlib-3.8.2.tar.gz", hash = "sha256:01a978b871b881ee76017152f1f1a0cbf6bd5f7b8ff8c96df0df1bd57d8755a1"}, ] [package.dependencies] contourpy = ">=1.0.1" cycler = ">=0.10" fonttools = ">=4.22.0" -kiwisolver = ">=1.0.1" -numpy = ">=1.20" +kiwisolver = ">=1.3.1" +numpy = ">=1.21,<2" packaging = ">=20.0" -pillow = ">=6.2.0" -pyparsing = ">=2.3.1,<3.1" +pillow = ">=8" +pyparsing = ">=2.3.1" python-dateutil = ">=2.7" [[package]] @@ -924,229 +921,288 @@ files = [ [[package]] name = "more-itertools" -version = "10.1.0" +version = "10.2.0" description = "More routines for operating on iterables, beyond itertools" category = "main" optional = false python-versions = ">=3.8" files = [ - {file = "more-itertools-10.1.0.tar.gz", hash = "sha256:626c369fa0eb37bac0291bce8259b332fd59ac792fa5497b59837309cd5b114a"}, - {file = "more_itertools-10.1.0-py3-none-any.whl", hash = "sha256:64e0735fcfdc6f3464ea133afe8ea4483b1c5fe3a3d69852e6503b43a0b222e6"}, + {file = "more-itertools-10.2.0.tar.gz", hash = "sha256:8fccb480c43d3e99a00087634c06dd02b0d50fbf088b380de5a41a015ec239e1"}, + {file = "more_itertools-10.2.0-py3-none-any.whl", hash = "sha256:686b06abe565edfab151cb8fd385a05651e1fdf8f0a14191e4439283421f8684"}, ] [[package]] name = "networkx" -version = "3.1" +version = "3.2.1" description = "Python package for creating and manipulating graphs and networks" category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "networkx-3.1-py3-none-any.whl", hash = "sha256:4f33f68cb2afcf86f28a45f43efc27a9386b535d567d2127f8f61d51dec58d36"}, - {file = "networkx-3.1.tar.gz", hash = "sha256:de346335408f84de0eada6ff9fafafff9bcda11f0a0dfaa931133debb146ab61"}, + {file = "networkx-3.2.1-py3-none-any.whl", hash = "sha256:f18c69adc97877c42332c170849c96cefa91881c99a7cb3e95b7c659ebdc1ec2"}, + {file = "networkx-3.2.1.tar.gz", hash = "sha256:9f1bb5cf3409bf324e0a722c20bdb4c20ee39bf1c30ce8ae499c8502b0b5e0c6"}, ] [package.extras] -default = ["matplotlib (>=3.4)", "numpy (>=1.20)", "pandas (>=1.3)", "scipy (>=1.8)"] -developer = ["mypy (>=1.1)", "pre-commit (>=3.2)"] -doc = ["nb2plots (>=0.6)", "numpydoc (>=1.5)", "pillow (>=9.4)", "pydata-sphinx-theme (>=0.13)", "sphinx (>=6.1)", "sphinx-gallery (>=0.12)", "texext (>=0.6.7)"] -extra = ["lxml (>=4.6)", "pydot (>=1.4.2)", "pygraphviz (>=1.10)", "sympy (>=1.10)"] -test = ["codecov (>=2.1)", "pytest (>=7.2)", "pytest-cov (>=4.0)"] +default = ["matplotlib (>=3.5)", "numpy (>=1.22)", "pandas (>=1.4)", "scipy (>=1.9,!=1.11.0,!=1.11.1)"] +developer = ["changelist (==0.4)", "mypy (>=1.1)", "pre-commit (>=3.2)", "rtoml"] +doc = ["nb2plots (>=0.7)", "nbconvert (<7.9)", "numpydoc (>=1.6)", "pillow (>=9.4)", "pydata-sphinx-theme (>=0.14)", "sphinx (>=7)", "sphinx-gallery (>=0.14)", "texext (>=0.6.7)"] +extra = ["lxml (>=4.6)", "pydot (>=1.4.2)", "pygraphviz (>=1.11)", "sympy (>=1.10)"] +test = ["pytest (>=7.2)", "pytest-cov (>=4.0)"] + +[[package]] +name = "nh3" +version = "0.2.15" +description = "Python bindings to the ammonia HTML sanitization library." +category = "main" +optional = false +python-versions = "*" +files = [ + {file = "nh3-0.2.15-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:9c0d415f6b7f2338f93035bba5c0d8c1b464e538bfbb1d598acd47d7969284f0"}, + {file = "nh3-0.2.15-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:6f42f99f0cf6312e470b6c09e04da31f9abaadcd3eb591d7d1a88ea931dca7f3"}, + {file = "nh3-0.2.15-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac19c0d68cd42ecd7ead91a3a032fdfff23d29302dbb1311e641a130dfefba97"}, + {file = "nh3-0.2.15-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5f0d77272ce6d34db6c87b4f894f037d55183d9518f948bba236fe81e2bb4e28"}, + {file = "nh3-0.2.15-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:8d595df02413aa38586c24811237e95937ef18304e108b7e92c890a06793e3bf"}, + {file = "nh3-0.2.15-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86e447a63ca0b16318deb62498db4f76fc60699ce0a1231262880b38b6cff911"}, + {file = "nh3-0.2.15-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3277481293b868b2715907310c7be0f1b9d10491d5adf9fce11756a97e97eddf"}, + {file = "nh3-0.2.15-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60684857cfa8fdbb74daa867e5cad3f0c9789415aba660614fe16cd66cbb9ec7"}, + {file = "nh3-0.2.15-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3b803a5875e7234907f7d64777dfde2b93db992376f3d6d7af7f3bc347deb305"}, + {file = "nh3-0.2.15-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:0d02d0ff79dfd8208ed25a39c12cbda092388fff7f1662466e27d97ad011b770"}, + {file = "nh3-0.2.15-cp37-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:f3b53ba93bb7725acab1e030bc2ecd012a817040fd7851b332f86e2f9bb98dc6"}, + {file = "nh3-0.2.15-cp37-abi3-musllinux_1_2_i686.whl", hash = "sha256:b1e97221cedaf15a54f5243f2c5894bb12ca951ae4ddfd02a9d4ea9df9e1a29d"}, + {file = "nh3-0.2.15-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a5167a6403d19c515217b6bcaaa9be420974a6ac30e0da9e84d4fc67a5d474c5"}, + {file = "nh3-0.2.15-cp37-abi3-win32.whl", hash = "sha256:427fecbb1031db085eaac9931362adf4a796428ef0163070c484b5a768e71601"}, + {file = "nh3-0.2.15-cp37-abi3-win_amd64.whl", hash = "sha256:bc2d086fb540d0fa52ce35afaded4ea526b8fc4d3339f783db55c95de40ef02e"}, + {file = "nh3-0.2.15.tar.gz", hash = "sha256:d1e30ff2d8d58fb2a14961f7aac1bbb1c51f9bdd7da727be35c63826060b0bf3"}, +] [[package]] name = "numpy" -version = "1.25.2" +version = "1.26.3" description = "Fundamental package for array computing in Python" category = "main" optional = false python-versions = ">=3.9" files = [ - {file = "numpy-1.25.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:db3ccc4e37a6873045580d413fe79b68e47a681af8db2e046f1dacfa11f86eb3"}, - {file = "numpy-1.25.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:90319e4f002795ccfc9050110bbbaa16c944b1c37c0baeea43c5fb881693ae1f"}, - {file = "numpy-1.25.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dfe4a913e29b418d096e696ddd422d8a5d13ffba4ea91f9f60440a3b759b0187"}, - {file = "numpy-1.25.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f08f2e037bba04e707eebf4bc934f1972a315c883a9e0ebfa8a7756eabf9e357"}, - {file = "numpy-1.25.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bec1e7213c7cb00d67093247f8c4db156fd03075f49876957dca4711306d39c9"}, - {file = "numpy-1.25.2-cp310-cp310-win32.whl", hash = "sha256:7dc869c0c75988e1c693d0e2d5b26034644399dd929bc049db55395b1379e044"}, - {file = "numpy-1.25.2-cp310-cp310-win_amd64.whl", hash = "sha256:834b386f2b8210dca38c71a6e0f4fd6922f7d3fcff935dbe3a570945acb1b545"}, - {file = "numpy-1.25.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c5462d19336db4560041517dbb7759c21d181a67cb01b36ca109b2ae37d32418"}, - {file = "numpy-1.25.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c5652ea24d33585ea39eb6a6a15dac87a1206a692719ff45d53c5282e66d4a8f"}, - {file = "numpy-1.25.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d60fbae8e0019865fc4784745814cff1c421df5afee233db6d88ab4f14655a2"}, - {file = "numpy-1.25.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60e7f0f7f6d0eee8364b9a6304c2845b9c491ac706048c7e8cf47b83123b8dbf"}, - {file = "numpy-1.25.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:bb33d5a1cf360304754913a350edda36d5b8c5331a8237268c48f91253c3a364"}, - {file = "numpy-1.25.2-cp311-cp311-win32.whl", hash = "sha256:5883c06bb92f2e6c8181df7b39971a5fb436288db58b5a1c3967702d4278691d"}, - {file = "numpy-1.25.2-cp311-cp311-win_amd64.whl", hash = "sha256:5c97325a0ba6f9d041feb9390924614b60b99209a71a69c876f71052521d42a4"}, - {file = "numpy-1.25.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b79e513d7aac42ae918db3ad1341a015488530d0bb2a6abcbdd10a3a829ccfd3"}, - {file = "numpy-1.25.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:eb942bfb6f84df5ce05dbf4b46673ffed0d3da59f13635ea9b926af3deb76926"}, - {file = "numpy-1.25.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e0746410e73384e70d286f93abf2520035250aad8c5714240b0492a7302fdca"}, - {file = "numpy-1.25.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7806500e4f5bdd04095e849265e55de20d8cc4b661b038957354327f6d9b295"}, - {file = "numpy-1.25.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8b77775f4b7df768967a7c8b3567e309f617dd5e99aeb886fa14dc1a0791141f"}, - {file = "numpy-1.25.2-cp39-cp39-win32.whl", hash = "sha256:2792d23d62ec51e50ce4d4b7d73de8f67a2fd3ea710dcbc8563a51a03fb07b01"}, - {file = "numpy-1.25.2-cp39-cp39-win_amd64.whl", hash = "sha256:76b4115d42a7dfc5d485d358728cdd8719be33cc5ec6ec08632a5d6fca2ed380"}, - {file = "numpy-1.25.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:1a1329e26f46230bf77b02cc19e900db9b52f398d6722ca853349a782d4cff55"}, - {file = "numpy-1.25.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c3abc71e8b6edba80a01a52e66d83c5d14433cbcd26a40c329ec7ed09f37901"}, - {file = "numpy-1.25.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:1b9735c27cea5d995496f46a8b1cd7b408b3f34b6d50459d9ac8fe3a20cc17bf"}, - {file = "numpy-1.25.2.tar.gz", hash = "sha256:fd608e19c8d7c55021dffd43bfe5492fab8cc105cc8986f813f8c3c048b38760"}, + {file = "numpy-1.26.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:806dd64230dbbfaca8a27faa64e2f414bf1c6622ab78cc4264f7f5f028fee3bf"}, + {file = "numpy-1.26.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:02f98011ba4ab17f46f80f7f8f1c291ee7d855fcef0a5a98db80767a468c85cd"}, + {file = "numpy-1.26.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6d45b3ec2faed4baca41c76617fcdcfa4f684ff7a151ce6fc78ad3b6e85af0a6"}, + {file = "numpy-1.26.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bdd2b45bf079d9ad90377048e2747a0c82351989a2165821f0c96831b4a2a54b"}, + {file = "numpy-1.26.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:211ddd1e94817ed2d175b60b6374120244a4dd2287f4ece45d49228b4d529178"}, + {file = "numpy-1.26.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b1240f767f69d7c4c8a29adde2310b871153df9b26b5cb2b54a561ac85146485"}, + {file = "numpy-1.26.3-cp310-cp310-win32.whl", hash = "sha256:21a9484e75ad018974a2fdaa216524d64ed4212e418e0a551a2d83403b0531d3"}, + {file = "numpy-1.26.3-cp310-cp310-win_amd64.whl", hash = "sha256:9e1591f6ae98bcfac2a4bbf9221c0b92ab49762228f38287f6eeb5f3f55905ce"}, + {file = "numpy-1.26.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b831295e5472954104ecb46cd98c08b98b49c69fdb7040483aff799a755a7374"}, + {file = "numpy-1.26.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9e87562b91f68dd8b1c39149d0323b42e0082db7ddb8e934ab4c292094d575d6"}, + {file = "numpy-1.26.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c66d6fec467e8c0f975818c1796d25c53521124b7cfb760114be0abad53a0a2"}, + {file = "numpy-1.26.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f25e2811a9c932e43943a2615e65fc487a0b6b49218899e62e426e7f0a57eeda"}, + {file = "numpy-1.26.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:af36e0aa45e25c9f57bf684b1175e59ea05d9a7d3e8e87b7ae1a1da246f2767e"}, + {file = "numpy-1.26.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:51c7f1b344f302067b02e0f5b5d2daa9ed4a721cf49f070280ac202738ea7f00"}, + {file = "numpy-1.26.3-cp311-cp311-win32.whl", hash = "sha256:7ca4f24341df071877849eb2034948459ce3a07915c2734f1abb4018d9c49d7b"}, + {file = "numpy-1.26.3-cp311-cp311-win_amd64.whl", hash = "sha256:39763aee6dfdd4878032361b30b2b12593fb445ddb66bbac802e2113eb8a6ac4"}, + {file = "numpy-1.26.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:a7081fd19a6d573e1a05e600c82a1c421011db7935ed0d5c483e9dd96b99cf13"}, + {file = "numpy-1.26.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:12c70ac274b32bc00c7f61b515126c9205323703abb99cd41836e8125ea0043e"}, + {file = "numpy-1.26.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7f784e13e598e9594750b2ef6729bcd5a47f6cfe4a12cca13def35e06d8163e3"}, + {file = "numpy-1.26.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5f24750ef94d56ce6e33e4019a8a4d68cfdb1ef661a52cdaee628a56d2437419"}, + {file = "numpy-1.26.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:77810ef29e0fb1d289d225cabb9ee6cf4d11978a00bb99f7f8ec2132a84e0166"}, + {file = "numpy-1.26.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8ed07a90f5450d99dad60d3799f9c03c6566709bd53b497eb9ccad9a55867f36"}, + {file = "numpy-1.26.3-cp312-cp312-win32.whl", hash = "sha256:f73497e8c38295aaa4741bdfa4fda1a5aedda5473074369eca10626835445511"}, + {file = "numpy-1.26.3-cp312-cp312-win_amd64.whl", hash = "sha256:da4b0c6c699a0ad73c810736303f7fbae483bcb012e38d7eb06a5e3b432c981b"}, + {file = "numpy-1.26.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1666f634cb3c80ccbd77ec97bc17337718f56d6658acf5d3b906ca03e90ce87f"}, + {file = "numpy-1.26.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:18c3319a7d39b2c6a9e3bb75aab2304ab79a811ac0168a671a62e6346c29b03f"}, + {file = "numpy-1.26.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b7e807d6888da0db6e7e75838444d62495e2b588b99e90dd80c3459594e857b"}, + {file = "numpy-1.26.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4d362e17bcb0011738c2d83e0a65ea8ce627057b2fdda37678f4374a382a137"}, + {file = "numpy-1.26.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b8c275f0ae90069496068c714387b4a0eba5d531aace269559ff2b43655edd58"}, + {file = "numpy-1.26.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:cc0743f0302b94f397a4a65a660d4cd24267439eb16493fb3caad2e4389bccbb"}, + {file = "numpy-1.26.3-cp39-cp39-win32.whl", hash = "sha256:9bc6d1a7f8cedd519c4b7b1156d98e051b726bf160715b769106661d567b3f03"}, + {file = "numpy-1.26.3-cp39-cp39-win_amd64.whl", hash = "sha256:867e3644e208c8922a3be26fc6bbf112a035f50f0a86497f98f228c50c607bb2"}, + {file = "numpy-1.26.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3c67423b3703f8fbd90f5adaa37f85b5794d3366948efe9a5190a5f3a83fc34e"}, + {file = "numpy-1.26.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46f47ee566d98849323f01b349d58f2557f02167ee301e5e28809a8c0e27a2d0"}, + {file = "numpy-1.26.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a8474703bffc65ca15853d5fd4d06b18138ae90c17c8d12169968e998e448bb5"}, + {file = "numpy-1.26.3.tar.gz", hash = "sha256:697df43e2b6310ecc9d95f05d5ef20eacc09c7c4ecc9da3f235d39e71b7da1e4"}, ] [[package]] name = "packaging" -version = "23.1" +version = "23.2" description = "Core utilities for Python packages" category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, - {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, + {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, + {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, ] [[package]] name = "pandas" -version = "2.0.3" +version = "2.2.0" description = "Powerful data structures for data analysis, time series, and statistics" category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "pandas-2.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e4c7c9f27a4185304c7caf96dc7d91bc60bc162221152de697c98eb0b2648dd8"}, - {file = "pandas-2.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f167beed68918d62bffb6ec64f2e1d8a7d297a038f86d4aed056b9493fca407f"}, - {file = "pandas-2.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce0c6f76a0f1ba361551f3e6dceaff06bde7514a374aa43e33b588ec10420183"}, - {file = "pandas-2.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba619e410a21d8c387a1ea6e8a0e49bb42216474436245718d7f2e88a2f8d7c0"}, - {file = "pandas-2.0.3-cp310-cp310-win32.whl", hash = "sha256:3ef285093b4fe5058eefd756100a367f27029913760773c8bf1d2d8bebe5d210"}, - {file = "pandas-2.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:9ee1a69328d5c36c98d8e74db06f4ad518a1840e8ccb94a4ba86920986bb617e"}, - {file = "pandas-2.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b084b91d8d66ab19f5bb3256cbd5ea661848338301940e17f4492b2ce0801fe8"}, - {file = "pandas-2.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:37673e3bdf1551b95bf5d4ce372b37770f9529743d2498032439371fc7b7eb26"}, - {file = "pandas-2.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9cb1e14fdb546396b7e1b923ffaeeac24e4cedd14266c3497216dd4448e4f2d"}, - {file = "pandas-2.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9cd88488cceb7635aebb84809d087468eb33551097d600c6dad13602029c2df"}, - {file = "pandas-2.0.3-cp311-cp311-win32.whl", hash = "sha256:694888a81198786f0e164ee3a581df7d505024fbb1f15202fc7db88a71d84ebd"}, - {file = "pandas-2.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:6a21ab5c89dcbd57f78d0ae16630b090eec626360085a4148693def5452d8a6b"}, - {file = "pandas-2.0.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9e4da0d45e7f34c069fe4d522359df7d23badf83abc1d1cef398895822d11061"}, - {file = "pandas-2.0.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:32fca2ee1b0d93dd71d979726b12b61faa06aeb93cf77468776287f41ff8fdc5"}, - {file = "pandas-2.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:258d3624b3ae734490e4d63c430256e716f488c4fcb7c8e9bde2d3aa46c29089"}, - {file = "pandas-2.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9eae3dc34fa1aa7772dd3fc60270d13ced7346fcbcfee017d3132ec625e23bb0"}, - {file = "pandas-2.0.3-cp38-cp38-win32.whl", hash = "sha256:f3421a7afb1a43f7e38e82e844e2bca9a6d793d66c1a7f9f0ff39a795bbc5e02"}, - {file = "pandas-2.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:69d7f3884c95da3a31ef82b7618af5710dba95bb885ffab339aad925c3e8ce78"}, - {file = "pandas-2.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5247fb1ba347c1261cbbf0fcfba4a3121fbb4029d95d9ef4dc45406620b25c8b"}, - {file = "pandas-2.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:81af086f4543c9d8bb128328b5d32e9986e0c84d3ee673a2ac6fb57fd14f755e"}, - {file = "pandas-2.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1994c789bf12a7c5098277fb43836ce090f1073858c10f9220998ac74f37c69b"}, - {file = "pandas-2.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ec591c48e29226bcbb316e0c1e9423622bc7a4eaf1ef7c3c9fa1a3981f89641"}, - {file = "pandas-2.0.3-cp39-cp39-win32.whl", hash = "sha256:04dbdbaf2e4d46ca8da896e1805bc04eb85caa9a82e259e8eed00254d5e0c682"}, - {file = "pandas-2.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:1168574b036cd8b93abc746171c9b4f1b83467438a5e45909fed645cf8692dbc"}, - {file = "pandas-2.0.3.tar.gz", hash = "sha256:c02f372a88e0d17f36d3093a644c73cfc1788e876a7c4bcb4020a77512e2043c"}, + {file = "pandas-2.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8108ee1712bb4fa2c16981fba7e68b3f6ea330277f5ca34fa8d557e986a11670"}, + {file = "pandas-2.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:736da9ad4033aeab51d067fc3bd69a0ba36f5a60f66a527b3d72e2030e63280a"}, + {file = "pandas-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38e0b4fc3ddceb56ec8a287313bc22abe17ab0eb184069f08fc6a9352a769b18"}, + {file = "pandas-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20404d2adefe92aed3b38da41d0847a143a09be982a31b85bc7dd565bdba0f4e"}, + {file = "pandas-2.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7ea3ee3f125032bfcade3a4cf85131ed064b4f8dd23e5ce6fa16473e48ebcaf5"}, + {file = "pandas-2.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f9670b3ac00a387620489dfc1bca66db47a787f4e55911f1293063a78b108df1"}, + {file = "pandas-2.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:5a946f210383c7e6d16312d30b238fd508d80d927014f3b33fb5b15c2f895430"}, + {file = "pandas-2.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a1b438fa26b208005c997e78672f1aa8138f67002e833312e6230f3e57fa87d5"}, + {file = "pandas-2.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8ce2fbc8d9bf303ce54a476116165220a1fedf15985b09656b4b4275300e920b"}, + {file = "pandas-2.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2707514a7bec41a4ab81f2ccce8b382961a29fbe9492eab1305bb075b2b1ff4f"}, + {file = "pandas-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85793cbdc2d5bc32620dc8ffa715423f0c680dacacf55056ba13454a5be5de88"}, + {file = "pandas-2.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:cfd6c2491dc821b10c716ad6776e7ab311f7df5d16038d0b7458bc0b67dc10f3"}, + {file = "pandas-2.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:a146b9dcacc3123aa2b399df1a284de5f46287a4ab4fbfc237eac98a92ebcb71"}, + {file = "pandas-2.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:fbc1b53c0e1fdf16388c33c3cca160f798d38aea2978004dd3f4d3dec56454c9"}, + {file = "pandas-2.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:a41d06f308a024981dcaa6c41f2f2be46a6b186b902c94c2674e8cb5c42985bc"}, + {file = "pandas-2.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:159205c99d7a5ce89ecfc37cb08ed179de7783737cea403b295b5eda8e9c56d1"}, + {file = "pandas-2.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb1e1f3861ea9132b32f2133788f3b14911b68102d562715d71bd0013bc45440"}, + {file = "pandas-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:761cb99b42a69005dec2b08854fb1d4888fdf7b05db23a8c5a099e4b886a2106"}, + {file = "pandas-2.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a20628faaf444da122b2a64b1e5360cde100ee6283ae8effa0d8745153809a2e"}, + {file = "pandas-2.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:f5be5d03ea2073627e7111f61b9f1f0d9625dc3c4d8dda72cc827b0c58a1d042"}, + {file = "pandas-2.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:a626795722d893ed6aacb64d2401d017ddc8a2341b49e0384ab9bf7112bdec30"}, + {file = "pandas-2.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9f66419d4a41132eb7e9a73dcec9486cf5019f52d90dd35547af11bc58f8637d"}, + {file = "pandas-2.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:57abcaeda83fb80d447f28ab0cc7b32b13978f6f733875ebd1ed14f8fbc0f4ab"}, + {file = "pandas-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e60f1f7dba3c2d5ca159e18c46a34e7ca7247a73b5dd1a22b6d59707ed6b899a"}, + {file = "pandas-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb61dc8567b798b969bcc1fc964788f5a68214d333cade8319c7ab33e2b5d88a"}, + {file = "pandas-2.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:52826b5f4ed658fa2b729264d63f6732b8b29949c7fd234510d57c61dbeadfcd"}, + {file = "pandas-2.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:bde2bc699dbd80d7bc7f9cab1e23a95c4375de615860ca089f34e7c64f4a8de7"}, + {file = "pandas-2.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:3de918a754bbf2da2381e8a3dcc45eede8cd7775b047b923f9006d5f876802ae"}, + {file = "pandas-2.2.0.tar.gz", hash = "sha256:30b83f7c3eb217fb4d1b494a57a2fda5444f17834f5df2de6b2ffff68dc3c8e2"}, ] [package.dependencies] numpy = [ - {version = ">=1.21.0", markers = "python_version >= \"3.10\""}, - {version = ">=1.23.2", markers = "python_version >= \"3.11\""}, + {version = ">=1.22.4,<2", markers = "python_version < \"3.11\""}, + {version = ">=1.23.2,<2", markers = "python_version == \"3.11\""}, + {version = ">=1.26.0,<2", markers = "python_version >= \"3.12\""}, ] python-dateutil = ">=2.8.2" pytz = ">=2020.1" -tzdata = ">=2022.1" +tzdata = ">=2022.7" [package.extras] -all = ["PyQt5 (>=5.15.1)", "SQLAlchemy (>=1.4.16)", "beautifulsoup4 (>=4.9.3)", "bottleneck (>=1.3.2)", "brotlipy (>=0.7.0)", "fastparquet (>=0.6.3)", "fsspec (>=2021.07.0)", "gcsfs (>=2021.07.0)", "html5lib (>=1.1)", "hypothesis (>=6.34.2)", "jinja2 (>=3.0.0)", "lxml (>=4.6.3)", "matplotlib (>=3.6.1)", "numba (>=0.53.1)", "numexpr (>=2.7.3)", "odfpy (>=1.4.1)", "openpyxl (>=3.0.7)", "pandas-gbq (>=0.15.0)", "psycopg2 (>=2.8.6)", "pyarrow (>=7.0.0)", "pymysql (>=1.0.2)", "pyreadstat (>=1.1.2)", "pytest (>=7.3.2)", "pytest-asyncio (>=0.17.0)", "pytest-xdist (>=2.2.0)", "python-snappy (>=0.6.0)", "pyxlsb (>=1.0.8)", "qtpy (>=2.2.0)", "s3fs (>=2021.08.0)", "scipy (>=1.7.1)", "tables (>=3.6.1)", "tabulate (>=0.8.9)", "xarray (>=0.21.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=1.4.3)", "zstandard (>=0.15.2)"] -aws = ["s3fs (>=2021.08.0)"] -clipboard = ["PyQt5 (>=5.15.1)", "qtpy (>=2.2.0)"] -compression = ["brotlipy (>=0.7.0)", "python-snappy (>=0.6.0)", "zstandard (>=0.15.2)"] -computation = ["scipy (>=1.7.1)", "xarray (>=0.21.0)"] -excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.0.7)", "pyxlsb (>=1.0.8)", "xlrd (>=2.0.1)", "xlsxwriter (>=1.4.3)"] -feather = ["pyarrow (>=7.0.0)"] -fss = ["fsspec (>=2021.07.0)"] -gcp = ["gcsfs (>=2021.07.0)", "pandas-gbq (>=0.15.0)"] -hdf5 = ["tables (>=3.6.1)"] -html = ["beautifulsoup4 (>=4.9.3)", "html5lib (>=1.1)", "lxml (>=4.6.3)"] -mysql = ["SQLAlchemy (>=1.4.16)", "pymysql (>=1.0.2)"] -output-formatting = ["jinja2 (>=3.0.0)", "tabulate (>=0.8.9)"] -parquet = ["pyarrow (>=7.0.0)"] -performance = ["bottleneck (>=1.3.2)", "numba (>=0.53.1)", "numexpr (>=2.7.1)"] -plot = ["matplotlib (>=3.6.1)"] -postgresql = ["SQLAlchemy (>=1.4.16)", "psycopg2 (>=2.8.6)"] -spss = ["pyreadstat (>=1.1.2)"] -sql-other = ["SQLAlchemy (>=1.4.16)"] -test = ["hypothesis (>=6.34.2)", "pytest (>=7.3.2)", "pytest-asyncio (>=0.17.0)", "pytest-xdist (>=2.2.0)"] -xml = ["lxml (>=4.6.3)"] +all = ["PyQt5 (>=5.15.9)", "SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)", "beautifulsoup4 (>=4.11.2)", "bottleneck (>=1.3.6)", "dataframe-api-compat (>=0.1.7)", "fastparquet (>=2022.12.0)", "fsspec (>=2022.11.0)", "gcsfs (>=2022.11.0)", "html5lib (>=1.1)", "hypothesis (>=6.46.1)", "jinja2 (>=3.1.2)", "lxml (>=4.9.2)", "matplotlib (>=3.6.3)", "numba (>=0.56.4)", "numexpr (>=2.8.4)", "odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "pandas-gbq (>=0.19.0)", "psycopg2 (>=2.9.6)", "pyarrow (>=10.0.1)", "pymysql (>=1.0.2)", "pyreadstat (>=1.2.0)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "qtpy (>=2.3.0)", "s3fs (>=2022.11.0)", "scipy (>=1.10.0)", "tables (>=3.8.0)", "tabulate (>=0.9.0)", "xarray (>=2022.12.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)", "zstandard (>=0.19.0)"] +aws = ["s3fs (>=2022.11.0)"] +clipboard = ["PyQt5 (>=5.15.9)", "qtpy (>=2.3.0)"] +compression = ["zstandard (>=0.19.0)"] +computation = ["scipy (>=1.10.0)", "xarray (>=2022.12.0)"] +consortium-standard = ["dataframe-api-compat (>=0.1.7)"] +excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)"] +feather = ["pyarrow (>=10.0.1)"] +fss = ["fsspec (>=2022.11.0)"] +gcp = ["gcsfs (>=2022.11.0)", "pandas-gbq (>=0.19.0)"] +hdf5 = ["tables (>=3.8.0)"] +html = ["beautifulsoup4 (>=4.11.2)", "html5lib (>=1.1)", "lxml (>=4.9.2)"] +mysql = ["SQLAlchemy (>=2.0.0)", "pymysql (>=1.0.2)"] +output-formatting = ["jinja2 (>=3.1.2)", "tabulate (>=0.9.0)"] +parquet = ["pyarrow (>=10.0.1)"] +performance = ["bottleneck (>=1.3.6)", "numba (>=0.56.4)", "numexpr (>=2.8.4)"] +plot = ["matplotlib (>=3.6.3)"] +postgresql = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "psycopg2 (>=2.9.6)"] +spss = ["pyreadstat (>=1.2.0)"] +sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)"] +test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"] +xml = ["lxml (>=4.9.2)"] [[package]] name = "pillow" -version = "10.0.0" +version = "10.2.0" description = "Python Imaging Library (Fork)" category = "main" optional = false python-versions = ">=3.8" files = [ - {file = "Pillow-10.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:1f62406a884ae75fb2f818694469519fb685cc7eaff05d3451a9ebe55c646891"}, - {file = "Pillow-10.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d5db32e2a6ccbb3d34d87c87b432959e0db29755727afb37290e10f6e8e62614"}, - {file = "Pillow-10.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edf4392b77bdc81f36e92d3a07a5cd072f90253197f4a52a55a8cec48a12483b"}, - {file = "Pillow-10.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:520f2a520dc040512699f20fa1c363eed506e94248d71f85412b625026f6142c"}, - {file = "Pillow-10.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:8c11160913e3dd06c8ffdb5f233a4f254cb449f4dfc0f8f4549eda9e542c93d1"}, - {file = "Pillow-10.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a74ba0c356aaa3bb8e3eb79606a87669e7ec6444be352870623025d75a14a2bf"}, - {file = "Pillow-10.0.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d5d0dae4cfd56969d23d94dc8e89fb6a217be461c69090768227beb8ed28c0a3"}, - {file = "Pillow-10.0.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22c10cc517668d44b211717fd9775799ccec4124b9a7f7b3635fc5386e584992"}, - {file = "Pillow-10.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:dffe31a7f47b603318c609f378ebcd57f1554a3a6a8effbc59c3c69f804296de"}, - {file = "Pillow-10.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:9fb218c8a12e51d7ead2a7c9e101a04982237d4855716af2e9499306728fb485"}, - {file = "Pillow-10.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d35e3c8d9b1268cbf5d3670285feb3528f6680420eafe35cccc686b73c1e330f"}, - {file = "Pillow-10.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ed64f9ca2f0a95411e88a4efbd7a29e5ce2cea36072c53dd9d26d9c76f753b3"}, - {file = "Pillow-10.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b6eb5502f45a60a3f411c63187db83a3d3107887ad0d036c13ce836f8a36f1d"}, - {file = "Pillow-10.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:c1fbe7621c167ecaa38ad29643d77a9ce7311583761abf7836e1510c580bf3dd"}, - {file = "Pillow-10.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:cd25d2a9d2b36fcb318882481367956d2cf91329f6892fe5d385c346c0649629"}, - {file = "Pillow-10.0.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:3b08d4cc24f471b2c8ca24ec060abf4bebc6b144cb89cba638c720546b1cf538"}, - {file = "Pillow-10.0.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d737a602fbd82afd892ca746392401b634e278cb65d55c4b7a8f48e9ef8d008d"}, - {file = "Pillow-10.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:3a82c40d706d9aa9734289740ce26460a11aeec2d9c79b7af87bb35f0073c12f"}, - {file = "Pillow-10.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:bc2ec7c7b5d66b8ec9ce9f720dbb5fa4bace0f545acd34870eff4a369b44bf37"}, - {file = "Pillow-10.0.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:d80cf684b541685fccdd84c485b31ce73fc5c9b5d7523bf1394ce134a60c6883"}, - {file = "Pillow-10.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:76de421f9c326da8f43d690110f0e79fe3ad1e54be811545d7d91898b4c8493e"}, - {file = "Pillow-10.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:81ff539a12457809666fef6624684c008e00ff6bf455b4b89fd00a140eecd640"}, - {file = "Pillow-10.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce543ed15570eedbb85df19b0a1a7314a9c8141a36ce089c0a894adbfccb4568"}, - {file = "Pillow-10.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:685ac03cc4ed5ebc15ad5c23bc555d68a87777586d970c2c3e216619a5476223"}, - {file = "Pillow-10.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d72e2ecc68a942e8cf9739619b7f408cc7b272b279b56b2c83c6123fcfa5cdff"}, - {file = "Pillow-10.0.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d50b6aec14bc737742ca96e85d6d0a5f9bfbded018264b3b70ff9d8c33485551"}, - {file = "Pillow-10.0.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:00e65f5e822decd501e374b0650146063fbb30a7264b4d2744bdd7b913e0cab5"}, - {file = "Pillow-10.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:f31f9fdbfecb042d046f9d91270a0ba28368a723302786c0009ee9b9f1f60199"}, - {file = "Pillow-10.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:1ce91b6ec08d866b14413d3f0bbdea7e24dfdc8e59f562bb77bc3fe60b6144ca"}, - {file = "Pillow-10.0.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:349930d6e9c685c089284b013478d6f76e3a534e36ddfa912cde493f235372f3"}, - {file = "Pillow-10.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3a684105f7c32488f7153905a4e3015a3b6c7182e106fe3c37fbb5ef3e6994c3"}, - {file = "Pillow-10.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4f69b3700201b80bb82c3a97d5e9254084f6dd5fb5b16fc1a7b974260f89f43"}, - {file = "Pillow-10.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f07ea8d2f827d7d2a49ecf1639ec02d75ffd1b88dcc5b3a61bbb37a8759ad8d"}, - {file = "Pillow-10.0.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:040586f7d37b34547153fa383f7f9aed68b738992380ac911447bb78f2abe530"}, - {file = "Pillow-10.0.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:f88a0b92277de8e3ca715a0d79d68dc82807457dae3ab8699c758f07c20b3c51"}, - {file = "Pillow-10.0.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:c7cf14a27b0d6adfaebb3ae4153f1e516df54e47e42dcc073d7b3d76111a8d86"}, - {file = "Pillow-10.0.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:3400aae60685b06bb96f99a21e1ada7bc7a413d5f49bce739828ecd9391bb8f7"}, - {file = "Pillow-10.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:dbc02381779d412145331789b40cc7b11fdf449e5d94f6bc0b080db0a56ea3f0"}, - {file = "Pillow-10.0.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:9211e7ad69d7c9401cfc0e23d49b69ca65ddd898976d660a2fa5904e3d7a9baa"}, - {file = "Pillow-10.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:faaf07ea35355b01a35cb442dd950d8f1bb5b040a7787791a535de13db15ed90"}, - {file = "Pillow-10.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c9f72a021fbb792ce98306ffb0c348b3c9cb967dce0f12a49aa4c3d3fdefa967"}, - {file = "Pillow-10.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f7c16705f44e0504a3a2a14197c1f0b32a95731d251777dcb060aa83022cb2d"}, - {file = "Pillow-10.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:76edb0a1fa2b4745fb0c99fb9fb98f8b180a1bbceb8be49b087e0b21867e77d3"}, - {file = "Pillow-10.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:368ab3dfb5f49e312231b6f27b8820c823652b7cd29cfbd34090565a015e99ba"}, - {file = "Pillow-10.0.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:608bfdee0d57cf297d32bcbb3c728dc1da0907519d1784962c5f0c68bb93e5a3"}, - {file = "Pillow-10.0.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5c6e3df6bdd396749bafd45314871b3d0af81ff935b2d188385e970052091017"}, - {file = "Pillow-10.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:7be600823e4c8631b74e4a0d38384c73f680e6105a7d3c6824fcf226c178c7e6"}, - {file = "Pillow-10.0.0-pp310-pypy310_pp73-macosx_10_10_x86_64.whl", hash = "sha256:92be919bbc9f7d09f7ae343c38f5bb21c973d2576c1d45600fce4b74bafa7ac0"}, - {file = "Pillow-10.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8182b523b2289f7c415f589118228d30ac8c355baa2f3194ced084dac2dbba"}, - {file = "Pillow-10.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:38250a349b6b390ee6047a62c086d3817ac69022c127f8a5dc058c31ccef17f3"}, - {file = "Pillow-10.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:88af2003543cc40c80f6fca01411892ec52b11021b3dc22ec3bc9d5afd1c5334"}, - {file = "Pillow-10.0.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:c189af0545965fa8d3b9613cfdb0cd37f9d71349e0f7750e1fd704648d475ed2"}, - {file = "Pillow-10.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce7b031a6fc11365970e6a5686d7ba8c63e4c1cf1ea143811acbb524295eabed"}, - {file = "Pillow-10.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:db24668940f82321e746773a4bc617bfac06ec831e5c88b643f91f122a785684"}, - {file = "Pillow-10.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:efe8c0681042536e0d06c11f48cebe759707c9e9abf880ee213541c5b46c5bf3"}, - {file = "Pillow-10.0.0.tar.gz", hash = "sha256:9c82b5b3e043c7af0d95792d0d20ccf68f61a1fec6b3530e718b688422727396"}, + {file = "pillow-10.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:7823bdd049099efa16e4246bdf15e5a13dbb18a51b68fa06d6c1d4d8b99a796e"}, + {file = "pillow-10.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:83b2021f2ade7d1ed556bc50a399127d7fb245e725aa0113ebd05cfe88aaf588"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fad5ff2f13d69b7e74ce5b4ecd12cc0ec530fcee76356cac6742785ff71c452"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da2b52b37dad6d9ec64e653637a096905b258d2fc2b984c41ae7d08b938a67e4"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:47c0995fc4e7f79b5cfcab1fc437ff2890b770440f7696a3ba065ee0fd496563"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:322bdf3c9b556e9ffb18f93462e5f749d3444ce081290352c6070d014c93feb2"}, + {file = "pillow-10.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:51f1a1bffc50e2e9492e87d8e09a17c5eea8409cda8d3f277eb6edc82813c17c"}, + {file = "pillow-10.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:69ffdd6120a4737710a9eee73e1d2e37db89b620f702754b8f6e62594471dee0"}, + {file = "pillow-10.2.0-cp310-cp310-win32.whl", hash = "sha256:c6dafac9e0f2b3c78df97e79af707cdc5ef8e88208d686a4847bab8266870023"}, + {file = "pillow-10.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:aebb6044806f2e16ecc07b2a2637ee1ef67a11840a66752751714a0d924adf72"}, + {file = "pillow-10.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:7049e301399273a0136ff39b84c3678e314f2158f50f517bc50285fb5ec847ad"}, + {file = "pillow-10.2.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:35bb52c37f256f662abdfa49d2dfa6ce5d93281d323a9af377a120e89a9eafb5"}, + {file = "pillow-10.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9c23f307202661071d94b5e384e1e1dc7dfb972a28a2310e4ee16103e66ddb67"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:773efe0603db30c281521a7c0214cad7836c03b8ccff897beae9b47c0b657d61"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11fa2e5984b949b0dd6d7a94d967743d87c577ff0b83392f17cb3990d0d2fd6e"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:716d30ed977be8b37d3ef185fecb9e5a1d62d110dfbdcd1e2a122ab46fddb03f"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:a086c2af425c5f62a65e12fbf385f7c9fcb8f107d0849dba5839461a129cf311"}, + {file = "pillow-10.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c8de2789052ed501dd829e9cae8d3dcce7acb4777ea4a479c14521c942d395b1"}, + {file = "pillow-10.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:609448742444d9290fd687940ac0b57fb35e6fd92bdb65386e08e99af60bf757"}, + {file = "pillow-10.2.0-cp311-cp311-win32.whl", hash = "sha256:823ef7a27cf86df6597fa0671066c1b596f69eba53efa3d1e1cb8b30f3533068"}, + {file = "pillow-10.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:1da3b2703afd040cf65ec97efea81cfba59cdbed9c11d8efc5ab09df9509fc56"}, + {file = "pillow-10.2.0-cp311-cp311-win_arm64.whl", hash = "sha256:edca80cbfb2b68d7b56930b84a0e45ae1694aeba0541f798e908a49d66b837f1"}, + {file = "pillow-10.2.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:1b5e1b74d1bd1b78bc3477528919414874748dd363e6272efd5abf7654e68bef"}, + {file = "pillow-10.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0eae2073305f451d8ecacb5474997c08569fb4eb4ac231ffa4ad7d342fdc25ac"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7c2286c23cd350b80d2fc9d424fc797575fb16f854b831d16fd47ceec078f2c"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e23412b5c41e58cec602f1135c57dfcf15482013ce6e5f093a86db69646a5aa"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:52a50aa3fb3acb9cf7213573ef55d31d6eca37f5709c69e6858fe3bc04a5c2a2"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:127cee571038f252a552760076407f9cff79761c3d436a12af6000cd182a9d04"}, + {file = "pillow-10.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:8d12251f02d69d8310b046e82572ed486685c38f02176bd08baf216746eb947f"}, + {file = "pillow-10.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:54f1852cd531aa981bc0965b7d609f5f6cc8ce8c41b1139f6ed6b3c54ab82bfb"}, + {file = "pillow-10.2.0-cp312-cp312-win32.whl", hash = "sha256:257d8788df5ca62c980314053197f4d46eefedf4e6175bc9412f14412ec4ea2f"}, + {file = "pillow-10.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:154e939c5f0053a383de4fd3d3da48d9427a7e985f58af8e94d0b3c9fcfcf4f9"}, + {file = "pillow-10.2.0-cp312-cp312-win_arm64.whl", hash = "sha256:f379abd2f1e3dddb2b61bc67977a6b5a0a3f7485538bcc6f39ec76163891ee48"}, + {file = "pillow-10.2.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8373c6c251f7ef8bda6675dd6d2b3a0fcc31edf1201266b5cf608b62a37407f9"}, + {file = "pillow-10.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:870ea1ada0899fd0b79643990809323b389d4d1d46c192f97342eeb6ee0b8483"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4b6b1e20608493548b1f32bce8cca185bf0480983890403d3b8753e44077129"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3031709084b6e7852d00479fd1d310b07d0ba82765f973b543c8af5061cf990e"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:3ff074fc97dd4e80543a3e91f69d58889baf2002b6be64347ea8cf5533188213"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:cb4c38abeef13c61d6916f264d4845fab99d7b711be96c326b84df9e3e0ff62d"}, + {file = "pillow-10.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b1b3020d90c2d8e1dae29cf3ce54f8094f7938460fb5ce8bc5c01450b01fbaf6"}, + {file = "pillow-10.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:170aeb00224ab3dc54230c797f8404507240dd868cf52066f66a41b33169bdbe"}, + {file = "pillow-10.2.0-cp38-cp38-win32.whl", hash = "sha256:c4225f5220f46b2fde568c74fca27ae9771536c2e29d7c04f4fb62c83275ac4e"}, + {file = "pillow-10.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:0689b5a8c5288bc0504d9fcee48f61a6a586b9b98514d7d29b840143d6734f39"}, + {file = "pillow-10.2.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:b792a349405fbc0163190fde0dc7b3fef3c9268292586cf5645598b48e63dc67"}, + {file = "pillow-10.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c570f24be1e468e3f0ce7ef56a89a60f0e05b30a3669a459e419c6eac2c35364"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8ecd059fdaf60c1963c58ceb8997b32e9dc1b911f5da5307aab614f1ce5c2fb"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c365fd1703040de1ec284b176d6af5abe21b427cb3a5ff68e0759e1e313a5e7e"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:70c61d4c475835a19b3a5aa42492409878bbca7438554a1f89d20d58a7c75c01"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b6f491cdf80ae540738859d9766783e3b3c8e5bd37f5dfa0b76abdecc5081f13"}, + {file = "pillow-10.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d189550615b4948f45252d7f005e53c2040cea1af5b60d6f79491a6e147eef7"}, + {file = "pillow-10.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:49d9ba1ed0ef3e061088cd1e7538a0759aab559e2e0a80a36f9fd9d8c0c21591"}, + {file = "pillow-10.2.0-cp39-cp39-win32.whl", hash = "sha256:babf5acfede515f176833ed6028754cbcd0d206f7f614ea3447d67c33be12516"}, + {file = "pillow-10.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:0304004f8067386b477d20a518b50f3fa658a28d44e4116970abfcd94fac34a8"}, + {file = "pillow-10.2.0-cp39-cp39-win_arm64.whl", hash = "sha256:0fb3e7fc88a14eacd303e90481ad983fd5b69c761e9e6ef94c983f91025da869"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-macosx_10_10_x86_64.whl", hash = "sha256:322209c642aabdd6207517e9739c704dc9f9db943015535783239022002f054a"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3eedd52442c0a5ff4f887fab0c1c0bb164d8635b32c894bc1faf4c618dd89df2"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb28c753fd5eb3dd859b4ee95de66cc62af91bcff5db5f2571d32a520baf1f04"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:33870dc4653c5017bf4c8873e5488d8f8d5f8935e2f1fb9a2208c47cdd66efd2"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3c31822339516fb3c82d03f30e22b1d038da87ef27b6a78c9549888f8ceda39a"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a2b56ba36e05f973d450582fb015594aaa78834fefe8dfb8fcd79b93e64ba4c6"}, + {file = "pillow-10.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:d8e6aeb9201e655354b3ad049cb77d19813ad4ece0df1249d3c793de3774f8c7"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:2247178effb34a77c11c0e8ac355c7a741ceca0a732b27bf11e747bbc950722f"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:15587643b9e5eb26c48e49a7b33659790d28f190fc514a322d55da2fb5c2950e"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753cd8f2086b2b80180d9b3010dd4ed147efc167c90d3bf593fe2af21265e5a5"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7c8f97e8e7a9009bcacbe3766a36175056c12f9a44e6e6f2d5caad06dcfbf03b"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:d1b35bcd6c5543b9cb547dee3150c93008f8dd0f1fef78fc0cd2b141c5baf58a"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fe4c15f6c9285dc54ce6553a3ce908ed37c8f3825b5a51a15c91442bb955b868"}, + {file = "pillow-10.2.0.tar.gz", hash = "sha256:e87f0b2c78157e12d7686b27d63c070fd65d994e8ddae6f328e0dcf4a0cd007e"}, ] [package.extras] docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-removed-in", "sphinxext-opengraph"] +fpx = ["olefile"] +mic = ["olefile"] tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] +typing = ["typing-extensions"] +xmp = ["defusedxml"] [[package]] name = "pip" -version = "23.2.1" +version = "23.3.2" description = "The PyPA recommended tool for installing Python packages." category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "pip-23.2.1-py3-none-any.whl", hash = "sha256:7ccf472345f20d35bdc9d1841ff5f313260c2c33fe417f48c30ac46cccabf5be"}, - {file = "pip-23.2.1.tar.gz", hash = "sha256:fb0bd5435b3200c602b5bf61d2d43c2f13c02e29c1707567ae7fbc514eb9faf2"}, + {file = "pip-23.3.2-py3-none-any.whl", hash = "sha256:5052d7889c1f9d05224cd41741acb7c5d6fa735ab34e339624a614eaaa7e7d76"}, + {file = "pip-23.3.2.tar.gz", hash = "sha256:7fd9972f96db22c8077a1ee2691b172c8089b17a5652a44494a9ecb0d78f9149"}, ] [[package]] @@ -1166,14 +1222,14 @@ testing = ["pytest", "pytest-cov"] [[package]] name = "plotly" -version = "5.16.1" +version = "5.18.0" description = "An open-source, interactive data visualization library for Python" category = "main" optional = false python-versions = ">=3.6" files = [ - {file = "plotly-5.16.1-py2.py3-none-any.whl", hash = "sha256:19cc34f339acd4e624177806c14df22f388f23fb70658b03aad959a0e650a0dc"}, - {file = "plotly-5.16.1.tar.gz", hash = "sha256:295ac25edeb18c893abb71dcadcea075b78fd6fdf07cee4217a4e1009667925b"}, + {file = "plotly-5.18.0-py3-none-any.whl", hash = "sha256:23aa8ea2f4fb364a20d34ad38235524bd9d691bf5299e800bca608c31e8db8de"}, + {file = "plotly-5.18.0.tar.gz", hash = "sha256:360a31e6fbb49d12b007036eb6929521343d6bee2236f8459915821baefa2cbb"}, ] [package.dependencies] @@ -1182,14 +1238,14 @@ tenacity = ">=6.2.0" [[package]] name = "pluggy" -version = "1.2.0" +version = "1.4.0" description = "plugin and hook calling mechanisms for python" category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "pluggy-1.2.0-py3-none-any.whl", hash = "sha256:c2fd55a7d7a3863cba1a013e4e2414658b1d07b6bc57b3919e0c63c9abb99849"}, - {file = "pluggy-1.2.0.tar.gz", hash = "sha256:d12f0c4b579b15f5e054301bb226ee85eeeba08ffec228092f8defbaa3a4c4b3"}, + {file = "pluggy-1.4.0-py3-none-any.whl", hash = "sha256:7db9f7b503d67d1c5b95f59773ebb58a8c1c288129a88665838012cfb07b8981"}, + {file = "pluggy-1.4.0.tar.gz", hash = "sha256:8c85c2876142a764e5b7548e7d9a0e0ddb46f5185161049a79b7e974454223be"}, ] [package.extras] @@ -1254,18 +1310,19 @@ pyparsing = ">=2.0.1" [[package]] name = "pygments" -version = "2.16.1" +version = "2.17.2" description = "Pygments is a syntax highlighting package written in Python." category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "Pygments-2.16.1-py3-none-any.whl", hash = "sha256:13fc09fa63bc8d8671a6d247e1eb303c4b343eaee81d861f3404db2935653692"}, - {file = "Pygments-2.16.1.tar.gz", hash = "sha256:1daff0494820c69bc8941e407aa20f577374ee88364ee10a98fdbe0aece96e29"}, + {file = "pygments-2.17.2-py3-none-any.whl", hash = "sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c"}, + {file = "pygments-2.17.2.tar.gz", hash = "sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367"}, ] [package.extras] plugins = ["importlib-metadata"] +windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pyjsg" @@ -1357,14 +1414,14 @@ solrcloud = ["kazoo (>=2.5.0)"] [[package]] name = "pytest" -version = "7.4.0" +version = "7.4.4" description = "pytest: simple powerful testing with Python" category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "pytest-7.4.0-py3-none-any.whl", hash = "sha256:78bf16451a2eb8c7a2ea98e32dc119fd2aa758f1d5d66dbf0a59d69a3969df32"}, - {file = "pytest-7.4.0.tar.gz", hash = "sha256:b4bf8c45bd59934ed84001ad51e11b4ee40d40a1229d2c79f9c592b0a3f6bd8a"}, + {file = "pytest-7.4.4-py3-none-any.whl", hash = "sha256:b090cdf5ed60bf4c45261be03239c2c1c22df034fbffe691abe93cd80cea01d8"}, + {file = "pytest-7.4.4.tar.gz", hash = "sha256:2cf0005922c6ace4a3e2ec8b4080eb0d9753fdc93107415332f50ce9e7994280"}, ] [package.dependencies] @@ -1409,14 +1466,14 @@ six = ">=1.5" [[package]] name = "pytz" -version = "2023.3" +version = "2023.4" description = "World timezone definitions, modern and historical" category = "main" optional = false python-versions = "*" files = [ - {file = "pytz-2023.3-py2.py3-none-any.whl", hash = "sha256:a151b3abb88eda1d4e34a9814df37de2a80e301e68ba0fd856fb9b46bfbbbffb"}, - {file = "pytz-2023.3.tar.gz", hash = "sha256:1d8ce29db189191fb55338ee6d0387d82ab59f3d00eac103412d64e0ebd0c588"}, + {file = "pytz-2023.4-py2.py3-none-any.whl", hash = "sha256:f90ef520d95e7c46951105338d918664ebfd6f1d995bd7d153127ce90efafa6a"}, + {file = "pytz-2023.4.tar.gz", hash = "sha256:31d4583c4ed539cd037956140d695e42c033a19e984bfce9964a3f7d59bc2b40"}, ] [[package]] @@ -1483,25 +1540,25 @@ files = [ [[package]] name = "rdflib" -version = "7.0.0" +version = "6.0.0" description = "RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information." category = "main" optional = false -python-versions = ">=3.8.1,<4.0.0" +python-versions = ">=3.7" files = [ - {file = "rdflib-7.0.0-py3-none-any.whl", hash = "sha256:0438920912a642c866a513de6fe8a0001bd86ef975057d6962c79ce4771687cd"}, - {file = "rdflib-7.0.0.tar.gz", hash = "sha256:9995eb8569428059b8c1affd26b25eac510d64f5043d9ce8c84e0d0036e995ae"}, + {file = "rdflib-6.0.0-py3-none-any.whl", hash = "sha256:bb24f0058070d5843503e15b37c597bc3858d328d11acd9476efad3aa62f555d"}, + {file = "rdflib-6.0.0.tar.gz", hash = "sha256:7ce4d757eb26f4dd43205ec340d8c097f29e5adfe45d6ea20238c731dc679879"}, ] [package.dependencies] -isodate = ">=0.6.0,<0.7.0" -pyparsing = ">=2.1.0,<4" +isodate = "*" +pyparsing = "*" +setuptools = "*" [package.extras] -berkeleydb = ["berkeleydb (>=18.1.0,<19.0.0)"] -html = ["html5lib (>=1.0,<2.0)"] -lxml = ["lxml (>=4.3.0,<5.0.0)"] -networkx = ["networkx (>=2.0.0,<3.0.0)"] +docs = ["sphinx (<5)", "sphinxcontrib-apidoc"] +html = ["html5lib"] +tests = ["black (==21.7b0)", "coverage", "doctest-ignore-unicode (==0.1.2)", "flake8", "html5lib", "networkx", "nose (==1.3.7)", "nose-timer"] [[package]] name = "rdflib-jsonld" @@ -1536,19 +1593,19 @@ rdflib-jsonld = "0.6.1" [[package]] name = "readme-renderer" -version = "41.0" -description = "readme_renderer is a library for rendering \"readme\" descriptions for Warehouse" +version = "42.0" +description = "readme_renderer is a library for rendering readme descriptions for Warehouse" category = "main" optional = false python-versions = ">=3.8" files = [ - {file = "readme_renderer-41.0-py3-none-any.whl", hash = "sha256:a38243d5b6741b700a850026e62da4bd739edc7422071e95fd5c4bb60171df86"}, - {file = "readme_renderer-41.0.tar.gz", hash = "sha256:4f4b11e5893f5a5d725f592c5a343e0dc74f5f273cb3dcf8c42d9703a27073f7"}, + {file = "readme_renderer-42.0-py3-none-any.whl", hash = "sha256:13d039515c1f24de668e2c93f2e877b9dbe6c6c32328b90a40a49d8b2b85f36d"}, + {file = "readme_renderer-42.0.tar.gz", hash = "sha256:2d55489f83be4992fe4454939d1a051c33edbab778e82761d060c9fc6b308cd1"}, ] [package.dependencies] -bleach = ">=2.1.0" docutils = ">=0.13.1" +nh3 = ">=0.2.14" Pygments = ">=2.5.1" [package.extras] @@ -1608,14 +1665,14 @@ idna2008 = ["idna"] [[package]] name = "rich" -version = "13.5.2" +version = "13.7.0" description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" category = "main" optional = false python-versions = ">=3.7.0" files = [ - {file = "rich-13.5.2-py3-none-any.whl", hash = "sha256:146a90b3b6b47cac4a73c12866a499e9817426423f57c5a66949c086191a8808"}, - {file = "rich-13.5.2.tar.gz", hash = "sha256:fb9d6c0a0f643c99eed3875b5377a184132ba9be4d61516a55273d3554d75a39"}, + {file = "rich-13.7.0-py3-none-any.whl", hash = "sha256:6da14c108c4866ee9520bbffa71f6fe3962e193b7da68720583850cd4548e235"}, + {file = "rich-13.7.0.tar.gz", hash = "sha256:5cb5123b5cf9ee70584244246816e9114227e0b98ad9176eede6ad54bf5403fa"}, ] [package.dependencies] @@ -1627,42 +1684,46 @@ jupyter = ["ipywidgets (>=7.5.1,<9)"] [[package]] name = "scipy" -version = "1.9.3" +version = "1.12.0" description = "Fundamental algorithms for scientific computing in Python" category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "scipy-1.9.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1884b66a54887e21addf9c16fb588720a8309a57b2e258ae1c7986d4444d3bc0"}, - {file = "scipy-1.9.3-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:83b89e9586c62e787f5012e8475fbb12185bafb996a03257e9675cd73d3736dd"}, - {file = "scipy-1.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a72d885fa44247f92743fc20732ae55564ff2a519e8302fb7e18717c5355a8b"}, - {file = "scipy-1.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d01e1dd7b15bd2449c8bfc6b7cc67d630700ed655654f0dfcf121600bad205c9"}, - {file = "scipy-1.9.3-cp310-cp310-win_amd64.whl", hash = "sha256:68239b6aa6f9c593da8be1509a05cb7f9efe98b80f43a5861cd24c7557e98523"}, - {file = "scipy-1.9.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b41bc822679ad1c9a5f023bc93f6d0543129ca0f37c1ce294dd9d386f0a21096"}, - {file = "scipy-1.9.3-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:90453d2b93ea82a9f434e4e1cba043e779ff67b92f7a0e85d05d286a3625df3c"}, - {file = "scipy-1.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83c06e62a390a9167da60bedd4575a14c1f58ca9dfde59830fc42e5197283dab"}, - {file = "scipy-1.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:abaf921531b5aeaafced90157db505e10345e45038c39e5d9b6c7922d68085cb"}, - {file = "scipy-1.9.3-cp311-cp311-win_amd64.whl", hash = "sha256:06d2e1b4c491dc7d8eacea139a1b0b295f74e1a1a0f704c375028f8320d16e31"}, - {file = "scipy-1.9.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5a04cd7d0d3eff6ea4719371cbc44df31411862b9646db617c99718ff68d4840"}, - {file = "scipy-1.9.3-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:545c83ffb518094d8c9d83cce216c0c32f8c04aaf28b92cc8283eda0685162d5"}, - {file = "scipy-1.9.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d54222d7a3ba6022fdf5773931b5d7c56efe41ede7f7128c7b1637700409108"}, - {file = "scipy-1.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cff3a5295234037e39500d35316a4c5794739433528310e117b8a9a0c76d20fc"}, - {file = "scipy-1.9.3-cp38-cp38-win_amd64.whl", hash = "sha256:2318bef588acc7a574f5bfdff9c172d0b1bf2c8143d9582e05f878e580a3781e"}, - {file = "scipy-1.9.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d644a64e174c16cb4b2e41dfea6af722053e83d066da7343f333a54dae9bc31c"}, - {file = "scipy-1.9.3-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:da8245491d73ed0a994ed9c2e380fd058ce2fa8a18da204681f2fe1f57f98f95"}, - {file = "scipy-1.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4db5b30849606a95dcf519763dd3ab6fe9bd91df49eba517359e450a7d80ce2e"}, - {file = "scipy-1.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c68db6b290cbd4049012990d7fe71a2abd9ffbe82c0056ebe0f01df8be5436b0"}, - {file = "scipy-1.9.3-cp39-cp39-win_amd64.whl", hash = "sha256:5b88e6d91ad9d59478fafe92a7c757d00c59e3bdc3331be8ada76a4f8d683f58"}, - {file = "scipy-1.9.3.tar.gz", hash = "sha256:fbc5c05c85c1a02be77b1ff591087c83bc44579c6d2bd9fb798bb64ea5e1a027"}, + {file = "scipy-1.12.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:78e4402e140879387187f7f25d91cc592b3501a2e51dfb320f48dfb73565f10b"}, + {file = "scipy-1.12.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:f5f00ebaf8de24d14b8449981a2842d404152774c1a1d880c901bf454cb8e2a1"}, + {file = "scipy-1.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e53958531a7c695ff66c2e7bb7b79560ffdc562e2051644c5576c39ff8efb563"}, + {file = "scipy-1.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e32847e08da8d895ce09d108a494d9eb78974cf6de23063f93306a3e419960c"}, + {file = "scipy-1.12.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4c1020cad92772bf44b8e4cdabc1df5d87376cb219742549ef69fc9fd86282dd"}, + {file = "scipy-1.12.0-cp310-cp310-win_amd64.whl", hash = "sha256:75ea2a144096b5e39402e2ff53a36fecfd3b960d786b7efd3c180e29c39e53f2"}, + {file = "scipy-1.12.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:408c68423f9de16cb9e602528be4ce0d6312b05001f3de61fe9ec8b1263cad08"}, + {file = "scipy-1.12.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:5adfad5dbf0163397beb4aca679187d24aec085343755fcdbdeb32b3679f254c"}, + {file = "scipy-1.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c3003652496f6e7c387b1cf63f4bb720951cfa18907e998ea551e6de51a04467"}, + {file = "scipy-1.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b8066bce124ee5531d12a74b617d9ac0ea59245246410e19bca549656d9a40a"}, + {file = "scipy-1.12.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8bee4993817e204d761dba10dbab0774ba5a8612e57e81319ea04d84945375ba"}, + {file = "scipy-1.12.0-cp311-cp311-win_amd64.whl", hash = "sha256:a24024d45ce9a675c1fb8494e8e5244efea1c7a09c60beb1eeb80373d0fecc70"}, + {file = "scipy-1.12.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e7e76cc48638228212c747ada851ef355c2bb5e7f939e10952bc504c11f4e372"}, + {file = "scipy-1.12.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:f7ce148dffcd64ade37b2df9315541f9adad6efcaa86866ee7dd5db0c8f041c3"}, + {file = "scipy-1.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c39f92041f490422924dfdb782527a4abddf4707616e07b021de33467f917bc"}, + {file = "scipy-1.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a7ebda398f86e56178c2fa94cad15bf457a218a54a35c2a7b4490b9f9cb2676c"}, + {file = "scipy-1.12.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:95e5c750d55cf518c398a8240571b0e0782c2d5a703250872f36eaf737751338"}, + {file = "scipy-1.12.0-cp312-cp312-win_amd64.whl", hash = "sha256:e646d8571804a304e1da01040d21577685ce8e2db08ac58e543eaca063453e1c"}, + {file = "scipy-1.12.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:913d6e7956c3a671de3b05ccb66b11bc293f56bfdef040583a7221d9e22a2e35"}, + {file = "scipy-1.12.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:bba1b0c7256ad75401c73e4b3cf09d1f176e9bd4248f0d3112170fb2ec4db067"}, + {file = "scipy-1.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:730badef9b827b368f351eacae2e82da414e13cf8bd5051b4bdfd720271a5371"}, + {file = "scipy-1.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6546dc2c11a9df6926afcbdd8a3edec28566e4e785b915e849348c6dd9f3f490"}, + {file = "scipy-1.12.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:196ebad3a4882081f62a5bf4aeb7326aa34b110e533aab23e4374fcccb0890dc"}, + {file = "scipy-1.12.0-cp39-cp39-win_amd64.whl", hash = "sha256:b360f1b6b2f742781299514e99ff560d1fe9bd1bff2712894b52abe528d1fd1e"}, + {file = "scipy-1.12.0.tar.gz", hash = "sha256:4bf5abab8a36d20193c698b0f1fc282c1d083c94723902c447e5d2f1780936a3"}, ] [package.dependencies] -numpy = ">=1.18.5,<1.26.0" +numpy = ">=1.22.4,<1.29.0" [package.extras] -dev = ["flake8", "mypy", "pycodestyle", "typing_extensions"] -doc = ["matplotlib (>2)", "numpydoc", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-panels (>=0.5.2)", "sphinx-tabs"] -test = ["asv", "gmpy2", "mpmath", "pytest", "pytest-cov", "pytest-xdist", "scikit-umfpack", "threadpoolctl"] +dev = ["click", "cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy", "pycodestyle", "pydevtool", "rich-click", "ruff", "types-psutil", "typing_extensions"] +doc = ["jupytext", "matplotlib (>2)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] +test = ["asv", "gmpy2", "hypothesis", "mpmath", "pooch", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"] [[package]] name = "secretstorage" @@ -1680,6 +1741,23 @@ files = [ cryptography = ">=2.0" jeepney = ">=0.6" +[[package]] +name = "setuptools" +version = "69.0.3" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "setuptools-69.0.3-py3-none-any.whl", hash = "sha256:385eb4edd9c9d5c17540511303e39a147ce2fc04bc55289c322b9e5904fe2c05"}, + {file = "setuptools-69.0.3.tar.gz", hash = "sha256:be1af57fc409f93647f2e8e4573a142ed38724b8cdd389706a867bb4efcf1e78"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "packaging (>=23.1)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + [[package]] name = "shexjsg" version = "0.8.2" @@ -1726,24 +1804,22 @@ sparqlwrapper = ">=1.8.2" [[package]] name = "sparqlwrapper" -version = "2.0.0" +version = "1.8.5" description = "SPARQL Endpoint interface to Python" category = "main" optional = false -python-versions = ">=3.7" +python-versions = "*" files = [ - {file = "SPARQLWrapper-2.0.0-py3-none-any.whl", hash = "sha256:c99a7204fff676ee28e6acef327dc1ff8451c6f7217dcd8d49e8872f324a8a20"}, - {file = "SPARQLWrapper-2.0.0.tar.gz", hash = "sha256:3fed3ebcc77617a4a74d2644b86fd88e0f32e7f7003ac7b2b334c026201731f1"}, + {file = "SPARQLWrapper-1.8.5-py2-none-any.whl", hash = "sha256:357ee8a27bc910ea13d77836dbddd0b914991495b8cc1bf70676578155e962a8"}, + {file = "SPARQLWrapper-1.8.5-py3-none-any.whl", hash = "sha256:c7f9c9d8ebb13428771bc3b6dee54197422507dcc3dea34e30d5dcfc53478dec"}, + {file = "SPARQLWrapper-1.8.5.tar.gz", hash = "sha256:d6a66b5b8cda141660e07aeb00472db077a98d22cb588c973209c7336850fb3c"}, ] [package.dependencies] -rdflib = ">=6.1.1" +rdflib = ">=4.0" [package.extras] -dev = ["mypy (>=0.931)", "pandas (>=1.3.5)", "pandas-stubs (>=1.2.0.48)", "setuptools (>=3.7.1)"] -docs = ["sphinx (<5)", "sphinx-rtd-theme"] keepalive = ["keepalive (>=0.5)"] -pandas = ["pandas (>=1.3.5)"] [[package]] name = "tenacity" @@ -1797,56 +1873,44 @@ urllib3 = ">=1.26.0" [[package]] name = "tzdata" -version = "2023.3" +version = "2023.4" description = "Provider of IANA time zone data" category = "main" optional = false python-versions = ">=2" files = [ - {file = "tzdata-2023.3-py2.py3-none-any.whl", hash = "sha256:7e65763eef3120314099b6939b5546db7adce1e7d6f2e179e3df563c70511eda"}, - {file = "tzdata-2023.3.tar.gz", hash = "sha256:11ef1e08e54acb0d4f95bdb1be05da659673de4acbd21bf9c69e94cc5e907a3a"}, + {file = "tzdata-2023.4-py2.py3-none-any.whl", hash = "sha256:aa3ace4329eeacda5b7beb7ea08ece826c28d761cda36e747cfbf97996d39bf3"}, + {file = "tzdata-2023.4.tar.gz", hash = "sha256:dd54c94f294765522c77399649b4fefd95522479a664a0cec87f41bebc6148c9"}, ] [[package]] name = "urllib3" -version = "2.0.4" +version = "2.2.0" description = "HTTP library with thread-safe connection pooling, file post, and more." category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "urllib3-2.0.4-py3-none-any.whl", hash = "sha256:de7df1803967d2c2a98e4b11bb7d6bd9210474c46e8a0401514e3a42a75ebde4"}, - {file = "urllib3-2.0.4.tar.gz", hash = "sha256:8d22f86aae8ef5e410d4f539fde9ce6b2113a001bb4d189e0aed70642d602b11"}, + {file = "urllib3-2.2.0-py3-none-any.whl", hash = "sha256:ce3711610ddce217e6d113a2732fafad960a03fd0318c91faa79481e35c11224"}, + {file = "urllib3-2.2.0.tar.gz", hash = "sha256:051d961ad0c62a94e50ecf1af379c3aba230c66c710493493560c0c223c49f20"}, ] [package.extras] brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +h2 = ["h2 (>=4,<5)"] socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] zstd = ["zstandard (>=0.18.0)"] -[[package]] -name = "webencodings" -version = "0.5.1" -description = "Character encoding aliases for legacy web content" -category = "main" -optional = false -python-versions = "*" -files = [ - {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"}, - {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, -] - [[package]] name = "wheel" -version = "0.41.2" +version = "0.42.0" description = "A built-package format for Python" category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "wheel-0.41.2-py3-none-any.whl", hash = "sha256:75909db2664838d015e3d9139004ee16711748a52c8f336b52882266540215d8"}, - {file = "wheel-0.41.2.tar.gz", hash = "sha256:0c5ac5ff2afb79ac23ab82bab027a0be7b5dbcf2e54dc50efe4bf507de1f7985"}, + {file = "wheel-0.42.0-py3-none-any.whl", hash = "sha256:177f9c9b0d45c47873b619f5b650346d632cdc35fb5e4d25058e09c9e581433d"}, + {file = "wheel-0.42.0.tar.gz", hash = "sha256:c45be39f7882c9d34243236f2d63cbd58039e360f85d0913425fbd7ceea617a8"}, ] [package.extras] @@ -1869,21 +1933,21 @@ pyYaml = "*" [[package]] name = "zipp" -version = "3.16.2" +version = "3.17.0" description = "Backport of pathlib-compatible object wrapper for zip files" category = "main" optional = false python-versions = ">=3.8" files = [ - {file = "zipp-3.16.2-py3-none-any.whl", hash = "sha256:679e51dd4403591b2d6838a48de3d283f3d188412a9782faadf845f298736ba0"}, - {file = "zipp-3.16.2.tar.gz", hash = "sha256:ebc15946aa78bd63458992fc81ec3b6f7b1e92d51c35e6de1c3804e73b799147"}, + {file = "zipp-3.17.0-py3-none-any.whl", hash = "sha256:0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31"}, + {file = "zipp-3.17.0.tar.gz", hash = "sha256:84e64a1c28cf7e91ed2078bb8cc8c259cb19b76942096c8d7b84947690cabaf0"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy (>=0.9.1)", "pytest-ruff"] [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "53f1a5d316ff885c26c50491b8aac542f2646275a42822ff84c06023923fe081" +content-hash = "4ca0ed54f21087118d9d973650a3372baa4373fb945cf55b937d26fa22ea22e0" diff --git a/tests/resources/cam.rdf b/tests/resources/cam.rdf new file mode 100644 index 00000000..a1efcf9b --- /dev/null +++ b/tests/resources/cam.rdf @@ -0,0 +1,9770 @@ +@prefix ECO: . +@prefix GO: . +@prefix GO_REF: . +@prefix NCBITaxon: . +@prefix PMID: . +@prefix Pfam: . +@prefix PomBase: . +@prefix RO: . +@prefix SGD: . +@prefix SO: . +@prefix UniProtKB: . +@prefix ns1: . +@prefix obo: . +@prefix owl: . +@prefix rdfs: . + + a owl:Ontology . + +PomBase:SPAC1006.09 rdfs:label "win1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC10F6.09c rdfs:label "psm3" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC110.03 rdfs:label "cdc42" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC12B10.10 rdfs:label "nod1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC12G12.04 rdfs:label "mcp60" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC1556.08c rdfs:label "cbs2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC1610.04 rdfs:label "mug99" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC1687.18c rdfs:label "ssl3" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC1687.20c rdfs:label "mis6" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC16A10.05c rdfs:label "dad1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC16A10.07c rdfs:label "taz1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC16C9.07 rdfs:label "pom2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC1751.03 rdfs:label "tif313" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC1782.10c rdfs:label "nhp2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC17D4.02 rdfs:label "cdc45" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC1805.08 rdfs:label "dlc1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC1805.17 rdfs:label "crm1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC1834.08 rdfs:label "mak1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC18G6.10 rdfs:label "lem2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC1A6.03c rdfs:label "SPAC1A6.03c" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC1A6.04c rdfs:label "plb1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC1F5.04c rdfs:label "cdc12" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC1F7.01c rdfs:label "spt6" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC20H4.11c rdfs:label "rho5" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC212.01c rdfs:label "SPAC212.01c" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC212.04c rdfs:label "SPAC212.04c" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC21E11.03c rdfs:label "pcr1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC22E12.17c rdfs:label "glo3" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC23C4.02 rdfs:label "crn1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC23E2.01 rdfs:label "fep1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC25B8.17 rdfs:label "ypf1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC25G10.07c rdfs:label "cut7" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC25G10.08 rdfs:label "SPAC25G10.08" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC27D7.13c rdfs:label "ssm4" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC27E2.09 rdfs:label "mak2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC27F1.02c rdfs:label "cdc8" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC29A4.04c rdfs:label "cbf5" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC29E6.07 rdfs:label "SPAC29E6.07" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC2F7.03c rdfs:label "pom1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC2G11.12 rdfs:label "rqh1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC31A2.05c rdfs:label "mis4" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC31A2.16 rdfs:label "gef2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC343.07 rdfs:label "mug28" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC3A11.14c rdfs:label "pkl1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC3A12.13c rdfs:label "hcr1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC4A8.16c rdfs:label "tif33" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC4D7.07c rdfs:label "csi2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC57A7.10c rdfs:label "sec21" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC637.07 rdfs:label "moe1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC644.12 rdfs:label "cdc5" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC664.10 rdfs:label "klp2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC688.07c rdfs:label "rng10" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC6F12.02 rdfs:label "rst2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC6G10.02c rdfs:label "tea3" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC6G9.11 rdfs:label "syb1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC750.06c rdfs:label "SPAC750.06c" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC7D4.13c rdfs:label "SPAC7D4.13c" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC821.05 rdfs:label "tif38" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC821.09 rdfs:label "eng1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC821.12 rdfs:label "orb6" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC890.02c rdfs:label "alp7" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC926.07c rdfs:label "dlc2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC977.06 rdfs:label "SPAC977.06" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC977.09c rdfs:label "SPAC977.09c" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC977.10 rdfs:label "nhe1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC9G1.02 rdfs:label "wis4" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAP27G11.13c rdfs:label "nop10" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAPB8E5.03 rdfs:label "mae1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC115.02c rdfs:label "afg1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC11C11.03 rdfs:label "ndc80" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC11G11.03 rdfs:label "mrt4" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC12C2.08 rdfs:label "dnm1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC12D12.01 rdfs:label "sad1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1347.01c rdfs:label "rev1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1347.12 rdfs:label "arp1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1348.01 rdfs:label "SPBC1348.01" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1348.07 rdfs:label "SPBC1348.07" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC13E7.06 rdfs:label "msd1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC146.03c rdfs:label "cut3" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC146.13c rdfs:label "myo1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC146.14c rdfs:label "sec26" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC14C8.19 rdfs:label "tam10" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1604.08c rdfs:label "imp1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1604.09c rdfs:label "rex4" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1685.15c rdfs:label "klp6" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC16A3.13 rdfs:label "meu7" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC16C6.11 rdfs:label "rpl3201" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC16C6.13c rdfs:label "sec27" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC16D10.04c rdfs:label "dna2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC16E9.07 rdfs:label "mug100" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC16E9.10c rdfs:label "rix7" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC16E9.12c rdfs:label "pab2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC16G5.11c rdfs:label "bag101" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC16G5.12c rdfs:label "top3" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1703.01c rdfs:label "pop4" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1703.14c rdfs:label "top1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1706.01 rdfs:label "tea4" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1711.07 rdfs:label "rrb1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1711.16 rdfs:label "pwp1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1778.02 rdfs:label "rap1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC17D1.03c rdfs:label "rrp43" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC17D1.04 rdfs:label "acr1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC17D11.05 rdfs:label "tif32" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC17F3.02 rdfs:label "nak1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC17G9.07 rdfs:label "rps2402" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC18E5.03c rdfs:label "sim4" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC18H10.03 rdfs:label "tif35" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC18H10.13 rdfs:label "rps1402" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1921.01c rdfs:label "rpl35b" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC19C2.03 rdfs:label "rpc10" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC19G7.09 rdfs:label "ulp1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC19G7.16 rdfs:label "iws1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1A4.07c rdfs:label "sof1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC20F10.06 rdfs:label "mad2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC20F10.09 rdfs:label "lsm5" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC211.04c rdfs:label "mcm6" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC216.07c rdfs:label "tor2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC21B10.10 rdfs:label "rps402" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC21H7.03c rdfs:label "SPBC21H7.03c" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC23G7.04c rdfs:label "nif1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC24C6.05 rdfs:label "sec28" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC25D12.03c rdfs:label "mcm7" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC26H8.10 rdfs:label "dis3" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC27.02c rdfs:label "ask1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC28F2.11 rdfs:label "hmo1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC29A3.17 rdfs:label "gef3" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC29B5.03c rdfs:label "rpl26" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC2A9.07c rdfs:label "hpz1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC2D10.19c rdfs:label "alb1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC2F12.13 rdfs:label "klp5" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC2G2.05 rdfs:label "rpl1603" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC2G2.14 rdfs:label "csi1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC2G5.06c rdfs:label "hmt2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC30D10.06 rdfs:label "lsm4" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC32F12.04 rdfs:label "gtb1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC32H8.05 rdfs:label "SPBC32H8.05" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC32H8.09 rdfs:label "wdr8" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC32H8.10 rdfs:label "cdk9" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC336.06c rdfs:label "rnh1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC336.09c rdfs:label "rrn7" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC337.12 rdfs:label "red5" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC365.09c rdfs:label "kin17" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC365.15 rdfs:label "alp4" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC3B8.09 rdfs:label "utp3" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC3E7.10 rdfs:label "fma1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC4.04c rdfs:label "mcm2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC409.09c rdfs:label "mis13" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC428.03c rdfs:label "pho4" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC428.18 rdfs:label "cdt1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC428.20c rdfs:label "alp6" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC4B4.07c rdfs:label "usp102" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC4C3.05c rdfs:label "nuc1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC4C3.07 rdfs:label "eif6" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC4F6.13c rdfs:label "erb1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC530.04 rdfs:label "mod5" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC582.05c rdfs:label "brc1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC646.04 rdfs:label "pla1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC646.13 rdfs:label "sds23" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC646.17c rdfs:label "dic1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC725.02 rdfs:label "mpr1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC725.08 rdfs:label "pir2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC725.12 rdfs:label "nbl1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC776.02c rdfs:label "dis2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC776.11 rdfs:label "rpl2801" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC776.17 rdfs:label "rrp7" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC83.17 rdfs:label "mbf1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC887.03c rdfs:label "noc3" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC887.10 rdfs:label "mcs4" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC887.14c rdfs:label "pfh1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC8D2.13 rdfs:label "shq1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC8D2.16c rdfs:label "SPBC8D2.16c" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC9B6.05c rdfs:label "lsm3" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC9B6.06 rdfs:label "mrpl10" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBCPT2R1.01c rdfs:label "SPBCPT2R1.01c" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBCPT2R1.04c rdfs:label "SPBCPT2R1.04c" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBP22H7.09c rdfs:label "mis15" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBP4G3.02 rdfs:label "pho1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBP8B7.01c rdfs:label "pop7" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBP8B7.20c rdfs:label "nop2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBPB2B2.07c rdfs:label "SPBPB2B2.07c" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBPB2B2.14c rdfs:label "SPBPB2B2.14c" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBPJ4664.04 rdfs:label "cop1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC11E10.03 rdfs:label "mug1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC1235.03 rdfs:label "cue2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC1281.01 rdfs:label "ags1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC1322.08 rdfs:label "srk1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC1322.12c rdfs:label "bub1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC1450.09c rdfs:label "SPCC1450.09c" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC1682.02c rdfs:label "mcm3" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC16C4.03 rdfs:label "pin1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC1739.10 rdfs:label "mug33" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC1795.01c rdfs:label "mad3" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC188.02 rdfs:label "par1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC1919.03c rdfs:label "amk2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC285.08 rdfs:label "ret2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC297.03 rdfs:label "ssp1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC320.11c rdfs:label "nip7" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC330.10 rdfs:label "pcm1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC4B3.15 rdfs:label "mid1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC576.07 rdfs:label "ret3" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC576.15c rdfs:label "ksg1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC613.06 rdfs:label "rpl902" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC736.14 rdfs:label "dis1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC74.03c rdfs:label "ssp2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC74.06 rdfs:label "mak3" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC825.03c rdfs:label "psy1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC830.03 rdfs:label "grc3" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC962.06c rdfs:label "bpb1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPNCRNA.445 rdfs:label "snoR61" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPSNORNA.20 rdfs:label "snR30" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPSNRNA.01 rdfs:label "snu1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:8663159 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:10366596 . + + a PomBase:SPAC458.04c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:27082518 . + + a GO:0007128 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000000914 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0061780 . + + a PomBase:SPBC32H8.04c, + owl:NamedIndividual . + + a PomBase:SPBC17D1.06, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0070301 . + + a PomBase:SPBC211.04c, + owl:NamedIndividual . + + a PomBase:SPAC458.04c, + owl:NamedIndividual . + + a PomBase:SPBC4F6.14, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20661445 . + + a PomBase:SPBC30D10.06, + owl:NamedIndividual . + + a ECO:0000303, + owl:NamedIndividual ; + obo:SEPIO_0000124 GO_REF:0000051 . + + a GO:0001077, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a PomBase:SPBP22H7.02c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16085489 . + + a PomBase:SPBC2F12.13, + owl:NamedIndividual . + + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:23389634 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . + + a PomBase:SPBC776.13, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11071923 . + + a GO:0034605 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:15800064 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000269, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22245228 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24790095 . + + a PomBase:SPBC19C2.09, + owl:NamedIndividual . + + a PomBase:SPAC110.03, + owl:NamedIndividual . + + a ECO:0000250, + owl:NamedIndividual ; + RO:0002614 UniProtKB:P37838 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:17035632 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC409.09c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22235339 . + + a PomBase:SPBC902.06, + owl:NamedIndividual . + + a PomBase:SPAC18G6.10, + owl:NamedIndividual . + + a PomBase:SPAC664.10, + owl:NamedIndividual . + + a GO:0071456 . + + a PomBase:SPBC21H7.03c, + owl:NamedIndividual . + + a PomBase:SPCC320.13c, + owl:NamedIndividual . + + a PomBase:SPBPB2B2.07c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22375066 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003690, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_BFO_0000050 . + + a PomBase:SPAC821.09, + owl:NamedIndividual . + + a GO:0007137 . + + a GO:0034605 . + + a GO:0000085 . + + a PomBase:SPBC21B10.10, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC16E9.12c, + owl:NamedIndividual . + + a PomBase:SPBC21H7.04, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20298435 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20970342 . + + a GO:0000278 . + + a PomBase:SPCC1682.02c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC19C2.09, + owl:NamedIndividual . + + a PomBase:SPBC19C2.09 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0051329 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22139357 . + + a PomBase:SPBC582.06c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC19G7.05c, + owl:NamedIndividual . + + a PomBase:SPCC320.13c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000089 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18799626 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16146630 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC27E2.09, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20807799 . + + a GO:0000087 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0071456 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC1539.10, + owl:NamedIndividual . + + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:23389634 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:10366596 . + + a PomBase:SPCC613.06, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:17895368 . + + a PomBase:SPBC8D2.13, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19171118 . + + a PomBase:SPBC887.14c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11448769 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11260263 . + + a GO:0071276 . + + a GO:0072690 . + + a PomBase:SPAC343.07, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19061185 . + + a GO:0003677, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_BFO_0000050 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000004182 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0015035, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000752 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0072711 . + + a GO:0000278 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:25410910 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:1990948, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_BFO_0000050 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000752 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18923422 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20870879 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC1921.01c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:12006658 . + + a PomBase:SPBC582.06c, + owl:NamedIndividual . + + a PomBase:SPAC22E12.17c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000278 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:10747035 . + + a PomBase:SPAC16A10.07c, + owl:NamedIndividual . + + a PomBase:SPAC2F7.03c, + owl:NamedIndividual . + + a PomBase:SPBC11B10.09, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:15930132 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000001732 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a PomBase:SPBC19G7.09, + owl:NamedIndividual . + + a PomBase:SPAP8A3.02c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000001800 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000303, + owl:NamedIndividual ; + obo:SEPIO_0000124 GO_REF:0000051 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20870879 . + + a PomBase:SPBC19F5.05c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16899242 . + + a PomBase:SPBC1711.07, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22970243 . + + a PomBase:SPCC191.07 . + + a PomBase:SPBC146.14c, + owl:NamedIndividual . + + a GO:0042789 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0004674, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000752 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a PomBase:SPBC336.02, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC2G5.06c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:23349808 . + + a GO:0071333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:27082518 . + + a PomBase:SPAC4D7.05, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a PomBase:SPAC16A10.05c, + owl:NamedIndividual . + + a PomBase:SPBC3E7.10, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000303, + owl:NamedIndividual ; + obo:SEPIO_0000124 GO_REF:0000051 . + + a ECO:0000303, + owl:NamedIndividual ; + obo:SEPIO_0000124 GO_REF:0000051 . + + a PomBase:SPBC646.09c, + owl:NamedIndividual . + + a PomBase:SPBP16F5.06, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:17035632 . + + a GO:0000087 . + + a PomBase:SPAC7D4.14c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:23851719 . + + a GO:0000080 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19061185 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC2E12.02, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC212.04c, + owl:NamedIndividual . + + a PomBase:SPCC1235.03, + owl:NamedIndividual . + + a PomBase:SPAC12G12.04, + owl:NamedIndividual . + + a PomBase:SPBC16G5.11c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC887.03c, + owl:NamedIndividual . + + a PomBase:SPAC644.14c, + owl:NamedIndividual . + + a PomBase:SPCC1840.02c, + owl:NamedIndividual . + + a GO:0000087 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18799626 . + + a GO:0003682, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000501 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0000093 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19061185 . + + a GO:0000087 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0005515, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_BFO_0000050 . + + a PomBase:SPBC18H10.13, + owl:NamedIndividual . + + a PomBase:SPAC3G9.01, + owl:NamedIndividual . + + a PomBase:SPAC20H4.11c, + owl:NamedIndividual . + + a GO:0034605 . + + a GO:0000087 . + + a GO:0000080 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC1782.09c, + owl:NamedIndividual . + + a PomBase:SPAC3A11.14c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC1834.08, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC4F6.07c, + owl:NamedIndividual . + + a PomBase:SPBC20F10.06, + owl:NamedIndividual . + + a PomBase:SPBC21H7.04, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000278 . + + a PomBase:SPAC24H6.05 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24713849 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC25D12.02c, + owl:NamedIndividual . + + a PomBase:SPCC825.03c, + owl:NamedIndividual . + + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11679064 . + + a PomBase:SPAPB1E7.02c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC212.01c, + owl:NamedIndividual . + + a GO:0004707, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000752 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0070301 . + + a PomBase:SPBC16D10.09, + owl:NamedIndividual . + + a PomBase:SPAC27D7.13c, + owl:NamedIndividual . + + a PomBase:SPBC2G2.05, + owl:NamedIndividual . + + a PomBase:SPBC1703.01c, + owl:NamedIndividual . + + a GO:0000278 . + + a PomBase:SPBC20F10.01, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:15643072 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19061185 . + + a PomBase:SPBC9B6.06, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18346214 . + + a GO:0000080 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11084332 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16899242 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20919928 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:8485317 . + + a GO:0000278 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:17035632 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:8196617 . + + a GO:0000080 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11080156 . + + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC4D7.05, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:10766248 . + + a PomBase:SPBC725.12, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0071276 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000003957 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPCC1919.03c, + owl:NamedIndividual . + + a PomBase:SPCC16C4.03, + owl:NamedIndividual . + + a PomBase:SPAC29E6.07, + owl:NamedIndividual . + + a GO:0007128 . + + a GO:0000080 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000269, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11683390 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000087 . + + a ECO:0000250, + owl:NamedIndividual ; + RO:0002614 UniProtKB:Q07623 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBP8B7.01c, + owl:NamedIndividual . + + a PomBase:SPCC1281.01, + owl:NamedIndividual . + + a GO:0000278 . + + a PomBase:SPAPB1E7.02c, + owl:NamedIndividual . + + a GO:0000983, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_BFO_0000050 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0051329 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24713849 . + + a PomBase:SPCC962.02c, + owl:NamedIndividual . + + a GO:0004674, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000752 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16111942 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC25D12.02c, + owl:NamedIndividual . + + a PomBase:SPBC4F6.07c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16428435 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC428.03c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:12023299 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18725402 . + + a GO:0000085 . + + a PomBase:SPBC83.17, + owl:NamedIndividual . + + a GO:0000087 . + + a PomBase:SPBC365.04c, + owl:NamedIndividual . + + a PomBase:SPBC8D2.16c, + owl:NamedIndividual . + + a GO:0034605 . + + a GO:0000092 . + + a PomBase:SPAC4D7.07c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24790095 . + + a PomBase:SPCC320.13c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBP8B7.20c, + owl:NamedIndividual . + + a PomBase:SPBC646.04, + owl:NamedIndividual . + + a GO:0006995 . + + a PomBase:SPAC1782.09c, + owl:NamedIndividual . + + a PomBase:SPBC725.02, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0000281 . + + a GO:0000092 . + + a PomBase:SPBC543.06c, + owl:NamedIndividual . + + a ECO:0000303, + owl:NamedIndividual ; + obo:SEPIO_0000124 GO_REF:0000051 . + + a PomBase:SPBP4H10.06c, + owl:NamedIndividual . + + a ECO:0000303, + owl:NamedIndividual ; + obo:SEPIO_0000124 GO_REF:0000051 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC1347.01c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22375066 . + + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16537923 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000087 . + + a PomBase:SPCC1739.10, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000303, + owl:NamedIndividual ; + obo:SEPIO_0000124 GO_REF:0000051 . + + a ECO:0000250, + owl:NamedIndividual ; + RO:0002614 UniProtKB:Q04225 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:7628693 . + + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000003105 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18362178 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPCC285.08, + owl:NamedIndividual . + + a PomBase:SPAC1556.08c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC1347.02, + owl:NamedIndividual . + + a ECO:0000316, + owl:NamedIndividual ; + RO:0002614 PomBase:SPAC18G6.15 ; + obo:SEPIO_0000124 PMID:20624975 . + + a PomBase:SPCC11E10.03, + owl:NamedIndividual . + + a GO:0000087 . + + a GO:0070301 . + + a GO:0000087 . + + a GO:0051329 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000080 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC222.10c, + owl:NamedIndividual . + + a GO:0071456 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20852022 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000255, + owl:NamedIndividual ; + RO:0002614 Pfam:PF00128 ; + obo:SEPIO_0000124 GO_REF:0000050 . + + a PomBase:SPBP22H7.02c, + owl:NamedIndividual . + + a PomBase:SPBC530.14c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22146723 . + + a PomBase:SPBC106.10 . + + a PomBase:SPBC11G11.03, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16428435 . + + a PomBase:SPAC23C4.02, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC688.07c, + owl:NamedIndividual . + + a PomBase:SPCC16A11.17, + owl:NamedIndividual . + + a GO:0051220 . + + a PomBase:SPBC1604.09c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC1093.06c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:15837798 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC1861.01c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16899242 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000087 . + + a GO:0000093 . + + a GO:0000087 . + + a GO:0000236 . + + a PomBase:SPBC1348.07, + owl:NamedIndividual . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000002747 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16585273 . + + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22174761 . + + a PomBase:SPCC645.07 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24451546 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a PomBase:SPCC1322.12c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24210919 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:23349808 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16899242 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:27082518 . + + a PomBase:SPAC2E12.02, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16085489 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0007124 . + + a GO:0007124 . + + a GO:0072690 . + + a PomBase:SPBC14C8.14c, + owl:NamedIndividual . + + a PomBase:SPAC29E6.05c . + + a PomBase:SPCC962.02c, + owl:NamedIndividual . + + a GO:0000092 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:17035632 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPCC830.03, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC2G2.14, + owl:NamedIndividual . + + a PomBase:SPAC1687.20c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000000924 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a PomBase:SPBC29A3.17, + owl:NamedIndividual . + + a PomBase:SPBC1685.15c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . + + a ECO:0000269, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11683390 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000000100 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a PomBase:SPAC15A10.16, + owl:NamedIndividual . + + a PomBase:SPBC28E12.05, + owl:NamedIndividual . + + a PomBase:SPAP8A3.02c, + owl:NamedIndividual . + + a PomBase:SPBC9B6.07, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19061185 . + + a PomBase:SPCC16A11.17, + owl:NamedIndividual . + + a PomBase:SPBC56F2.04, + owl:NamedIndividual . + + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24954052 . + + a PomBase:SPAC607.09c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24947517 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a PomBase:SPBC1706.01, + owl:NamedIndividual . + + a PomBase:SPBC16D10.09, + owl:NamedIndividual . + + a PomBase:SPBC11C11.03, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:1500423 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22235339 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24210919 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11080156 . + + a PomBase:SPAC3G9.01, + owl:NamedIndividual . + + a PomBase:SPAC644.14c, + owl:NamedIndividual . + + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18180284 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC582.03, + owl:NamedIndividual . + + a GO:0051329 . + + a PomBase:SPBC646.09c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24210919 . + + a PomBase:SPBC1347.02, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC216.02, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0007124 . + + a GO:0005049, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000752 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a ECO:0000303, + owl:NamedIndividual ; + obo:SEPIO_0000124 GO_REF:0000051 . + + a PomBase:SPBC27.02c, + owl:NamedIndividual . + + a PomBase:SPBC1711.05, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24790095 . + + a ECO:0000305, + owl:NamedIndividual ; + RO:0002614 GO:0009277 ; + obo:SEPIO_0000124 GO_REF:0000111 . + + a GO:0071479 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20298435 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11432827 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19061185 . + + a GO:0000089 . + + a PomBase:SPAC1A6.04c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19373772 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20970342 . + + a PomBase:SPBC776.13, + owl:NamedIndividual . + + a PomBase:SPBC16A3.13, + owl:NamedIndividual . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000006452 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0000085 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18362178 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC776.17, + owl:NamedIndividual . + + a PomBase:SPCC16A11.17, + owl:NamedIndividual . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000001131 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18621924 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0051329 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC1703.14c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19061185 . + + a GO:0007124 . + + a PomBase:SPAC6G9.11, + owl:NamedIndividual . + + a GO:0007128 . + + a ECO:0000305, + owl:NamedIndividual ; + RO:0002614 GO:0009277 ; + obo:SEPIO_0000124 GO_REF:0000111 . + + a GO:0000087 . + + a PomBase:SPAC1093.06c, + owl:NamedIndividual . + + a PomBase:SPBC776.08c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18362178 . + + a PomBase:SPBC1711.05, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC1782.07 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0007137 . + + a PomBase:SPCC320.11c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0000080 . + + a GO:0051329 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11084332 . + + a PomBase:SPBC530.14c, + owl:NamedIndividual . + + a GO:0071276 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18362178 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000005337 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:10799520 . + + a ECO:0000250, + owl:NamedIndividual ; + RO:0002614 UniProtKB:P38112 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0070301 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000003515 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000001583 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0000090 . + + a PomBase:SPAC2E12.02 . + + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22375066 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0007128 . + + a PomBase:SPBC776.11, + owl:NamedIndividual . + + a PomBase:SPAC1006.09, + owl:NamedIndividual . + + a GO:0007128 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:21118717 . + + a GO:0071470 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC17D1.04, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC4B4.07c, + owl:NamedIndividual . + + a GO:0000087 . + + a PomBase:SPSNRNA.01, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC1604.08c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:21965289 . + + a PomBase:SPAC25B8.17, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC11B10.09, + owl:NamedIndividual . + + a PomBase:SPBC1105.17, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a PomBase:SPBC887.15c . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19570910 . + + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24478458 . + + a PomBase:SPCC16A11.17, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20935472 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC3H8.10, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19061185 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC1782.09c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:25847133 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:2192258 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000004908 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000303, + owl:NamedIndividual ; + obo:SEPIO_0000124 GO_REF:0000051 . + + a PomBase:SPSNORNA.20, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0005515, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_BFO_0000050 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPCC4F11.02, + owl:NamedIndividual . + + a GO:0031297 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC1782.09c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000000781 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC646.17c, + owl:NamedIndividual . + + a PomBase:SPBC1711.16, + owl:NamedIndividual . + + a GO:0071242 . + + a PomBase:SPBC4.04c, + owl:NamedIndividual . + + a PomBase:SPAP27G11.13c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000087 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24021628 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11448769 . + + a GO:0060274 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBP4H10.06c, + owl:NamedIndividual . + + a GO:0000087 . + + a PomBase:SPCC16A11.17, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11884512 . + + a GO:0000087 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19606211 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000003046 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22065639 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:9563836 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0034605 . + + a PomBase:SPAC4A8.16c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC3H8.10, + owl:NamedIndividual . + + a PomBase:SPAC1006.03c, + owl:NamedIndividual . + + a GO:0001077, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20919928 . + + a PomBase:SPAC890.02c, + owl:NamedIndividual . + + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:26687354 . + + a PomBase:SPAC24H6.05, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000091 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:21652630 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24713849 . + + a GO:0034605 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:12455694 . + + a PomBase:SPAC11E3.03, + owl:NamedIndividual . + + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18077559 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:23394829 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:12023299 . + + a GO:0006995 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000006187 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0007137 . + + a GO:0000087 . + + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:12411492 . + + a PomBase:SPBC24C6.05, + owl:NamedIndividual . + + a GO:0051329 . + + a PomBase:SPBC26H8.10, + owl:NamedIndividual . + + a GO:0034605 . + + a PomBase:SPBC19G7.16, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0000080 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:25253718 . + + a GO:0007124 . + + a PomBase:SPAC2G11.12, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20870879 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16624923 . + + a ECO:0000250, + owl:NamedIndividual ; + RO:0002614 UniProtKB:P41810 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0051329 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC32H8.05, + owl:NamedIndividual . + + a PomBase:SPBC19C2.09, + owl:NamedIndividual . + + a PomBase:SPAC977.10, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0071333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19109429 . + + a PomBase:SPBC32F12.04, + owl:NamedIndividual . + + a GO:0000089 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19061185 . + + a GO:0000087 . + + a PomBase:SPCC962.02c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20970342 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:12237855 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC1F8.02c . + + a PomBase:SPCC1223.06, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:25733668 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18951025 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:12023299 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC365.15, + owl:NamedIndividual . + + a ECO:0000250, + owl:NamedIndividual ; + RO:0002614 UniProtKB:P40089 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a PomBase:SPBC428.20c, + owl:NamedIndividual . + + a GO:0071472 . + + a GO:0007128 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11553715 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:9852154 . + + a PomBase:SPBPJ4664.04, + owl:NamedIndividual . + + a PomBase:SPBC28E12.05, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a PomBase:SPBC17D1.03c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a PomBase:SPBC14C8.19, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11861551 . + + a PomBase:SPAPB8E5.03, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000269, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22245228 . + + a GO:0007124 . + + a PomBase:SPBC365.09c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19061185 . + + a PomBase:SPCC1450.09c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18346214 . + + a PomBase:SPAC750.06c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20870879 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC28F2.11, + owl:NamedIndividual . + + a PomBase:SPBC16E9.10c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0071479 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16179942 . + + a PomBase:SPBP4H10.06c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20298435 . + + a GO:0000089 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000006095 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0070301 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11861551 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22146723 . + + a GO:0071479 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC660.07 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000303, + owl:NamedIndividual ; + obo:SEPIO_0000124 GO_REF:0000051 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11854402 . + + a GO:0071470 . + + a PomBase:SPBC428.18, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC19C2.03, + owl:NamedIndividual . + + a PomBase:SPBC29B5.01 . + + a PomBase:SPBC336.02, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0007128 . + + a GO:0000089 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC29A4.04c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0000278 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0006995 . + + a PomBase:SPBC11B10.09, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a PomBase:SPNCRNA.445, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC543.06c, + owl:NamedIndividual . + + a GO:0000089 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPCC895.07, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC57A7.10c, + owl:NamedIndividual . + + a GO:0051329 . + + a ECO:0000269, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:26483559 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0007124 . + + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . + + a GO:0070301 . + + a ECO:0000269, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11683390 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:1770000 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC20F10.01, + owl:NamedIndividual . + + a PomBase:SPAC20G8.05c, + owl:NamedIndividual . + + a PomBase:SPBC4C3.05c, + owl:NamedIndividual . + + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16537923 . + + a PomBase:SPBC530.04, + owl:NamedIndividual . + + a PomBase:SPBC3B8.09, + owl:NamedIndividual . + + a PomBase:SPBC646.13, + owl:NamedIndividual . + + a GO:0000087 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000002172 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC725.08, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18951025 . + + a PomBase:SPBP22H7.09c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC365.04c, + owl:NamedIndividual . + + a PomBase:SPBC16E9.07, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:15654021 . + + a PomBase:SPAC607.09c, + owl:NamedIndividual . + + a PomBase:SPAC3H8.10, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC216.02, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:15164362 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000080 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20512112 . + + a GO:0051329 . + + a PomBase:SPBC2A9.07c, + owl:NamedIndividual . + + a GO:0000085 . + + a GO:0000080 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000084 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC776.02c, + owl:NamedIndividual . + + a PomBase:SPBC12D12.01, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20919928 . + + a PomBase:SPAC1751.03, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0007128 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC27F1.02c, + owl:NamedIndividual . + + a PomBase:SPAC1093.06c, + owl:NamedIndividual . + + a GO:0000087 . + + a PomBase:SPBC18E5.03c, + owl:NamedIndividual . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000007455 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11907273 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000089 . + + a PomBase:SPAC31A2.16, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000006316 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000005931 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0007124 . + + a GO:0000090 . + + a GO:0000087 . + + a PomBase:SPAC1A6.03c, + owl:NamedIndividual . + + a PomBase:SPCC576.07, + owl:NamedIndividual . + + a GO:0000089 . + + a PomBase:SPAC8C9.03, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000080 . + + a GO:0007124 . + + a PomBase:SPAC9G1.02, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20870879 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a PomBase:SPBC32H8.10, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0007128 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11554922 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000003322 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a PomBase:SPBC4F6.14, + owl:NamedIndividual . + + a PomBase:SPBC32H8.09, + owl:NamedIndividual . + + a PomBase:SPAC977.09c, + owl:NamedIndividual . + + a ECO:0000304, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11909965 . + + a GO:0000087 . + + a PomBase:SPAC644.12, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC20G8.05c, + owl:NamedIndividual . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000002304 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a PomBase:SPCC74.03c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . + + a GO:0051329 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:12360293 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11676924 . + + a ECO:0000304, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:17472966 . + + a PomBase:SPBC9B6.05c, + owl:NamedIndividual . + + a PomBase:SPBC25D12.03c, + owl:NamedIndividual . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000007497 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20512112 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20870879 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:15629716 . + + a PomBase:SPBC19G7.05c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a PomBase:SPAC25G10.08, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:10766248 . + + a GO:0000090 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:10747035 . + + a PomBase:SPCC4G3.08 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24713849 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0005680 . + + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . + + a GO:0000087 . + + a PomBase:SPBC1348.01, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:9852154 . + + a PomBase:SPBC1539.10, + owl:NamedIndividual . + + a GO:0015035, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000752 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0007124 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a PomBase:SPBCPT2R1.01c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBP4G3.02, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . + + a GO:0007137 . + + a ECO:0000269, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11683390 . + + a PomBase:SPAC1805.08, + owl:NamedIndividual . + + a GO:0007128 . + + a PomBase:SPBC16G5.12c, + owl:NamedIndividual . + + a GO:0000089 . + + a GO:1905406 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:23349808 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000001171 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0070301 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000005005 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a ECO:0000250, + owl:NamedIndividual ; + RO:0002614 UniProtKB:P40486 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a PomBase:SPAC16C9.07, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a PomBase:SPAC11E3.03, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:9802907 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11792803 . + + a GO:0010458 . + + a PomBase:SPBC582.03, + owl:NamedIndividual . + + a PomBase:SPBC11B10.09, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:2537310 . + + a PomBase:SPBC1778.02, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a PomBase:SPBP16F5.06, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22146723 . + + a ECO:0000316, + owl:NamedIndividual ; + RO:0002614 SGD:S000002367 ; + obo:SEPIO_0000124 PMID:10502409 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . + + a PomBase:SPBC582.03, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:7596817 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24291789 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC2D10.10c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC17D1.06, + owl:NamedIndividual . + + a PomBase:SPBC14C8.14c, + owl:NamedIndividual . + + a PomBase:SPAC1006.03c, + owl:NamedIndividual . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000001947 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a PomBase:SPAC1782.10c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:21072667 . + + a PomBase:SPBC776.08c, + owl:NamedIndividual . + + a PomBase:SPCC188.02, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:8196617 . + + a PomBase:SPAC1F5.04c, + owl:NamedIndividual . + + a GO:0000084 . + + a PomBase:SPBC337.12, + owl:NamedIndividual . + + a PomBase:SPAC17H9.02, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0051321 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC12B10.10, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPCC962.06c, + owl:NamedIndividual . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000004165 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a ECO:0000353, + owl:NamedIndividual ; + RO:0002614 PomBase:SPBC646.09c ; + obo:SEPIO_0000124 PMID:12006658 . + + a GO:0007137 . + + a PomBase:SPBC115.02c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16819157 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000305, + owl:NamedIndividual ; + RO:0002614 GO:0009277 ; + obo:SEPIO_0000124 GO_REF:0000111 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0071242 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0007128 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20870879 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24713849 . + + a GO:0045841 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:8502556 . + + a ECO:0000353, + owl:NamedIndividual ; + RO:0002614 PomBase:SPAC1782.09c ; + obo:SEPIO_0000124 PMID:16085489 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20870879 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11554922 . + + a GO:0071281 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:25987607 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11707284 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22976295 . + + a ECO:0000303, + owl:NamedIndividual ; + obo:SEPIO_0000124 GO_REF:0000051 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:1293882 . + + a PomBase:SPBC29B5.03c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000093 . + + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16537923 . + + a GO:0000088 . + + a GO:0003682, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:9636183 . + + a GO:0000089 . + + a ECO:0000250, + owl:NamedIndividual ; + RO:0002614 UniProtKB:P57743 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18077559 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22976295 . + + a GO:0004674, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000752 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0000080 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:7634333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000087 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC19G12.08 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24478458 . + + a PomBase:SPBC1105.17, + owl:NamedIndividual . + + a PomBase:SPCC895.07, + owl:NamedIndividual . + + a PomBase:SPBC16C6.13c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:25987607 . + + a GO:0000089 . + + a GO:0000278 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20298435 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20870879 . + + a GO:0000087 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:25987607 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20919928 . + + a PomBase:SPBP35G2.16c . + + a PomBase:SPBC19F5.05c, + owl:NamedIndividual . + + a PomBase:SPBC12C2.08, + owl:NamedIndividual . + + a PomBase:SPAC17H9.02, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22146723 . + + a GO:0007132 . + + a ECO:0000303, + owl:NamedIndividual ; + obo:SEPIO_0000124 GO_REF:0000051 . + + a GO:0007124 . + + a GO:0000089 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000002494 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000005231 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:15791259 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC1610.04, + owl:NamedIndividual . + + a ECO:0000303, + owl:NamedIndividual ; + obo:SEPIO_0000124 GO_REF:0000051 . + + a GO:0003690, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_BFO_0000050 . + + a PomBase:SPAC1782.09c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11907273 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000087 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a PomBase:SPCC645.07, + owl:NamedIndividual . + + a GO:0000087 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC146.03c, + owl:NamedIndividual . + + a PomBase:SPBC1347.12, + owl:NamedIndividual . + + a PomBase:SPAC23C11.16, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19570910 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:17538026 . + + a PomBase:SPCC74.06, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBPB2B2.14c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24291789 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11694582 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16899242 . + + a PomBase:SPAC23C11.16, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC17D11.05, + owl:NamedIndividual . + + a PomBase:SPCC1840.02c, + owl:NamedIndividual . + + a PomBase:SPAC7D4.14c, + owl:NamedIndividual . + + a PomBase:SPAC821.12, + owl:NamedIndividual . + + a GO:0051321 . + + a GO:0000089 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPCC297.03, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPCC4B3.15, + owl:NamedIndividual . + + a GO:0000090 . + + a GO:0071456 . + + a GO:0007124 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a PomBase:SPBC2D10.10c, + owl:NamedIndividual . + + a PomBase:SPBC32H8.04c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:21385875 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000087 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC902.04, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0005826 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a ECO:0000303, + owl:NamedIndividual ; + obo:SEPIO_0000124 GO_REF:0000051 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22682245 . + + a PomBase:SPAC977.06, + owl:NamedIndividual . + + a GO:0000085 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000087 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11676924 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:12007420 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20870879 . + + a PomBase:SPAC458.04c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:26258632 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24920823 . + + a GO:0007128 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000353, + owl:NamedIndividual ; + RO:0002614 PomBase:SPAC24H6.05 ; + obo:SEPIO_0000124 PMID:15629716 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC1F7.01c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24210919 . + + a PomBase:SPCC330.10, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC9B6.07, + owl:NamedIndividual . + + a SO:0001871 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC4D7.05, + owl:NamedIndividual . + + a GO:0000085 . + + a PomBase:SPCC4G3.08 . + + a PomBase:SPBC17F3.02, + owl:NamedIndividual . + + a PomBase:SPBC582.05c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC887.10, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24165938 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0000278 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20404563 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18362178 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18621924 . + + a PomBase:SPBC16C6.11, + owl:NamedIndividual . + + a PomBase:SPBC13E7.06, + owl:NamedIndividual . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000003335 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a PomBase:SPAC6F12.02, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:17035632 . + + a GO:0000087 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:25847133 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000087 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPCC736.14, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22809626 . + + a PomBase:SPBC18H10.03, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20410137 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000278 . + + a PomBase:SPAC6G10.02c, + owl:NamedIndividual . + + a GO:0000278 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000087 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20970342 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:21880100 . + + a PomBase:SPCC4F11.02, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0007137 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . + + a GO:0034605 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0071472 . + + a PomBase:SPAC926.07c, + owl:NamedIndividual . + + a PomBase:SPBC902.04, + owl:NamedIndividual . + + a GO:0043596 . + + a ECO:0000250, + owl:NamedIndividual ; + RO:0002614 UniProtKB:Q1ED39 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0000089 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC1A4.07c, + owl:NamedIndividual . + + a PomBase:SPAC3A12.13c, + owl:NamedIndividual . + + a GO:0000080 . + + a ECO:0000250, + owl:NamedIndividual ; + RO:0002614 UniProtKB:Q08287 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:21072667 . + + a GO:0071456 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0001078, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0000278 . + + a PomBase:SPBC20F10.09, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000084 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:27385337 . + + a GO:0070301 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22139357 . + + a PomBase:SPAC15A10.16, + owl:NamedIndividual . + + a PomBase:SPBCPT2R1.04c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0007128 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11294895 . + + a PomBase:SPAC8C9.03, + owl:NamedIndividual . + + a GO:0000087 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20919928 . + + a PomBase:SPAC222.10c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000093 . + + a PomBase:SPAC1782.09c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC637.07, + owl:NamedIndividual . + + a PomBase:SPBC23G7.04c, + owl:NamedIndividual . + + a GO:0045944 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC29E6.05c . + + a PomBase:SPBC20F10.01, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:17035632 . + + a ECO:0000305, + owl:NamedIndividual ; + RO:0002614 GO:0009277 ; + obo:SEPIO_0000124 GO_REF:0000111 . + + a GO:0000278 . + + a PomBase:SPBC4C3.07, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000001212 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11707530 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000000804 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a PomBase:SPBC660.07 . + + a PomBase:SPAC7D4.13c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:9136929 . + + a GO:0000085 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000089 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPCC1223.06, + owl:NamedIndividual . + + a PomBase:SPBC1A4.05, + owl:NamedIndividual . + + a GO:0000089 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000004539 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC25G10.07c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC902.06, + owl:NamedIndividual . + + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:15164362 . + + a PomBase:SPBC4F6.13c, + owl:NamedIndividual . + + a PomBase:SPBC17G9.07, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19758558 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC24B11.06c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC2D10.19c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:1905406 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0042149 . + + a PomBase:SPBC146.13c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20870879 . + + a PomBase:SPAC821.05, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000087 . + + a PomBase:SPBC1861.01c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11294895 . + + a PomBase:SPBC56F2.04, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPCC16A11.17, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000001338 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0051220 . + + a PomBase:SPBC1A4.05, + owl:NamedIndividual . + + a PomBase:SPBC336.06c, + owl:NamedIndividual . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20870879 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24713849 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + +PomBase:SPAC1006.03c rdfs:label "red1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC11E3.03 rdfs:label "csm1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC15A10.16 rdfs:label "bud6" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC17H9.02 rdfs:label "mtl1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC20G8.05c rdfs:label "cdc15" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC222.10c rdfs:label "byr4" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC23C11.16 rdfs:label "plo1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC24B11.06c rdfs:label "sty1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC3G9.01 rdfs:label "nsk1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC607.09c rdfs:label "btn1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC644.14c rdfs:label "rad51" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC7D4.07c rdfs:label "trx1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC7D4.14c rdfs:label "iss10" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC8C9.03 rdfs:label "cgs1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC8E11.02c rdfs:label "rad24" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAP8A3.02c rdfs:label "ofd2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAPB1E7.02c rdfs:label "mcl1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1105.17 rdfs:label "cnp1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1347.02 rdfs:label "fkbp39" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC14C8.14c rdfs:label "pol5" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1539.10 rdfs:label "nop16" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC16D10.09 rdfs:label "pcn1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1711.05 rdfs:label "srp40" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC17D1.06 rdfs:label "dbp3" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1861.01c rdfs:label "cnp3" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC19F5.05c rdfs:label "ppp1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC19G7.05c rdfs:label "bgs1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC1A4.05 rdfs:label "blt1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC216.02 rdfs:label "mcp5" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC21H7.04 rdfs:label "dbp7" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC25D12.02c rdfs:label "dnt1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC28E12.05 rdfs:label "esf2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC29B5.01 rdfs:label "atf1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC2D10.10c rdfs:label "fib1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC32H8.04c rdfs:label "fcf1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC336.02 rdfs:label "SPBC336.02" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC365.04c rdfs:label "SPBC365.04c" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC4F6.07c rdfs:label "mak5" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC4F6.14 rdfs:label "nop4" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC530.14c rdfs:label "dsk1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC543.06c rdfs:label "dbp8" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC56F2.04 rdfs:label "utp20" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC582.06c rdfs:label "mcp6" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC776.08c rdfs:label "utp22" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC776.13 rdfs:label "cnd1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC902.04 rdfs:label "rmn1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC902.06 rdfs:label "mto2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC9B6.07 rdfs:label "nop52" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBP16F5.06 rdfs:label "nop8" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBP22H7.02c rdfs:label "mrd1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC1223.06 rdfs:label "tea1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC1840.02c rdfs:label "bgs4" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC4F11.02 rdfs:label "ptc1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC645.07 rdfs:label "rgf1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC895.07 rdfs:label "alp14" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0000778, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0009897, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a PomBase:SPAC31A2.05c, + owl:NamedIndividual . + + a GO:0009897, + owl:NamedIndividual . + + a GO:0005826, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0061419, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0098714, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0016604, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0051403, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005737, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005826, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0060187, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005737, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005737, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0009897, + owl:NamedIndividual . + + a GO:0016604, + owl:NamedIndividual . + + a GO:0005634, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a PomBase:SPBC29B5.01, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0016282, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005737, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 ; + ns1:__purl.obolibrary.org_obo_RO_0002008 . + + a GO:0005826, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005739, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0016604, + owl:NamedIndividual . + + a GO:0016604, + owl:NamedIndividual . + + a GO:0009897, + owl:NamedIndividual . + + a GO:0009897, + owl:NamedIndividual . + + a GO:1990811, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005737, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0035974, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0035974, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0016282, + owl:NamedIndividual . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005938, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0009897, + owl:NamedIndividual . + + a GO:0043505, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005634, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0009897, + owl:NamedIndividual . + + a GO:0030875, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0035327, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0007015, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000501 . + + a GO:0035838, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0031429, + owl:NamedIndividual . + + a PomBase:SPAC1805.17, + owl:NamedIndividual . + + a GO:0000778, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:1990811, + owl:NamedIndividual . + + a GO:0005826, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0035839, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0000775, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005634, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0016282, + owl:NamedIndividual . + + a GO:1990578, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0016604, + owl:NamedIndividual . + + a PomBase:SPAC10F6.09c, + owl:NamedIndividual . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0000778, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0035974, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0009897, + owl:NamedIndividual . + + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0035839, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005634, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0009897, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005826, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0046827, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0016282, + owl:NamedIndividual . + + a PomBase:SPBC16D10.04c, + owl:NamedIndividual . + + a GO:0000779, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0016282, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:1990811, + owl:NamedIndividual . + + a GO:0009897, + owl:NamedIndividual . + + a GO:0016282, + owl:NamedIndividual . + + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005737, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005634, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a PomBase:SPAC21E11.03c, + owl:NamedIndividual . + + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0035838, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0034399, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0030126, + owl:NamedIndividual . + + a GO:0030126, + owl:NamedIndividual . + + a GO:0034399, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0031429, + owl:NamedIndividual . + + a GO:0000936, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005634, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 ; + ns1:__purl.obolibrary.org_obo_RO_0002008 . + + a GO:0045944, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000501 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0035974, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0030126, + owl:NamedIndividual . + + a GO:0035974, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0035974, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a PomBase:SPBC336.09c, + owl:NamedIndividual . + + a GO:0000778, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0016282, + owl:NamedIndividual . + + a GO:0005634, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0031429, + owl:NamedIndividual . + + a GO:0035839, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005758, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005826, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005737, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005868, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005739, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0016282, + owl:NamedIndividual . + + a GO:0016604, + owl:NamedIndividual . + + a GO:0005737, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0030126, + owl:NamedIndividual . + + a PomBase:SPBC216.07c, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0030126, + owl:NamedIndividual . + + a GO:0005634, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0035838, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005826, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0061419, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0061419, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0005826, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005634, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0016282, + owl:NamedIndividual . + + a GO:0035838, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0035974, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0016604, + owl:NamedIndividual . + + a GO:0043622, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a PomBase:SPAC8E11.02c, + owl:NamedIndividual . + + a GO:0030126, + owl:NamedIndividual . + + a GO:0035839, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0031429, + owl:NamedIndividual . + + a GO:0030126, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0000775, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0000778, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0030126, + owl:NamedIndividual . + + a GO:0097356, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0009897, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005739, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0035974, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a PomBase:SPAC24B11.06c, + owl:NamedIndividual . + + a GO:0016282, + owl:NamedIndividual . + + a GO:0009897, + owl:NamedIndividual . + + a GO:0035861, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 , + . + + a GO:0000942, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005826, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0070693, + owl:NamedIndividual . + + a GO:0000779, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0016282, + owl:NamedIndividual . + + a GO:0016604, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a PomBase:SPAC7D4.07c, + owl:NamedIndividual . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0000942, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0000936, + owl:NamedIndividual . + + a PomBase:SPAC7D4.07c, + owl:NamedIndividual . + + a GO:0005739, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005634, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a PomBase:SPCC1795.01c, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0000923, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 , + . + + a GO:0048478, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0005869, + owl:NamedIndividual . + + a GO:0000779, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0016604, + owl:NamedIndividual . + + a GO:0005737, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0016282, + owl:NamedIndividual . + + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005634, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0006750, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0005826, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0043505, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0000778, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0035839, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0035838, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005938, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005634, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0035838, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0035974, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 ; + ns1:__purl.obolibrary.org_obo_RO_0002008 . + + a GO:0035974, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005737, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0035970, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0043626, + owl:NamedIndividual . + + a GO:0000778, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005737, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0009897, + owl:NamedIndividual . + + a GO:0036391, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0009897, + owl:NamedIndividual . + + a GO:0009897, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0000942, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0016282, + owl:NamedIndividual . + + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0009897, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0071687, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0051285, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0031429, + owl:NamedIndividual . + + a GO:0000778, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0043626, + owl:NamedIndividual . + + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005869, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0034399, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a PomBase:SPAC17D4.02, + owl:NamedIndividual . + + a GO:0051403, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0035838, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0000779, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0051286, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0000779, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005634, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a PomBase:SPAC1687.18c, + owl:NamedIndividual . + + a GO:0005634, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0035861, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 , + . + + a PomBase:SPCC1322.08, + owl:NamedIndividual . + + a GO:0009897, + owl:NamedIndividual . + + a GO:0009897, + owl:NamedIndividual . + + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005634, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:1990578, + owl:NamedIndividual . + + a GO:0005634, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005869, + owl:NamedIndividual . + + a GO:0005737, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0009897, + owl:NamedIndividual . + + a GO:1900050, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a PomBase:SPCC576.15c, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0035327, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0016604, + owl:NamedIndividual . + + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0071957, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0009897, + owl:NamedIndividual . + + a GO:0000778, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005739, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005737, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0070693, + owl:NamedIndividual . + + a GO:0070262, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . + + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 ; + ns1:__purl.obolibrary.org_obo_RO_0002008 . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005758, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0030981, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0000779, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005634, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a PomBase:SPAC23E2.01, + owl:NamedIndividual . + + a GO:0051286, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0035861, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 , + . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0005829, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a PomBase:SPAC8E11.02c, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a GO:0000776, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005737, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + +PomBase:SPAC1093.06c rdfs:label "dhc1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC24H6.05 rdfs:label "cdc25" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC2E12.02 rdfs:label "hsf1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC3H8.10 rdfs:label "spo20" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC458.04c rdfs:label "dli1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC4D7.05 rdfs:label "sum1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC20F10.01 rdfs:label "gar1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC582.03 rdfs:label "cdc13" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC646.09c rdfs:label "int6" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBP4H10.06c rdfs:label "cut14" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC320.13c rdfs:label "ark1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC962.02c rdfs:label "bir1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC11B10.09 rdfs:label "cdc2" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPBC19C2.09 rdfs:label "sre1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPCC16A11.17 rdfs:label "mcm4" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +PomBase:SPAC1782.09c rdfs:label "clp1" ; + rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ], + [ a owl:Restriction ; + owl:onProperty RO:0002162 ; + owl:someValuesFrom NCBITaxon:4896 ] . + +obo:BFO_0000050 a owl:ObjectProperty . + +RO:0002333 a owl:ObjectProperty . + +obo:BFO_0000066 a owl:ObjectProperty . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . + diff --git a/tests/resources/truncated_mgi_gpi2_0.gpi b/tests/resources/truncated_mgi_gpi2_0.gpi new file mode 100644 index 00000000..3469e495 --- /dev/null +++ b/tests/resources/truncated_mgi_gpi2_0.gpi @@ -0,0 +1,100 @@ +!gpi-version: 2.0 +!namespace: MGI +!generated-by: MGI +!date-generated: 2024-03-22 +MGI:MGI:1918911 0610005C13Rik RIKEN cDNA 0610005C13 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1923503 0610006L08Rik RIKEN cDNA 0610006L08 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1925547 0610008J02Rik RIKEN cDNA 0610008J02 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:3698435 0610009E02Rik RIKEN cDNA 0610009E02 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1918921 0610009F21Rik RIKEN cDNA 0610009F21 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1918931 0610009K14Rik RIKEN cDNA 0610009K14 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1914088 0610009L18Rik RIKEN cDNA 0610009L18 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915609 0610010K14Rik RIKEN cDNA 0610010K14 gene SO:0001217 NCBITaxon:10090 UniProtKB:Q9DCT6 +MGI:MGI:1918926 0610012D04Rik RIKEN cDNA 0610012D04 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1925548 0610012E21Rik RIKEN cDNA 0610012E21 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915618 0610025J13Rik RIKEN cDNA 0610025J13 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915614 0610030E20Rik RIKEN cDNA 0610030E20 gene SO:0001217 NCBITaxon:10090 UniProtKB:Q149G0 +MGI:MGI:1925549 0610031C06Rik RIKEN cDNA 0610031C06 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1921093 0610031I08Rik RIKEN cDNA 0610031I08 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915619 0610031O16Rik RIKEN cDNA 0610031O16 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1925551 0610033I19Rik RIKEN cDNA 0610033I19 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1921343 0610033M10Rik RIKEN cDNA 0610033M10 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1925613 0610033P13Rik RIKEN cDNA 0610033P13 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1925614 0610037L18Rik RIKEN cDNA 0610037L18 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1917595 0610038B21Rik RIKEN cDNA 0610038B21 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1922649 0610039G09Rik RIKEN cDNA 0610039G09 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915647 0610039H22Rik RIKEN cDNA 0610039H22 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915636 0610039K10Rik RIKEN cDNA 0610039K10 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915626 0610040A22Rik RIKEN cDNA 0610040A22 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1914922 0610040B10Rik RIKEN cDNA 0610040B10 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1922644 0610040F04Rik RIKEN cDNA 0610040F04 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1923511 0610040J01Rik RIKEN cDNA 0610040J01 gene SO:0001217 NCBITaxon:10090 UniProtKB:Q99K99 +MGI:MGI:1918938 0610042B02Rik RIKEN cDNA 0610042B02 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1922652 0610042B23Rik RIKEN cDNA 0610042B23 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1921345 0610042E11Rik RIKEN cDNA 0610042E11 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915630 0610042G04Rik RIKEN cDNA 0610042G04 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915650 0610043K17Rik RIKEN cDNA 0610043K17 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915652 0710001A04Rik RIKEN cDNA 0710001A04 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1914929 0710001D07Rik RIKEN cDNA 0710001D07 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915664 0710001L09Rik RIKEN cDNA 0710001L09 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1918942 0710005I21Rik RIKEN cDNA 0710005I21 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915659 0710007G10Rik RIKEN cDNA 0710007G10 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1918947 0710008F09Rik RIKEN cDNA 0710008F09 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1918945 0910001E24Rik RIKEN cDNA 0910001E24 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1922653 1010001B22Rik RIKEN cDNA 1010001B22 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915683 1010001I08Rik RIKEN cDNA 1010001I08 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1922655 1100001I12Rik RIKEN cDNA 1100001I12 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1920975 1110001D16Rik RIKEN cDNA 1110001D16 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915702 1110001M07Rik RIKEN cDNA 1110001M07 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915066 1110002E22Rik RIKEN cDNA 1110002E22 gene SO:0001217 NCBITaxon:10090 UniProtKB:E0CYV9 +MGI:MGI:1915738 1110002J07Rik RIKEN cDNA 1110002J07 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915821 1110002L01Rik RIKEN cDNA 1110002L01 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915733 1110002O04Rik RIKEN cDNA 1110002O04 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915716 1110003F02Rik RIKEN cDNA 1110003F02 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915726 1110003F10Rik RIKEN cDNA 1110003F10 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1929274 1110004F10Rik RIKEN cDNA 1110004F10 gene sid2057 SO:0001217 NCBITaxon:10090 UniProtKB:Q9R0P4 +MGI:MGI:1915714 1110004M10Rik RIKEN cDNA 1110004M10 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1923536 1110006E14Rik RIKEN cDNA 1110006E14 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1913373 1110006O24Rik RIKEN cDNA 1110006O24 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915732 1110007E10Rik RIKEN cDNA 1110007E10 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915750 1110008E08Rik RIKEN cDNA 1110008E08 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915772 1110013H19Rik RIKEN cDNA 1110013H19 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915879 1110013I04Rik RIKEN cDNA 1110013I04 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1913377 1110014L15Rik RIKEN cDNA 1110014L15 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915766 1110015O18Rik RIKEN cDNA 1110015O18 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915844 1110018F16Rik RIKEN cDNA 1110018F16 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915753 1110018N20Rik RIKEN cDNA 1110018N20 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915779 1110019B22Rik RIKEN cDNA 1110019B22 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:2443389 1110019B24Rik RIKEN cDNA 1110019B24 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1923561 1110019D14Rik RIKEN cDNA 1110019D14 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915781 1110020A21Rik RIKEN cDNA 1110020A21 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915834 1110020C17Rik RIKEN cDNA 1110020C17 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915850 1110021P09Rik RIKEN cDNA 1110021P09 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915885 1110025M09Rik RIKEN cDNA 1110025M09 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915940 1110028F11Rik RIKEN cDNA 1110028F11 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915942 1110028F18Rik RIKEN cDNA 1110028F18 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915975 1110032F04Rik RIKEN cDNA 1110032F04 gene SO:0001217 NCBITaxon:10090 UniProtKB:E9Q0B3 +MGI:MGI:1915977 1110032L06Rik RIKEN cDNA 1110032L06 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:2147638 1110034N17Rik RIKEN cDNA 1110034N17 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915934 1110035D15Rik RIKEN cDNA 1110035D15 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915922 1110035E04Rik RIKEN cDNA 1110035E04 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915936 1110035H17Rik RIKEN cDNA 1110035H17 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1915947 1110036E04Rik RIKEN cDNA 1110036E04 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1916001 1110037P09Rik RIKEN cDNA 1110037P09 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1916013 1110038B12Rik RIKEN cDNA 1110038B12 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:2152337 1110038F14Rik RIKEN cDNA 1110038F14 gene SO:0001217 NCBITaxon:10090 UniProtKB:Q3U6N9 +MGI:MGI:1916058 1110046J04Rik RIKEN cDNA 1110046J04 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1916041 1110050P16Rik RIKEN cDNA 1110050P16 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1916031 1110055C04Rik RIKEN cDNA 1110055C04 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1916021 1110058D11Rik RIKEN cDNA 1110058D11 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1913456 1110059E24Rik RIKEN cDNA 1110059E24 gene SO:0001217 NCBITaxon:10090 UniProtKB:Q9CQ90 +MGI:MGI:1916036 1110059G02Rik RIKEN cDNA 1110059G02 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1913452 1110059G10Rik RIKEN cDNA 1110059G10 gene SO:0001217 NCBITaxon:10090 UniProtKB:Q8K039 +MGI:MGI:1916064 1110060G06Rik RIKEN cDNA 1110060G06 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1916143 1110064A23Rik RIKEN cDNA 1110064A23 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:3026937 1110065F06Rik RIKEN cDNA 1110065F06 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1916155 1110065H08Rik RIKEN cDNA 1110065H08 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1916170 1110065P20Rik RIKEN cDNA 1110065P20 gene SO:0001217 NCBITaxon:10090 UniProtKB:B1ARW8 +MGI:MGI:1916173 1190001L17Rik RIKEN cDNA 1190001L17 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1916174 1190001M18Rik RIKEN cDNA 1190001M18 gene SO:0002127 NCBITaxon:10090 +MGI:MGI:1916168 1190005I06Rik RIKEN cDNA 1190005I06 gene SO:0001217 NCBITaxon:10090 UniProtKB:Q8K1L6 \ No newline at end of file diff --git a/tests/test_assoc_writer.py b/tests/test_assoc_writer.py index eb0bc030..6d175af2 100644 --- a/tests/test_assoc_writer.py +++ b/tests/test_assoc_writer.py @@ -1,7 +1,7 @@ from ontobio.io import assocwriter from ontobio.io import gafparser, gpadparser -from ontobio.model.association import GoAssociation, Curie, Subject, Term, ConjunctiveSet, Evidence, ExtensionUnit, Date, Aspect, Provider -import json +from ontobio.model.association import (GoAssociation, Curie, Subject, Term, ConjunctiveSet, Evidence, ExtensionUnit, + Date, Aspect, Provider) import io @@ -59,6 +59,7 @@ def test_gaf_writer(): gaf = [line.strip("\n") for line in out.getvalue().split("\n") if not line.startswith("!")][0] assert expected == gaf + def test_full_taxon_field_single_taxon(): out = io.StringIO() writer = assocwriter.GafWriter(file=out) @@ -66,6 +67,7 @@ def test_full_taxon_field_single_taxon(): taxon_field = writer._full_taxon_field("taxon:12345", None) assert "taxon:12345" == taxon_field + def test_full_taxon_field_interacting(): out = io.StringIO() writer = assocwriter.GafWriter(file=out) @@ -73,6 +75,7 @@ def test_full_taxon_field_interacting(): taxon_field = writer._full_taxon_field("taxon:12345", "taxon:6789") assert "taxon:12345|taxon:6789" == taxon_field + def test_full_taxon_empty_string_interacting_taxon(): out = io.StringIO() writer = assocwriter.GafWriter(file=out) @@ -80,6 +83,7 @@ def test_full_taxon_empty_string_interacting_taxon(): taxon_field = writer._full_taxon_field("taxon:12345", "") assert "taxon:12345" == taxon_field + def test_negated_qualifers(): gaf = ["PomBase", "SPBC11B10.09", "cdc2", "NOT", "GO:0007275", "PMID:21873635", "ISO", "PANTHER:PTN000623979|TAIR:locus:2099478", "P", "Cyclin-dependent kinase 1", "UniProtKB:P04551|PTN000624043", "protein", "taxon:284812", "20170228", "GO_Central", "", ""] parser = gafparser.GafParser() @@ -94,6 +98,7 @@ def test_negated_qualifers(): print(parsed) assert parsed[2] == "NOT|involved_in" + def test_roundtrip(): """ Start with a line, parse it, then write it. The beginning line should be the same as what was written. @@ -117,6 +122,7 @@ def test_roundtrip(): gaf = [line for line in out.getvalue().split("\n") if not line.startswith("!")][0] assert line == gaf + def test_gpad_qualifier_removed_in_gaf_2_1(): # Qualifier is `part_of` and should be returned blank instead of removing the whole line line = "PomBase\tSPBC1348.01\tpart_of\tGO:0009897\tGO_REF:0000051\tECO:0000266\t\t\t20060201\tPomBase\t\t" @@ -206,6 +212,7 @@ def test_full_gaf_2_2_write(): out_line = [line for line in out.getvalue().split("\n") if not line.startswith("!")][0] assert out_line.split("\t") == line.split("\t") + def test_gaf_to_gpad2(): line = "PomBase\tSPAC25B8.17\typf1\t\tGO:0000006\tGO_REF:0000024\tISO\tSGD:S000001583\tC\tintramembrane aspartyl protease of the perinuclear ER membrane Ypf1 (predicted)\tppp81\tprotein\ttaxon:999|taxon:888\t20150305\tPomBase\tpart_of(X:1)\tUniProtKB:P12345" parser = gafparser.GafParser() @@ -216,8 +223,10 @@ def test_gaf_to_gpad2(): writer.write_assoc(assoc) lines = out.getvalue().split("\n") - assert lines[0] == "!gpa-version: 2.0" - assert lines[1] == "PomBase:SPAC25B8.17\t\tBFO:0000050\tGO:0000006\tGO_REF:0000024\tECO:0000266\tSGD:S000001583\tNCBITaxon:888\t2015-03-05\tPomBase\tBFO:0000050(X:1)\t" + assert lines[0] == "!gpad-version: 2.0" + assert lines[1] == "!generated-by: GO Central" + assert lines[2].startswith("!date-generated:") + assert lines[3] == "UniProtKB:P12345\t\tBFO:0000050\tGO:0000006\tGO_REF:0000024\tECO:0000266\tSGD:S000001583\tNCBITaxon:888\t2015-03-05\tPomBase\tBFO:0000050(X:1)\t" line = "PomBase\tSPAC25B8.17\typf1\tNOT\tGO:0000006\tGO_REF:0000024\tISO\tSGD:S000001583\tC\tintramembrane aspartyl protease of the perinuclear ER membrane Ypf1 (predicted)\tppp81\tprotein\ttaxon:999|taxon:888\t20150305\tPomBase\tpart_of(X:1)\tUniProtKB:P12345" parser = gafparser.GafParser() @@ -228,8 +237,11 @@ def test_gaf_to_gpad2(): writer.write_assoc(assoc) lines = out.getvalue().split("\n") - assert lines[0] == "!gpa-version: 2.0" - assert lines[1] == "PomBase:SPAC25B8.17\tNOT\tBFO:0000050\tGO:0000006\tGO_REF:0000024\tECO:0000266\tSGD:S000001583\tNCBITaxon:888\t2015-03-05\tPomBase\tBFO:0000050(X:1)\t" + assert lines[0] == "!gpad-version: 2.0" + assert lines[1] == "!generated-by: GO Central" + assert lines[2].startswith("!date-generated:") + assert lines[3] == "UniProtKB:P12345\tNOT\tBFO:0000050\tGO:0000006\tGO_REF:0000024\tECO:0000266\tSGD:S000001583\tNCBITaxon:888\t2015-03-05\tPomBase\tBFO:0000050(X:1)\t" + def test_writing_assoc_properties(): line = "MGI:MGI:1922721\t\tRO:0002327\tGO:0019904\tMGI:MGI:3769586|PMID:17984326\tECO:0000353\tPR:Q0KK55\t\t2010-12-01\tMGI\tBFO:0000066(EMAPA:17787),RO:0002233(MGI:MGI:1923734)\tcreation-date=2008-02-07|modification-date=2010-12-01|comment=v-KIND domain binding of Kndc1;MGI:1923734|contributor-id=http://orcid.org/0000-0003-2689-5511|contributor-id=http://orcid.org/0000-0003-3394-9805" @@ -244,6 +256,7 @@ def test_writing_assoc_properties(): written_props = written_gpad_line.split("\t")[11] assert len(written_props.split("|")) == 5 + def test_gpad_eco_to_gaf_evidence_code(): def parse_gpad_vals_to_gaf_io(gpad_vals): parser = gpadparser.GpadParser() diff --git a/tests/test_gafparser.py b/tests/test_gafparser.py index 9c907408..48f821f1 100644 --- a/tests/test_gafparser.py +++ b/tests/test_gafparser.py @@ -580,7 +580,7 @@ def test_gaf_gpi_bridge(): gaf = ["MGI", "MGI:1923503", "0610006L08Rik", "enables", "GO:0003674", "MGI:MGI:2156816|GO_REF:0000015", "ND", "", "F", "RIKEN cDNA 0610006L08 gene", "", "gene", "taxon:10090", "20120430", "MGI", "", ""] association = gafparser.to_association(gaf, qualifier_parser=assocparser.Qualifier2_2()).associations[0] - bridge = gafgpibridge.GafGpiBridge() + bridge = gafgpibridge entity = bridge.convert_association(association) assert entity.get("type") == ["gene"] diff --git a/tests/test_gpad_writer.py b/tests/test_gpad_writer.py index 3e120564..130c4f60 100644 --- a/tests/test_gpad_writer.py +++ b/tests/test_gpad_writer.py @@ -1,9 +1,9 @@ import io - from ontobio.io import assocparser from ontobio.io import gafparser from ontobio.io import assocwriter + def test_gpad_iba_writing(): out = io.StringIO() parser = gafparser.GafParser() @@ -17,9 +17,9 @@ def test_gpad_iba_writing(): outlines = out.getvalue().split("\n") - expected_lines = [ - "!gpa-version: 1.2", - "WB\tWBGene00022144\tpart_of\tGO:0005886\tPMID:21873635\tECO:0000318\tPANTHER:PTN000073732|RGD:3252\t\t20180308\tGO_Central\t\t", - "" - ] - assert expected_lines == outlines + print(outlines) + assert outlines[0] == "!gpad-version: 1.2" + assert outlines[1] == "!generated-by: GO Central" + assert outlines[2].startswith("!date-generated:") + assert outlines[3] == "WB\tWBGene00022144\tpart_of\tGO:0005886\tPMID:21873635\tECO:0000318\tPANTHER:PTN000073732|RGD:3252\t\t20180308\tGO_Central\t\t" + diff --git a/tests/test_gpiparser.py b/tests/test_gpiparser.py index 129fad75..35863544 100644 --- a/tests/test_gpiparser.py +++ b/tests/test_gpiparser.py @@ -4,12 +4,23 @@ ONT = "tests/resources/go-truncated-pombase.json" GPI = "tests/resources/truncated-mgi.gpi" +GPI_2_0 = "tests/resources/truncated_mgi_gpi2_0.gpi" + + +def test_parse_gpi_2_0(): + p = GpiParser() + p.config.remove_double_prefixes = True + results = p.parse(open(GPI_2_0, "r")) + for r in results: + print(r) + r1 = results[0] + assert r1['label'] == '0610005C13Rik' + def test_parse_gpi(): - ont = OntologyFactory().create(ONT) p = GpiParser() p.config.remove_double_prefixes = True - results = p.parse(open(GPI,"r")) + results = p.parse(open(GPI, "r")) for r in results: print(r) r1 = results[0] @@ -22,7 +33,6 @@ def test_parse_gpi(): r2 = results[-1] assert r2['parents'] == ['MGI:109279'] - for m in p.report.messages: print("MESSAGE: {}".format(m)) assert len(p.report.messages) == 0 diff --git a/tests/test_gpiwriter.py b/tests/test_gpiwriter.py index 1e435626..0b3c0697 100644 --- a/tests/test_gpiwriter.py +++ b/tests/test_gpiwriter.py @@ -3,29 +3,63 @@ from ontobio.io import entitywriter, gafgpibridge -def test_header_newline(): +def test_gpi_2_0_writer(): gpi_obj = { 'id': "MGI:MGI:1918911", 'label': "0610005C13Rik", # db_object_symbol, 'full_name': "RIKEN cDNA 0610005C13 gene", # db_object_name, 'synonyms': [], - 'type': ["gene"], # db_object_type, - 'parents': "", # GAF does not have this field, but it's optional in GPI - 'xrefs': "", # GAF does not have this field, but it's optional in GPI - 'taxon': { - 'id': "NCBITaxon:10090" - } + 'type': ["SO:0000000"], # db_object_type, + 'taxon': {"id": "NCBITaxon:10090"}, + 'encoded_by': "", # encoded_by + 'parents': "", + 'protein_containing_complex_members': "", # protein_containing_complex_members + 'xrefs': "", + 'properties': "" + } + + entity = gafgpibridge.Entity(gpi_obj) + + out = io.StringIO() + gpiwriter20 = entitywriter.GpiWriter(file=out, version="2.0") + gpiwriter20.write_entity(entity) + outlines = out.getvalue().split("\n") + + expected_lines = [ + "!gpi-version: 2.0", + "MGI:MGI:1918911\t0610005C13Rik\tRIKEN cDNA 0610005C13 gene\t\tSO:0000000\ttaxon:10090\t\t\t\t\t", + "" + ] + assert expected_lines == outlines + + +def test_gpi_1_2_writer(): + gpi_obj = { + 'id': "MGI:MGI:1918911", + 'label': "0610005C13Rik", # db_object_symbol, + 'full_name': "RIKEN cDNA 0610005C13 gene", # db_object_name, + 'synonyms': [], + 'type': ["SO:0000000"], # db_object_type, + 'taxon': {"id": "NCBITaxon:10090"}, + 'encoded_by': "", # encoded_by + 'parents': "", + 'protein_containing_complex_members': "", # protein_containing_complex_members + 'xrefs': "", + 'properties': "" + + } + entity = gafgpibridge.Entity(gpi_obj) out = io.StringIO() - gpiwriter = entitywriter.GpiWriter(file=out) - gpiwriter.write_entity(entity) + gpiwriter20 = entitywriter.GpiWriter(file=out, version="1.2") + gpiwriter20.write_entity(entity) outlines = out.getvalue().split("\n") expected_lines = [ "!gpi-version: 1.2", - "MGI\tMGI:1918911\t0610005C13Rik\tRIKEN cDNA 0610005C13 gene\t\tgene\ttaxon:10090\t\t\t", + "MGI\tMGI:1918911\t0610005C13Rik\tRIKEN cDNA 0610005C13 gene\t\tSO:0000000\ttaxon:10090\t\t\t", "" ] assert expected_lines == outlines