diff --git a/.gitignore b/.gitignore index 0336b625..5da2b71f 100644 --- a/.gitignore +++ b/.gitignore @@ -38,6 +38,8 @@ poetry.lock pip-log.txt pip-delete-this-directory.txt +groups/ + # Unit test / coverage reports htmlcov/ .tox/ diff --git a/Makefile b/Makefile index 1bf975f8..46096b5c 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,8 @@ travis_test: 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; \ + tests/test_gocamgen.py \ + tests/test_gpi_isoform_replacement.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 \ @@ -40,7 +41,8 @@ travis_test: 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; \ + tests/test_gocamgen.py \ + tests/test_gpi_isoform_replacement.py; \ fi cleandist: diff --git a/bin/README.md b/bin/README.md index f5aae56b..e655ffe3 100644 --- a/bin/README.md +++ b/bin/README.md @@ -5,8 +5,8 @@ To test validate.py "validate" command, the command that produces the final GPAD ```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 +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 --gpad-gpi-output-version 2.0 +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 --gpad-gpi-output-version 2.0 ``` diff --git a/bin/validate.py b/bin/validate.py index e8ff485e..bd584694 100755 --- a/bin/validate.py +++ b/bin/validate.py @@ -3,22 +3,14 @@ import click import json import os -import yaml import requests import gzip import urllib import shutil -import re -import glob import logging -import sys import traceback -from typing import Dict, List -import yamldown - -from functools import wraps - -# from ontobio.util.user_agent import get_user_agent +from ontobio.model.association import Curie, ExtensionUnit +from ontobio.io.entityparser import GpiParser from ontobio.ontol_factory import OntologyFactory from ontobio.io.gafparser import GafParser from ontobio.io.gpadparser import GpadParser @@ -34,7 +26,6 @@ from ontobio.validation import tools from ontobio.validation import rules - from typing import Dict, Set # logging.basicConfig(format="%(asctime)s - %(name)s - %(levelname)s: %(message)s", level=logging.WARNING) @@ -224,7 +215,8 @@ def create_parser(config, group, dataset, format="gaf"): @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_type_name_regex_id_syntax=None, retracted_pub_set=None, db_entities=None, group_idspace=None, + goref_metadata=None, ref_species_metadata=None, db_type_name_regex_id_syntax=None, + retracted_pub_set=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]: @@ -613,7 +605,8 @@ def cli(ctx, verbose): @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) -@click.option("--retracted_pub_set", type=click.Path(exists=True), default=None, required=False, help="Path to retracted publications file") +@click.option("--retracted_pub_set", type=click.Path(exists=True), default=None, required=False, + help="Path to retracted publications file") 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, retracted_pub_set): @@ -676,7 +669,7 @@ def produce(ctx, group, metadata_dir, gpad, gpad_gpi_output_version, ttl, target db_entities = metadata.database_entities(absolute_metadata) group_ids = metadata.groups(absolute_metadata) - extensions_constraints = metadata.extensions_constraints_file(absolute_metadata) + extensions_constraints = metadata.extensions_constraints_file(absolute_metadata) gaferences = None if gaferencer_file: @@ -685,21 +678,20 @@ def produce(ctx, group, metadata_dir, gpad, gpad_gpi_output_version, ttl, target # Default comes through as single-element tuple if rule_set == (assocparser.RuleSet.ALL,): rule_set = assocparser.RuleSet.ALL - + db_type_name_regex_id_syntax = metadata.database_type_name_regex_id_syntax(absolute_metadata) - retracted_pubs = None if retracted_pub_set: retracted_pubs = metadata.retracted_pub_set(retracted_pub_set) else: - retracted_pubs = metadata.retracted_pub_set_from_meta(absolute_metadata) + retracted_pubs = metadata.retracted_pub_set_from_meta(absolute_metadata) for dataset_metadata, source_gaf in downloaded_gaf_sources: dataset = dataset_metadata["dataset"] # 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)) + click.echo("Producing GAF by passing through validation rules... {}".format(dataset)) valid_gaf = produce_gaf(dataset, source_gaf, ontology_graph, paint=(group == "paint"), group=group, @@ -719,10 +711,14 @@ def produce(ctx, group, metadata_dir, gpad, gpad_gpi_output_version, ttl, target rule_set=rule_set )[0] + click.echo("Producing GPI from GAF files...") 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 + + matching_gpi_path = None + click.echo("Try to find other GPIs in metadata and merge...") + for ds in group_metadata["datasets"]: # Where type=GPI for the same dataset (e.g. "zfin", "goa_cow") if ds["type"] == "gpi" and ds["dataset"] == dataset and ds.get("source"): @@ -732,6 +728,9 @@ def produce(ctx, group, metadata_dir, gpad, gpad_gpi_output_version, ttl, target matching_gpi_path = unzip_simple(matching_gpi_path) gpi_list.append(matching_gpi_path) + click.echo("Found the matching gpi path...{}".format(matching_gpi_path)) + + click.echo("Downloading the noctua and paint GPAD files...") 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) @@ -740,6 +739,7 @@ def produce(ctx, group, metadata_dir, gpad, gpad_gpi_output_version, ttl, target replace_existing_files=not skip_existing_files) if paint_metadata else None) + click.echo("Executing 'make_gpads' in validate.produce with all the assembled GAF files...") make_gpads(dataset, valid_gaf, products, ontology_graph, noctua_gpad_src, paint_gaf_src, gpi, gpad_gpi_output_version) @@ -750,9 +750,92 @@ def produce(ctx, group, metadata_dir, gpad, gpad_gpi_output_version, ttl, target rule_metadata=rule_metadata, replace_existing_files=not skip_existing_files, gaf_output_version=gaf_output_version) - click.echo(end_gaf) + click.echo("Executing the isoform fixing step in validate.produce...") + # run the resulting gaf through one last parse and replace, to handle the isoforms + # see: https://github.com/geneontology/go-site/issues/2291 + output_gaf_path = os.path.join(os.path.split(end_gaf)[0], "{}.gaf".format(dataset)) + isoform_fixed_gaf = fix_pro_isoforms_in_gaf(end_gaf, matching_gpi_path, ontology_graph, output_gaf_path) + click.echo(isoform_fixed_gaf) - make_ttls(dataset, end_gaf, products, ontology_graph) + click.echo("Creating ttl files...") + make_ttls(dataset, isoform_fixed_gaf, products, ontology_graph) + + +def fix_pro_isoforms_in_gaf(gaf_file_to_fix: str, gpi_file: str, ontology_graph, output_file_path: str) -> str: + """ + Given a GAF file and a GPI file, fix the GAF file by converting isoform annotations to gene annotations. Storing + the isoforms back in subject_extensions collection, changing the full_name, synonyms, label, and type back to the + gene in the GPI file. + :param gaf_file_to_fix: The path to the GAF file to fix + :param gpi_file: The path to the GPI file + :param ontology_graph: The ontology graph to use for parsing the associations + :param output_file_path: The path to write the fixed GAF file to + :return: The path to the fixed GAF file + """ + fixed_associations = [] + gpiparser = GpiParser(config=assocparser.AssocParserConfig(ontology=ontology_graph)) + # Parse the GPI file, creating a map of identifiers to GPI entries + gpis = gpiparser.parse(gpi_file, None) + gpi_map = {} + for gpi_entry in gpis: + gpi_map[gpi_entry.get('id')] = {"encoded_by": gpi_entry.get('encoded_by'), + "full_name": gpi_entry.get('full_name'), + "label": gpi_entry.get('label'), + "synonyms": gpi_entry.get('synonyms'), + # GPI spec says this is single valued, but GpiParser returns this as a list. + "type": gpi_entry.get('type')[0], + "id": gpi_entry.get('id')} + + gafparser = GafParser(config=assocparser.AssocParserConfig(ontology=ontology_graph)) + gafwriter = GafWriter(file=open(output_file_path, "w"), source="test", version=gafparser.version) + + # these are statistic parameters that record when a substitution is made. + substitution_count = 0 + no_substitution_count = 0 + + with open(gaf_file_to_fix, "r") as file: + for line in file: + annotation = gafparser.parse_line(line) + for source_assoc in annotation.associations: + if isinstance(source_assoc, dict): + continue # skip the header + if source_assoc.subject.id.namespace.startswith("PR"): + full_old_identifier = source_assoc.subject.id.namespace + ":" + source_assoc.subject.id.identity + old_namespace = source_assoc.subject.id.namespace + old_identity = source_assoc.subject.id.identity + # TODO: right now we get the FIRST encoded_by result -- this is what the original script from Chris did?? + if "MGI" == gpi_map[full_old_identifier].get("encoded_by")[0].split(":")[0]: + source_assoc.subject.id.namespace = gpi_map[full_old_identifier].get("encoded_by")[0].split(":")[0] + source_assoc.subject.id.identity = "MGI:" + gpi_map[full_old_identifier].get("encoded_by")[0].split(":")[2] + else: + source_assoc.subject.id.namespace = \ + gpi_map[full_old_identifier].get("encoded_by")[0].split(":")[0] + source_assoc.subject.id.identity = \ + gpi_map[full_old_identifier].get("encoded_by")[0].split(":")[1] + full_new_identifier = source_assoc.subject.id.namespace + ":" + source_assoc.subject.id.identity + source_assoc.subject.full_name = gpi_map[full_new_identifier].get("full_name") + source_assoc.subject.label = gpi_map[full_new_identifier].get("label") + source_assoc.subject.synonyms = gpi_map[full_new_identifier].get("synonyms") + source_assoc.subject.type = gpi_map[full_new_identifier].get("type") + + # we need to put the isoform currently being swapped, back into "Column 17" which is a + # subject_extension member. + isoform_term = Curie(namespace=old_identity, identity=old_namespace) + isoform_relation = Curie(namespace="RO", identity="0002327") + new_subject_extension = ExtensionUnit(relation=isoform_relation, term=isoform_term) + source_assoc.subject_extensions.append(new_subject_extension) + + # count the substitution here for reporting later + substitution_count += 1 + else: + no_substitution_count += 1 + + # Join fields back into a string and write to output file + fixed_associations.append(source_assoc) + + gafwriter.write(fixed_associations) + click.echo(f"Substituted {substitution_count} entries in {gaf_file_to_fix} " + f"and left {no_substitution_count} entries unchanged.") @cli.command() @@ -808,14 +891,14 @@ def paint(group, dataset, metadata, target, ontology): absolute_target = os.path.abspath(target) os.makedirs(os.path.join(absolute_target, "groups"), exist_ok=True) paint_metadata = metadata.dataset_metadata_file(absolute_metadata, "paint") - + paint_src_gaf = check_and_download_mixin_source(paint_metadata, dataset, absolute_target) click.echo("Loading ontology: {}...".format(ontology)) ontology_graph = OntologyFactory().create(ontology) gpi_path = os.path.join(absolute_target, "groups", dataset, "{}.gpi".format(dataset)) - click.echo("Using GPI at {}".format(gpi_path)) + click.echo("Using GPI at {}".format(gpi_path)) paint_gaf = produce_gaf("paint_{}".format(dataset), paint_src_gaf, ontology_graph, gpipath=gpi_path) @@ -825,7 +908,8 @@ def paint(group, dataset, metadata, target, ontology): @click.option("--ontology", type=click.Path(), required=True) @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("--retracted_pub_set", type=click.Path(exists=True), default=None, required=False, help="Path to retracted publications file") +@click.option("--retracted_pub_set", type=click.Path(exists=True), default=None, required=False, + help="Path to retracted publications file") def rule(metadata_dir, out, ontology, gaferencer_file, retracted_pub_set): absolute_metadata = os.path.abspath(metadata_dir) @@ -840,8 +924,7 @@ def rule(metadata_dir, out, ontology, gaferencer_file, retracted_pub_set): if retracted_pub_set: retracted_pubs = metadata.retracted_pub_set(retracted_pub_set) else: - retracted_pubs = metadata.retracted_pub_set_from_meta(absolute_metadata) - + retracted_pubs = metadata.retracted_pub_set_from_meta(absolute_metadata) click.echo("Found {} GO Rules".format(len(gorule_metadata.keys()))) diff --git a/tests/resources/cam.rdf b/tests/resources/cam.rdf index c02b96a5..99a6b03c 100644 --- a/tests/resources/cam.rdf +++ b/tests/resources/cam.rdf @@ -14,7 +14,7 @@ @prefix owl: . @prefix rdfs: . - a owl:Ontology . + a owl:Ontology . PomBase:SPAC1006.09 rdfs:label "win1" ; rdfs:subClassOf [ a owl:Restriction ; @@ -1071,4554 +1071,4554 @@ PomBase:SPSNRNA.01 rdfs:label "snu1" ; owl:onProperty RO:0002162 ; owl:someValuesFrom NCBITaxon:4896 ] . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0070301 . - a PomBase:SPBC2D10.10c, + a PomBase:SPBC530.14c, owl:NamedIndividual . - a PomBase:SPBC21H7.04, - owl:NamedIndividual . - - a GO:0000087 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003674 ; - obo:BFO_0000050 ; - RO:0002333 . + a GO:0000089 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC57A7.10c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0007128 . + 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:16899242 . - a PomBase:SPAC12B10.10, - owl:NamedIndividual . + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000003105 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a GO:0000092 . + a PomBase:SPAC29E6.05c . - a GO:0000085 . + a SO:0001871 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPAC20G8.05c, + owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:25987607 . + a GO:0060274 . - 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:SPBC16C6.11, + owl:NamedIndividual . - a PomBase:SPBC19C2.09 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:27082518 . + obo:SEPIO_0000124 PMID:19061185 . + + 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:0051329 . + a GO:0000092 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPAC4D7.05, + owl:NamedIndividual . - a ECO:0000305, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 GO:0009277 ; - obo:SEPIO_0000124 GO_REF:0000111 . + obo:SEPIO_0000124 PMID:7634333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16899242 . + obo:SEPIO_0000124 PMID:16823372 . - a PomBase:SPBC27.02c, - owl:NamedIndividual . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . - a GO:0072690 . + a GO:0000087 . - a GO:0007137 . + a GO:0000278 . - a ECO:0000314, + a ECO:0000303, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16899242 . + obo:SEPIO_0000124 GO_REF:0000051 . - a PomBase:SPAC607.09c, + a PomBase:SPBP4G3.02, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11884512 . - - a GO:0000087 . + obo:SEPIO_0000124 PMID:11260263 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20935472 . + a GO:0000087 . - a GO:0000087 . + a PomBase:SPBP4H10.06c, + owl:NamedIndividual . - a GO:0006995 . + a PomBase:SPCC1919.03c, + owl:NamedIndividual . - a GO:0007137 . + 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:0000092 . + a GO:1990948, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_BFO_0000050 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000752 . - a GO:0000084 . + a PomBase:SPBC336.06c, + owl:NamedIndividual . - a ECO:0000303, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 GO_REF:0000051 . + obo:SEPIO_0000124 PMID:20410137 . - a ECO:0000315, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11679064 . + a PomBase:SPAC222.10c, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPAC2E12.02, + owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24291789 . + a PomBase:SPBC11C11.03, + owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:25410910 . + 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:SPAC1782.09c, + a PomBase:SPAC17H9.02, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + a PomBase:SPAC29A4.04c, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0071276 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + a PomBase:SPAC24H6.05 . - a PomBase:SPBC365.09c, - owl:NamedIndividual . + a GO:0000090 . - a PomBase:SPBC19C2.09, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC1861.01c, + a PomBase:SPBC336.02, owl:NamedIndividual . - a GO:0051220 . + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . + + a PomBase:SPAC212.01c, + owl:NamedIndividual . - a GO:0007124 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + obo:SEPIO_0000124 PMID:19061185 . - a GO:0034605 . + a GO:0071281 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24291789 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC24H6.05 . + a GO:0007137 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a GO:0000087 . + + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:9563836 . + obo:SEPIO_0000124 PMID:16823372 . - a GO:0007137 . + 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:18951025 . - a PomBase:SPBC1703.14c, + a PomBase:SPBC582.03, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16111942 . - - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16428435 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000303, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22970243 . + obo:SEPIO_0000124 GO_REF:0000051 . - 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 GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0034605 . + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000003046 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a PomBase:SPAC1782.09c, + a PomBase:SPBC4B4.07c, owl:NamedIndividual . - a PomBase:SPBC1A4.05, + a PomBase:SPAC1834.08, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:25847133 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + obo:SEPIO_0000124 PMID:12006658 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:23349808 . + obo:SEPIO_0000124 PMID:17035632 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000278 . - a ECO:0000314, + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + obo:SEPIO_0000124 PMID:17035632 . - a PomBase:SPBC26H8.10, + a PomBase:SPAC11E3.03, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:27082518 . - - a GO:0006995 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000266, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + RO:0002614 SGD:S000005005 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11694582 . + a PomBase:SPBC29A3.17, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0051329 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20870879 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0000087 . + a PomBase:SPBC776.08c, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + obo:SEPIO_0000124 PMID:18362178 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11907273 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + obo:SEPIO_0000124 PMID:16899242 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18346214 . - a PomBase:SPAC2E12.02 . + a PomBase:SPBC1711.05, + owl:NamedIndividual . - a PomBase:SPCC613.06, + a PomBase:SPBC14C8.14c, owl:NamedIndividual . - a GO:0070301 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11884512 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC458.04c, + a PomBase:SPBC4F6.07c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC27F1.02c, - owl:NamedIndividual . + a GO:0034605 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19171118 . - 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:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18077559 . - a GO:0000087 . + 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:9136929 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPAC23C4.02, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000278 . - a GO:0000087 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:8502556 . - a PomBase:SPAC24B11.06c, - owl:NamedIndividual . + a GO:0034605 . - a GO:0071456 . + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . - a GO:0000087 . + a GO:0000084 . - a GO:0071456 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPCC1919.03c, + a PomBase:SPAC57A7.10c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC3H8.10, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0031297 . + a GO:0051329 . - a ECO:0000315, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16537923 . + a PomBase:SPBC902.04, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000303, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11294895 . + obo:SEPIO_0000124 GO_REF:0000051 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000080 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24478458 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPCC645.07, + a PomBase:SPBC28F2.11, owl:NamedIndividual . - a PomBase:SPBC32H8.10, + a PomBase:SPCC16A11.17, owl:NamedIndividual . - a GO:0000080 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000315, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:23389634 . + obo:SEPIO_0000124 PMID:15629716 . - a PomBase:SPAPB1E7.02c, - owl:NamedIndividual . + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:15164362 . - a PomBase:SPAC16A10.07c, - owl:NamedIndividual . + a GO:0000087 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:18951025 . + obo:SEPIO_0000124 PMID:23349808 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:10366596 . + obo:SEPIO_0000124 PMID:22375066 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:15800064 . + obo:SEPIO_0000124 PMID:18362178 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:21652630 . - - 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:SPBC32F12.04, - owl:NamedIndividual . + obo:SEPIO_0000124 PMID:17538026 . - a ECO:0000314, + a ECO:0000266, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + RO:0002614 SGD:S000007455 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20870879 . + obo:SEPIO_0000124 PMID:11080156 . - a ECO:0000303, - owl:NamedIndividual ; - obo:SEPIO_0000124 GO_REF:0000051 . + a PomBase:SPAC607.09c, + owl:NamedIndividual . - a GO:0000091 . + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000006187 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPAC1610.04, + owl:NamedIndividual . - a PomBase:SPBC9B6.07, + a PomBase:SPBC887.03c, owl:NamedIndividual . - a PomBase:SPBC1105.17, + a PomBase:SPCC11E10.03, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:12023299 . - a GO:0000085 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC9B6.05c, + a PomBase:SPBC14C8.19, owl:NamedIndividual . - a PomBase:SPBC2G2.14, + a PomBase:SPAPB8E5.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 GO:0000087 . - a GO:0000087 . + 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:SPBC20F10.01, + a PomBase:SPBC27.02c, owl:NamedIndividual . - a PomBase:SPAC11E3.03, - owl:NamedIndividual . + a GO:0007128 . - a PomBase:SPAC644.12, - owl:NamedIndividual . + a GO:0001078, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a GO:0000089 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC19G7.09, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC750.06c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000266, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 SGD:S000002747 ; - obo:SEPIO_0000124 GO_REF:0000024 . - - a PomBase:SPBC887.15c . + obo:SEPIO_0000124 PMID:9802907 . - a PomBase:SPAC926.07c, + a PomBase:SPBC12C2.08, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:1293882 . + a PomBase:SPAC2G11.12, + owl:NamedIndividual . - a GO:0045841 . + a PomBase:SPBC365.04c, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20870879 . + obo:SEPIO_0000124 PMID:22139357 . + + a PomBase:SPBP22H7.09c, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000266, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 SGD:S000003335 ; - obo:SEPIO_0000124 GO_REF:0000024 . + obo:SEPIO_0000124 PMID:11676924 . - a GO:0000080 . + a GO:0051329 . - a GO:0007124 . + a GO:0006995 . - a GO:0034605 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0051329 . + a GO:0045841 . - a PomBase:SPCC16A11.17, + a PomBase:SPBC2D10.10c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a PomBase:SPBC17G9.07, - owl:NamedIndividual . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:10366596 . - a PomBase:SPBC1347.12, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:19061185 . + obo:SEPIO_0000124 PMID:22139357 . + + a PomBase:SPCC188.02, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:16823372 . - a GO:0051329 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20970342 . + a PomBase:SPBC146.14c, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000050 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000315, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:23851719 . + obo:SEPIO_0000124 PMID:19758558 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000266, - owl:NamedIndividual ; - RO:0002614 SGD:S000001131 ; - obo:SEPIO_0000124 GO_REF:0000024 . + a GO:0045944 . - a PomBase:SPCC330.10, - owl:NamedIndividual . + a GO:0007124 . - a PomBase:SPCC320.13c, - owl:NamedIndividual . + a GO:0000085 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0007128 . - a ECO:0000303, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 GO_REF:0000051 . - - a PomBase:SPAC637.07, - owl:NamedIndividual . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + obo:SEPIO_0000124 PMID:20298435 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:19570910 . + obo:SEPIO_0000124 PMID:20404563 . - a PomBase:SPBC17D11.05, + a PomBase:SPAC8C9.03, owl:NamedIndividual . - a PomBase:SPBC2F12.13, + a PomBase:SPBC365.09c, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000303, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:19061185 . + obo:SEPIO_0000124 GO_REF:0000051 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003690, + a ECO:0000314, owl:NamedIndividual ; - RO:0002333 ; - ns1:__purl.obolibrary.org_obo_BFO_0000050 . + obo:SEPIO_0000124 PMID:20870879 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0000089 . + a ECO:0000250, + owl:NamedIndividual ; + RO:0002614 UniProtKB:Q07623 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a PomBase:SPBC409.09c, + a PomBase:SPAC750.06c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0051329 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20661445 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0001077, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20298435 . - a PomBase:SPAC2G11.12, - owl:NamedIndividual . + a GO:0071479 . - a ECO:0000269, + a ECO:0000315, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22245228 . + obo:SEPIO_0000124 PMID:18077559 . - a PomBase:SPBC776.17, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPCC576.07, + a PomBase:SPAC3H8.10, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:26258632 . - - 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:0000085 . - a PomBase:SPAC24H6.05, + a PomBase:SPBC776.17, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20919928 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000266, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:19570910 . + RO:0002614 SGD:S000004539 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a PomBase:SPBC23G7.04c, - owl:NamedIndividual . + a GO:0007128 . - a GO:0051329 . + a PomBase:SPAC15A10.16, + owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11707284 . + a GO:0000089 . - a PomBase:SPBC1604.08c, + a PomBase:SPCC613.06, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000266, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 SGD:S000005337 ; - obo:SEPIO_0000124 GO_REF:0000024 . + obo:SEPIO_0000124 PMID:22375066 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . - a GO:0007128 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000080 . - a PomBase:SPAC29E6.07, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC11B10.09, + a PomBase:SPAC1782.09c, owl:NamedIndividual . - a GO:0000087 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC29E6.05c . + a PomBase:SPAC644.14c, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0007124 . - a PomBase:SPCC74.03c, + a PomBase:SPBC32H8.05, owl:NamedIndividual . - a GO:0051329 . + a GO:0007128 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC19G7.05c, - owl:NamedIndividual . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000004908 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a PomBase:SPBC20F10.01, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0070301 . - a PomBase:SPCC962.02c, + a PomBase:SPBC1703.01c, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC212.04c, + a PomBase:SPAC3G9.01, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPCC320.13c, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0005515, + a ECO:0000314, owl:NamedIndividual ; - RO:0002333 ; - ns1:__purl.obolibrary.org_obo_BFO_0000050 . + obo:SEPIO_0000124 PMID:20919928 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18346214 . - a GO:0000087 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a ECO:0000250, + a GO:0004674, owl:NamedIndividual ; - RO:0002614 UniProtKB:P40089 ; - obo:SEPIO_0000124 GO_REF:0000024 . + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000752 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a ECO:0000269, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22245228 . + obo:SEPIO_0000124 PMID:16823372 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20919928 . + a GO:0000080 . - a PomBase:SPBC4F6.14, + a PomBase:SPAC977.06, owl:NamedIndividual . - a PomBase:SPAC17H9.02, + a PomBase:SPBC902.06, owl:NamedIndividual . - a PomBase:SPBP22H7.09c, + a PomBase:SPBC646.04, owl:NamedIndividual . - a GO:0000080 . - - a GO:0000089 . - - a ECO:0000266, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 SGD:S000000924 ; - obo:SEPIO_0000124 GO_REF:0000024 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + obo:SEPIO_0000124 PMID:19061185 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:8663159 . + a PomBase:SPCC4F11.02, + owl:NamedIndividual . - a GO:0007128 . + a GO:0007128 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPAC1805.08, + owl:NamedIndividual . - a PomBase:SPBC216.02, + a PomBase:SPAC8C9.03, owl:NamedIndividual . - a PomBase:SPAC222.10c, + a PomBase:SPBC336.02, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20870879 . - - a GO:0070301 . + obo:SEPIO_0000124 PMID:12007420 . - a PomBase:SPBC14C8.19, - owl:NamedIndividual . + a ECO:0000304, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11909965 . - a ECO:0000266, + a ECO:0000266, owl:NamedIndividual ; - RO:0002614 SGD:S000006452 ; + RO:0002614 SGD:S000001171 ; obo:SEPIO_0000124 GO_REF:0000024 . - a ECO:0000314, + a PomBase:SPAC20H4.11c, + owl:NamedIndividual . + + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11553715 . + obo:SEPIO_0000124 PMID:20870879 . - a GO:1990948, + a ECO:0000314, owl:NamedIndividual ; - RO:0002333 ; - ns1:__purl.obolibrary.org_obo_BFO_0000050 ; - ns1:__purl.obolibrary.org_obo_GOREL_0000752 . + obo:SEPIO_0000124 PMID:19061185 . - a ECO:0000314, + a ECO:0000269, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22139357 . + obo:SEPIO_0000124 PMID:22245228 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPAC17H9.02, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000269, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20970342 . + obo:SEPIO_0000124 PMID:11683390 . - a GO:0051321 . + a GO:0071456 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:16823372 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC106.10 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC543.06c, + owl:NamedIndividual . - a PomBase:SPBC660.07 . + a PomBase:SPBC4F6.07c, + owl:NamedIndividual . - a GO:0005049, + a ECO:0000303, owl:NamedIndividual ; - RO:0002333 ; - ns1:__purl.obolibrary.org_obo_GOREL_0000752 ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + obo:SEPIO_0000124 GO_REF:0000051 . + + a PomBase:SPBC32H8.04c, + 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:10747035 . - a GO:0000080 . + 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:18621924 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPCC1739.10, + owl:NamedIndividual . - a PomBase:SPBC646.13, + a PomBase:SPCC4F11.02, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000087 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + 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:12023299 . + obo:SEPIO_0000124 PMID:25987607 . - a PomBase:SPCC1223.06, + a GO:0007124 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBP8B7.01c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0071472 . - a PomBase:SPBC887.10, + a PomBase:SPAC25B8.17, owl:NamedIndividual . - a PomBase:SPAC4D7.05, + a PomBase:SPBC409.09c, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22375066 . + a PomBase:SPBCPT2R1.01c, + owl:NamedIndividual . - a PomBase:SPCC320.11c, + a PomBase:SPAC27E2.09, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:19061185 . + a GO:0070301 . - a PomBase:SPBP8B7.20c, + a PomBase:SPCC962.02c, owl:NamedIndividual . - a ECO:0000266, - owl:NamedIndividual ; - RO:0002614 SGD:S000007497 ; - obo:SEPIO_0000124 GO_REF:0000024 . + a GO:0000278 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + a PomBase:SPBC26H8.10, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:18725402 . + obo:SEPIO_0000124 PMID:16823372 . - a ECO:0000315, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:12411492 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + obo:SEPIO_0000124 PMID:16823372 . - a GO:0003674 ; - obo:BFO_0000050 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0006995 . + a PomBase:SPBC902.06, + owl:NamedIndividual . - a ECO:0000314, + a GO:0003690, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16899242 . + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_BFO_0000050 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11084332 . + obo:SEPIO_0000124 PMID:16823372 . - a PomBase:SPAC977.09c, + a PomBase:SPBC18E5.03c, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000316, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:1770000 . + RO:0002614 PomBase:SPAC18G6.15 ; + obo:SEPIO_0000124 PMID:20624975 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24021628 . - a PomBase:SPAC16A10.05c, + a PomBase:SPBC56F2.04, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000084 . - a ECO:0000314, + a GO:0001077, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a PomBase:SPAC9G1.02, - owl:NamedIndividual . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11907273 . - a PomBase:SPAC29E6.05c . + a GO:0007137 . - a ECO:0000303, - owl:NamedIndividual ; - obo:SEPIO_0000124 GO_REF:0000051 . + a PomBase:SPBP16F5.06, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000001800 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:21118717 . + obo:SEPIO_0000124 PMID:24790095 . - a PomBase:SPAC664.10, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0000278 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24947517 . - a PomBase:SPAC3H8.10, + a PomBase:SPBC9B6.06, owl:NamedIndividual . - a PomBase:SPAC3A11.14c, + a PomBase:SPBC9B6.07, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000003335 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a ECO:0000314, + a ECO:0000266, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:19758558 . + RO:0002614 SGD:S000004182 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0000090 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000093 . - a GO:0000080 . + 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:0000278 . + a ECO:0000250, + owl:NamedIndividual ; + RO:0002614 UniProtKB:P38112 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a PomBase:SPBC1347.02, + a PomBase:SPBP22H7.02c, owl:NamedIndividual . - a PomBase:SPSNRNA.01, + a GO:0071456 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20870879 . + + a PomBase:SPAC458.04c, owl:NamedIndividual . - a PomBase:SPAC1782.09c, + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000080 . + + a PomBase:SPBC19F5.05c, owl:NamedIndividual . - a PomBase:SPAC1093.06c, + a PomBase:SPBC9B6.05c, owl:NamedIndividual . - a PomBase:SPBC83.17, + a GO:0000278 . + + a PomBase:SPAC7D4.14c, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11554922 . + obo:SEPIO_0000124 PMID:20298435 . - a GO:0007128 . + a PomBase:SPAC22E12.17c, + owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11861551 . + a GO:0007128 . - a ECO:0000266, + a ECO:0000266, owl:NamedIndividual ; - RO:0002614 SGD:S000000914 ; + RO:0002614 SGD:S000002304 ; obo:SEPIO_0000124 GO_REF:0000024 . - a GO:0000089 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003677, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_BFO_0000050 . - a PomBase:SPBC4F6.13c, + a PomBase:SPAC458.04c, 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:0000093 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:21880100 . + obo:SEPIO_0000124 PMID:19109429 . - a GO:0007124 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC19G7.05c, - owl:NamedIndividual . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:7596817 . - a GO:0071333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11854402 . - a PomBase:SPBC428.20c, - owl:NamedIndividual . + a GO:0000084 . - a GO:0071242 . + a PomBase:SPBC2F12.13, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000315, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20404563 . + obo:SEPIO_0000124 PMID:26687354 . - 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:SPBP4H10.06c, - owl:NamedIndividual . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20870879 . - a PomBase:SPAC1093.06c, + a PomBase:SPCC320.11c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000001732 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22146723 . + obo:SEPIO_0000124 PMID:20870879 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0007124 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000278 . - a ECO:0000269, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11683390 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:16823372 . - a GO:0015035, + a ECO:0000314, owl:NamedIndividual ; - RO:0002333 ; - ns1:__purl.obolibrary.org_obo_GOREL_0000752 ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + obo:SEPIO_0000124 PMID:16823372 . - a ECO:0000266, + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003690, owl:NamedIndividual ; - RO:0002614 SGD:S000001171 ; - obo:SEPIO_0000124 GO_REF:0000024 . + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_BFO_0000050 . - a PomBase:SPAP8A3.02c, - owl:NamedIndividual . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18725402 . - a PomBase:SPAC1751.03, - owl:NamedIndividual . + a GO:0007137 . - a ECO:0000314, + a ECO:0000315, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:17035632 . + obo:SEPIO_0000124 PMID:16537923 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0000080 . + a PomBase:SPAC29E6.05c . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC337.12, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:19109429 . + obo:SEPIO_0000124 PMID:25847133 . - a PomBase:SPBC4F6.07c, - owl:NamedIndividual . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18362178 . - a ECO:0000304, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:17472966 . + obo:SEPIO_0000124 PMID:20919928 . - a ECO:0000314, + a ECO:0000315, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:12007420 . + obo:SEPIO_0000124 PMID:16537923 . - a PomBase:SPCC1840.02c, + a PomBase:SPBC21B10.10, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a PomBase:SPBC530.14c, + a PomBase:SPAC3H8.10, owl:NamedIndividual . - a ECO:0000314, + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22235339 . + obo:SEPIO_0000124 PMID:16823372 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000080 . - a PomBase:SPAC1805.08, - owl:NamedIndividual . + a GO:0000089 . - a GO:0000087 . + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000003957 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a ECO:0000303, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 GO_REF:0000051 . + obo:SEPIO_0000124 PMID:24713849 . - a GO:0000090 . + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . - a PomBase:SPBC14C8.14c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPCC16A11.17, + a GO:0000281 . + + a GO:0000087 . + + a GO:0005680 . + + a PomBase:SPBC646.17c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:1905406 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000080 . - a PomBase:SPCC4G3.08 . + a PomBase:SPBC19C2.03, + owl:NamedIndividual . - a GO:0070301 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC19G12.08 . + a PomBase:SPAC15A10.16, + owl:NamedIndividual . - a ECO:0000315, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:18621924 . + a PomBase:SPBC2G2.05, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0034605 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:19606211 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000087 . - a ECO:0000314, + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24713849 . + obo:SEPIO_0000124 PMID:16823372 . - a PomBase:SPBC13E7.06, + a PomBase:SPBC11B10.09, owl:NamedIndividual . - a PomBase:SPAC688.07c, - owl:NamedIndividual . + a PomBase:SPAC1F8.02c . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:26258632 . - a GO:0000087 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC29B5.03c, - 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, + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:16823372 . - a GO:0000281 . - - a PomBase:SPAPB8E5.03, + a PomBase:SPBC1A4.05, owl:NamedIndividual . - a GO:0001077, - owl:NamedIndividual ; - RO:0002333 ; - ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . - a PomBase:SPBC14C8.14c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:16823372 . - a PomBase:SPBC29B5.01 . + 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_0000050 ; - RO:0002333 . + a PomBase:SPCC736.14, + owl:NamedIndividual . - a PomBase:SPAC20G8.05c, + a PomBase:SPAC607.09c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPCC1223.06, + owl:NamedIndividual . - a PomBase:SPCC4F11.02, + a PomBase:SPAC1093.06c, owl:NamedIndividual . - a PomBase:SPAC458.04c, + a ECO:0000303, + owl:NamedIndividual ; + obo:SEPIO_0000124 GO_REF:0000051 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0000087 . + + a PomBase:SPAC6G9.11, owl:NamedIndividual . - a PomBase:SPAC1610.04, + a PomBase:SPBC1711.07, owl:NamedIndividual . - a GO:0000089 . + a PomBase:SPBC11B10.09, + owl:NamedIndividual . - a ECO:0000250, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 UniProtKB:P41810 ; - obo:SEPIO_0000124 GO_REF:0000024 . + obo:SEPIO_0000124 PMID:12237855 . + + 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:0051329 . + a PomBase:SPCC4G3.08 . - a PomBase:SPBPB2B2.07c, + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC2F7.03c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0071479 . - a PomBase:SPBC20F10.06, + a PomBase:SPCC285.08, owl:NamedIndividual . - a PomBase:SPBC582.03, + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a PomBase:SPBC3E7.10, owl:NamedIndividual . - a GO:0034605 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19373772 . + + a PomBase:SPAC9G1.02, + owl:NamedIndividual . - a GO:0000085 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20807799 . + obo:SEPIO_0000124 PMID:20970342 . - a ECO:0000314, + a ECO:0000315, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16085489 . + obo:SEPIO_0000124 PMID:16537923 . - a ECO:0000269, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11683390 . + obo:SEPIO_0000124 PMID:8196617 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:10366596 . + obo:SEPIO_0000124 PMID:20870879 . - a GO:0007128 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + obo:SEPIO_0000124 PMID:17035632 . - a ECO:0000266, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 SGD:S000000804 ; - obo:SEPIO_0000124 GO_REF:0000024 . - - a GO:0070301 . - - a PomBase:SPBC4F6.14, - owl:NamedIndividual . + obo:SEPIO_0000124 PMID:19061185 . - a PomBase:SPAC3G9.01, + a PomBase:SPCC330.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 GO:0000087 . + a PomBase:SPBC16D10.09, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a GO:0005515, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11907273 . + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_BFO_0000050 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24210919 . + obo:SEPIO_0000124 PMID:15800064 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000089 . - a GO:0051329 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20870879 . + a PomBase:SPAC1006.03c, + owl:NamedIndividual . + + a PomBase:SPBC16E9.12c, + owl:NamedIndividual . - a PomBase:SPCC1739.10, + a PomBase:SPBC1347.02, owl:NamedIndividual . - a PomBase:SPBC336.06c, + a PomBase:SPBC29B5.03c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000050 ; - RO:0002333 . + a GO:0000093 . - a GO:0000084 . + a PomBase:SPAC20G8.05c, + owl:NamedIndividual . - a PomBase:SPBP22H7.02c, + a PomBase:SPBC582.05c, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22976295 . + obo:SEPIO_0000124 PMID:16823372 . - a ECO:0000304, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11909965 . + obo:SEPIO_0000124 PMID:11707530 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC1539.10, + owl:NamedIndividual . - a PomBase:SPBC115.02c, + a PomBase:SPBC1921.01c, owl:NamedIndividual . - a PomBase:SPAC25G10.07c, + a PomBase:SPBC1685.15c, owl:NamedIndividual . - a GO:0000087 . + a GO:0000087 . - a GO:0000983, - owl:NamedIndividual ; - RO:0002333 ; - ns1:__purl.obolibrary.org_obo_BFO_0000050 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0007128 . + a GO:0000087 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPAC644.14c, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPCC830.03, + owl:NamedIndividual . - a PomBase:SPBC211.04c, + a PomBase:SPBC23G7.04c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a PomBase:SPCC16C4.03, + a PomBase:SPBC17D1.03c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000050 ; - RO:0002333 . - - a GO:0000089 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a PomBase:SPCC320.13c, + a PomBase:SPAC23C11.16, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0051329 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC20F10.01, + owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC11B10.09, + a PomBase:SPBC32H8.04c, owl:NamedIndividual . - 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 GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000266, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 SGD:S000001947 ; - obo:SEPIO_0000124 GO_REF:0000024 . + obo:SEPIO_0000124 PMID:21965289 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC1834.08, - owl:NamedIndividual . + a GO:0000087 . - a PomBase:SPCC895.07, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC21H7.03c, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11854402 . + obo:SEPIO_0000124 PMID:24713849 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0070301 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:21072667 . + obo:SEPIO_0000124 PMID:20512112 . - 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:18923422 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC1687.20c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . - a PomBase:SPBC8D2.13, + a PomBase:SPBC19C2.09, owl:NamedIndividual . - a ECO:0000266, - owl:NamedIndividual ; - RO:0002614 SGD:S000006187 ; - obo:SEPIO_0000124 GO_REF:0000024 . - - a ECO:0000303, - owl:NamedIndividual ; - obo:SEPIO_0000124 GO_REF:0000051 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPCC4G3.08 . - a PomBase:SPBC725.08, + a PomBase:SPBC19G7.16, owl:NamedIndividual . - a ECO:0000314, + a GO:0000087 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0071333 . + + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11861551 . + obo:SEPIO_0000124 PMID:24451546 . - a PomBase:SPAC4D7.07c, + a PomBase:SPBC12D12.01, owl:NamedIndividual . - a PomBase:SPAC8C9.03, + a PomBase:SPCC962.02c, owl:NamedIndividual . - a PomBase:SPBC725.02, + a PomBase:SPAPB1E7.02c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a PomBase:SPBC646.17c, + a PomBase:SPAC24H6.05, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16585273 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:15791259 . + obo:SEPIO_0000124 PMID:21385875 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000278 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0006995 . - a GO:0051329 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC7D4.14c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBP4H10.06c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0000089 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20870879 . - a PomBase:SPBC725.12, + a PomBase:SPBC543.06c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0005515, + a ECO:0000315, owl:NamedIndividual ; - RO:0002333 ; - ns1:__purl.obolibrary.org_obo_BFO_0000050 . + obo:SEPIO_0000124 PMID:23851719 . + + 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:SPBC428.03c, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000269, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:23349808 . + obo:SEPIO_0000124 PMID:11683390 . - a ECO:0000314, + a ECO:0000305, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + RO:0002614 GO:0009277 ; + obo:SEPIO_0000124 GO_REF:0000111 . - a PomBase:SPBC25D12.02c, + a PomBase:SPAC12B10.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:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22235339 . + obo:SEPIO_0000124 PMID:16823372 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24713849 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBP35G2.16c . + a GO:0051220 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0007137 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC9B6.07, + owl:NamedIndividual . - a PomBase:SPCC16A11.17, + a PomBase:SPBC25D12.02c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC9B6.06, + a PomBase:SPBC646.13, owl:NamedIndividual . - a PomBase:SPBC1685.15c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0071456 . + a GO:0000090 . - a ECO:0000250, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 UniProtKB:Q04225 ; + obo:SEPIO_0000124 PMID:23349808 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000250, + owl:NamedIndividual ; + RO:0002614 UniProtKB:Q08287 ; obo:SEPIO_0000124 GO_REF:0000024 . - a PomBase:SPBC11C11.03, + a PomBase:SPAC926.07c, owl:NamedIndividual . - a GO:0071479 . + a GO:0000278 . - a ECO:0000266, + a GO:0000983, owl:NamedIndividual ; - RO:0002614 SGD:S000001212 ; - obo:SEPIO_0000124 GO_REF:0000024 . - - a GO:0070301 . + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_BFO_0000050 . - a GO:0000080 . + a GO:0034605 . - a PomBase:SPAC8C9.03, + a PomBase:SPSNORNA.20, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:9636183 . + 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 ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:19171118 . + obo:SEPIO_0000124 PMID:16585273 . - a GO:0051321 . + a PomBase:SPBC17G9.07, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11448769 . + obo:SEPIO_0000124 PMID:16111942 . - a GO:0000080 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20870879 . - a PomBase:SPBC16D10.09, + a PomBase:SPBC17D1.06, owl:NamedIndividual . - a PomBase:SPBC776.13, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC28F2.11, - owl:NamedIndividual . + a GO:0071470 . - a GO:0071470 . + a GO:0031297 . - a ECO:0000314, + a GO:0004674, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:12455694 . + 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 GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19570910 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000003322 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24790095 . - a PomBase:SPBC28E12.05, + a PomBase:SPAC664.10, owl:NamedIndividual . - a PomBase:SPBC17D1.06, + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC25G10.07c, owl:NamedIndividual . - a PomBase:SPCC1281.01, + a PomBase:SPBC4.04c, owl:NamedIndividual . - a ECO:0000314, + a GO:0007128 . + + a GO:0070301 . + + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:16823372 . - a PomBase:SPBC646.04, + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:21072667 . + + a PomBase:SPBC1348.01, owl:NamedIndividual . - a ECO:0000314, + a GO:0051321 . + + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22375066 . + obo:SEPIO_0000124 PMID:11080156 . + + a GO:0051220 . - a ECO:0000305, + a GO:0007137 . + + a GO:0000087 . + + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 GO:0009277 ; - obo:SEPIO_0000124 GO_REF:0000111 . + obo:SEPIO_0000124 PMID:16823372 . - a PomBase:SPAC2E12.02, - owl:NamedIndividual . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:15654021 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0007137 . - a PomBase:SPBC530.14c, - owl:NamedIndividual . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22235339 . - a PomBase:SPAC27E2.09, + a PomBase:SPBC1A4.05, owl:NamedIndividual . - a PomBase:SPAC1782.07 . + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000005337 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:18362178 . + obo:SEPIO_0000124 PMID:11907273 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . - a PomBase:SPBC336.02, + a PomBase:SPBC4F6.14, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0043596 . - a ECO:0000266, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 SGD:S000004908 ; - obo:SEPIO_0000124 GO_REF:0000024 . + obo:SEPIO_0000124 PMID:15643072 . - a ECO:0000314, + a ECO:0000255, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20870879 . + RO:0002614 Pfam:PF00128 ; + obo:SEPIO_0000124 GO_REF:0000050 . - a PomBase:SPBC2D10.19c, - owl:NamedIndividual . + a GO:0000089 . - a GO:0003682, + a ECO:0000314, owl:NamedIndividual ; - RO:0002333 ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + obo:SEPIO_0000124 PMID:27385337 . - a PomBase:SPAC644.14c, + a PomBase:SPAC4D7.05, owl:NamedIndividual . - a PomBase:SPBC776.08c, + a PomBase:SPBC32F12.04, 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 ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:15930132 . + obo:SEPIO_0000124 PMID:16179942 . - a ECO:0000266, + a ECO:0000250, owl:NamedIndividual ; - RO:0002614 SGD:S000003515 ; + RO:0002614 UniProtKB:P41810 ; obo:SEPIO_0000124 GO_REF:0000024 . - a GO:0071472 . + a PomBase:SPBC17D1.06, + owl:NamedIndividual . - a GO:0071479 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC25B8.17, + a PomBase:SPAC1782.09c, owl:NamedIndividual . - a ECO:0000353, - owl:NamedIndividual ; - RO:0002614 PomBase:SPAC24H6.05 ; - obo:SEPIO_0000124 PMID:15629716 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0071479 . + a PomBase:SPAC1751.03, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . - a ECO:0000314, + a GO:0000278 . + + a ECO:0000266, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20298435 . + RO:0002614 SGD:S000006095 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a PomBase:SPBC11B10.09, + a PomBase:SPAC977.10, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:16823372 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a ECO:0000314, + a GO:0003682, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:8502556 . + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000501 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a PomBase:SPCC1235.03, + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . + + a PomBase:SPAC343.07, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000250, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:18951025 . + RO:0002614 UniProtKB:P40089 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a GO:0003674 ; - obo:BFO_0000050 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0000089 . + a GO:0034605 . - a PomBase:SPBC646.09c, + a PomBase:SPBC16E9.10c, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000315, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:19061185 . + obo:SEPIO_0000124 PMID:18180284 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000006316 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a GO:0000089 . + a PomBase:SPCC16A11.17, + owl:NamedIndividual . - a GO:0071276 . + a PomBase:SPBC1703.14c, + owl:NamedIndividual . - a GO:0000080 . + a GO:0007128 . - a PomBase:SPBC902.06, - owl:NamedIndividual . + a GO:0000087 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24790095 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24920823 . + obo:SEPIO_0000124 PMID:16624923 . + + a PomBase:SPBP4H10.06c, + owl:NamedIndividual . - a GO:0007128 . + a GO:0000093 . - a GO:0070301 . + a PomBase:SPBC19G7.09, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:16823372 . - a GO:0071276 . + a PomBase:SPBC11B10.09, + owl:NamedIndividual . - a GO:0000090 . + 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 ECO:0000266, - owl:NamedIndividual ; - RO:0002614 SGD:S000003105 ; - obo:SEPIO_0000124 GO_REF:0000024 . + a PomBase:SPBC1347.12, + owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11792803 . + 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:SPBC12C2.08, + a PomBase:SPBC20F10.06, owl:NamedIndividual . - a PomBase:SPBC582.05c, + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22146723 . + + a PomBase:SPBC1861.01c, owl:NamedIndividual . - a ECO:0000266, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 SGD:S000000781 ; - obo:SEPIO_0000124 GO_REF:0000024 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + obo:SEPIO_0000124 PMID:16823372 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:27082518 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . - a PomBase:SPBC216.02, - owl:NamedIndividual . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . - a PomBase:SPBCPT2R1.04c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC6G9.11, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0051329 . + a GO:0071242 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:10747035 . + obo:SEPIO_0000124 PMID:11294895 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16085489 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPAC1006.09, + owl:NamedIndividual . - a PomBase:SPAC3H8.10, + a PomBase:SPBC428.20c, owl:NamedIndividual . - a GO:0000087 . + a PomBase:SPSNRNA.01, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20970342 . + obo:SEPIO_0000124 PMID:20919928 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24713849 . + obo:SEPIO_0000124 PMID:16823372 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16146630 . + a PomBase:SPAC24B11.06c, + owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22375066 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0000090 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC25G10.08, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0004674, + a ECO:0000314, 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 . + obo:SEPIO_0000124 PMID:25410910 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC27D7.13c, + a PomBase:SPCC16A11.17, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC17D11.05, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0070301 . - a PomBase:SPAC31A2.16, - owl:NamedIndividual . + a GO:0000087 . - 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:SPBC19C2.09, + a PomBase:SPBC16E9.07, owl:NamedIndividual . - a PomBase:SPCC4B3.15, + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC7D4.13c, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:25733668 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC336.02, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000303, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:10799520 . + obo:SEPIO_0000124 GO_REF:0000051 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000080 . - a GO:0007124 . + a GO:0005826 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPAC1093.06c, + owl:NamedIndividual . - a GO:0003690, - owl:NamedIndividual ; - RO:0002333 ; - ns1:__purl.obolibrary.org_obo_BFO_0000050 . + a PomBase:SPBC1539.10, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPAC16A10.05c, + owl:NamedIndividual . - a GO:0005680 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:21118717 . - a GO:0000087 . + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16428435 . + a GO:0071242 . - a PomBase:SPBC17D1.03c, + a PomBase:SPAC821.09, owl:NamedIndividual . - a ECO:0000266, - owl:NamedIndividual ; - RO:0002614 SGD:S000001338 ; - obo:SEPIO_0000124 GO_REF:0000024 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:7596817 . + obo:SEPIO_0000124 PMID:15930132 . - a ECO:0000266, - owl:NamedIndividual ; - RO:0002614 SGD:S000004165 ; - obo:SEPIO_0000124 GO_REF:0000024 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16899242 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000303, - owl:NamedIndividual ; - obo:SEPIO_0000124 GO_REF:0000051 . + a PomBase:SPAC16A10.07c, + owl:NamedIndividual . - a ECO:0000314, + a PomBase:SPAC19G12.08 . + + a ECO:0000315, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22809626 . + obo:SEPIO_0000124 PMID:23389634 . - a ECO:0000303, + a ECO:0000303, owl:NamedIndividual ; obo:SEPIO_0000124 GO_REF:0000051 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC216.02, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000303, + owl:NamedIndividual ; + obo:SEPIO_0000124 GO_REF:0000051 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000236 . - a PomBase:SPAC12G12.04, + a PomBase:SPAC11E3.03, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000266, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + RO:0002614 SGD:S000001583 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a PomBase:SPBC3B8.09, + a PomBase:SPBC1347.02, owl:NamedIndividual . - a PomBase:SPAC11E3.03, - owl:NamedIndividual . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:9852154 . - a GO:0007124 . + a GO:0071276 . - a PomBase:SPBC337.12, + a PomBase:SPAC1687.20c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPAC212.04c, + owl:NamedIndividual . - a PomBase:SPBC776.13, + a PomBase:SPCC1223.06, owl:NamedIndividual . - a PomBase:SPAC212.01c, + a PomBase:SPBC146.13c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18951025 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:16823372 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a ECO:0000266, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 SGD:S000005931 ; - obo:SEPIO_0000124 GO_REF:0000024 . - - a PomBase:SPBC21H7.03c, - owl:NamedIndividual . - - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:12006658 . + obo:SEPIO_0000124 PMID:24291789 . - a PomBase:SPCC1682.02c, + a PomBase:SPBC1604.09c, owl:NamedIndividual . - a GO:0007124 . - - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:17035632 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a GO:0005515, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22682245 . + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_BFO_0000050 . - a PomBase:SPBP22H7.02c, + a PomBase:SPCC320.13c, owl:NamedIndividual . - a PomBase:SPAC1F7.01c, + a PomBase:SPBC25D12.03c, owl:NamedIndividual . - a GO:0000093 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000087 . - a PomBase:SPAC1782.09c, + a PomBase:SPBC21H7.04, owl:NamedIndividual . - a GO:0000278 . - - a PomBase:SPBC32H8.04c, + a PomBase:SPBC18H10.03, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20870879 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:17035632 . + obo:SEPIO_0000124 PMID:25733668 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000315, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + obo:SEPIO_0000124 PMID:24954052 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:25987607 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000092 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11679064 . - a GO:0043596 . + a PomBase:SPAC3H8.10, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000250, + owl:NamedIndividual ; + RO:0002614 UniProtKB:Q1ED39 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a GO:0051329 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22375066 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11676924 . + obo:SEPIO_0000124 PMID:19061185 . - 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 GO:0007124 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20919928 . + obo:SEPIO_0000124 PMID:24210919 . + + a PomBase:SPAC18G6.10, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:16823372 . - a ECO:0000266, + a ECO:0000250, owl:NamedIndividual ; - RO:0002614 SGD:S000001732 ; + RO:0002614 UniProtKB:P37838 ; obo:SEPIO_0000124 GO_REF:0000024 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC2A9.07c, + owl:NamedIndividual . - a ECO:0000266, - owl:NamedIndividual ; - RO:0002614 SGD:S000003322 ; - obo:SEPIO_0000124 GO_REF:0000024 . + a PomBase:SPBC8D2.13, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC18H10.13, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC32H8.10, + owl:NamedIndividual . - a PomBase:SPBC19C2.09, + a PomBase:SPBP8B7.20c, owl:NamedIndividual . - a GO:0000087 . + a GO:0000080 . - a PomBase:SPAC15A10.16, + a PomBase:SPBC115.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:0000087 . + a PomBase:SPAP8A3.02c, + owl:NamedIndividual . - a GO:0071242 . + a PomBase:SPAC12G12.04, + owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22065639 . + 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:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000250, - owl:NamedIndividual ; - RO:0002614 UniProtKB:P37838 ; - obo:SEPIO_0000124 GO_REF:0000024 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC20F10.09, - owl:NamedIndividual . + a GO:0051329 . - a PomBase:SPBC660.07 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000092 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11707530 . - - a PomBase:SPBC16C6.13c, - owl:NamedIndividual . - - a GO:0000090 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + obo:SEPIO_0000124 PMID:22146723 . - 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:SPBC4C3.05c, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBP35G2.16c . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20298435 . - - a GO:0007124 . + obo:SEPIO_0000124 PMID:22146723 . - a PomBase:SPBC1604.09c, + a PomBase:SPBC19C2.09, owl:NamedIndividual . - a ECO:0000315, + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:18077559 . + obo:SEPIO_0000124 PMID:21072667 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPAC1782.07 . - a GO:0000278 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24478458 . - a PomBase:SPBC16C6.11, - owl:NamedIndividual . + a GO:0000089 . - 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:7628693 . - a ECO:0000314, + a ECO:0000304, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + obo:SEPIO_0000124 PMID:17472966 . - a PomBase:SPAC6F12.02, + a PomBase:SPBC1778.02, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0071281 . + a PomBase:SPBC1105.17, + owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:2192258 . + a PomBase:SPAC6F12.02, + owl:NamedIndividual . - a ECO:0000315, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16537923 . + obo:SEPIO_0000124 PMID:11432827 . - a GO:0000087 . + a PomBase:SPBC660.07 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPCC1840.02c, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0007124 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0072711 . + a PomBase:SPBC32H8.09, + owl:NamedIndividual . - a ECO:0000269, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11683390 . + a GO:0000087 . - a GO:0000087 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC17D1.06, + a PomBase:SPAC23C11.16, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC28E12.05, + owl:NamedIndividual . + + a GO:0007128 . - a ECO:0000314, + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20970342 . + obo:SEPIO_0000124 PMID:8485317 . - a PomBase:SPBPB2B2.14c, + a PomBase:SPBC428.18, owl:NamedIndividual . - a GO:0000278 . + a GO:0000085 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:17895368 . - - a GO:0051220 . + obo:SEPIO_0000124 PMID:18362178 . - a PomBase:SPBC17D1.04, + a PomBase:SPAC4D7.07c, owl:NamedIndividual . - a PomBase:SPAC607.09c, + a PomBase:SPAC637.07, owl:NamedIndividual . - a ECO:0000266, - owl:NamedIndividual ; - RO:0002614 SGD:S000003046 ; - obo:SEPIO_0000124 GO_REF:0000024 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24451546 . + a PomBase:SPBC776.02c, + owl:NamedIndividual . - a PomBase:SPAC821.12, + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC582.03, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0061780 . + a PomBase:SPBP4H10.06c, + owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:10766248 . + a PomBase:SPBC211.04c, + owl:NamedIndividual . - a PomBase:SPBC21B10.10, + a PomBase:SPBC646.09c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0072711 . - a ECO:0000315, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:23389634 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + obo:SEPIO_0000124 PMID:24210919 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:16823372 . - a PomBase:SPAP27G11.13c, - owl:NamedIndividual . + a ECO:0000303, + owl:NamedIndividual ; + obo:SEPIO_0000124 GO_REF:0000051 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:8663159 . - a PomBase:SPBC11B10.09, - owl:NamedIndividual . + a GO:0071472 . - a PomBase:SPCC962.02c, - owl:NamedIndividual . + a GO:0051321 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:10747035 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16179942 . - - a PomBase:SPBC16E9.10c, - owl:NamedIndividual . + obo:SEPIO_0000124 PMID:11861551 . - a PomBase:SPBC28E12.05, + a PomBase:SPBC1706.01, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:17035632 . - - a GO:0000092 . + obo:SEPIO_0000124 PMID:10366596 . - a PomBase:SPNCRNA.445, + a PomBase:SPBC4F6.14, owl:NamedIndividual . - a GO:0000236 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16819157 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:16823372 . - 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 GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0071456 . + a GO:0070301 . - a PomBase:SPBC1347.01c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0000084 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000353, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:9136929 . + RO:0002614 PomBase:SPAC24H6.05 ; + obo:SEPIO_0000124 PMID:15629716 . - a GO:0000087 . + a GO:0015035, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000752 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a PomBase:SPBC646.09c, + a PomBase:SPBC776.11, owl:NamedIndividual . - 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 GO:0000089 . - a PomBase:SPCC320.13c, - owl:NamedIndividual . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:17895368 . - a GO:0000080 . + 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 ECO:0000314, + a ECO:0000315, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20298435 . + obo:SEPIO_0000124 PMID:15164362 . - a GO:0010458 . + a PomBase:SPBPB2B2.07c, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:23349808 . - a PomBase:SPCC16A11.17, + a PomBase:SPCC895.07, owl:NamedIndividual . - a ECO:0000303, + a ECO:0000303, owl:NamedIndividual ; obo:SEPIO_0000124 GO_REF:0000051 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000087 . - a PomBase:SPBC2D10.10c, + a PomBase:SPBC2D10.10c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:18799626 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000005231 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a GO:0061780 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC16D10.09, + a PomBase:SPAC1A6.04c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:21385875 . + obo:SEPIO_0000124 PMID:22682245 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000315, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:23389634 . - a PomBase:SPBC20F10.01, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC1105.17, + a PomBase:SPBC2G5.06c, owl:NamedIndividual . - a GO:0007128 . + a GO:0000087 . - a PomBase:SPBC4F6.07c, - owl:NamedIndividual . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:1770000 . - a ECO:0000314, + a ECO:0000303, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24713849 . + obo:SEPIO_0000124 GO_REF:0000051 . - a PomBase:SPAC16C9.07, + a PomBase:SPAC2E12.02, owl:NamedIndividual . - a ECO:0000353, - owl:NamedIndividual ; - RO:0002614 PomBase:SPBC646.09c ; - obo:SEPIO_0000124 PMID:12006658 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0071456 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20870879 . - - a GO:0007128 . + obo:SEPIO_0000124 PMID:12023299 . - a GO:0000089 . + a GO:0000087 . - a PomBase:SPCC825.03c, + a PomBase:SPBC725.12, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19606211 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC32H8.04c, - owl:NamedIndividual . + a GO:0007124 . - a PomBase:SPAC821.09, + a PomBase:SPAC1782.09c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a ECO:0000314, + a ECO:0000266, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . - - a GO:0034605 . + RO:0002614 SGD:S000007497 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0071470 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16899242 . - a GO:0000093 . + 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:SPBP16F5.06, + a PomBase:SPBC4F6.13c, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:15643072 . + a GO:0071456 . - a GO:0000087 . + a PomBase:SPAC2E12.02 . - a GO:0000087 . + a GO:0000089 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + obo:SEPIO_0000124 PMID:10799520 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPAC1F5.04c, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000050 ; - RO:0002333 . + a GO:0000080 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000089 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:10766248 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC24C6.05, + a PomBase:SPAC7D4.14c, owl:NamedIndividual . - a ECO:0000266, - owl:NamedIndividual ; - RO:0002614 SGD:S000004182 ; - obo:SEPIO_0000124 GO_REF:0000024 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0000278 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0007128 . - a GO:0001077, - owl:NamedIndividual ; - RO:0002333 ; - ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000085 . - a PomBase:SPAC4A8.16c, + a PomBase:SPBC16A3.13, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC56F2.04, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC365.15, + a PomBase:SPBC2G2.14, owl:NamedIndividual . - a PomBase:SPAC29A4.04c, - owl:NamedIndividual . + a GO:0000087 . - a ECO:0000314, + a GO:0000089 . + + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24790095 . + obo:SEPIO_0000124 PMID:2192258 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . - a GO:0004707, + a ECO:0000314, owl:NamedIndividual ; - RO:0002333 ; - ns1:__purl.obolibrary.org_obo_GOREL_0000752 ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + obo:SEPIO_0000124 PMID:25253718 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22970243 . - a PomBase:SPAC23C11.16, + a PomBase:SPBC28E12.05, owl:NamedIndividual . - a PomBase:SPBC365.04c, + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000000804 ; + obo:SEPIO_0000124 GO_REF:0000024 . + + a PomBase:SPAC821.05, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000000100 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000087 . - a PomBase:SPBC2G5.06c, + a PomBase:SPAC1782.09c, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000353, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:27385337 . + RO:0002614 PomBase:SPBC646.09c ; + obo:SEPIO_0000124 PMID:12006658 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPCC576.07, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0000278 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + obo:SEPIO_0000124 PMID:11694582 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000087 . - a GO:0000278 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC1A6.03c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000250, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 UniProtKB:Q1ED39 ; - obo:SEPIO_0000124 GO_REF:0000024 . + obo:SEPIO_0000124 PMID:18621924 . - a PomBase:SPBC2G2.05, - owl:NamedIndividual . + a ECO:0000269, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22245228 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24790095 . + obo:SEPIO_0000124 PMID:19061185 . - a PomBase:SPCC895.07, - owl:NamedIndividual . + a GO:0071456 . - a ECO:0000353, + a GO:0000088 . + + a ECO:0000266, owl:NamedIndividual ; - RO:0002614 PomBase:SPAC1782.09c ; - obo:SEPIO_0000124 PMID:16085489 . + RO:0002614 SGD:S000000924 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a GO:0000080 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBP4H10.06c, + a PomBase:SPAPB1E7.02c, owl:NamedIndividual . - a PomBase:SPCC1840.02c, + a PomBase:SPBC1348.07, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0000278 . + a PomBase:SPBC16D10.09, + owl:NamedIndividual . - a GO:0000085 . + a PomBase:SPBC887.15c . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0034605 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:8196617 . - a GO:0000087 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:27082518 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0007128 . + a GO:0000278 . - a ECO:0000315, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:18077559 . + a PomBase:SPCC320.13c, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:17035632 . - a PomBase:SPAC890.02c, + a PomBase:SPBPB2B2.14c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:18346214 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:19373772 . + obo:SEPIO_0000124 PMID:17035632 . - 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:SPBP16F5.06, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000305, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + RO:0002614 GO:0009277 ; + obo:SEPIO_0000124 GO_REF:0000111 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:8196617 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC110.03, + a PomBase:SPCC4B3.15, owl:NamedIndividual . - a PomBase:SPBC543.06c, + a PomBase:SPCC1322.12c, owl:NamedIndividual . - a PomBase:SPAC2E12.02, + a PomBase:SPAC6G10.02c, owl:NamedIndividual . - a PomBase:SPBC1861.01c, - owl:NamedIndividual . + a GO:0007132 . - a PomBase:SPBC12D12.01, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000269, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:9852154 . + obo:SEPIO_0000124 PMID:11683390 . + + a PomBase:SPCC962.06c, + owl:NamedIndividual . - a ECO:0000316, + a ECO:0000269, owl:NamedIndividual ; - RO:0002614 SGD:S000002367 ; - obo:SEPIO_0000124 PMID:10502409 . + obo:SEPIO_0000124 PMID:11683390 . - a PomBase:SPAC3G9.01, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16899242 . + obo:SEPIO_0000124 PMID:11676924 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC1539.10, + a PomBase:SPBC582.03, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + obo:SEPIO_0000124 PMID:20870879 . - a PomBase:SPBC1711.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 ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:25987607 . + a GO:0000278 . + + a PomBase:SPBC582.06c, + owl:NamedIndividual . - a PomBase:SPAC20G8.05c, + a PomBase:SPAC27F1.02c, owl:NamedIndividual . - a ECO:0000315, + a GO:0000085 . + + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:15164362 . + obo:SEPIO_0000124 PMID:11554922 . - 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:18923422 . - a PomBase:SPCC4F11.02, + a PomBase:SPBC30D10.06, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:18362178 . + a GO:0071470 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:12360293 . + obo:SEPIO_0000124 PMID:20661445 . - a PomBase:SPBC56F2.04, + a PomBase:SPBC1711.05, 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 PomBase:SPBC106.10 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a GO:0003682, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a PomBase:SPAC23C4.02, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . - a PomBase:SPAC458.04c, - owl:NamedIndividual . + a GO:0051329 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + obo:SEPIO_0000124 PMID:22146723 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000315, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20870879 . - - a GO:0007132 . + obo:SEPIO_0000124 PMID:24478458 . - a PomBase:SPBC1703.01c, + a PomBase:SPBP22H7.02c, owl:NamedIndividual . - a ECO:0000250, + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0015035, owl:NamedIndividual ; - RO:0002614 UniProtKB:Q07623 ; - obo:SEPIO_0000124 GO_REF:0000024 . + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000752 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a GO:0072690 . + a ECO:0000305, + owl:NamedIndividual ; + RO:0002614 GO:0009277 ; + obo:SEPIO_0000124 GO_REF:0000111 . - a GO:0070301 . + a PomBase:SPAC3A12.13c, + owl:NamedIndividual . - a GO:0051329 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC4D7.05, - owl:NamedIndividual . + a GO:0070301 . + + a GO:0000087 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:21072667 . + obo:SEPIO_0000124 PMID:21652630 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPCC736.14, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0071456 . - a GO:0003674 ; - obo:BFO_0000050 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a PomBase:SPCC16A11.17, + owl:NamedIndividual . + + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:16823372 . - a PomBase:SPBC16E9.07, - owl:NamedIndividual . - - a PomBase:SPAC1F8.02c . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000316, - owl:NamedIndividual ; - RO:0002614 PomBase:SPAC18G6.15 ; - obo:SEPIO_0000124 PMID:20624975 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC4C3.07, + a PomBase:SPNCRNA.445, 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:25987607 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + obo:SEPIO_0000124 PMID:20970342 . - a PomBase:SPCC188.02, + a PomBase:SPAC110.03, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:10766248 . - a PomBase:SPCC1223.06, - owl:NamedIndividual . + a GO:0072690 . - a ECO:0000315, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:15164362 . + obo:SEPIO_0000124 PMID:16823372 . - a PomBase:SPBC1348.07, + a PomBase:SPBC776.13, owl:NamedIndividual . - a PomBase:SPCC830.03, + a PomBase:SPAC458.04c, owl:NamedIndividual . - a PomBase:SPBC428.18, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000080 . - a ECO:0000266, - owl:NamedIndividual ; - RO:0002614 SGD:S000002172 ; - obo:SEPIO_0000124 GO_REF:0000024 . + 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 GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC24C6.05, + owl:NamedIndividual . - a PomBase:SPCC4G3.08 . + a GO:0004707, + 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 GO:0007124 . + a GO:0000080 . - a PomBase:SPBC1711.16, + a PomBase:SPAC644.12, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22174761 . + obo:SEPIO_0000124 PMID:24210919 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:15654021 . + a PomBase:SPAC31A2.16, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC887.14c, + a PomBase:SPAC977.09c, owl:NamedIndividual . - a PomBase:SPAC17H9.02, + a PomBase:SPBC530.04, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000266, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16624923 . - - 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 . + RO:0002614 SGD:S000002494 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:16823372 . - a ECO:0000250, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 UniProtKB:P57743 ; - obo:SEPIO_0000124 GO_REF:0000024 . + obo:SEPIO_0000124 PMID:20298435 . - a PomBase:SPBC19F5.05c, + a PomBase:SPAC688.07c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:10766248 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11084332 . - a PomBase:SPAC1093.06c, + a PomBase:SPAC27D7.13c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0071333 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:19061185 . + a GO:0000080 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . - - a PomBase:SPBC776.11, + a PomBase:SPBC83.17, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:27082518 . + a PomBase:SPBC582.06c, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:25253718 . + obo:SEPIO_0000124 PMID:9852154 . - a ECO:0000266, - owl:NamedIndividual ; - RO:0002614 SGD:S000005231 ; - obo:SEPIO_0000124 GO_REF:0000024 . + a GO:0000089 . - a PomBase:SPBC16E9.12c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPCC16A11.17, + a PomBase:SPCC1235.03, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22139357 . + obo:SEPIO_0000124 PMID:22065639 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24920823 . - a PomBase:SPCC16A11.17, + a PomBase:SPBC16C6.13c, owl:NamedIndividual . - a GO:0000080 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a PomBase:SPCC962.02c, + a PomBase:SPCC895.07, owl:NamedIndividual . - a ECO:0000315, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24478458 . + a GO:0071479 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:23394829 . + obo:SEPIO_0000124 PMID:16823372 . - 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 PomBase:SPAC343.07, - owl:NamedIndividual . - - a GO:0000085 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:15837798 . - a GO:0000278 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24790095 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20919928 . + obo:SEPIO_0000124 PMID:25847133 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000278 . - a ECO:0000314, + a ECO:0000266, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11260263 . + RO:0002614 SGD:S000001947 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a PomBase:SPBC18E5.03c, + a PomBase:SPBC1A4.07c, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:12023299 . + obo:SEPIO_0000124 PMID:16428435 . - a GO:0042789 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC19F5.05c, - owl:NamedIndividual . + a GO:0007124 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:18799626 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:12023299 . + obo:SEPIO_0000124 PMID:21880100 . - a GO:0003674 ; - obo:BFO_0000050 ; - RO:0002333 . + a GO:0000087 . - a PomBase:SPAC2F7.03c, + a PomBase:SPBC887.10, owl:NamedIndividual . - a ECO:0000266, - owl:NamedIndividual ; - RO:0002614 SGD:S000005005 ; - obo:SEPIO_0000124 GO_REF:0000024 . - - a GO:0070301 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000315, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:26687354 . + obo:SEPIO_0000124 PMID:16428435 . - a ECO:0000314, + a ECO:0000266, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24021628 . + RO:0002614 SGD:S000000781 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a PomBase:SPBC1778.02, + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPBC11G11.03, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:16823372 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11084332 . - - a ECO:0000266, - owl:NamedIndividual ; - RO:0002614 SGD:S000003957 ; - obo:SEPIO_0000124 GO_REF:0000024 . - - a PomBase:SPBC146.14c, - 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:21965289 . + a GO:0000087 . - a GO:0000278 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:25987607 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000278 . - a PomBase:SPBP4G3.02, + a PomBase:SPCC16A11.17, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:18346214 . + obo:SEPIO_0000124 PMID:15791259 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:10747035 . + obo:SEPIO_0000124 PMID:16823372 . - a PomBase:SPBC4C3.05c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000266, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 SGD:S000002304 ; - obo:SEPIO_0000124 GO_REF:0000024 . + obo:SEPIO_0000124 PMID:16823372 . - a ECO:0000250, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 UniProtKB:P40486 ; - obo:SEPIO_0000124 GO_REF:0000024 . + obo:SEPIO_0000124 PMID:24713849 . - a PomBase:SPBC1347.02, - 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:0051329 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24947517 . + 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:SPCC285.08, + a PomBase:SPBC1861.01c, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11432827 . + a GO:0006995 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:1293882 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11080156 . + obo:SEPIO_0000124 PMID:11448769 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC428.03c, + a PomBase:SPAC4A8.16c, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC902.04, + a PomBase:SPBC11B10.09, owl:NamedIndividual . - a GO:0007124 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC1706.01, + a PomBase:SPBC19G7.05c, owl:NamedIndividual . - a GO:0000087 . + a GO:0007124 . - a PomBase:SPAC7D4.14c, - owl:NamedIndividual . + a GO:0051329 . - a ECO:0000250, - owl:NamedIndividual ; - RO:0002614 UniProtKB:Q08287 ; - obo:SEPIO_0000124 GO_REF:0000024 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a PomBase:SPBC543.06c, + a PomBase:SPAC25G10.08, owl:NamedIndividual . - a GO:0000085 . + 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:SPBC4.04c, + a PomBase:SPBC1105.17, owl:NamedIndividual . - a GO:0000093 . + a PomBase:SPBC16G5.12c, + owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:18621924 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000303, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 GO_REF:0000051 . + obo:SEPIO_0000124 PMID:19061185 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000087 . - a GO:0003677, + a ECO:0000314, owl:NamedIndividual ; - RO:0002333 ; - ns1:__purl.obolibrary.org_obo_BFO_0000050 . + obo:SEPIO_0000124 PMID:16823372 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:12237855 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC18H10.13, - owl:NamedIndividual . + a GO:0007124 . - a GO:0000087 . + a PomBase:SPCC191.07 . - a ECO:0000266, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 SGD:S000007455 ; - obo:SEPIO_0000124 GO_REF:0000024 . + obo:SEPIO_0000124 PMID:11707284 . - a PomBase:SPBC3E7.10, + a PomBase:SPAC3A11.14c, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:15629716 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a ECO:0000305, - owl:NamedIndividual ; - RO:0002614 GO:0009277 ; - obo:SEPIO_0000124 GO_REF:0000111 . + a PomBase:SPBC19C2.09, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . - - a GO:0003674 ; - obo:BFO_0000050 ; - RO:0002333 . + obo:SEPIO_0000124 PMID:27082518 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22976295 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC56F2.04, + a PomBase:SPBC725.08, owl:NamedIndividual . - a PomBase:SPBC1711.05, - owl:NamedIndividual . + a PomBase:SPBC19C2.09 . - a PomBase:SPBC902.04, + a PomBase:SPBPJ4664.04, owl:NamedIndividual . - a ECO:0000255, + a ECO:0000266, owl:NamedIndividual ; - RO:0002614 Pfam:PF00128 ; - obo:SEPIO_0000124 GO_REF:0000050 . + RO:0002614 SGD:S000002747 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC660.07 . - a ECO:0000303, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 GO_REF:0000051 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + obo:SEPIO_0000124 PMID:20870879 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22146723 . + obo:SEPIO_0000124 PMID:19061185 . - a GO:0003682, + a ECO:0000314, owl:NamedIndividual ; - RO:0002333 ; - ns1:__purl.obolibrary.org_obo_GOREL_0000501 ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + obo:SEPIO_0000124 PMID:20852022 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24210919 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + obo:SEPIO_0000124 PMID:20870879 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:16823372 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:9852154 . + obo:SEPIO_0000124 PMID:20970342 . - a PomBase:SPBC25D12.02c, - owl:NamedIndividual . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11553715 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000087 . - a GO:0000089 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24165938 . - 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:SPBC365.15, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22146723 . + obo:SEPIO_0000124 PMID:11792803 . - a PomBase:SPAC1782.10c, + a PomBase:SPCC825.03c, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:2537310 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0004674, - owl:NamedIndividual ; - RO:0002333 ; - ns1:__purl.obolibrary.org_obo_GOREL_0000752 ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + a GO:0051329 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:12023299 . - a PomBase:SPBC1348.01, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC977.10, - owl:NamedIndividual . + a GO:0000087 . - a PomBase:SPBC25D12.03c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAPB1E7.02c, + a PomBase:SPBC646.09c, owl:NamedIndividual . - a ECO:0000266, + a ECO:0000266, owl:NamedIndividual ; - RO:0002614 SGD:S000006316 ; + RO:0002614 SGD:S000003515 ; obo:SEPIO_0000124 GO_REF:0000024 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20298435 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24210919 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + obo:SEPIO_0000124 PMID:16823372 . - a PomBase:SPBC21H7.04, + a PomBase:SPCC74.03c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000087 . - a PomBase:SPAC1782.09c, - owl:NamedIndividual . - - a ECO:0000314, + a GO:0004674, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11080156 . + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000752 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a PomBase:SPBC1921.01c, - owl:NamedIndividual . - - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11676924 . + obo:SEPIO_0000124 PMID:16823372 . - a GO:0001078, + a ECO:0000314, owl:NamedIndividual ; - RO:0002333 ; - ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a GO:0034605 . + obo:SEPIO_0000124 PMID:16085489 . - a PomBase:SPBC11G11.03, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000266, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20870879 . - - a GO:0000087 . + RO:0002614 SGD:S000001338 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a ECO:0000303, + a ECO:0000266, owl:NamedIndividual ; - obo:SEPIO_0000124 GO_REF:0000051 . + RO:0002614 SGD:S000006452 ; + obo:SEPIO_0000124 GO_REF:0000024 . - 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: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:0007128 . - a SO:0001871 . + a PomBase:SPAC3G9.01, + owl:NamedIndividual . - a ECO:0000266, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 SGD:S000002494 ; - obo:SEPIO_0000124 GO_REF:0000024 . + obo:SEPIO_0000124 PMID:16823372 . - a ECO:0000314, + a ECO:0000303, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:15837798 . + 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 PomBase:SPAC644.14c, + a PomBase:SPBC21H7.04, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a GO:0007124 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + obo:SEPIO_0000124 PMID:24713849 . - a GO:0000093 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000266, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 SGD:S000006095 ; - obo:SEPIO_0000124 GO_REF:0000024 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + obo:SEPIO_0000124 PMID:12455694 . - a PomBase:SPCC645.07 . + a GO:0000089 . - a GO:0000087 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC16G5.11c, + a PomBase:SPBC20F10.01, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000080 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20512112 . - a GO:0000278 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0004674, + a ECO:0000314, owl:NamedIndividual ; - RO:0002333 ; - ns1:__purl.obolibrary.org_obo_GOREL_0000752 ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + obo:SEPIO_0000124 PMID:16146630 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + obo:SEPIO_0000124 PMID:18799626 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0034605 . + a PomBase:SPAC1782.09c, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC19F5.05c, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0000089 . - a PomBase:SPBC582.06c, + a PomBase:SPBC16G5.11c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a PomBase:SPAC1006.09, + a PomBase:SPAC1782.09c, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:19061185 . + a PomBase:SPBC725.02, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:24713849 . - a PomBase:SPBC776.02c, - owl:NamedIndividual . - - a PomBase:SPSNORNA.20, + a PomBase:SPBC216.02, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + obo:SEPIO_0000124 PMID:20919928 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + obo:SEPIO_0000124 PMID:1500423 . - a GO:0000088 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24210919 . + a PomBase:SPCC16C4.03, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11554922 . + obo:SEPIO_0000124 PMID:19570910 . + + a PomBase:SPAC222.10c, + owl:NamedIndividual . + + a PomBase:SPBC17F3.02, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:23349808 . + obo:SEPIO_0000124 PMID:22976295 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + obo:SEPIO_0000124 PMID:20807799 . + + a GO:0000087 . - a ECO:0000315, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:18180284 . + obo:SEPIO_0000124 PMID:11084332 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:1905406 . + 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 GO:0007137 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003674 ; - obo:BFO_0000050 ; - RO:0002333 . + a GO:0034605 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:8196617 . + a GO:0000278 . - a GO:0000085 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0034605 . + a GO:0042789 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16819157 . + obo:SEPIO_0000124 PMID:16899242 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22174761 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11448769 . + obo:SEPIO_0000124 PMID:2537310 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000002172 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11861551 . - a PomBase:SPAC1006.03c, + a PomBase:SPBC20F10.01, owl:NamedIndividual . - a GO:0000087 . - - a PomBase:SPAC22E12.17c, + a PomBase:SPAC1782.10c, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000266, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20852022 . + RO:0002614 SGD:S000001212 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:7634333 . + a GO:0000090 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:18362178 . + a PomBase:SPBC8D2.16c, + owl:NamedIndividual . - a GO:0000089 . + a ECO:0000250, + owl:NamedIndividual ; + RO:0002614 UniProtKB:Q04225 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a GO:0000089 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBP8B7.01c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:8485317 . + obo:SEPIO_0000124 PMID:16823372 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0000087 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:12360293 . - a PomBase:SPBC4B4.07c, - owl:NamedIndividual . + a GO:0000091 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0071276 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC7D4.13c, + a PomBase:SPAC821.12, owl:NamedIndividual . - a PomBase:SPBC582.06c, + a GO:0000089 . + + a PomBase:SPBCPT2R1.04c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC1006.03c, + a PomBase:SPCC297.03, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0007128 . - a GO:0000080 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPCC645.07 . - a PomBase:SPBC19G7.16, + a PomBase:SPBC1604.08c, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24713849 . + a GO:0000087 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + obo:SEPIO_0000124 PMID:20919928 . - a PomBase:SPAC1782.09c, + a PomBase:SPCC16A11.17, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC887.14c, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0007124 . - a GO:0045944 . + a GO:0007124 . - a ECO:0000314, + a ECO:0000316, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:17538026 . + RO:0002614 SGD:S000002367 ; + obo:SEPIO_0000124 PMID:10502409 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC18H10.03, - owl:NamedIndividual . + a GO:0071276 . + + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000000914 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a PomBase:SPBC365.04c, + a PomBase:SPBC2D10.19c, owl:NamedIndividual . - a PomBase:SPAC222.10c, + 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:9636183 . + + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a PomBase:SPBC20F10.09, owl:NamedIndividual . - a PomBase:SPAC977.06, + a PomBase:SPBC19G7.05c, owl:NamedIndividual . - a PomBase:SPCC1322.12c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC1711.05, + a PomBase:SPBC902.04, owl:NamedIndividual . - a ECO:0000266, + a ECO:0000353, owl:NamedIndividual ; - RO:0002614 SGD:S000000100 ; - obo:SEPIO_0000124 GO_REF:0000024 . + RO:0002614 PomBase:SPAC1782.09c ; + obo:SEPIO_0000124 PMID:16085489 . - a PomBase:SPCC297.03, + a PomBase:SPCC1281.01, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000269, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:26483559 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20512112 . + obo:SEPIO_0000124 PMID:16823372 . - a PomBase:SPAC821.05, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0000087 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20935472 . - a PomBase:SPBC16G5.12c, - owl:NamedIndividual . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:19061185 . - a PomBase:SPBC2A9.07c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPCC1450.09c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000269, + a ECO:0000266, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:26483559 . + RO:0002614 SGD:S000005931 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11294895 . + obo:SEPIO_0000124 PMID:16823372 . - a PomBase:SPBPJ4664.04, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0007137 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0007128 . + a PomBase:SPCC1450.09c, + owl:NamedIndividual . - a ECO:0000303, - owl:NamedIndividual ; - obo:SEPIO_0000124 GO_REF:0000051 . + a GO:1905406 . - a PomBase:SPBC902.06, + a PomBase:SPCC1682.02c, owl:NamedIndividual . - a PomBase:SPAC1A6.04c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:19061185 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + obo:SEPIO_0000124 PMID:11294895 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:18799626 . + obo:SEPIO_0000124 PMID:9563836 . - a PomBase:SPBC530.04, - owl:NamedIndividual . + a GO:0010458 . - a PomBase:SPAC3A12.13c, - owl:NamedIndividual . + a GO:0005049, + owl:NamedIndividual ; + RO:0002333 ; + ns1:__purl.obolibrary.org_obo_GOREL_0000752 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a PomBase:SPAC20H4.11c, + a PomBase:SPBC1711.16, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000050 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . + + a GO:0007124 . - a ECO:0000266, + a ECO:0000314, owl:NamedIndividual ; - RO:0002614 SGD:S000004539 ; - obo:SEPIO_0000124 GO_REF:0000024 . + obo:SEPIO_0000124 PMID:17035632 . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPCC74.06, + a PomBase:SPBC17D1.04, owl:NamedIndividual . - a PomBase:SPBC16A3.13, + a PomBase:SPAP8A3.02c, owl:NamedIndividual . - a ECO:0000303, - owl:NamedIndividual ; - obo:SEPIO_0000124 GO_REF:0000051 . + 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:0042149 . - a PomBase:SPAC1F5.04c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:19061185 . + 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, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:7628693 . + obo:SEPIO_0000124 PMID:11554922 . - a ECO:0000314, + a ECO:0000250, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:22146723 . + RO:0002614 UniProtKB:P40486 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a PomBase:SPBC146.03c, + a PomBase:SPBC25D12.02c, owl:NamedIndividual . - a GO:0060274 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPAC1556.08c, - owl:NamedIndividual . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:24291789 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0000278 . + a PomBase:SPCC645.07, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; obo:SEPIO_0000124 PMID:16823372 . - a PomBase:SPCC11E10.03, - owl:NamedIndividual . + a GO:0000085 . - a GO:0005826 . + a GO:0007128 . - a PomBase:SPAC15A10.16, - owl:NamedIndividual . + a ECO:0000266, + owl:NamedIndividual ; + RO:0002614 SGD:S000004165 ; + obo:SEPIO_0000124 GO_REF:0000024 . - 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 GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:11071923 . - a PomBase:SPBC9B6.07, + a PomBase:SPAC4D7.05, owl:NamedIndividual . - a ECO:0000314, + a GO:0034605 . + + 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 ECO:0000266, + a ECO:0000266, owl:NamedIndividual ; - RO:0002614 SGD:S000001800 ; + RO:0002614 SGD:S000001131 ; obo:SEPIO_0000124 GO_REF:0000024 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC887.03c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0000278 . + a PomBase:SPBC530.14c, + owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a PomBase:SPBC1347.01c, + 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 PomBase:SPAC4D7.05, + a PomBase:SPBC776.08c, owl:NamedIndividual . - a PomBase:SPBC17F3.02, + a PomBase:SPAC29E6.07, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a GO:0071333 . - - a GO:0071472 . - - a ECO:0000314, + a ECO:0000315, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20870879 . + obo:SEPIO_0000124 PMID:12411492 . - a PomBase:SPBC146.13c, + a PomBase:SPBC13E7.06, owl:NamedIndividual . - a PomBase:SPBCPT2R1.01c, + a PomBase:SPAP27G11.13c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22809626 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:16823372 . - a GO:0007128 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC1A4.05, + a PomBase:SPAC1093.06c, owl:NamedIndividual . - a GO:0000087 . + a GO:0003674 ; + obo:BFO_0000050 ; + RO:0002333 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20512112 . + obo:SEPIO_0000124 PMID:16899242 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20870879 . - a PomBase:SPBC29A3.17, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC776.08c, - owl:NamedIndividual . + a ECO:0000250, + owl:NamedIndividual ; + RO:0002614 UniProtKB:P57743 ; + obo:SEPIO_0000124 GO_REF:0000024 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:22976295 . - a PomBase:SPAC18G6.10, + a PomBase:SPCC962.02c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a PomBase:SPBC30D10.06, + a PomBase:SPBC146.03c, owl:NamedIndividual . - a PomBase:SPBC19C2.03, - owl:NamedIndividual . + a GO:0072690 . - a ECO:0000314, + a ECO:0000303, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24165938 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a GO:0000087 . + obo:SEPIO_0000124 GO_REF:0000051 . - a GO:0015035, - owl:NamedIndividual ; - RO:0002333 ; - ns1:__purl.obolibrary.org_obo_GOREL_0000752 ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + a GO:0000089 . - a PomBase:SPBC1A4.07c, + a PomBase:SPAC16C9.07, owl:NamedIndividual . - a GO:0000089 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:19061185 . + obo:SEPIO_0000124 PMID:11448769 . - a ECO:0000250, - owl:NamedIndividual ; - RO:0002614 UniProtKB:P38112 ; - obo:SEPIO_0000124 GO_REF:0000024 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000315, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:24954052 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . - - a GO:0000089 . + obo:SEPIO_0000124 PMID:16085489 . - a PomBase:SPBC582.03, + a PomBase:SPBC776.13, owl:NamedIndividual . - a PomBase:SPCC191.07 . - - a PomBase:SPBC32H8.05, + a PomBase:SPCC74.06, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a ECO:0000314, + owl:NamedIndividual ; + obo:SEPIO_0000124 PMID:20970342 . - a PomBase:SPBC8D2.16c, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:18362178 . + a GO:0000089 . - a PomBase:SPBP16F5.06, - owl:NamedIndividual . + a PomBase:SPBC29B5.01 . - a PomBase:SPAC23C11.16, - owl:NamedIndividual . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0042149 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:0007124 . + a PomBase:SPBC3B8.09, + owl:NamedIndividual . - a ECO:0000305, - owl:NamedIndividual ; - RO:0002614 GO:0009277 ; - obo:SEPIO_0000124 GO_REF:0000111 . + a GO:0000087 . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC1539.10, + a PomBase:SPBC4C3.07, owl:NamedIndividual . - a GO:0007137 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20410137 . + a GO:0051329 . - a PomBase:SPAC6G10.02c, + a PomBase:SPAC1556.08c, owl:NamedIndividual . - a PomBase:SPCC962.06c, + a PomBase:SPAC890.02c, owl:NamedIndividual . - a PomBase:SPBC32H8.09, + a PomBase:SPAC1F7.01c, owl:NamedIndividual . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:25847133 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000315, + a GO:0000087 . + + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16537923 . + obo:SEPIO_0000124 PMID:22235339 . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:19061185 . + obo:SEPIO_0000124 PMID:23394829 . - a PomBase:SPAP8A3.02c, + a PomBase:SPCC1840.02c, owl:NamedIndividual . - a ECO:0000314, + a ECO:0000314, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:9802907 . - - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + 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 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a PomBase:SPBC582.03, + a PomBase:SPBC14C8.14c, owl:NamedIndividual . - a GO:0003674 ; - obo:BFO_0000066 ; - RO:0002333 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a GO:1905406 . + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:20919928 . + a PomBase:SPAC1A6.03c, + owl:NamedIndividual . - a ECO:0000314, + a ECO:0000305, owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11071923 . + RO:0002614 GO:0009277 ; + obo:SEPIO_0000124 GO_REF:0000111 . - a ECO:0000269, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:11683390 . + a GO:0000085 . - a ECO:0000314, - owl:NamedIndividual ; - obo:SEPIO_0000124 PMID:16823372 . + a PomBase:SPBC365.04c, + owl:NamedIndividual . + + a GO:0003674 ; + obo:BFO_0000066 ; + RO:0002333 . + + a PomBase:SPAC1006.03c, + owl:NamedIndividual . PomBase:SPAC1006.03c rdfs:label "red1" ; rdfs:subClassOf [ a owl:Restriction ; @@ -6054,1308 +6054,1308 @@ PomBase:SPCC895.07 rdfs:label "alp14" ; owl:onProperty RO:0002162 ; owl:someValuesFrom NCBITaxon:4896 ] . - a GO:0005730, + a GO:0000936, owl:NamedIndividual . - a GO:0005730, - owl:NamedIndividual . - - a GO:0035838, + a GO:0005634, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0005730, - owl:NamedIndividual . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0009897, + a GO:0009897, owl:NamedIndividual . - a GO:0005730, - owl:NamedIndividual . + a GO:0005826, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005869, + a GO:0005730, owl:NamedIndividual . - a GO:0005634, + a GO:0005737, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0009897, owl:NamedIndividual . - a GO:0000790, + a GO:0035861, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 , + . + + a GO:0009897, + owl:NamedIndividual . - a GO:0000790, + a GO:0060187, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0030875, + a GO:0005868, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a GO:0009897, + owl:NamedIndividual . - a GO:0005634, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a GO:0005730, + owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0005634, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a GO:0031429, + owl:NamedIndividual . - a GO:0016604, + a GO:0005730, owl:NamedIndividual . - a GO:0000790, + a GO:0005634, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0070693, - owl:NamedIndividual . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0044732, + a GO:0005634, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0005737, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a GO:0005730, + owl:NamedIndividual . - a GO:0005634, + a GO:0035327, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0051403, + a GO:0034399, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0035839, + a GO:0000775, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0005730, - owl:NamedIndividual . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0016604, - owl:NamedIndividual . - - a GO:0044732, + a GO:0070262, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a GO:0032153, + a GO:0000790, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 ; + ns1:__purl.obolibrary.org_obo_RO_0002008 . - a GO:0005737, + a GO:0000778, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0035838, + a GO:0000790, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0005730, - owl:NamedIndividual . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0016282, + a GO:0031429, owl:NamedIndividual . - a GO:0007015, + a GO:0032153, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000501 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a PomBase:SPAC23E2.01, + a GO:0005730, owl:NamedIndividual . - a GO:0035861, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 , - . - - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0035838, + a GO:0005737, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0009897, - owl:NamedIndividual . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005938, + a GO:0032153, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0070262, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + a GO:0005730, + owl:NamedIndividual . - a PomBase:SPCC1795.01c, + a GO:0005730, owl:NamedIndividual . - a GO:0009897, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0005826, + a GO:0044732, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0030981, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a GO:0005869, + owl:NamedIndividual . - a GO:0000778, + a GO:0005634, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0032153, + a GO:0005737, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:0030126, owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0035327, + a GO:0005730, + owl:NamedIndividual . + + a GO:0005737, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005826, + a GO:0005826, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0035974, + a GO:0032153, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0016282, + owl:NamedIndividual . - a GO:0000779, + a GO:0005730, + owl:NamedIndividual . + + a GO:0005634, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005739, + a GO:0005938, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0009897, + owl:NamedIndividual . - a GO:0016604, + a PomBase:SPAC7D4.07c, owl:NamedIndividual . - a GO:0016282, + a GO:0005634, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, owl:NamedIndividual . - a GO:0036391, + a GO:0035839, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0000923, + a GO:0000779, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 , - . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0009897, + a GO:0005730, owl:NamedIndividual . - a GO:0061419, + a GO:0005739, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . - a GO:0000776, + a GO:0032153, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0061419, + a GO:0035970, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a GO:0005730, - 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:0030126, + a PomBase:SPAC10F6.09c, owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0009897, + a GO:0009897, owl:NamedIndividual . - a GO:0044732, + a GO:0005634, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0009897, - owl:NamedIndividual . - - a GO:0000790, + a GO:0005634, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 ; - ns1:__purl.obolibrary.org_obo_RO_0002008 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a PomBase:SPAC31A2.05c, - owl:NamedIndividual . + a GO:0045944, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000501 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a GO:0005868, + a GO:0046827, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a PomBase:SPAC24B11.06c, - owl:NamedIndividual . + a GO:0005938, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0016282, owl:NamedIndividual . - a GO:0000790, + a GO:0005739, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0016282, owl:NamedIndividual . - a GO:0000790, + a GO:0048478, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0009897, - owl:NamedIndividual . + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a GO:0005730, - owl:NamedIndividual . + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0035839, + a GO:0032153, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0051286, + a GO:0005737, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0000790, + a GO:0000779, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 ; - ns1:__purl.obolibrary.org_obo_RO_0002008 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:0016604, owl:NamedIndividual . - a GO:0044732, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a GO:0005730, + owl:NamedIndividual . + + a GO:0000936, + owl:NamedIndividual . + + a GO:0009897, + owl:NamedIndividual . - a GO:0016604, + a GO:0005730, owl:NamedIndividual . - a GO:0005829, + a GO:0035838, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0035839, + a GO:0005730, + owl:NamedIndividual . + + a GO:0005634, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005634, + a GO:0032153, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0043626, + a GO:0005730, owl:NamedIndividual . - a GO:0044732, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a GO:0005730, + owl:NamedIndividual . - a GO:0032153, + a GO:0005739, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0000942, + a GO:0009897, + owl:NamedIndividual . + + a GO:0000778, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a PomBase:SPBC29B5.01, + owl:NamedIndividual . - a PomBase:SPAC8E11.02c, + a GO:0030126, owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0035838, + a GO:0035974, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0000775, + a GO:0005826, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0032153, + a GO:0005634, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0035974, + a GO:0016604, + owl:NamedIndividual . + + a GO:0016604, + owl:NamedIndividual . + + a GO:0005758, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0051403, + a GO:0035974, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0000790, + a GO:0000778, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0044732, + a GO:0035861, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 , + . - a GO:0034399, + a GO:0000778, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0009897, + a GO:0005730, owl:NamedIndividual . - a GO:0009897, + a GO:0005730, owl:NamedIndividual . - a PomBase:SPBC216.07c, - 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:0098714, + a GO:0051286, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0035839, + a GO:0005634, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0016604, + a GO:0016604, owl:NamedIndividual . - a GO:0005730, + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, owl:NamedIndividual . - a PomBase:SPAC17D4.02, + a GO:1990811, owl:NamedIndividual . - a PomBase:SPCC1322.08, + a GO:0016282, owl:NamedIndividual . - a GO:0005634, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a GO:0005730, + owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0005737, + a GO:0005737, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:1990578, - owl:NamedIndividual . - - a GO:0030126, - owl:NamedIndividual . + a GO:0061419, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a GO:0035974, + a GO:0044732, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0000790, + a GO:0044732, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005737, + a GO:0035839, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:1990811, + a GO:0005730, owl:NamedIndividual . - a GO:0005826, + a GO:0005730, + owl:NamedIndividual . + + a GO:0043505, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0030126, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, owl:NamedIndividual . - a GO:0000778, + a GO:0051403, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a GO:0043505, + a GO:0005730, + owl:NamedIndividual . + + a GO:0000776, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0000775, + a GO:0005826, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . - a GO:0031429, + a GO:0005730, owl:NamedIndividual . - a GO:0044732, + a GO:0032153, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005758, + a GO:0035839, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0031429, + a GO:0009897, owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0000779, + a GO:0016282, + owl:NamedIndividual . + + a GO:0044732, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0005938, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a GO:0043626, + owl:NamedIndividual . + + a GO:0005730, + owl:NamedIndividual . + + a PomBase:SPBC336.09c, + owl:NamedIndividual . - a GO:0035861, + a GO:0035974, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 , - . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0034399, - 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:0005730, + owl:NamedIndividual . - a GO:0005634, + a GO:0043622, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a GO:0005634, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a PomBase:SPAC23E2.01, + owl:NamedIndividual . - a GO:0009897, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0000790, + a GO:0000790, + 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_GOREL_0000032 . - a GO:0005730, + a PomBase:SPAC7D4.07c, owl:NamedIndividual . - a GO:0016282, + a PomBase:SPAC1687.18c, owl:NamedIndividual . - a GO:0035861, + a GO:0035974, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 , - . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0000942, + a GO:0016604, owl:NamedIndividual . - a GO:0000936, + a GO:0005730, owl:NamedIndividual . - a GO:0035839, + a GO:0035974, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005737, + a GO:0000779, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0051285, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0005634, + a GO:0005737, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0035838, + a GO:0034399, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + 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:0044732, + a GO:0032153, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0044732, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a GO:0030126, + owl:NamedIndividual . - a GO:0035974, + a GO:0000790, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0031429, + a GO:1990811, owl:NamedIndividual . - a GO:0005730, - owl:NamedIndividual . + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0000942, + a GO:0005730, owl:NamedIndividual . - a GO:0009897, + a GO:0016282, owl:NamedIndividual . - a GO:0005730, + a GO:0043626, owl:NamedIndividual . - a GO:0005730, + a GO:0009897, owl:NamedIndividual . - a GO:0000790, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a GO:0005730, + owl:NamedIndividual . - a GO:0061419, + a GO:0005826, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0051286, + a GO:0071957, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0030126, + a GO:0005730, owl:NamedIndividual . - a GO:0005634, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0000779, + a GO:0005737, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0000790, + a GO:0000790, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005737, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0044732, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0009897, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:0009897, owl:NamedIndividual . - a GO:0005730, + a GO:0031429, owl:NamedIndividual . - a GO:0043626, - owl:NamedIndividual . + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005869, + a PomBase:SPAC8E11.02c, owl:NamedIndividual . - a GO:0060187, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a GO:0016604, + owl:NamedIndividual . - a GO:0005737, + a GO:0000790, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005758, + a GO:0035838, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0030126, + a GO:0005869, owl:NamedIndividual . - a GO:0005730, - owl:NamedIndividual . + a GO:0000778, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005826, + a GO:0000790, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 ; + ns1:__purl.obolibrary.org_obo_RO_0002008 . - a GO:0030126, - owl:NamedIndividual . + a GO:0035974, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0071687, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0000779, + a GO:0036391, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0035974, + a GO:0005737, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0000936, + a GO:0005730, owl:NamedIndividual . - a GO:0000778, + a GO:0035839, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, + owl:NamedIndividual . - a GO:0045944, + a GO:0061419, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000501 ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a GO:0016282, + a GO:0005730, owl:NamedIndividual . - a GO:0006750, + a GO:0005829, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a PomBase:SPAC21E11.03c, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0044732, + a GO:0032153, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0032153, + a GO:0000778, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005737, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0070693, + a GO:0009897, owl:NamedIndividual . - a GO:0016282, + a GO:0009897, owl:NamedIndividual . - a GO:0000778, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0005634, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0000778, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a GO:0097356, + owl:NamedIndividual . - a GO:0035974, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a GO:0009897, + owl:NamedIndividual . - a GO:0005737, + a GO:0044732, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0016282, owl:NamedIndividual . - a GO:0009897, + a GO:0016282, owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0009897, + a GO:0016282, owl:NamedIndividual . - a GO:0005730, + a GO:0031429, owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:0016604, owl:NamedIndividual . - a GO:0000779, + a GO:0005737, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0016604, - owl:NamedIndividual . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0016282, owl:NamedIndividual . - a GO:0005730, - owl:NamedIndividual . + a GO:0032153, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0009897, owl:NamedIndividual . - a GO:0005826, + a GO:0043505, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0032153, + a GO:0006750, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a GO:0044732, + a GO:0000779, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0043622, + a GO:0051285, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . - - a GO:0005730, - owl:NamedIndividual . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005739, + a GO:0000790, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 ; + ns1:__purl.obolibrary.org_obo_RO_0002008 . - a GO:1990811, - owl:NamedIndividual . + a GO:1900050, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a GO:0032153, + a GO:0005826, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:1900050, + a GO:0000923, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 , + . - a GO:0030126, + a GO:0000942, owl:NamedIndividual . - a GO:0005730, - owl:NamedIndividual . + a GO:0098714, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a GO:0005730, + a GO:0031429, owl:NamedIndividual . - a GO:0009897, - owl:NamedIndividual . + a GO:0035327, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0032153, + a GO:0035838, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + 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:0005730, + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, owl:NamedIndividual . - a GO:0035974, + a GO:0000778, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + 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:0035838, + a GO:0030981, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005737, + a GO:0035861, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 , + . - a GO:0016282, - owl:NamedIndividual . + a GO:0035974, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0032153, + a GO:0007015, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000501 . - a PomBase:SPAC1687.18c, - owl:NamedIndividual . + a GO:0000775, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0016604, + a GO:0030126, owl:NamedIndividual . - a GO:0005730, + a GO:1990578, owl:NamedIndividual . - a GO:0000778, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0035327, + a GO:0035974, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + 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:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0000790, + a GO:0005737, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 ; - ns1:__purl.obolibrary.org_obo_RO_0002008 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0034399, + a GO:0044732, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0000942, owl:NamedIndividual . - a PomBase:SPAC8E11.02c, - owl:NamedIndividual . + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005826, + a GO:0044732, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0000790, + a GO:0035838, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005634, + a GO:0032153, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0032153, + a GO:0044732, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0016282, + a PomBase:SPCC576.15c, owl:NamedIndividual . - a GO:0005634, + a GO:0016282, + owl:NamedIndividual . + + a GO:0005737, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0016604, - owl:NamedIndividual . + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0035970, + a GO:0032153, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:1990578, - owl:NamedIndividual . + a GO:0005730, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0032153, + a GO:0044732, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0035974, + a GO:0035839, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005634, + a GO:0000779, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0009897, - owl:NamedIndividual . + a GO:0071687, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005634, + a GO:0034399, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0016282, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0016604, + a GO:0005730, owl:NamedIndividual . - a GO:0032153, + a GO:0005758, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a PomBase:SPBC336.09c, + a PomBase:SPAC17D4.02, owl:NamedIndividual . - a GO:0044732, + a GO:0005739, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0044732, + a GO:0032153, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a PomBase:SPCC1795.01c, + owl:NamedIndividual . - a GO:0000778, + a GO:0035838, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a PomBase:SPCC1322.08, owl:NamedIndividual . - a GO:0009897, - owl:NamedIndividual . + a GO:0044732, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0016604, + a GO:0070693, owl:NamedIndividual . - a PomBase:SPAC7D4.07c, - owl:NamedIndividual . + a GO:0000778, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0016282, + a GO:0016604, owl:NamedIndividual . - a GO:0048478, + a GO:0044732, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0000778, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a GO:0070693, + owl:NamedIndividual . - a PomBase:SPBC29B5.01, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0005826, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a PomBase:SPAC1805.17, + owl:NamedIndividual . - a GO:0000778, - 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:0032153, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a GO:0005730, + owl:NamedIndividual . - a GO:0005634, + a GO:0035974, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a PomBase:SPAC1805.17, + a GO:0009897, owl:NamedIndividual . - a GO:0032153, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a GO:0016604, + owl:NamedIndividual . - a GO:0046827, + a GO:0005634, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000015 ; - ns1:__purl.obolibrary.org_obo_RO_0002092 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0030126, + a GO:0005730, owl:NamedIndividual . - a GO:0005737, + a GO:0030875, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0009897, + a GO:0009897, owl:NamedIndividual . - a GO:0031429, - owl:NamedIndividual . - - a GO:0005730, - owl:NamedIndividual . + a GO:0035974, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0044732, + a GO:0005826, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + 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, + a GO:0030126, owl:NamedIndividual . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0005826, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0071957, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0005869, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:0005869, owl:NamedIndividual . - a GO:0097356, + a GO:0030126, owl:NamedIndividual . - a GO:0005737, + a GO:0005826, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0044732, + a GO:0000778, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0016282, + a GO:0009897, owl:NamedIndividual . - a GO:0005634, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0005826, - 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, + a GO:0005730, owl:NamedIndividual . - a GO:0000779, + a GO:0051286, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005739, + a GO:0000790, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a PomBase:SPAC8E11.02c, owl:NamedIndividual . - a GO:0005730, + a GO:0009897, owl:NamedIndividual . - a GO:0005826, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0005730, + a GO:0016282, owl:NamedIndividual . - a GO:0005739, + a GO:0005737, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0005730, owl:NamedIndividual . - a GO:0009897, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:0000942, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0005730, owl:NamedIndividual . - a GO:0035974, + a GO:0005634, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a GO:0016604, owl:NamedIndividual . - a GO:0005737, + a GO:0005826, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0005730, + a PomBase:SPBC16D10.04c, owl:NamedIndividual . - a GO:0016282, + a GO:0016282, owl:NamedIndividual . - a PomBase:SPBC16D10.04c, + a GO:1990811, owl:NamedIndividual . - a GO:0032153, + a GO:0005739, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0009897, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, - owl:NamedIndividual . - - a GO:0005737, + a GO:0044732, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0031429, - owl:NamedIndividual . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0000790, + a GO:0005634, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 ; - ns1:__purl.obolibrary.org_obo_RO_0002008 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0016282, + a GO:0005730, owl:NamedIndividual . - a GO:0005730, + a GO:1990578, owl:NamedIndividual . - a GO:0044732, + a GO:0005634, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0032153, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - - a GO:0016282, + a PomBase:SPAC24B11.06c, owl:NamedIndividual . - a GO:0035838, - owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + a PomBase:SPAC21E11.03c, + owl:NamedIndividual . - a GO:0005739, + a GO:0051403, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_RO_0002092 . - a PomBase:SPAC7D4.07c, + a PomBase:SPBC216.07c, owl:NamedIndividual . - a GO:0005730, + a GO:0035838, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + + a GO:0030126, owl:NamedIndividual . - a GO:0035974, + a GO:0000779, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:0044732, + a GO:0005737, owl:NamedIndividual ; - ns1:__purl.obolibrary.org_obo_GOREL_0000032 . + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a GO:1990811, + a GO:0030126, owl:NamedIndividual . - a GO:0005730, + a PomBase:SPAC31A2.05c, owl:NamedIndividual . - a PomBase:SPAC10F6.09c, - owl:NamedIndividual . + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 . - a PomBase:SPCC576.15c, - owl:NamedIndividual . + a GO:0000790, + owl:NamedIndividual ; + ns1:__purl.obolibrary.org_obo_GOREL_0000032 ; + ns1:__purl.obolibrary.org_obo_RO_0002008 . PomBase:SPAC1093.06c rdfs:label "dhc1" ; rdfs:subClassOf [ a owl:Restriction ; @@ -7549,2222 +7549,2222 @@ RO:0002333 a owl:ObjectProperty . obo:BFO_0000066 a owl:ObjectProperty . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + 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 . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000050 ; - owl:annotatedSource ; - owl:annotatedTarget . + 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 . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000050 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000050 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . - -[] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + 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 . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000050 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000050 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + 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 . + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000050 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000050 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000050 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . + +[] a owl:Axiom ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000050 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000050 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000050 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . - -[] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000050 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty RO:0002333 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000066 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty RO:0002333 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; - owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + RO:0002612 ; + owl:annotatedProperty obo:BFO_0000050 ; + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . [] a owl:Axiom ; - RO:0002612 ; + RO:0002612 ; owl:annotatedProperty obo:BFO_0000066 ; - owl:annotatedSource ; - owl:annotatedTarget . + owl:annotatedSource ; + owl:annotatedTarget . diff --git a/tests/test_gpi_isoform_replacement.py b/tests/test_gpi_isoform_replacement.py new file mode 100644 index 00000000..4f631403 --- /dev/null +++ b/tests/test_gpi_isoform_replacement.py @@ -0,0 +1,30 @@ +from pathlib import Path + +from bin import validate +from ontobio.ontol_factory import OntologyFactory +from pprint import pprint + +gpi_file = "mgi.truncated.gpi2" +gaf_file_to_fix = "mgi.gaf" +output_file_path = "fixed_test.gaf" +ontology = "go" +ontology_graph = OntologyFactory().create(ontology, ignore_cache=True) + + +def test_fix_isoforms(): + base_path = Path(__file__).parent / "resources" + gpi_path = base_path / gpi_file + # Define the paths for the GAF and expected GPI file + gaf_path = base_path / gaf_file_to_fix + + # Ensure the GAF file exists to avoid FileNotFoundError + assert gaf_path.exists() + assert gpi_path.exists() + + validate.fix_pro_isoforms_in_gaf(str(gaf_path), str(gpi_path), ontology_graph, output_file_path) + with open(output_file_path, 'r') as f: + lines = f.readlines() + for line in lines: + assert not line.startswith("PR") + assert len(lines) > 100 +