diff --git a/_modules/oaklib/interfaces/association_provider_interface.html b/_modules/oaklib/interfaces/association_provider_interface.html index 4a6062c77..1dd516d88 100644 --- a/_modules/oaklib/interfaces/association_provider_interface.html +++ b/_modules/oaklib/interfaces/association_provider_interface.html @@ -519,6 +519,66 @@

Source code for oaklib.interfaces.association_provider_interface

return True
+
+[docs] + def association_counts( + self, + subjects: Iterable[CURIE] = None, + predicates: Iterable[PRED_CURIE] = None, + property_filter: Dict[PRED_CURIE, Any] = None, + subject_closure_predicates: Optional[List[PRED_CURIE]] = None, + predicate_closure_predicates: Optional[List[PRED_CURIE]] = None, + object_closure_predicates: Optional[List[PRED_CURIE]] = None, + include_modified: bool = False, + group_by: Optional[str] = "object", + limit: Optional[int] = None, + **kwargs, + ) -> Iterator[Tuple[CURIE, int]]: + """ + Yield objects together with the number of distinct associations. + + :param subjects: + :param predicates: + :param property_filter: + :param subject_closure_predicates: + :param predicate_closure_predicates: + :param object_closure_predicates: + :param include_modified: + :param group_by: + :param limit: + :param kwargs: + :return: + """ + association_it = self.associations( + subjects=subjects, + predicates=predicates, + property_filter=property_filter, + subject_closure_predicates=subject_closure_predicates, + predicate_closure_predicates=predicate_closure_predicates, + include_modified=include_modified, + **kwargs, + ) + assoc_map = defaultdict(list) + cached = {} + if isinstance(self, OboGraphInterface): + for association in association_it: + if group_by == "object": + grp = association.object + if grp not in cached: + grps = list(self.ancestors([grp], predicates=object_closure_predicates)) + cached[grp] = grps + else: + grps = cached[grp] + elif group_by == "subject": + grps = [association.subject] + else: + raise ValueError(f"Unknown group_by: {group_by}") + for grp in grps: + assoc_map[grp].append(association) + for k, v in assoc_map.items(): + yield k, len(v)
+ +
[docs] def association_subject_counts( @@ -530,6 +590,7 @@

Source code for oaklib.interfaces.association_provider_interface

predicate_closure_predicates: Optional[List[PRED_CURIE]] = None, object_closure_predicates: Optional[List[PRED_CURIE]] = None, include_modified: bool = False, + **kwargs, ) -> Iterator[Tuple[CURIE, int]]: """ Yield objects together with the number of distinct associated subjects. @@ -549,15 +610,17 @@

Source code for oaklib.interfaces.association_provider_interface

GO:0051668 3 ... - This shows that GO:0051668 (localization within membrane) is used for all 3 input subjects + This shows that GO:0051668 (localization within membrane) is used for all 3 input subjects. + If subjects is empty, this is calculated for all subjects in the association set. - :param subjects: - :param predicates: - :param property_filter: - :param subject_closure_predicates: - :param predicate_closure_predicates: - :param object_closure_predicates: - :param include_modified: + :param subjects: constrain to these subjects (e.g. genes in a gene association) + :param predicates: constrain to these predicates (e.g. involved-in for a gene to pathway association) + :param property_filter: generic filter + :param subject_closure_predicates: subjects is treated as descendant via these predicates + :param predicate_closure_predicates: predicates is treated as descendant via these predicates + :param object_closure_predicates: object is treated as descendant via these predicates + :param include_modified: include modified associations + :param kwargs: additional arguments :return: """ association_it = self.associations( @@ -567,6 +630,7 @@

Source code for oaklib.interfaces.association_provider_interface

subject_closure_predicates=subject_closure_predicates, predicate_closure_predicates=predicate_closure_predicates, include_modified=include_modified, + **kwargs, ) object_to_subject_map = defaultdict(set) cached = {} @@ -603,16 +667,16 @@

Source code for oaklib.interfaces.association_provider_interface

""" Maps matching associations to a subset (map2slim, rollup). - :param subjects: - :param predicates: - :param objects: - :param subset: - :param subset_entities: - :param property_filter: - :param subject_closure_predicates: - :param predicate_closure_predicates: - :param object_closure_predicates: - :param include_modified: + :param subjects: constrain to these subjects + :param predicates: constrain to these predicates (e.g. involved-in for a gene to pathway association) + :param objects: constrain to these objects (e.g. terms) + :param subset: subset to map to + :param subset_entities: subset entities to map to + :param property_filter: generic filter + :param subject_closure_predicates: subjects is treated as descendant via these predicates + :param predicate_closure_predicates: predicates is treated as descendant via these predicates + :param object_closure_predicates: object is treated as descendant via these predicates + :param include_modified: include modified associations :return: """ # Default implementation: this may be overridden for efficiency diff --git a/_sources/datamodels/class-enrichment/ClassEnrichmentResult.md.txt b/_sources/datamodels/class-enrichment/ClassEnrichmentResult.md.txt index fcbdfef9a..83b645c0d 100644 --- a/_sources/datamodels/class-enrichment/ClassEnrichmentResult.md.txt +++ b/_sources/datamodels/class-enrichment/ClassEnrichmentResult.md.txt @@ -61,7 +61,7 @@ URI: [ontoenrich:ClassEnrichmentResult](https://w3id.org/oak/class-enrichment/Cl | [class_id](class_id.md) | 1..1
[Uriorcurie](Uriorcurie.md) | The class id | direct | | [class_label](class_label.md) | 0..1
[String](String.md) | The class label | direct | | [rank](rank.md) | 0..1
[Integer](Integer.md) | The rank of this result | direct | -| [p_value](p_value.md) | 1..1
[Float](Float.md) | The p-value | direct | +| [p_value](p_value.md) | 0..1
[Float](Float.md) | The p-value | direct | | [p_value_adjusted](p_value_adjusted.md) | 0..1
[Float](Float.md) | The adjusted p-value | direct | | [false_discovery_rate](false_discovery_rate.md) | 0..1
[Float](Float.md) | The false discovery rate | direct | | [fold_enrichment](fold_enrichment.md) | 0..1
[Float](Float.md) | The fold enrichment | direct | @@ -163,7 +163,6 @@ attributes: domain_of: - ClassEnrichmentResult range: float - required: true p_value_adjusted: name: p_value_adjusted description: The adjusted p-value @@ -308,7 +307,6 @@ attributes: domain_of: - ClassEnrichmentResult range: float - required: true p_value_adjusted: name: p_value_adjusted description: The adjusted p-value diff --git a/_sources/datamodels/class-enrichment/p_value.md.txt b/_sources/datamodels/class-enrichment/p_value.md.txt index e22056887..61f70a30f 100644 --- a/_sources/datamodels/class-enrichment/p_value.md.txt +++ b/_sources/datamodels/class-enrichment/p_value.md.txt @@ -30,8 +30,6 @@ URI: [OBI:0000175](http://purl.obolibrary.org/obo/OBI_0000175) * Range: [Float](Float.md) -* Required: True - @@ -66,7 +64,6 @@ owner: ClassEnrichmentResult domain_of: - ClassEnrichmentResult range: float -required: true ``` \ No newline at end of file diff --git a/_sources/howtos/use-llms.rst.txt b/_sources/howtos/use-llms.rst.txt index 415b88b32..c08950829 100644 --- a/_sources/howtos/use-llms.rst.txt +++ b/_sources/howtos/use-llms.rst.txt @@ -1,3 +1,5 @@ +.. _use_llms + How to use Large Language Models (LLMs) with OAK =============================================== diff --git a/_sources/packages/implementations/llm.rst.txt b/_sources/packages/implementations/llm.rst.txt index dfe361a63..815039767 100644 --- a/_sources/packages/implementations/llm.rst.txt +++ b/_sources/packages/implementations/llm.rst.txt @@ -3,6 +3,8 @@ LLM Adapter ============= +See also :ref:`use_llms` + Command Line Examples ---------------------- @@ -14,12 +16,25 @@ Use the :code:`llm` selector, wrapping an existing source Annotation ^^^^^^^^^^ + .. code:: shell runoak -i llm:sqlite:obo:hp annotate "abnormalities were found in the eye and the liver" +Validation of Mappings +^^^^^^^^^^^^^^^^^^^^^^ + +.. code:: shell + + runoak -i llm:sqlite:obo:go validate-mappings .desc//p=i "molecular_function" + +See: + + - `MapperGPT `_ + - `GO RHEA Analysis `_ + Code ---- -.. currentmodule:: oaklib.implementations.llm +.. currentmodule:: oaklib.implementations.llm.llm_implementation .. autoclass:: LLMImplementation diff --git a/class-enrichment/ClassEnrichmentResult.md b/class-enrichment/ClassEnrichmentResult.md index fcbdfef9a..83b645c0d 100644 --- a/class-enrichment/ClassEnrichmentResult.md +++ b/class-enrichment/ClassEnrichmentResult.md @@ -61,7 +61,7 @@ URI: [ontoenrich:ClassEnrichmentResult](https://w3id.org/oak/class-enrichment/Cl | [class_id](class_id.md) | 1..1
[Uriorcurie](Uriorcurie.md) | The class id | direct | | [class_label](class_label.md) | 0..1
[String](String.md) | The class label | direct | | [rank](rank.md) | 0..1
[Integer](Integer.md) | The rank of this result | direct | -| [p_value](p_value.md) | 1..1
[Float](Float.md) | The p-value | direct | +| [p_value](p_value.md) | 0..1
[Float](Float.md) | The p-value | direct | | [p_value_adjusted](p_value_adjusted.md) | 0..1
[Float](Float.md) | The adjusted p-value | direct | | [false_discovery_rate](false_discovery_rate.md) | 0..1
[Float](Float.md) | The false discovery rate | direct | | [fold_enrichment](fold_enrichment.md) | 0..1
[Float](Float.md) | The fold enrichment | direct | @@ -163,7 +163,6 @@ attributes: domain_of: - ClassEnrichmentResult range: float - required: true p_value_adjusted: name: p_value_adjusted description: The adjusted p-value @@ -308,7 +307,6 @@ attributes: domain_of: - ClassEnrichmentResult range: float - required: true p_value_adjusted: name: p_value_adjusted description: The adjusted p-value diff --git a/class-enrichment/p_value.md b/class-enrichment/p_value.md index e22056887..61f70a30f 100644 --- a/class-enrichment/p_value.md +++ b/class-enrichment/p_value.md @@ -30,8 +30,6 @@ URI: [OBI:0000175](http://purl.obolibrary.org/obo/OBI_0000175) * Range: [Float](Float.md) -* Required: True - @@ -66,7 +64,6 @@ owner: ClassEnrichmentResult domain_of: - ClassEnrichmentResult range: float -required: true ``` \ No newline at end of file diff --git a/cli.html b/cli.html index 0654f4c00..8a4bb3d3f 100644 --- a/cli.html +++ b/cli.html @@ -69,6 +69,7 @@
  • apply-obsolete
  • apply-taxon-constraints
  • associations
  • +
  • associations-counts
  • associations-matrix
  • axioms
  • cache-clear
  • @@ -1032,6 +1033,157 @@

    associations +

    associations-counts

    +

    Count associations, grouped by subject or object

    +

    Example:

    +
    +

    runoak -i sqlite:obo:hp -g test.hpoa -G hpoa associations-counts

    +
    +

    This will default to summarzing by objects (HPO term), showing the number +of associations for each term.

    +

    This will be direct counts only. To include is-a closure, specify +the closure predicate(s), e.g.

    +

    Example:

    +
    +

    runoak -i sqlite:obo:hp -g test.hpoa -G hpoa associations -p i

    +
    +

    You can also group by other fields

    +

    Example:

    +
    +

    runoak -i sqlite:obo:hp -g test.hpoa -G hpoa associations-counts –group-by subject

    +
    +

    This will show the number of associations for each disease.

    +

    OAK also includes a number of specialized adapters that implement this method +for particular databases.

    +

    For example, to get the number of IEA associations for each GO term:

    +
    +

    runoak -i amigo: associations-counts –limit -1 -F evidence_type=IEA –no-autolabel

    +
    +

    This can be constrained by species:

    +
    +

    runoak -i amigo:NCBITaxon:9606 associations-counts –limit -1 -F evidence_type=IEA –no-autolabel

    +
    +

    Other options:

    +

    This command accepts many of the same options as the associations command, see +the docs for this command for details.

    +
    runoak associations-counts [OPTIONS] [TERMS]...
    +
    +
    +

    Options

    +
    +
    +-o, --output <output>
    +

    Output file, e.g. obo file

    +
    + +
    +
    +-p, --predicates <predicates>
    +

    A comma-separated list of predicates. This may be a shorthand (i, p) or CURIE

    +
    + +
    +
    +--autolabel, --no-autolabel
    +

    If set, results will automatically have labels assigned

    +
    +
    Default:
    +

    True

    +
    +
    +
    + +
    +
    +-O, --output-type <output_type>
    +

    Desired output type

    +
    + +
    +
    +-o, --output <output>
    +

    Output file, e.g. obo file

    +
    + +
    +
    +--add-closure-fields, --no-add-closure-fields
    +

    Add closure fields to the output

    +
    +
    Default:
    +

    False

    +
    +
    +
    + +
    +
    +--association-predicates <association_predicates>
    +

    A comma-separated list of predicates for the association relation

    +
    + +
    +
    +-Q, --terms-role <terms_role>
    +

    How to interpret query terms.

    +
    +
    Default:
    +

    object

    +
    +
    Options:
    +

    subject | object | both

    +
    +
    +
    + +
    +
    +-L, --limit <limit>
    +

    Limit the number of results

    +
    +
    Default:
    +

    10

    +
    +
    +
    + +
    +
    +-F, --filter <filter>
    +

    Additional filters in K=V format

    +
    + +
    +
    +--min-facet-count <min_facet_count>
    +

    Minimum count for a facet to be included

    +
    +
    Default:
    +

    1

    +
    +
    +
    + +
    +
    +--group-by <group_by>
    +

    Group by subject or object

    +
    +
    Default:
    +

    object

    +
    +
    +
    + +

    Arguments

    +
    +
    +TERMS
    +

    Optional argument(s)

    +
    +

    associations-matrix

    @@ -1979,6 +2131,12 @@

    enrichment +
    +--allow-labels, --no-allow-labels
    +

    If true, allow labels as well as CURIEs in the input files

    +
    +

    Arguments

    @@ -5460,16 +5618,25 @@

    validate-mappings

    runoak validate-mappings -i db/uberon.db -o bad-mappings.sssom.tsv

    By default this will attempt to download and connect to -sqlite versions of different ontologies.

    -

    You can customize this:

    +sqlite versions of different ontologies, when attempting to resolve a foreign +subject or object id.

    +

    You can customize this mapping:

    runoak validate-mappings -i db/uberon.db –adapter-mapping uberon=db/uberon.db –adapter-mapping zfa=db/zfa.db

    +

    This will use a local sqlite file for ZFA:nnnnnnn IDs.

    You can use “*” as a wildcard, in the case where you have an application ontology with many mapped entities merged in:

    runoak validate-mappings -i db/uberon.db –adapter-mapping “*”=db/merged.db”

    +

    The default behavior for this command is to perform deterministic rule-based +checks; for example, the mapped IDs should not be obsolete, and if the mapping +is skos:exactMatch, then the cardinality is expected to be 1:1.

    +

    Other adapters may choose to implement bespoke behaviors. In future there +might be a boomer adapter that will perform probabilistic reasoning on the +mappings. The experimental LLM backend will use an LLM to qualitatively +validate mappings (see the LLM how-to guide for more details).

    runoak validate-mappings [OPTIONS] [TERMS]...
     
    diff --git a/datamodels/class-enrichment/ClassEnrichmentResult.html b/datamodels/class-enrichment/ClassEnrichmentResult.html index 9566b8a1c..39853a653 100644 --- a/datamodels/class-enrichment/ClassEnrichmentResult.html +++ b/datamodels/class-enrichment/ClassEnrichmentResult.html @@ -149,7 +149,7 @@

    Slots

    direct

    p_value

    -

    1..1
    Float

    +

    0..1
    Float

    The p-value

    direct

    @@ -302,7 +302,6 @@

    Direct< domain_of: - ClassEnrichmentResult range: float - required: true p_value_adjusted: name: p_value_adjusted description: The adjusted p-value @@ -445,7 +444,6 @@

    Direct< domain_of: - ClassEnrichmentResult range: float - required: true p_value_adjusted: name: p_value_adjusted description: The adjusted p-value diff --git a/datamodels/class-enrichment/p_value.html b/datamodels/class-enrichment/p_value.html index 4c97eeba4..2bd3d9f32 100644 --- a/datamodels/class-enrichment/p_value.html +++ b/datamodels/class-enrichment/p_value.html @@ -109,7 +109,6 @@

    Applicable Classes

    • Range: Float

    • -
    • Required: True

    @@ -135,7 +134,6 @@

    LinkML Source
    </details>
     

    diff --git a/genindex.html b/genindex.html index bcb7df277..e22819c15 100644 --- a/genindex.html +++ b/genindex.html @@ -139,6 +139,8 @@

    Symbols

  • @@ -182,6 +184,13 @@

    Symbols

  • +
  • + --allow-labels + +
  • @@ -221,6 +230,8 @@

    Symbols

  • -

    This shows that GO:0051668 (localization within membrane) is used for all 3 input subjects

    +

    This shows that GO:0051668 (localization within membrane) is used for all 3 input subjects. +If subjects is empty, this is calculated for all subjects in the association set.

    Parameters:
      -
    • subjects

    • -
    • predicates

    • -
    • property_filter

    • -
    • subject_closure_predicates

    • -
    • predicate_closure_predicates

    • -
    • object_closure_predicates

    • -
    • include_modified

    • +
    • subjects – constrain to these subjects (e.g. genes in a gene association)

    • +
    • predicates – constrain to these predicates (e.g. involved-in for a gene to pathway association)

    • +
    • property_filter – generic filter

    • +
    • subject_closure_predicates – subjects is treated as descendant via these predicates

    • +
    • predicate_closure_predicates – predicates is treated as descendant via these predicates

    • +
    • object_closure_predicates – object is treated as descendant via these predicates

    • +
    • include_modified – include modified associations

    • +
    • kwargs – additional arguments

    Returns:
    @@ -368,16 +395,16 @@

    Command Line Use
    Parameters:
      -
    • subjects

    • -
    • predicates

    • -
    • objects

    • -
    • subset

    • -
    • subset_entities

    • -
    • property_filter

    • -
    • subject_closure_predicates

    • -
    • predicate_closure_predicates

    • -
    • object_closure_predicates

    • -
    • include_modified

    • +
    • subjects – constrain to these subjects

    • +
    • predicates – constrain to these predicates (e.g. involved-in for a gene to pathway association)

    • +
    • objects – constrain to these objects (e.g. terms)

    • +
    • subset – subset to map to

    • +
    • subset_entities – subset entities to map to

    • +
    • property_filter – generic filter

    • +
    • subject_closure_predicates – subjects is treated as descendant via these predicates

    • +
    • predicate_closure_predicates – predicates is treated as descendant via these predicates

    • +
    • object_closure_predicates – object is treated as descendant via these predicates

    • +
    • include_modified – include modified associations

    Returns:
    diff --git a/packages/interfaces/index.html b/packages/interfaces/index.html index 122755998..09d4b162f 100644 --- a/packages/interfaces/index.html +++ b/packages/interfaces/index.html @@ -379,6 +379,7 @@
  • AssociationProviderInterface.associations_subject_search()
  • AssociationProviderInterface.association_pairwise_coassociations()
  • AssociationProviderInterface.add_associations()
  • +
  • AssociationProviderInterface.association_counts()
  • AssociationProviderInterface.association_subject_counts()
  • AssociationProviderInterface.map_associations()
  • AssociationProviderInterface.normalize_associations()
  • diff --git a/searchindex.js b/searchindex.js index 5de4bf070..8e682b6ad 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["cli", "concepts", "contributing", "datamodels/association/Association", "datamodels/association/AssociationChange", "datamodels/association/Boolean", "datamodels/association/Curie", "datamodels/association/Date", "datamodels/association/DateOrDatetime", "datamodels/association/Datetime", "datamodels/association/Decimal", "datamodels/association/Double", "datamodels/association/Float", "datamodels/association/Integer", "datamodels/association/Jsonpath", "datamodels/association/Jsonpointer", "datamodels/association/Ncname", "datamodels/association/NegatedAssociation", "datamodels/association/Nodeidentifier", "datamodels/association/Objectidentifier", "datamodels/association/PairwiseCoAssociation", "datamodels/association/ParserConfiguration", "datamodels/association/PositiveOrNegativeAssociation", "datamodels/association/PropertyValue", "datamodels/association/RollupGroup", "datamodels/association/Sparqlpath", "datamodels/association/String", "datamodels/association/Time", "datamodels/association/Uri", "datamodels/association/Uriorcurie", "datamodels/association/aggregator_knowledge_source", "datamodels/association/association", "datamodels/association/associations", "datamodels/association/associations_for_subjects_in_common", "datamodels/association/closure_delta", "datamodels/association/closure_information_content_delta", "datamodels/association/closure_predicates", "datamodels/association/comments", "datamodels/association/core_triple", "datamodels/association/creation_date", "datamodels/association/date", "datamodels/association/denormalized_slot", "datamodels/association/diff_slot", "datamodels/association/evidence_type", "datamodels/association/group_object", "datamodels/association/include_association_attributes", "datamodels/association/index", "datamodels/association/is_creation", "datamodels/association/is_deletion", "datamodels/association/is_generalization", "datamodels/association/is_migration", "datamodels/association/is_specialization", "datamodels/association/modification_date", "datamodels/association/negated", "datamodels/association/new_date", "datamodels/association/new_object", "datamodels/association/new_predicate", "datamodels/association/number_subject_unique_to_entity1", "datamodels/association/number_subject_unique_to_entity2", "datamodels/association/number_subjects_in_common", "datamodels/association/object", "datamodels/association/object1", "datamodels/association/object1_label", "datamodels/association/object2", "datamodels/association/object2_label", "datamodels/association/object_closure", "datamodels/association/object_closure_label", "datamodels/association/object_label", "datamodels/association/old_date", "datamodels/association/old_object", "datamodels/association/old_object_obsolete", "datamodels/association/old_predicate", "datamodels/association/original_object", "datamodels/association/original_predicate", "datamodels/association/original_subject", "datamodels/association/predicate", "datamodels/association/predicate_label", "datamodels/association/preserve_negated_associations", "datamodels/association/primary_knowledge_source", "datamodels/association/property_values", "datamodels/association/publication_is_added", "datamodels/association/publication_is_deleted", "datamodels/association/publications", "datamodels/association/sub_groups", "datamodels/association/subject", "datamodels/association/subject_closure", "datamodels/association/subject_closure_label", "datamodels/association/subject_label", "datamodels/association/subjects_in_common", "datamodels/association/summary_group", "datamodels/association/supporting_objects", "datamodels/class-enrichment/Boolean", "datamodels/class-enrichment/ClassEnrichmentConfiguration", "datamodels/class-enrichment/ClassEnrichmentResult", "datamodels/class-enrichment/ClassEnrichmentResultSet", "datamodels/class-enrichment/Curie", "datamodels/class-enrichment/Date", "datamodels/class-enrichment/DateOrDatetime", "datamodels/class-enrichment/Datetime", "datamodels/class-enrichment/Decimal", "datamodels/class-enrichment/Double", "datamodels/class-enrichment/Float", "datamodels/class-enrichment/Integer", "datamodels/class-enrichment/Jsonpath", "datamodels/class-enrichment/Jsonpointer", "datamodels/class-enrichment/Ncname", "datamodels/class-enrichment/Nodeidentifier", "datamodels/class-enrichment/Objectidentifier", "datamodels/class-enrichment/Position", "datamodels/class-enrichment/SortFieldEnum", "datamodels/class-enrichment/Sparqlpath", "datamodels/class-enrichment/String", "datamodels/class-enrichment/Time", "datamodels/class-enrichment/Uri", "datamodels/class-enrichment/Uriorcurie", "datamodels/class-enrichment/ancestor_of_more_informative_result", "datamodels/class-enrichment/background_count", "datamodels/class-enrichment/background_total", "datamodels/class-enrichment/class-enrichment", "datamodels/class-enrichment/class_id", "datamodels/class-enrichment/class_label", "datamodels/class-enrichment/descendant_of_more_informative_result", "datamodels/class-enrichment/direction", "datamodels/class-enrichment/false_discovery_rate", "datamodels/class-enrichment/fold_enrichment", "datamodels/class-enrichment/index", "datamodels/class-enrichment/p_value", "datamodels/class-enrichment/p_value_adjusted", "datamodels/class-enrichment/p_value_cutoff", "datamodels/class-enrichment/probability", "datamodels/class-enrichment/rank", "datamodels/class-enrichment/results", "datamodels/class-enrichment/sample_count", "datamodels/class-enrichment/sample_total", "datamodels/cross-ontology-diff/Boolean", "datamodels/cross-ontology-diff/Curie", "datamodels/cross-ontology-diff/Date", "datamodels/cross-ontology-diff/DateOrDatetime", "datamodels/cross-ontology-diff/Datetime", "datamodels/cross-ontology-diff/Decimal", "datamodels/cross-ontology-diff/DiffCategory", "datamodels/cross-ontology-diff/Double", "datamodels/cross-ontology-diff/EntityReference", "datamodels/cross-ontology-diff/Float", "datamodels/cross-ontology-diff/Integer", "datamodels/cross-ontology-diff/Jsonpath", "datamodels/cross-ontology-diff/Jsonpointer", "datamodels/cross-ontology-diff/Label", "datamodels/cross-ontology-diff/MappingCardinalityEnum", "datamodels/cross-ontology-diff/Ncname", "datamodels/cross-ontology-diff/Nodeidentifier", "datamodels/cross-ontology-diff/Objectidentifier", "datamodels/cross-ontology-diff/Position", "datamodels/cross-ontology-diff/RelationalDiff", "datamodels/cross-ontology-diff/Source", "datamodels/cross-ontology-diff/Sparqlpath", "datamodels/cross-ontology-diff/String", "datamodels/cross-ontology-diff/StructureDiffResultSet", "datamodels/cross-ontology-diff/Time", "datamodels/cross-ontology-diff/Uri", "datamodels/cross-ontology-diff/Uriorcurie", "datamodels/cross-ontology-diff/category", "datamodels/cross-ontology-diff/cross-ontology-diff", "datamodels/cross-ontology-diff/index", "datamodels/cross-ontology-diff/is_functional", "datamodels/cross-ontology-diff/label", "datamodels/cross-ontology-diff/left_object_id", "datamodels/cross-ontology-diff/left_object_is_functional", "datamodels/cross-ontology-diff/left_object_label", "datamodels/cross-ontology-diff/left_object_name", "datamodels/cross-ontology-diff/left_predicate_id", "datamodels/cross-ontology-diff/left_predicate_label", "datamodels/cross-ontology-diff/left_predicate_name", "datamodels/cross-ontology-diff/left_side", "datamodels/cross-ontology-diff/left_source", "datamodels/cross-ontology-diff/left_subject_id", "datamodels/cross-ontology-diff/left_subject_is_functional", "datamodels/cross-ontology-diff/left_subject_label", "datamodels/cross-ontology-diff/left_subject_name", "datamodels/cross-ontology-diff/object", "datamodels/cross-ontology-diff/object_mapping_cardinality", "datamodels/cross-ontology-diff/object_mapping_predicate", "datamodels/cross-ontology-diff/predicate", "datamodels/cross-ontology-diff/results", "datamodels/cross-ontology-diff/right_intermediate_ids", "datamodels/cross-ontology-diff/right_object_id", "datamodels/cross-ontology-diff/right_object_label", "datamodels/cross-ontology-diff/right_object_name", "datamodels/cross-ontology-diff/right_predicate_ids", "datamodels/cross-ontology-diff/right_predicate_labels", "datamodels/cross-ontology-diff/right_predicate_names", "datamodels/cross-ontology-diff/right_side", "datamodels/cross-ontology-diff/right_source", "datamodels/cross-ontology-diff/right_subject_id", "datamodels/cross-ontology-diff/right_subject_label", "datamodels/cross-ontology-diff/right_subject_name", "datamodels/cross-ontology-diff/side", "datamodels/cross-ontology-diff/subject", "datamodels/cross-ontology-diff/subject_mapping_cardinality", "datamodels/cross-ontology-diff/subject_mapping_predicate", "datamodels/cross-ontology-diff/types", "datamodels/funowl/index", "datamodels/index", "datamodels/item-list/Boolean", "datamodels/item-list/Curie", "datamodels/item-list/Date", "datamodels/item-list/DateOrDatetime", "datamodels/item-list/Datetime", "datamodels/item-list/Decimal", "datamodels/item-list/Double", "datamodels/item-list/Float", "datamodels/item-list/Integer", "datamodels/item-list/ItemList", "datamodels/item-list/ItemListCollection", "datamodels/item-list/ItemListOrderType", "datamodels/item-list/Jsonpath", "datamodels/item-list/Jsonpointer", "datamodels/item-list/ListItem", "datamodels/item-list/Ncname", "datamodels/item-list/Nodeidentifier", "datamodels/item-list/Objectidentifier", "datamodels/item-list/Sparqlpath", "datamodels/item-list/String", "datamodels/item-list/Thing", "datamodels/item-list/Time", "datamodels/item-list/Uri", "datamodels/item-list/Uriorcurie", "datamodels/item-list/additionalType", "datamodels/item-list/categories", "datamodels/item-list/description", "datamodels/item-list/elementId", "datamodels/item-list/id", "datamodels/item-list/idType", "datamodels/item-list/identifiers", "datamodels/item-list/index", "datamodels/item-list/item", "datamodels/item-list/itemList", "datamodels/item-list/itemListElements", "datamodels/item-list/itemLists", "datamodels/item-list/itemMetadataMap", "datamodels/item-list/keywords", "datamodels/item-list/name", "datamodels/item-list/numberOfItems", "datamodels/item-list/position", "datamodels/item-list/previousItem", "datamodels/item-list/type", "datamodels/item-list/url", "datamodels/item-list/wasGeneratedBy", "datamodels/kgcl/index", "datamodels/lexical-index/Activity", "datamodels/lexical-index/Any", "datamodels/lexical-index/Boolean", "datamodels/lexical-index/Curie", "datamodels/lexical-index/Date", "datamodels/lexical-index/DateOrDatetime", "datamodels/lexical-index/Datetime", "datamodels/lexical-index/Decimal", "datamodels/lexical-index/Double", "datamodels/lexical-index/Float", "datamodels/lexical-index/Integer", "datamodels/lexical-index/Jsonpath", "datamodels/lexical-index/Jsonpointer", "datamodels/lexical-index/LexicalGrouping", "datamodels/lexical-index/LexicalIndex", "datamodels/lexical-index/LexicalTransformation", "datamodels/lexical-index/LexicalTransformationPipeline", "datamodels/lexical-index/Ncname", "datamodels/lexical-index/Nodeidentifier", "datamodels/lexical-index/Objectidentifier", "datamodels/lexical-index/RelationshipToTerm", "datamodels/lexical-index/Sparqlpath", "datamodels/lexical-index/String", "datamodels/lexical-index/Time", "datamodels/lexical-index/TransformationType", "datamodels/lexical-index/Uri", "datamodels/lexical-index/Uriorcurie", "datamodels/lexical-index/element", "datamodels/lexical-index/element_term", "datamodels/lexical-index/groupings", "datamodels/lexical-index/index", "datamodels/lexical-index/lexical-index", "datamodels/lexical-index/lexican-index", "datamodels/lexical-index/name", "datamodels/lexical-index/params", "datamodels/lexical-index/pipeline", "datamodels/lexical-index/pipelines", "datamodels/lexical-index/predicate", "datamodels/lexical-index/relationships", "datamodels/lexical-index/source", "datamodels/lexical-index/synonymized", "datamodels/lexical-index/term", "datamodels/lexical-index/transformations", "datamodels/lexical-index/type", "datamodels/lexical-index/types", "datamodels/mapping-rules/Activity", "datamodels/mapping-rules/Any", "datamodels/mapping-rules/Boolean", "datamodels/mapping-rules/Curie", "datamodels/mapping-rules/Date", "datamodels/mapping-rules/DateOrDatetime", "datamodels/mapping-rules/Datetime", "datamodels/mapping-rules/Decimal", "datamodels/mapping-rules/Double", "datamodels/mapping-rules/Float", "datamodels/mapping-rules/Integer", "datamodels/mapping-rules/Jsonpath", "datamodels/mapping-rules/Jsonpointer", "datamodels/mapping-rules/LexicalGrouping", "datamodels/mapping-rules/LexicalIndex", "datamodels/mapping-rules/LexicalTransformation", "datamodels/mapping-rules/LexicalTransformationPipeline", "datamodels/mapping-rules/MappingRule", "datamodels/mapping-rules/MappingRuleCollection", "datamodels/mapping-rules/Ncname", "datamodels/mapping-rules/Nodeidentifier", "datamodels/mapping-rules/Objectidentifier", "datamodels/mapping-rules/Postcondition", "datamodels/mapping-rules/Precondition", "datamodels/mapping-rules/RelationshipToTerm", "datamodels/mapping-rules/Sparqlpath", "datamodels/mapping-rules/String", "datamodels/mapping-rules/Synonymizer", "datamodels/mapping-rules/Test", "datamodels/mapping-rules/Time", "datamodels/mapping-rules/TransformationType", "datamodels/mapping-rules/Uri", "datamodels/mapping-rules/Uriorcurie", "datamodels/mapping-rules/description", "datamodels/mapping-rules/element", "datamodels/mapping-rules/element_term", "datamodels/mapping-rules/groupings", "datamodels/mapping-rules/index", "datamodels/mapping-rules/input", "datamodels/mapping-rules/lexical-index", "datamodels/mapping-rules/lexican-index", "datamodels/mapping-rules/mapping-rules", "datamodels/mapping-rules/mapping-rules-datamodel", "datamodels/mapping-rules/mapping_source_one_of", "datamodels/mapping-rules/match", "datamodels/mapping-rules/match_scope", "datamodels/mapping-rules/minimum_confidence", "datamodels/mapping-rules/name", "datamodels/mapping-rules/object_match_field_one_of", "datamodels/mapping-rules/object_source_one_of", "datamodels/mapping-rules/oneway", "datamodels/mapping-rules/output", "datamodels/mapping-rules/params", "datamodels/mapping-rules/pipeline", "datamodels/mapping-rules/pipelines", "datamodels/mapping-rules/postconditions", "datamodels/mapping-rules/preconditions", "datamodels/mapping-rules/predicate", "datamodels/mapping-rules/predicate_id", "datamodels/mapping-rules/predicate_id_one_of", "datamodels/mapping-rules/prefix", "datamodels/mapping-rules/qualifier", "datamodels/mapping-rules/relationships", "datamodels/mapping-rules/replacement", "datamodels/mapping-rules/rules", "datamodels/mapping-rules/source", "datamodels/mapping-rules/subject_match_field_one_of", "datamodels/mapping-rules/subject_source_one_of", "datamodels/mapping-rules/synonymized", "datamodels/mapping-rules/synonymizer", "datamodels/mapping-rules/term", "datamodels/mapping-rules/tests", "datamodels/mapping-rules/the_rule", "datamodels/mapping-rules/transformations", "datamodels/mapping-rules/transformations_included_in", "datamodels/mapping-rules/type", "datamodels/mapping-rules/types", "datamodels/mapping-rules/weight", "datamodels/obograph/Axiom", "datamodels/obograph/BasicPropertyValue", "datamodels/obograph/Boolean", "datamodels/obograph/Curie", "datamodels/obograph/Date", "datamodels/obograph/DateOrDatetime", "datamodels/obograph/Datetime", "datamodels/obograph/Decimal", "datamodels/obograph/DefinitionPropertyValue", "datamodels/obograph/DisjointClassExpressionsAxiom", "datamodels/obograph/DomainRangeAxiom", "datamodels/obograph/Double", "datamodels/obograph/Edge", "datamodels/obograph/EquivalentNodesSet", "datamodels/obograph/ExistentialRestrictionExpression", "datamodels/obograph/Float", "datamodels/obograph/Graph", "datamodels/obograph/GraphDocument", "datamodels/obograph/Integer", "datamodels/obograph/Jsonpath", "datamodels/obograph/Jsonpointer", "datamodels/obograph/LogicalDefinitionAxiom", "datamodels/obograph/Meta", "datamodels/obograph/Ncname", "datamodels/obograph/Node", "datamodels/obograph/NodeTypeEnum", "datamodels/obograph/Nodeidentifier", "datamodels/obograph/Objectidentifier", "datamodels/obograph/OboIdentifierString", "datamodels/obograph/PredsEnum", "datamodels/obograph/PrefixDeclaration", "datamodels/obograph/PropertyChainAxiom", "datamodels/obograph/PropertyTypeEnum", "datamodels/obograph/PropertyValue", "datamodels/obograph/ScopeEnum", "datamodels/obograph/ScopesEnum", "datamodels/obograph/Sparqlpath", "datamodels/obograph/String", "datamodels/obograph/SubsetDefinition", "datamodels/obograph/SynonymPropertyValue", "datamodels/obograph/SynonymTypeDefinition", "datamodels/obograph/SynonymTypeIdentifierString", "datamodels/obograph/Time", "datamodels/obograph/Uri", "datamodels/obograph/Uriorcurie", "datamodels/obograph/XrefPropertyValue", "datamodels/obograph/XrefString", "datamodels/obograph/allValuesFromEdges", "datamodels/obograph/basicPropertyValues", "datamodels/obograph/chainPredicateIds", "datamodels/obograph/classExpressions", "datamodels/obograph/classIds", "datamodels/obograph/comments", "datamodels/obograph/definedClassId", "datamodels/obograph/definition", "datamodels/obograph/deprecated", "datamodels/obograph/disjointClassExpressionsAxioms", "datamodels/obograph/domainClassIds", "datamodels/obograph/domainRangeAxioms", "datamodels/obograph/edges", "datamodels/obograph/equivalentNodesSets", "datamodels/obograph/fillerId", "datamodels/obograph/genusIds", "datamodels/obograph/graphs", "datamodels/obograph/id", "datamodels/obograph/index", "datamodels/obograph/isExact", "datamodels/obograph/label", "datamodels/obograph/lang", "datamodels/obograph/lbl", "datamodels/obograph/logicalDefinitionAxioms", "datamodels/obograph/meta", "datamodels/obograph/namespace", "datamodels/obograph/nodeIds", "datamodels/obograph/nodes", "datamodels/obograph/obj", "datamodels/obograph/obographs_datamodel", "datamodels/obograph/obographs_linkml_model", "datamodels/obograph/pred", "datamodels/obograph/predicateId", "datamodels/obograph/prefix", "datamodels/obograph/prefixes", "datamodels/obograph/propertyChainAxioms", "datamodels/obograph/propertyId", "datamodels/obograph/propertyType", "datamodels/obograph/rangeClassIds", "datamodels/obograph/representativeNodeId", "datamodels/obograph/representitiveNodeId", "datamodels/obograph/restrictions", "datamodels/obograph/scope", "datamodels/obograph/sub", "datamodels/obograph/subsetDefinitions", "datamodels/obograph/subsets", "datamodels/obograph/synonymType", "datamodels/obograph/synonymTypeDefinitions", "datamodels/obograph/synonyms", "datamodels/obograph/type", "datamodels/obograph/types", "datamodels/obograph/unionEquivalentTo", "datamodels/obograph/unionEquivalentToExpression", "datamodels/obograph/val", "datamodels/obograph/valType", "datamodels/obograph/version", "datamodels/obograph/xrefs", "datamodels/ontology-metadata/Agent", "datamodels/ontology-metadata/AllotropePermittedProfile", "datamodels/ontology-metadata/AllotropeRequiredProfile", "datamodels/ontology-metadata/Annotation", "datamodels/ontology-metadata/AnnotationProperty", "datamodels/ontology-metadata/AnnotationPropertyMixin", "datamodels/ontology-metadata/Anonymous", "datamodels/ontology-metadata/AnonymousClassExpression", "datamodels/ontology-metadata/Any", "datamodels/ontology-metadata/Axiom", "datamodels/ontology-metadata/Boolean", "datamodels/ontology-metadata/CURIELiteral", "datamodels/ontology-metadata/Class", "datamodels/ontology-metadata/ClassExpression", "datamodels/ontology-metadata/Curie", "datamodels/ontology-metadata/Date", "datamodels/ontology-metadata/DateOrDatetime", "datamodels/ontology-metadata/Datetime", "datamodels/ontology-metadata/Decimal", "datamodels/ontology-metadata/DefinitionConstraintComponent", "datamodels/ontology-metadata/Double", "datamodels/ontology-metadata/Expression", "datamodels/ontology-metadata/Float", "datamodels/ontology-metadata/GoPermittedProfile", "datamodels/ontology-metadata/GoRecommendedProfile", "datamodels/ontology-metadata/GoRequiredProfile", "datamodels/ontology-metadata/HasCategory", "datamodels/ontology-metadata/HasLifeCycle", "datamodels/ontology-metadata/HasMappings", "datamodels/ontology-metadata/HasMinimalMetadata", "datamodels/ontology-metadata/HasProvenance", "datamodels/ontology-metadata/HasSynonyms", "datamodels/ontology-metadata/HasUserInformation", "datamodels/ontology-metadata/HomoSapiens", "datamodels/ontology-metadata/IEDB_alternative_term", "datamodels/ontology-metadata/ISA_alternative_term", "datamodels/ontology-metadata/Image", "datamodels/ontology-metadata/Integer", "datamodels/ontology-metadata/IriType", "datamodels/ontology-metadata/Jsonpath", "datamodels/ontology-metadata/Jsonpointer", "datamodels/ontology-metadata/LabelType", "datamodels/ontology-metadata/NCIT_definition_source", "datamodels/ontology-metadata/NCIT_term_source", "datamodels/ontology-metadata/NCIT_term_type", "datamodels/ontology-metadata/NamedIndividual", "datamodels/ontology-metadata/NamedObject", "datamodels/ontology-metadata/NarrativeText", "datamodels/ontology-metadata/Ncname", "datamodels/ontology-metadata/Nodeidentifier", "datamodels/ontology-metadata/NotObsoleteAspect", "datamodels/ontology-metadata/OBO_foundry_unique_label", "datamodels/ontology-metadata/ObiPermittedProfile", "datamodels/ontology-metadata/ObiRequiredProfile", "datamodels/ontology-metadata/ObjectProperty", "datamodels/ontology-metadata/Objectidentifier", "datamodels/ontology-metadata/ObsoleteAspect", "datamodels/ontology-metadata/Ontology", "datamodels/ontology-metadata/Ontology-Metadata", "datamodels/ontology-metadata/Property", "datamodels/ontology-metadata/PropertyExpression", "datamodels/ontology-metadata/Restriction", "datamodels/ontology-metadata/Sparqlpath", "datamodels/ontology-metadata/String", "datamodels/ontology-metadata/Subset", "datamodels/ontology-metadata/Term", "datamodels/ontology-metadata/Thing", "datamodels/ontology-metadata/TidyString", "datamodels/ontology-metadata/Time", "datamodels/ontology-metadata/TransitiveProperty", "datamodels/ontology-metadata/URLLiteral", "datamodels/ontology-metadata/Uri", "datamodels/ontology-metadata/Uriorcurie", "datamodels/ontology-metadata/allValuesFrom", "datamodels/ontology-metadata/alternative_term", "datamodels/ontology-metadata/annotatedProperty", "datamodels/ontology-metadata/annotatedSource", "datamodels/ontology-metadata/annotatedTarget", "datamodels/ontology-metadata/annotations", "datamodels/ontology-metadata/broadMatch", "datamodels/ontology-metadata/cardinality", "datamodels/ontology-metadata/category", "datamodels/ontology-metadata/changeNote", "datamodels/ontology-metadata/closeMatch", "datamodels/ontology-metadata/comment", "datamodels/ontology-metadata/complementOf", "datamodels/ontology-metadata/conformsTo", "datamodels/ontology-metadata/consider", "datamodels/ontology-metadata/contributor", "datamodels/ontology-metadata/core_property", "datamodels/ontology-metadata/created", "datamodels/ontology-metadata/created_by", "datamodels/ontology-metadata/creation_date", "datamodels/ontology-metadata/creator", "datamodels/ontology-metadata/curator_note", "datamodels/ontology-metadata/database_cross_reference", "datamodels/ontology-metadata/date", "datamodels/ontology-metadata/date_retrieved", "datamodels/ontology-metadata/defaultLanguage", "datamodels/ontology-metadata/definition", "datamodels/ontology-metadata/definition_source", "datamodels/ontology-metadata/depicted_by", "datamodels/ontology-metadata/deprecated", "datamodels/ontology-metadata/disconnected_from", "datamodels/ontology-metadata/disjointWith", "datamodels/ontology-metadata/distinctMembers", "datamodels/ontology-metadata/domain", "datamodels/ontology-metadata/editor_note", "datamodels/ontology-metadata/editor_preferred_term", "datamodels/ontology-metadata/equivalentClass", "datamodels/ontology-metadata/equivalentProperty", "datamodels/ontology-metadata/evidence", "datamodels/ontology-metadata/exactMatch", "datamodels/ontology-metadata/example_of_usage", "datamodels/ontology-metadata/excluded_axiom", "datamodels/ontology-metadata/excluded_from_QC_check", "datamodels/ontology-metadata/excluded_subClassOf", "datamodels/ontology-metadata/excluded_synonym", "datamodels/ontology-metadata/external_ontology", "datamodels/ontology-metadata/hasValue", "datamodels/ontology-metadata/has_alternative_id", "datamodels/ontology-metadata/has_axiom_label", "datamodels/ontology-metadata/has_broad_synonym", "datamodels/ontology-metadata/has_curation_status", "datamodels/ontology-metadata/has_exact_synonym", "datamodels/ontology-metadata/has_narrow_synonym", "datamodels/ontology-metadata/has_obo_namespace", "datamodels/ontology-metadata/has_obsolescence_reason", "datamodels/ontology-metadata/has_ontology_root_term", "datamodels/ontology-metadata/has_rank", "datamodels/ontology-metadata/has_related_synonym", "datamodels/ontology-metadata/has_synonym_type", "datamodels/ontology-metadata/id", "datamodels/ontology-metadata/image", "datamodels/ontology-metadata/imported_from", "datamodels/ontology-metadata/imports", "datamodels/ontology-metadata/in_subset", "datamodels/ontology-metadata/index", "datamodels/ontology-metadata/informative_property", "datamodels/ontology-metadata/intersectionOf", "datamodels/ontology-metadata/inverseOf", "datamodels/ontology-metadata/isDefinedBy", "datamodels/ontology-metadata/is_a_defining_property_chain_axiom", "datamodels/ontology-metadata/is_a_defining_property_chain_axiom_where_second_argument_is_reflexive", "datamodels/ontology-metadata/is_class_level", "datamodels/ontology-metadata/is_cyclic", "datamodels/ontology-metadata/is_inferred", "datamodels/ontology-metadata/is_metadata_tag", "datamodels/ontology-metadata/is_transitive", "datamodels/ontology-metadata/label", "datamodels/ontology-metadata/language", "datamodels/ontology-metadata/license", "datamodels/ontology-metadata/logical_predicate", "datamodels/ontology-metadata/match", "datamodels/ontology-metadata/match_aspect", "datamodels/ontology-metadata/maxQualifiedCardinality", "datamodels/ontology-metadata/members", "datamodels/ontology-metadata/minCardinality", "datamodels/ontology-metadata/minQualifiedCardinality", "datamodels/ontology-metadata/narrowMatch", "datamodels/ontology-metadata/never_in_taxon", "datamodels/ontology-metadata/notes", "datamodels/ontology-metadata/object", "datamodels/ontology-metadata/oboInOwl_id", "datamodels/ontology-metadata/oboInOwl_ontology", "datamodels/ontology-metadata/obsoletion_related_property", "datamodels/ontology-metadata/omo-schema", "datamodels/ontology-metadata/onClass", "datamodels/ontology-metadata/onProperty", "datamodels/ontology-metadata/oneOf", "datamodels/ontology-metadata/ontology_term_requester", "datamodels/ontology-metadata/page", "datamodels/ontology-metadata/predicate", "datamodels/ontology-metadata/propertyChainAxiom", "datamodels/ontology-metadata/provenance_property", "datamodels/ontology-metadata/qualifiedCardinality", "datamodels/ontology-metadata/range", "datamodels/ontology-metadata/reification_predicate", "datamodels/ontology-metadata/sameAs", "datamodels/ontology-metadata/seeAlso", "datamodels/ontology-metadata/shortcut_annotation_property", "datamodels/ontology-metadata/shorthand", "datamodels/ontology-metadata/should_conform_to", "datamodels/ontology-metadata/someValuesFrom", "datamodels/ontology-metadata/source", "datamodels/ontology-metadata/subClassOf", "datamodels/ontology-metadata/synonym", "datamodels/ontology-metadata/temporal_interpretation", "datamodels/ontology-metadata/term_editor", "datamodels/ontology-metadata/term_replaced_by", "datamodels/ontology-metadata/term_tracker_item", "datamodels/ontology-metadata/title", "datamodels/ontology-metadata/type", "datamodels/ontology-metadata/types", "datamodels/ontology-metadata/unionOf", "datamodels/ontology-metadata/url", "datamodels/ontology-metadata/versionIRI", "datamodels/ontology-metadata/versionInfo", "datamodels/ontology-metadata/version_property", "datamodels/search/Boolean", "datamodels/search/BooleanOperator", "datamodels/search/ComplexQuery", "datamodels/search/Curie", "datamodels/search/Date", "datamodels/search/DateOrDatetime", "datamodels/search/Datetime", "datamodels/search/Decimal", "datamodels/search/Double", "datamodels/search/Float", "datamodels/search/GraphFunction", "datamodels/search/Integer", "datamodels/search/Jsonpath", "datamodels/search/Jsonpointer", "datamodels/search/Ncname", "datamodels/search/Nodeidentifier", "datamodels/search/Objectidentifier", "datamodels/search/PathExpression", "datamodels/search/SearchBaseConfiguration", "datamodels/search/SearchProperty", "datamodels/search/SearchResult", "datamodels/search/SearchResultSet", "datamodels/search/SearchTerm", "datamodels/search/SearchTermSyntax", "datamodels/search/Sparqlpath", "datamodels/search/String", "datamodels/search/Time", "datamodels/search/Uri", "datamodels/search/Uriorcurie", "datamodels/search/all_of", "datamodels/search/any_of", "datamodels/search/atom", "datamodels/search/categories", "datamodels/search/configuration", "datamodels/search/cursor", "datamodels/search/force_case_insensitive", "datamodels/search/graph_predicates", "datamodels/search/include_aliases", "datamodels/search/include_definition", "datamodels/search/include_id", "datamodels/search/include_label", "datamodels/search/include_obsoletes_in_results", "datamodels/search/index", "datamodels/search/is_complete", "datamodels/search/is_fuzzy", "datamodels/search/is_partial", "datamodels/search/is_regular_expression", "datamodels/search/limit", "datamodels/search/matches_full_search_term", "datamodels/search/none_of", "datamodels/search/object_id", "datamodels/search/object_label", "datamodels/search/object_match_field", "datamodels/search/object_source", "datamodels/search/object_source_version", "datamodels/search/path_to", "datamodels/search/properties", "datamodels/search/rank", "datamodels/search/result_count", "datamodels/search/results", "datamodels/search/search-datamodel", "datamodels/search/search_term", "datamodels/search/search_terms", "datamodels/search/snippet", "datamodels/search/syntax", "datamodels/search/traversal", "datamodels/search/types", "datamodels/semsql/index", "datamodels/similarity/BestMatch", "datamodels/similarity/Boolean", "datamodels/similarity/Curie", "datamodels/similarity/Date", "datamodels/similarity/DateOrDatetime", "datamodels/similarity/Datetime", "datamodels/similarity/Decimal", "datamodels/similarity/Double", "datamodels/similarity/Float", "datamodels/similarity/Integer", "datamodels/similarity/ItemCount", "datamodels/similarity/Jsonpath", "datamodels/similarity/Jsonpointer", "datamodels/similarity/Ncname", "datamodels/similarity/NegativeLogValue", "datamodels/similarity/Nodeidentifier", "datamodels/similarity/NonNegativeFloat", "datamodels/similarity/Objectidentifier", "datamodels/similarity/PairwiseSimilarity", "datamodels/similarity/Sparqlpath", "datamodels/similarity/String", "datamodels/similarity/TermInfo", "datamodels/similarity/TermPairwiseSimilarity", "datamodels/similarity/TermSetPairwiseSimilarity", "datamodels/similarity/Time", "datamodels/similarity/Uri", "datamodels/similarity/Uriorcurie", "datamodels/similarity/ZeroToOne", "datamodels/similarity/ancestor_id", "datamodels/similarity/ancestor_information_content", "datamodels/similarity/ancestor_label", "datamodels/similarity/ancestor_source", "datamodels/similarity/average_score", "datamodels/similarity/best_score", "datamodels/similarity/cosine_similarity", "datamodels/similarity/dice_similarity", "datamodels/similarity/id", "datamodels/similarity/index", "datamodels/similarity/information_content", "datamodels/similarity/intersection_count", "datamodels/similarity/jaccard_similarity", "datamodels/similarity/label", "datamodels/similarity/match_source", "datamodels/similarity/match_source_label", "datamodels/similarity/match_subsumer", "datamodels/similarity/match_subsumer_label", "datamodels/similarity/match_target", "datamodels/similarity/match_target_label", "datamodels/similarity/metric", "datamodels/similarity/object_best_matches", "datamodels/similarity/object_id", "datamodels/similarity/object_information_content", "datamodels/similarity/object_label", "datamodels/similarity/object_source", "datamodels/similarity/object_termset", "datamodels/similarity/overlap_coefficient", "datamodels/similarity/phenodigm_score", "datamodels/similarity/score", "datamodels/similarity/similarity", "datamodels/similarity/subject_best_matches", "datamodels/similarity/subject_id", "datamodels/similarity/subject_information_content", "datamodels/similarity/subject_label", "datamodels/similarity/subject_source", "datamodels/similarity/subject_termset", "datamodels/similarity/subsumed_by_score", "datamodels/similarity/subsumes_score", "datamodels/similarity/types", "datamodels/similarity/union_count", "datamodels/sssom/index", "datamodels/summary-statistics/Agent", "datamodels/summary-statistics/Boolean", "datamodels/summary-statistics/ChangeTypeStatistic", "datamodels/summary-statistics/ContributorRole", "datamodels/summary-statistics/ContributorStatistics", "datamodels/summary-statistics/Curie", "datamodels/summary-statistics/Date", "datamodels/summary-statistics/DateOrDatetime", "datamodels/summary-statistics/Datetime", "datamodels/summary-statistics/Decimal", "datamodels/summary-statistics/Double", "datamodels/summary-statistics/FacetStatistics", "datamodels/summary-statistics/FacetedCount", "datamodels/summary-statistics/Float", "datamodels/summary-statistics/GlobalStatistics", "datamodels/summary-statistics/GroupedStatistics", "datamodels/summary-statistics/Integer", "datamodels/summary-statistics/Jsonpath", "datamodels/summary-statistics/Jsonpointer", "datamodels/summary-statistics/Ncname", "datamodels/summary-statistics/Nodeidentifier", "datamodels/summary-statistics/Objectidentifier", "datamodels/summary-statistics/Ontology", "datamodels/summary-statistics/Sparqlpath", "datamodels/summary-statistics/String", "datamodels/summary-statistics/SummaryStatisticCollection", "datamodels/summary-statistics/SummaryStatisticsCalculationActivity", "datamodels/summary-statistics/SummaryStatisticsReport", "datamodels/summary-statistics/Time", "datamodels/summary-statistics/UngroupedStatistics", "datamodels/summary-statistics/Uri", "datamodels/summary-statistics/Uriorcurie", "datamodels/summary-statistics/acted_on_behalf_of", "datamodels/summary-statistics/agents", "datamodels/summary-statistics/annotation_property_count", "datamodels/summary-statistics/anonymous_class_expression_count", "datamodels/summary-statistics/anonymous_individual_count", "datamodels/summary-statistics/by_category", "datamodels/summary-statistics/by_ontology", "datamodels/summary-statistics/by_subset", "datamodels/summary-statistics/by_taxon", "datamodels/summary-statistics/change_summary", "datamodels/summary-statistics/class_count", "datamodels/summary-statistics/class_count_by_category", "datamodels/summary-statistics/class_count_by_subset", "datamodels/summary-statistics/class_count_excluding_deprecated", "datamodels/summary-statistics/class_count_with_definitions", "datamodels/summary-statistics/class_count_with_text_definitions", "datamodels/summary-statistics/class_count_without_text_definitions", "datamodels/summary-statistics/class_statistic_group", "datamodels/summary-statistics/compared_with", "datamodels/summary-statistics/contributor_id", "datamodels/summary-statistics/contributor_name", "datamodels/summary-statistics/contributor_summary", "datamodels/summary-statistics/count_statistic", "datamodels/summary-statistics/datatype_property_count", "datamodels/summary-statistics/deprecated_class_count", "datamodels/summary-statistics/deprecated_object_property_count", "datamodels/summary-statistics/description", "datamodels/summary-statistics/description_logic_profile", "datamodels/summary-statistics/distinct_synonym_count", "datamodels/summary-statistics/edge_count_by_predicate", "datamodels/summary-statistics/ended_at_time", "datamodels/summary-statistics/entailed_edge_count_by_predicate", "datamodels/summary-statistics/equivalent_classes_axiom_count", "datamodels/summary-statistics/equivalentclasses_axiom_count", "datamodels/summary-statistics/facet", "datamodels/summary-statistics/filtered_count", "datamodels/summary-statistics/id", "datamodels/summary-statistics/index", "datamodels/summary-statistics/individual_count", "datamodels/summary-statistics/individual_statistic_group", "datamodels/summary-statistics/label", "datamodels/summary-statistics/mapping_count", "datamodels/summary-statistics/mapping_statement_count_by_object_source", "datamodels/summary-statistics/mapping_statement_count_by_predicate", "datamodels/summary-statistics/mapping_statement_count_subject_by_object_source", "datamodels/summary-statistics/merged_class_count", "datamodels/summary-statistics/metadata_statistic_group", "datamodels/summary-statistics/named_individual_count", "datamodels/summary-statistics/non_deprecated_class_count", "datamodels/summary-statistics/non_deprecated_object_property_count", "datamodels/summary-statistics/normalization_comments", "datamodels/summary-statistics/object_property_count", "datamodels/summary-statistics/ontologies", "datamodels/summary-statistics/ontology_count", "datamodels/summary-statistics/owl_axiom_count", "datamodels/summary-statistics/owl_statistic_group", "datamodels/summary-statistics/partitions", "datamodels/summary-statistics/prefix", "datamodels/summary-statistics/property_count", "datamodels/summary-statistics/property_statistic_group", "datamodels/summary-statistics/rdf_triple_count", "datamodels/summary-statistics/role_counts", "datamodels/summary-statistics/started_at_time", "datamodels/summary-statistics/subclass_of_axiom_count", "datamodels/summary-statistics/subset_count", "datamodels/summary-statistics/summary-statistics", "datamodels/summary-statistics/synonym_statement_count", "datamodels/summary-statistics/synonym_statement_count_by_predicate", "datamodels/summary-statistics/title", "datamodels/summary-statistics/types", "datamodels/summary-statistics/unsatisfiable_class_count", "datamodels/summary-statistics/untyped_entity_count", "datamodels/summary-statistics/version", "datamodels/summary-statistics/version_info", "datamodels/summary-statistics/was_associated_with", "datamodels/summary-statistics/was_generated_by", "datamodels/taxon-constraints/Boolean", "datamodels/taxon-constraints/ConfigurationOption", "datamodels/taxon-constraints/Curie", "datamodels/taxon-constraints/Date", "datamodels/taxon-constraints/DateOrDatetime", "datamodels/taxon-constraints/Datetime", "datamodels/taxon-constraints/Decimal", "datamodels/taxon-constraints/Double", "datamodels/taxon-constraints/Float", "datamodels/taxon-constraints/Integer", "datamodels/taxon-constraints/Jsonpath", "datamodels/taxon-constraints/Jsonpointer", "datamodels/taxon-constraints/Ncname", "datamodels/taxon-constraints/Nodeidentifier", "datamodels/taxon-constraints/Objectidentifier", "datamodels/taxon-constraints/PredicateTerm", "datamodels/taxon-constraints/Sparqlpath", "datamodels/taxon-constraints/String", "datamodels/taxon-constraints/SubjectTerm", "datamodels/taxon-constraints/Taxon", "datamodels/taxon-constraints/TaxonConstraint", "datamodels/taxon-constraints/Term", "datamodels/taxon-constraints/Time", "datamodels/taxon-constraints/Uri", "datamodels/taxon-constraints/Uriorcurie", "datamodels/taxon-constraints/asserted", "datamodels/taxon-constraints/candidate", "datamodels/taxon-constraints/comments", "datamodels/taxon-constraints/contradicted_by", "datamodels/taxon-constraints/description", "datamodels/taxon-constraints/evolutionary", "datamodels/taxon-constraints/id", "datamodels/taxon-constraints/index", "datamodels/taxon-constraints/label", "datamodels/taxon-constraints/never_in", "datamodels/taxon-constraints/only_in", "datamodels/taxon-constraints/predicate", "datamodels/taxon-constraints/predicates", "datamodels/taxon-constraints/present_in", "datamodels/taxon-constraints/present_in_ancestor_of", "datamodels/taxon-constraints/redundant", "datamodels/taxon-constraints/redundant_with", "datamodels/taxon-constraints/redundant_with_only_in", "datamodels/taxon-constraints/sources", "datamodels/taxon-constraints/subject", "datamodels/taxon-constraints/taxon", "datamodels/taxon-constraints/taxon-constraints", "datamodels/taxon-constraints/unsatisfiable", "datamodels/taxon-constraints/via_terms", "datamodels/text-annotator/Boolean", "datamodels/text-annotator/Curie", "datamodels/text-annotator/Date", "datamodels/text-annotator/DateOrDatetime", "datamodels/text-annotator/Datetime", "datamodels/text-annotator/Decimal", "datamodels/text-annotator/Double", "datamodels/text-annotator/Float", "datamodels/text-annotator/HasSpan", "datamodels/text-annotator/Integer", "datamodels/text-annotator/Jsonpath", "datamodels/text-annotator/Jsonpointer", "datamodels/text-annotator/Ncname", "datamodels/text-annotator/Nodeidentifier", "datamodels/text-annotator/Objectidentifier", "datamodels/text-annotator/Position", "datamodels/text-annotator/Sparqlpath", "datamodels/text-annotator/String", "datamodels/text-annotator/TextAnnotation", "datamodels/text-annotator/TextAnnotationConfiguration", "datamodels/text-annotator/TextAnnotationResultSet", "datamodels/text-annotator/TextualElement", "datamodels/text-annotator/Time", "datamodels/text-annotator/TransformationType", "datamodels/text-annotator/Uri", "datamodels/text-annotator/Uriorcurie", "datamodels/text-annotator/annotations", "datamodels/text-annotator/categories", "datamodels/text-annotator/confidence", "datamodels/text-annotator/id", "datamodels/text-annotator/include_aliases", "datamodels/text-annotator/index", "datamodels/text-annotator/info", "datamodels/text-annotator/is_longest_match", "datamodels/text-annotator/limit", "datamodels/text-annotator/match_string", "datamodels/text-annotator/match_type", "datamodels/text-annotator/matches_whole_text", "datamodels/text-annotator/model", "datamodels/text-annotator/object_aliases", "datamodels/text-annotator/object_categories", "datamodels/text-annotator/object_id", "datamodels/text-annotator/object_label", "datamodels/text-annotator/object_source", "datamodels/text-annotator/parent_document", "datamodels/text-annotator/predicate_id", "datamodels/text-annotator/source_text", "datamodels/text-annotator/sources", "datamodels/text-annotator/subject_end", "datamodels/text-annotator/subject_label", "datamodels/text-annotator/subject_source", "datamodels/text-annotator/subject_start", "datamodels/text-annotator/subject_text_id", "datamodels/text-annotator/text", "datamodels/text-annotator/text-annotator", "datamodels/text-annotator/token_exclusion_list", "datamodels/text-annotator/types", "datamodels/validation/Boolean", "datamodels/validation/ConstraintComponent", "datamodels/validation/Curie", "datamodels/validation/Date", "datamodels/validation/DateOrDatetime", "datamodels/validation/Datetime", "datamodels/validation/Decimal", "datamodels/validation/Double", "datamodels/validation/ExternalReferenceValidationResult", "datamodels/validation/Float", "datamodels/validation/Integer", "datamodels/validation/Jsonpath", "datamodels/validation/Jsonpointer", "datamodels/validation/MappingValidationResult", "datamodels/validation/NamedResource", "datamodels/validation/Ncname", "datamodels/validation/Node", "datamodels/validation/Nodeidentifier", "datamodels/validation/Objectidentifier", "datamodels/validation/RepairConfiguration", "datamodels/validation/RepairOperation", "datamodels/validation/RepairReport", "datamodels/validation/Report", "datamodels/validation/Result", "datamodels/validation/SeverityOptions", "datamodels/validation/Sparqlpath", "datamodels/validation/String", "datamodels/validation/Time", "datamodels/validation/TypeSeverityKeyValue", "datamodels/validation/Uri", "datamodels/validation/Uriorcurie", "datamodels/validation/ValidationConfiguration", "datamodels/validation/ValidationReport", "datamodels/validation/ValidationResult", "datamodels/validation/ValidationResultType", "datamodels/validation/category", "datamodels/validation/confidence", "datamodels/validation/dry_run", "datamodels/validation/http_response_code", "datamodels/validation/id", "datamodels/validation/index", "datamodels/validation/info", "datamodels/validation/instantiates", "datamodels/validation/max_number_results_per_type", "datamodels/validation/modified", "datamodels/validation/number_of_attempts", "datamodels/validation/object", "datamodels/validation/object_id", "datamodels/validation/object_info", "datamodels/validation/object_str", "datamodels/validation/predicate", "datamodels/validation/predicate_id", "datamodels/validation/problem", "datamodels/validation/prompt_info", "datamodels/validation/repairs", "datamodels/validation/results", "datamodels/validation/schema_path", "datamodels/validation/severity", "datamodels/validation/source", "datamodels/validation/subject", "datamodels/validation/subject_id", "datamodels/validation/subject_info", "datamodels/validation/successful", "datamodels/validation/suggested_modifications", "datamodels/validation/suggested_predicate", "datamodels/validation/time_checked", "datamodels/validation/type", "datamodels/validation/type_severity_map", "datamodels/validation/types", "datamodels/validation/url", "datamodels/validation/validation_configuration", "datamodels/validation/validaton-results", "faq/architecture", "faq/commandline", "faq/contributing", "faq/general", "faq/index", "faq/ontologies", "faq/troubleshooting", "glossary", "guide/aliases", "guide/associations", "guide/basics", "guide/curies-and-uris", "guide/index", "guide/learning-more", "guide/logical-definitions", "guide/mappings", "guide/obsoletion", "guide/primary-labels", "guide/relationships-and-graphs", "guide/similarity", "howtos/fhir-conversions", "howtos/index", "howtos/perform-lexical-matching", "howtos/roll-up-annotations-to-a-subset", "howtos/use-llms", "howtos/validate-an-obo-ontology", "howtos/visualize-ontology-subgraphs", "howtos/write-a-plugin", "index", "intro/index", "intro/tutorial01", "intro/tutorial02", "intro/tutorial03", "intro/tutorial04", "intro/tutorial05", "intro/tutorial06", "intro/tutorial07", "intro/tutorial08", "introduction", "logos/README", "notebooks", "packages/architecture", "packages/best-practice", "packages/converters/data-model-converter", "packages/converters/index", "packages/converters/obo-graph-to-cx", "packages/converters/obo-graph-to-fhir", "packages/converters/obo-graph-to-obo-format", "packages/converters/obo-graph-to-owl", "packages/implementations/aggregator", "packages/implementations/bioportal", "packages/implementations/funowl", "packages/implementations/gilda", "packages/implementations/index", "packages/implementations/llm", "packages/implementations/obograph", "packages/implementations/ols", "packages/implementations/ontobee", "packages/implementations/owlery", "packages/implementations/pantherdb", "packages/implementations/pronto", "packages/implementations/simple_obo", "packages/implementations/sparql", "packages/implementations/sqldb", "packages/implementations/ubergraph", "packages/index", "packages/interfaces/association-provider", "packages/interfaces/basic", "packages/interfaces/class-enrichment", "packages/interfaces/differ", "packages/interfaces/dumper", "packages/interfaces/index", "packages/interfaces/mapping-provider", "packages/interfaces/obograph", "packages/interfaces/owl", "packages/interfaces/patcher", "packages/interfaces/relation-graph", "packages/interfaces/search", "packages/interfaces/semantic-similarity", "packages/interfaces/subsetting", "packages/interfaces/summary-statistics", "packages/interfaces/text-annotator", "packages/interfaces/validator", "packages/selectors", "packages/src/oaklib.utilities.apikey_manager", "packages/src/oaklib.utilities.graph.networkx_bridge", "packages/src/oaklib.utilities.graph.relationship_walker", "packages/src/oaklib.utilities.lexical.lexical_indexer", "packages/src/oaklib.utilities.obograph_utils", "packages/src/oaklib.utilities.subsets.slimmer_utils", "packages/src/oaklib.utilities.table_filler", "packages/src/oaklib.utilities.taxon", "packages/utilities", "rdf-owl-layering", "search-syntax"], "filenames": ["cli.rst", "concepts.rst", "contributing.md", "datamodels/association/Association.md", "datamodels/association/AssociationChange.md", "datamodels/association/Boolean.md", "datamodels/association/Curie.md", "datamodels/association/Date.md", "datamodels/association/DateOrDatetime.md", "datamodels/association/Datetime.md", "datamodels/association/Decimal.md", "datamodels/association/Double.md", "datamodels/association/Float.md", "datamodels/association/Integer.md", "datamodels/association/Jsonpath.md", "datamodels/association/Jsonpointer.md", "datamodels/association/Ncname.md", "datamodels/association/NegatedAssociation.md", "datamodels/association/Nodeidentifier.md", "datamodels/association/Objectidentifier.md", "datamodels/association/PairwiseCoAssociation.md", "datamodels/association/ParserConfiguration.md", "datamodels/association/PositiveOrNegativeAssociation.md", "datamodels/association/PropertyValue.md", "datamodels/association/RollupGroup.md", "datamodels/association/Sparqlpath.md", "datamodels/association/String.md", "datamodels/association/Time.md", "datamodels/association/Uri.md", "datamodels/association/Uriorcurie.md", "datamodels/association/aggregator_knowledge_source.md", "datamodels/association/association.md", "datamodels/association/associations.md", "datamodels/association/associations_for_subjects_in_common.md", "datamodels/association/closure_delta.md", "datamodels/association/closure_information_content_delta.md", "datamodels/association/closure_predicates.md", "datamodels/association/comments.md", "datamodels/association/core_triple.md", "datamodels/association/creation_date.md", "datamodels/association/date.md", "datamodels/association/denormalized_slot.md", "datamodels/association/diff_slot.md", "datamodels/association/evidence_type.md", "datamodels/association/group_object.md", "datamodels/association/include_association_attributes.md", "datamodels/association/index.md", "datamodels/association/is_creation.md", "datamodels/association/is_deletion.md", "datamodels/association/is_generalization.md", "datamodels/association/is_migration.md", "datamodels/association/is_specialization.md", "datamodels/association/modification_date.md", "datamodels/association/negated.md", "datamodels/association/new_date.md", "datamodels/association/new_object.md", "datamodels/association/new_predicate.md", "datamodels/association/number_subject_unique_to_entity1.md", "datamodels/association/number_subject_unique_to_entity2.md", "datamodels/association/number_subjects_in_common.md", "datamodels/association/object.md", "datamodels/association/object1.md", "datamodels/association/object1_label.md", "datamodels/association/object2.md", "datamodels/association/object2_label.md", "datamodels/association/object_closure.md", "datamodels/association/object_closure_label.md", "datamodels/association/object_label.md", "datamodels/association/old_date.md", "datamodels/association/old_object.md", "datamodels/association/old_object_obsolete.md", "datamodels/association/old_predicate.md", "datamodels/association/original_object.md", "datamodels/association/original_predicate.md", "datamodels/association/original_subject.md", "datamodels/association/predicate.md", "datamodels/association/predicate_label.md", "datamodels/association/preserve_negated_associations.md", "datamodels/association/primary_knowledge_source.md", "datamodels/association/property_values.md", "datamodels/association/publication_is_added.md", "datamodels/association/publication_is_deleted.md", "datamodels/association/publications.md", "datamodels/association/sub_groups.md", "datamodels/association/subject.md", "datamodels/association/subject_closure.md", "datamodels/association/subject_closure_label.md", "datamodels/association/subject_label.md", "datamodels/association/subjects_in_common.md", "datamodels/association/summary_group.md", "datamodels/association/supporting_objects.md", "datamodels/class-enrichment/Boolean.md", "datamodels/class-enrichment/ClassEnrichmentConfiguration.md", "datamodels/class-enrichment/ClassEnrichmentResult.md", "datamodels/class-enrichment/ClassEnrichmentResultSet.md", "datamodels/class-enrichment/Curie.md", "datamodels/class-enrichment/Date.md", "datamodels/class-enrichment/DateOrDatetime.md", "datamodels/class-enrichment/Datetime.md", "datamodels/class-enrichment/Decimal.md", "datamodels/class-enrichment/Double.md", "datamodels/class-enrichment/Float.md", "datamodels/class-enrichment/Integer.md", "datamodels/class-enrichment/Jsonpath.md", "datamodels/class-enrichment/Jsonpointer.md", "datamodels/class-enrichment/Ncname.md", "datamodels/class-enrichment/Nodeidentifier.md", "datamodels/class-enrichment/Objectidentifier.md", "datamodels/class-enrichment/Position.md", "datamodels/class-enrichment/SortFieldEnum.md", "datamodels/class-enrichment/Sparqlpath.md", "datamodels/class-enrichment/String.md", "datamodels/class-enrichment/Time.md", "datamodels/class-enrichment/Uri.md", "datamodels/class-enrichment/Uriorcurie.md", "datamodels/class-enrichment/ancestor_of_more_informative_result.md", "datamodels/class-enrichment/background_count.md", "datamodels/class-enrichment/background_total.md", "datamodels/class-enrichment/class-enrichment.md", "datamodels/class-enrichment/class_id.md", "datamodels/class-enrichment/class_label.md", "datamodels/class-enrichment/descendant_of_more_informative_result.md", "datamodels/class-enrichment/direction.md", "datamodels/class-enrichment/false_discovery_rate.md", "datamodels/class-enrichment/fold_enrichment.md", "datamodels/class-enrichment/index.md", "datamodels/class-enrichment/p_value.md", "datamodels/class-enrichment/p_value_adjusted.md", "datamodels/class-enrichment/p_value_cutoff.md", "datamodels/class-enrichment/probability.md", "datamodels/class-enrichment/rank.md", "datamodels/class-enrichment/results.md", "datamodels/class-enrichment/sample_count.md", "datamodels/class-enrichment/sample_total.md", "datamodels/cross-ontology-diff/Boolean.md", "datamodels/cross-ontology-diff/Curie.md", "datamodels/cross-ontology-diff/Date.md", "datamodels/cross-ontology-diff/DateOrDatetime.md", "datamodels/cross-ontology-diff/Datetime.md", "datamodels/cross-ontology-diff/Decimal.md", "datamodels/cross-ontology-diff/DiffCategory.md", "datamodels/cross-ontology-diff/Double.md", "datamodels/cross-ontology-diff/EntityReference.md", "datamodels/cross-ontology-diff/Float.md", "datamodels/cross-ontology-diff/Integer.md", "datamodels/cross-ontology-diff/Jsonpath.md", "datamodels/cross-ontology-diff/Jsonpointer.md", "datamodels/cross-ontology-diff/Label.md", "datamodels/cross-ontology-diff/MappingCardinalityEnum.md", "datamodels/cross-ontology-diff/Ncname.md", "datamodels/cross-ontology-diff/Nodeidentifier.md", "datamodels/cross-ontology-diff/Objectidentifier.md", "datamodels/cross-ontology-diff/Position.md", "datamodels/cross-ontology-diff/RelationalDiff.md", "datamodels/cross-ontology-diff/Source.md", "datamodels/cross-ontology-diff/Sparqlpath.md", "datamodels/cross-ontology-diff/String.md", "datamodels/cross-ontology-diff/StructureDiffResultSet.md", "datamodels/cross-ontology-diff/Time.md", "datamodels/cross-ontology-diff/Uri.md", "datamodels/cross-ontology-diff/Uriorcurie.md", "datamodels/cross-ontology-diff/category.md", "datamodels/cross-ontology-diff/cross-ontology-diff.md", "datamodels/cross-ontology-diff/index.md", "datamodels/cross-ontology-diff/is_functional.md", "datamodels/cross-ontology-diff/label.md", "datamodels/cross-ontology-diff/left_object_id.md", "datamodels/cross-ontology-diff/left_object_is_functional.md", "datamodels/cross-ontology-diff/left_object_label.md", "datamodels/cross-ontology-diff/left_object_name.md", "datamodels/cross-ontology-diff/left_predicate_id.md", "datamodels/cross-ontology-diff/left_predicate_label.md", "datamodels/cross-ontology-diff/left_predicate_name.md", "datamodels/cross-ontology-diff/left_side.md", "datamodels/cross-ontology-diff/left_source.md", "datamodels/cross-ontology-diff/left_subject_id.md", "datamodels/cross-ontology-diff/left_subject_is_functional.md", "datamodels/cross-ontology-diff/left_subject_label.md", "datamodels/cross-ontology-diff/left_subject_name.md", "datamodels/cross-ontology-diff/object.md", "datamodels/cross-ontology-diff/object_mapping_cardinality.md", "datamodels/cross-ontology-diff/object_mapping_predicate.md", "datamodels/cross-ontology-diff/predicate.md", "datamodels/cross-ontology-diff/results.md", "datamodels/cross-ontology-diff/right_intermediate_ids.md", "datamodels/cross-ontology-diff/right_object_id.md", "datamodels/cross-ontology-diff/right_object_label.md", "datamodels/cross-ontology-diff/right_object_name.md", "datamodels/cross-ontology-diff/right_predicate_ids.md", "datamodels/cross-ontology-diff/right_predicate_labels.md", "datamodels/cross-ontology-diff/right_predicate_names.md", "datamodels/cross-ontology-diff/right_side.md", "datamodels/cross-ontology-diff/right_source.md", "datamodels/cross-ontology-diff/right_subject_id.md", "datamodels/cross-ontology-diff/right_subject_label.md", "datamodels/cross-ontology-diff/right_subject_name.md", "datamodels/cross-ontology-diff/side.md", "datamodels/cross-ontology-diff/subject.md", "datamodels/cross-ontology-diff/subject_mapping_cardinality.md", "datamodels/cross-ontology-diff/subject_mapping_predicate.md", "datamodels/cross-ontology-diff/types.md", "datamodels/funowl/index.rst", "datamodels/index.rst", "datamodels/item-list/Boolean.md", "datamodels/item-list/Curie.md", "datamodels/item-list/Date.md", "datamodels/item-list/DateOrDatetime.md", "datamodels/item-list/Datetime.md", "datamodels/item-list/Decimal.md", "datamodels/item-list/Double.md", "datamodels/item-list/Float.md", "datamodels/item-list/Integer.md", "datamodels/item-list/ItemList.md", "datamodels/item-list/ItemListCollection.md", "datamodels/item-list/ItemListOrderType.md", "datamodels/item-list/Jsonpath.md", "datamodels/item-list/Jsonpointer.md", "datamodels/item-list/ListItem.md", "datamodels/item-list/Ncname.md", "datamodels/item-list/Nodeidentifier.md", "datamodels/item-list/Objectidentifier.md", "datamodels/item-list/Sparqlpath.md", "datamodels/item-list/String.md", "datamodels/item-list/Thing.md", "datamodels/item-list/Time.md", "datamodels/item-list/Uri.md", "datamodels/item-list/Uriorcurie.md", "datamodels/item-list/additionalType.md", "datamodels/item-list/categories.md", "datamodels/item-list/description.md", "datamodels/item-list/elementId.md", "datamodels/item-list/id.md", "datamodels/item-list/idType.md", "datamodels/item-list/identifiers.md", "datamodels/item-list/index.md", "datamodels/item-list/item.md", "datamodels/item-list/itemList.md", "datamodels/item-list/itemListElements.md", "datamodels/item-list/itemLists.md", "datamodels/item-list/itemMetadataMap.md", "datamodels/item-list/keywords.md", "datamodels/item-list/name.md", "datamodels/item-list/numberOfItems.md", "datamodels/item-list/position.md", "datamodels/item-list/previousItem.md", "datamodels/item-list/type.md", "datamodels/item-list/url.md", "datamodels/item-list/wasGeneratedBy.md", "datamodels/kgcl/index.rst", "datamodels/lexical-index/Activity.md", "datamodels/lexical-index/Any.md", "datamodels/lexical-index/Boolean.md", "datamodels/lexical-index/Curie.md", "datamodels/lexical-index/Date.md", "datamodels/lexical-index/DateOrDatetime.md", "datamodels/lexical-index/Datetime.md", "datamodels/lexical-index/Decimal.md", "datamodels/lexical-index/Double.md", "datamodels/lexical-index/Float.md", "datamodels/lexical-index/Integer.md", "datamodels/lexical-index/Jsonpath.md", "datamodels/lexical-index/Jsonpointer.md", "datamodels/lexical-index/LexicalGrouping.md", "datamodels/lexical-index/LexicalIndex.md", "datamodels/lexical-index/LexicalTransformation.md", "datamodels/lexical-index/LexicalTransformationPipeline.md", "datamodels/lexical-index/Ncname.md", "datamodels/lexical-index/Nodeidentifier.md", "datamodels/lexical-index/Objectidentifier.md", "datamodels/lexical-index/RelationshipToTerm.md", "datamodels/lexical-index/Sparqlpath.md", "datamodels/lexical-index/String.md", "datamodels/lexical-index/Time.md", "datamodels/lexical-index/TransformationType.md", "datamodels/lexical-index/Uri.md", "datamodels/lexical-index/Uriorcurie.md", "datamodels/lexical-index/element.md", "datamodels/lexical-index/element_term.md", "datamodels/lexical-index/groupings.md", "datamodels/lexical-index/index.md", "datamodels/lexical-index/lexical-index.md", "datamodels/lexical-index/lexican-index.md", "datamodels/lexical-index/name.md", "datamodels/lexical-index/params.md", "datamodels/lexical-index/pipeline.md", "datamodels/lexical-index/pipelines.md", "datamodels/lexical-index/predicate.md", "datamodels/lexical-index/relationships.md", "datamodels/lexical-index/source.md", "datamodels/lexical-index/synonymized.md", "datamodels/lexical-index/term.md", "datamodels/lexical-index/transformations.md", "datamodels/lexical-index/type.md", "datamodels/lexical-index/types.md", "datamodels/mapping-rules/Activity.md", "datamodels/mapping-rules/Any.md", "datamodels/mapping-rules/Boolean.md", "datamodels/mapping-rules/Curie.md", "datamodels/mapping-rules/Date.md", "datamodels/mapping-rules/DateOrDatetime.md", "datamodels/mapping-rules/Datetime.md", "datamodels/mapping-rules/Decimal.md", "datamodels/mapping-rules/Double.md", "datamodels/mapping-rules/Float.md", "datamodels/mapping-rules/Integer.md", "datamodels/mapping-rules/Jsonpath.md", "datamodels/mapping-rules/Jsonpointer.md", "datamodels/mapping-rules/LexicalGrouping.md", "datamodels/mapping-rules/LexicalIndex.md", "datamodels/mapping-rules/LexicalTransformation.md", "datamodels/mapping-rules/LexicalTransformationPipeline.md", "datamodels/mapping-rules/MappingRule.md", "datamodels/mapping-rules/MappingRuleCollection.md", "datamodels/mapping-rules/Ncname.md", "datamodels/mapping-rules/Nodeidentifier.md", "datamodels/mapping-rules/Objectidentifier.md", "datamodels/mapping-rules/Postcondition.md", "datamodels/mapping-rules/Precondition.md", "datamodels/mapping-rules/RelationshipToTerm.md", "datamodels/mapping-rules/Sparqlpath.md", "datamodels/mapping-rules/String.md", "datamodels/mapping-rules/Synonymizer.md", "datamodels/mapping-rules/Test.md", "datamodels/mapping-rules/Time.md", "datamodels/mapping-rules/TransformationType.md", "datamodels/mapping-rules/Uri.md", "datamodels/mapping-rules/Uriorcurie.md", "datamodels/mapping-rules/description.md", "datamodels/mapping-rules/element.md", "datamodels/mapping-rules/element_term.md", "datamodels/mapping-rules/groupings.md", "datamodels/mapping-rules/index.md", "datamodels/mapping-rules/input.md", "datamodels/mapping-rules/lexical-index.md", "datamodels/mapping-rules/lexican-index.md", "datamodels/mapping-rules/mapping-rules.md", "datamodels/mapping-rules/mapping-rules-datamodel.md", "datamodels/mapping-rules/mapping_source_one_of.md", "datamodels/mapping-rules/match.md", "datamodels/mapping-rules/match_scope.md", "datamodels/mapping-rules/minimum_confidence.md", "datamodels/mapping-rules/name.md", "datamodels/mapping-rules/object_match_field_one_of.md", "datamodels/mapping-rules/object_source_one_of.md", "datamodels/mapping-rules/oneway.md", "datamodels/mapping-rules/output.md", "datamodels/mapping-rules/params.md", "datamodels/mapping-rules/pipeline.md", "datamodels/mapping-rules/pipelines.md", "datamodels/mapping-rules/postconditions.md", "datamodels/mapping-rules/preconditions.md", "datamodels/mapping-rules/predicate.md", "datamodels/mapping-rules/predicate_id.md", "datamodels/mapping-rules/predicate_id_one_of.md", "datamodels/mapping-rules/prefix.md", "datamodels/mapping-rules/qualifier.md", "datamodels/mapping-rules/relationships.md", "datamodels/mapping-rules/replacement.md", "datamodels/mapping-rules/rules.md", "datamodels/mapping-rules/source.md", "datamodels/mapping-rules/subject_match_field_one_of.md", "datamodels/mapping-rules/subject_source_one_of.md", "datamodels/mapping-rules/synonymized.md", "datamodels/mapping-rules/synonymizer.md", "datamodels/mapping-rules/term.md", "datamodels/mapping-rules/tests.md", "datamodels/mapping-rules/the_rule.md", "datamodels/mapping-rules/transformations.md", "datamodels/mapping-rules/transformations_included_in.md", "datamodels/mapping-rules/type.md", "datamodels/mapping-rules/types.md", "datamodels/mapping-rules/weight.md", "datamodels/obograph/Axiom.md", "datamodels/obograph/BasicPropertyValue.md", "datamodels/obograph/Boolean.md", "datamodels/obograph/Curie.md", "datamodels/obograph/Date.md", "datamodels/obograph/DateOrDatetime.md", "datamodels/obograph/Datetime.md", "datamodels/obograph/Decimal.md", "datamodels/obograph/DefinitionPropertyValue.md", "datamodels/obograph/DisjointClassExpressionsAxiom.md", "datamodels/obograph/DomainRangeAxiom.md", "datamodels/obograph/Double.md", "datamodels/obograph/Edge.md", "datamodels/obograph/EquivalentNodesSet.md", "datamodels/obograph/ExistentialRestrictionExpression.md", "datamodels/obograph/Float.md", "datamodels/obograph/Graph.md", "datamodels/obograph/GraphDocument.md", "datamodels/obograph/Integer.md", "datamodels/obograph/Jsonpath.md", "datamodels/obograph/Jsonpointer.md", "datamodels/obograph/LogicalDefinitionAxiom.md", "datamodels/obograph/Meta.md", "datamodels/obograph/Ncname.md", "datamodels/obograph/Node.md", "datamodels/obograph/NodeTypeEnum.md", "datamodels/obograph/Nodeidentifier.md", "datamodels/obograph/Objectidentifier.md", "datamodels/obograph/OboIdentifierString.md", "datamodels/obograph/PredsEnum.md", "datamodels/obograph/PrefixDeclaration.md", "datamodels/obograph/PropertyChainAxiom.md", "datamodels/obograph/PropertyTypeEnum.md", "datamodels/obograph/PropertyValue.md", "datamodels/obograph/ScopeEnum.md", "datamodels/obograph/ScopesEnum.md", "datamodels/obograph/Sparqlpath.md", "datamodels/obograph/String.md", "datamodels/obograph/SubsetDefinition.md", "datamodels/obograph/SynonymPropertyValue.md", "datamodels/obograph/SynonymTypeDefinition.md", "datamodels/obograph/SynonymTypeIdentifierString.md", "datamodels/obograph/Time.md", "datamodels/obograph/Uri.md", "datamodels/obograph/Uriorcurie.md", "datamodels/obograph/XrefPropertyValue.md", "datamodels/obograph/XrefString.md", "datamodels/obograph/allValuesFromEdges.md", "datamodels/obograph/basicPropertyValues.md", "datamodels/obograph/chainPredicateIds.md", "datamodels/obograph/classExpressions.md", "datamodels/obograph/classIds.md", "datamodels/obograph/comments.md", "datamodels/obograph/definedClassId.md", "datamodels/obograph/definition.md", "datamodels/obograph/deprecated.md", "datamodels/obograph/disjointClassExpressionsAxioms.md", "datamodels/obograph/domainClassIds.md", "datamodels/obograph/domainRangeAxioms.md", "datamodels/obograph/edges.md", "datamodels/obograph/equivalentNodesSets.md", "datamodels/obograph/fillerId.md", "datamodels/obograph/genusIds.md", "datamodels/obograph/graphs.md", "datamodels/obograph/id.md", "datamodels/obograph/index.md", "datamodels/obograph/isExact.md", "datamodels/obograph/label.md", "datamodels/obograph/lang.md", "datamodels/obograph/lbl.md", "datamodels/obograph/logicalDefinitionAxioms.md", "datamodels/obograph/meta.md", "datamodels/obograph/namespace.md", "datamodels/obograph/nodeIds.md", "datamodels/obograph/nodes.md", "datamodels/obograph/obj.md", "datamodels/obograph/obographs_datamodel.md", "datamodels/obograph/obographs_linkml_model.md", "datamodels/obograph/pred.md", "datamodels/obograph/predicateId.md", "datamodels/obograph/prefix.md", "datamodels/obograph/prefixes.md", "datamodels/obograph/propertyChainAxioms.md", "datamodels/obograph/propertyId.md", "datamodels/obograph/propertyType.md", "datamodels/obograph/rangeClassIds.md", "datamodels/obograph/representativeNodeId.md", "datamodels/obograph/representitiveNodeId.md", "datamodels/obograph/restrictions.md", "datamodels/obograph/scope.md", "datamodels/obograph/sub.md", "datamodels/obograph/subsetDefinitions.md", "datamodels/obograph/subsets.md", "datamodels/obograph/synonymType.md", "datamodels/obograph/synonymTypeDefinitions.md", "datamodels/obograph/synonyms.md", "datamodels/obograph/type.md", "datamodels/obograph/types.md", "datamodels/obograph/unionEquivalentTo.md", "datamodels/obograph/unionEquivalentToExpression.md", "datamodels/obograph/val.md", "datamodels/obograph/valType.md", "datamodels/obograph/version.md", "datamodels/obograph/xrefs.md", "datamodels/ontology-metadata/Agent.md", "datamodels/ontology-metadata/AllotropePermittedProfile.md", "datamodels/ontology-metadata/AllotropeRequiredProfile.md", "datamodels/ontology-metadata/Annotation.md", "datamodels/ontology-metadata/AnnotationProperty.md", "datamodels/ontology-metadata/AnnotationPropertyMixin.md", "datamodels/ontology-metadata/Anonymous.md", "datamodels/ontology-metadata/AnonymousClassExpression.md", "datamodels/ontology-metadata/Any.md", "datamodels/ontology-metadata/Axiom.md", "datamodels/ontology-metadata/Boolean.md", "datamodels/ontology-metadata/CURIELiteral.md", "datamodels/ontology-metadata/Class.md", "datamodels/ontology-metadata/ClassExpression.md", "datamodels/ontology-metadata/Curie.md", "datamodels/ontology-metadata/Date.md", "datamodels/ontology-metadata/DateOrDatetime.md", "datamodels/ontology-metadata/Datetime.md", "datamodels/ontology-metadata/Decimal.md", "datamodels/ontology-metadata/DefinitionConstraintComponent.md", "datamodels/ontology-metadata/Double.md", "datamodels/ontology-metadata/Expression.md", "datamodels/ontology-metadata/Float.md", "datamodels/ontology-metadata/GoPermittedProfile.md", "datamodels/ontology-metadata/GoRecommendedProfile.md", "datamodels/ontology-metadata/GoRequiredProfile.md", "datamodels/ontology-metadata/HasCategory.md", "datamodels/ontology-metadata/HasLifeCycle.md", "datamodels/ontology-metadata/HasMappings.md", "datamodels/ontology-metadata/HasMinimalMetadata.md", "datamodels/ontology-metadata/HasProvenance.md", "datamodels/ontology-metadata/HasSynonyms.md", "datamodels/ontology-metadata/HasUserInformation.md", "datamodels/ontology-metadata/HomoSapiens.md", "datamodels/ontology-metadata/IEDB_alternative_term.md", "datamodels/ontology-metadata/ISA_alternative_term.md", "datamodels/ontology-metadata/Image.md", "datamodels/ontology-metadata/Integer.md", "datamodels/ontology-metadata/IriType.md", "datamodels/ontology-metadata/Jsonpath.md", "datamodels/ontology-metadata/Jsonpointer.md", "datamodels/ontology-metadata/LabelType.md", "datamodels/ontology-metadata/NCIT_definition_source.md", "datamodels/ontology-metadata/NCIT_term_source.md", "datamodels/ontology-metadata/NCIT_term_type.md", "datamodels/ontology-metadata/NamedIndividual.md", "datamodels/ontology-metadata/NamedObject.md", "datamodels/ontology-metadata/NarrativeText.md", "datamodels/ontology-metadata/Ncname.md", "datamodels/ontology-metadata/Nodeidentifier.md", "datamodels/ontology-metadata/NotObsoleteAspect.md", "datamodels/ontology-metadata/OBO_foundry_unique_label.md", "datamodels/ontology-metadata/ObiPermittedProfile.md", "datamodels/ontology-metadata/ObiRequiredProfile.md", "datamodels/ontology-metadata/ObjectProperty.md", "datamodels/ontology-metadata/Objectidentifier.md", "datamodels/ontology-metadata/ObsoleteAspect.md", "datamodels/ontology-metadata/Ontology.md", "datamodels/ontology-metadata/Ontology-Metadata.md", "datamodels/ontology-metadata/Property.md", "datamodels/ontology-metadata/PropertyExpression.md", "datamodels/ontology-metadata/Restriction.md", "datamodels/ontology-metadata/Sparqlpath.md", "datamodels/ontology-metadata/String.md", "datamodels/ontology-metadata/Subset.md", "datamodels/ontology-metadata/Term.md", "datamodels/ontology-metadata/Thing.md", "datamodels/ontology-metadata/TidyString.md", "datamodels/ontology-metadata/Time.md", "datamodels/ontology-metadata/TransitiveProperty.md", "datamodels/ontology-metadata/URLLiteral.md", "datamodels/ontology-metadata/Uri.md", "datamodels/ontology-metadata/Uriorcurie.md", "datamodels/ontology-metadata/allValuesFrom.md", "datamodels/ontology-metadata/alternative_term.md", "datamodels/ontology-metadata/annotatedProperty.md", "datamodels/ontology-metadata/annotatedSource.md", "datamodels/ontology-metadata/annotatedTarget.md", "datamodels/ontology-metadata/annotations.md", "datamodels/ontology-metadata/broadMatch.md", "datamodels/ontology-metadata/cardinality.md", "datamodels/ontology-metadata/category.md", "datamodels/ontology-metadata/changeNote.md", "datamodels/ontology-metadata/closeMatch.md", "datamodels/ontology-metadata/comment.md", "datamodels/ontology-metadata/complementOf.md", "datamodels/ontology-metadata/conformsTo.md", "datamodels/ontology-metadata/consider.md", "datamodels/ontology-metadata/contributor.md", "datamodels/ontology-metadata/core_property.md", "datamodels/ontology-metadata/created.md", "datamodels/ontology-metadata/created_by.md", "datamodels/ontology-metadata/creation_date.md", "datamodels/ontology-metadata/creator.md", "datamodels/ontology-metadata/curator_note.md", "datamodels/ontology-metadata/database_cross_reference.md", "datamodels/ontology-metadata/date.md", "datamodels/ontology-metadata/date_retrieved.md", "datamodels/ontology-metadata/defaultLanguage.md", "datamodels/ontology-metadata/definition.md", "datamodels/ontology-metadata/definition_source.md", "datamodels/ontology-metadata/depicted_by.md", "datamodels/ontology-metadata/deprecated.md", "datamodels/ontology-metadata/disconnected_from.md", "datamodels/ontology-metadata/disjointWith.md", "datamodels/ontology-metadata/distinctMembers.md", "datamodels/ontology-metadata/domain.md", "datamodels/ontology-metadata/editor_note.md", "datamodels/ontology-metadata/editor_preferred_term.md", "datamodels/ontology-metadata/equivalentClass.md", "datamodels/ontology-metadata/equivalentProperty.md", "datamodels/ontology-metadata/evidence.md", "datamodels/ontology-metadata/exactMatch.md", "datamodels/ontology-metadata/example_of_usage.md", "datamodels/ontology-metadata/excluded_axiom.md", "datamodels/ontology-metadata/excluded_from_QC_check.md", "datamodels/ontology-metadata/excluded_subClassOf.md", "datamodels/ontology-metadata/excluded_synonym.md", "datamodels/ontology-metadata/external_ontology.md", "datamodels/ontology-metadata/hasValue.md", "datamodels/ontology-metadata/has_alternative_id.md", "datamodels/ontology-metadata/has_axiom_label.md", "datamodels/ontology-metadata/has_broad_synonym.md", "datamodels/ontology-metadata/has_curation_status.md", "datamodels/ontology-metadata/has_exact_synonym.md", "datamodels/ontology-metadata/has_narrow_synonym.md", "datamodels/ontology-metadata/has_obo_namespace.md", "datamodels/ontology-metadata/has_obsolescence_reason.md", "datamodels/ontology-metadata/has_ontology_root_term.md", "datamodels/ontology-metadata/has_rank.md", "datamodels/ontology-metadata/has_related_synonym.md", "datamodels/ontology-metadata/has_synonym_type.md", "datamodels/ontology-metadata/id.md", "datamodels/ontology-metadata/image.md", "datamodels/ontology-metadata/imported_from.md", "datamodels/ontology-metadata/imports.md", "datamodels/ontology-metadata/in_subset.md", "datamodels/ontology-metadata/index.md", "datamodels/ontology-metadata/informative_property.md", "datamodels/ontology-metadata/intersectionOf.md", "datamodels/ontology-metadata/inverseOf.md", "datamodels/ontology-metadata/isDefinedBy.md", "datamodels/ontology-metadata/is_a_defining_property_chain_axiom.md", "datamodels/ontology-metadata/is_a_defining_property_chain_axiom_where_second_argument_is_reflexive.md", "datamodels/ontology-metadata/is_class_level.md", "datamodels/ontology-metadata/is_cyclic.md", "datamodels/ontology-metadata/is_inferred.md", "datamodels/ontology-metadata/is_metadata_tag.md", "datamodels/ontology-metadata/is_transitive.md", "datamodels/ontology-metadata/label.md", "datamodels/ontology-metadata/language.md", "datamodels/ontology-metadata/license.md", "datamodels/ontology-metadata/logical_predicate.md", "datamodels/ontology-metadata/match.md", "datamodels/ontology-metadata/match_aspect.md", "datamodels/ontology-metadata/maxQualifiedCardinality.md", "datamodels/ontology-metadata/members.md", "datamodels/ontology-metadata/minCardinality.md", "datamodels/ontology-metadata/minQualifiedCardinality.md", "datamodels/ontology-metadata/narrowMatch.md", "datamodels/ontology-metadata/never_in_taxon.md", "datamodels/ontology-metadata/notes.md", "datamodels/ontology-metadata/object.md", "datamodels/ontology-metadata/oboInOwl_id.md", "datamodels/ontology-metadata/oboInOwl_ontology.md", "datamodels/ontology-metadata/obsoletion_related_property.md", "datamodels/ontology-metadata/omo-schema.md", "datamodels/ontology-metadata/onClass.md", "datamodels/ontology-metadata/onProperty.md", "datamodels/ontology-metadata/oneOf.md", "datamodels/ontology-metadata/ontology_term_requester.md", "datamodels/ontology-metadata/page.md", "datamodels/ontology-metadata/predicate.md", "datamodels/ontology-metadata/propertyChainAxiom.md", "datamodels/ontology-metadata/provenance_property.md", "datamodels/ontology-metadata/qualifiedCardinality.md", "datamodels/ontology-metadata/range.md", "datamodels/ontology-metadata/reification_predicate.md", "datamodels/ontology-metadata/sameAs.md", "datamodels/ontology-metadata/seeAlso.md", "datamodels/ontology-metadata/shortcut_annotation_property.md", "datamodels/ontology-metadata/shorthand.md", "datamodels/ontology-metadata/should_conform_to.md", "datamodels/ontology-metadata/someValuesFrom.md", "datamodels/ontology-metadata/source.md", "datamodels/ontology-metadata/subClassOf.md", "datamodels/ontology-metadata/synonym.md", "datamodels/ontology-metadata/temporal_interpretation.md", "datamodels/ontology-metadata/term_editor.md", "datamodels/ontology-metadata/term_replaced_by.md", "datamodels/ontology-metadata/term_tracker_item.md", "datamodels/ontology-metadata/title.md", "datamodels/ontology-metadata/type.md", "datamodels/ontology-metadata/types.md", "datamodels/ontology-metadata/unionOf.md", "datamodels/ontology-metadata/url.md", "datamodels/ontology-metadata/versionIRI.md", "datamodels/ontology-metadata/versionInfo.md", "datamodels/ontology-metadata/version_property.md", "datamodels/search/Boolean.md", "datamodels/search/BooleanOperator.md", "datamodels/search/ComplexQuery.md", "datamodels/search/Curie.md", "datamodels/search/Date.md", "datamodels/search/DateOrDatetime.md", "datamodels/search/Datetime.md", "datamodels/search/Decimal.md", "datamodels/search/Double.md", "datamodels/search/Float.md", "datamodels/search/GraphFunction.md", "datamodels/search/Integer.md", "datamodels/search/Jsonpath.md", "datamodels/search/Jsonpointer.md", "datamodels/search/Ncname.md", "datamodels/search/Nodeidentifier.md", "datamodels/search/Objectidentifier.md", "datamodels/search/PathExpression.md", "datamodels/search/SearchBaseConfiguration.md", "datamodels/search/SearchProperty.md", "datamodels/search/SearchResult.md", "datamodels/search/SearchResultSet.md", "datamodels/search/SearchTerm.md", "datamodels/search/SearchTermSyntax.md", "datamodels/search/Sparqlpath.md", "datamodels/search/String.md", "datamodels/search/Time.md", "datamodels/search/Uri.md", "datamodels/search/Uriorcurie.md", "datamodels/search/all_of.md", "datamodels/search/any_of.md", "datamodels/search/atom.md", "datamodels/search/categories.md", "datamodels/search/configuration.md", "datamodels/search/cursor.md", "datamodels/search/force_case_insensitive.md", "datamodels/search/graph_predicates.md", "datamodels/search/include_aliases.md", "datamodels/search/include_definition.md", "datamodels/search/include_id.md", "datamodels/search/include_label.md", "datamodels/search/include_obsoletes_in_results.md", "datamodels/search/index.md", "datamodels/search/is_complete.md", "datamodels/search/is_fuzzy.md", "datamodels/search/is_partial.md", "datamodels/search/is_regular_expression.md", "datamodels/search/limit.md", "datamodels/search/matches_full_search_term.md", "datamodels/search/none_of.md", "datamodels/search/object_id.md", "datamodels/search/object_label.md", "datamodels/search/object_match_field.md", "datamodels/search/object_source.md", "datamodels/search/object_source_version.md", "datamodels/search/path_to.md", "datamodels/search/properties.md", "datamodels/search/rank.md", "datamodels/search/result_count.md", "datamodels/search/results.md", "datamodels/search/search-datamodel.md", "datamodels/search/search_term.md", "datamodels/search/search_terms.md", "datamodels/search/snippet.md", "datamodels/search/syntax.md", "datamodels/search/traversal.md", "datamodels/search/types.md", "datamodels/semsql/index.rst", "datamodels/similarity/BestMatch.md", "datamodels/similarity/Boolean.md", "datamodels/similarity/Curie.md", "datamodels/similarity/Date.md", "datamodels/similarity/DateOrDatetime.md", "datamodels/similarity/Datetime.md", "datamodels/similarity/Decimal.md", "datamodels/similarity/Double.md", "datamodels/similarity/Float.md", "datamodels/similarity/Integer.md", "datamodels/similarity/ItemCount.md", "datamodels/similarity/Jsonpath.md", "datamodels/similarity/Jsonpointer.md", "datamodels/similarity/Ncname.md", "datamodels/similarity/NegativeLogValue.md", "datamodels/similarity/Nodeidentifier.md", "datamodels/similarity/NonNegativeFloat.md", "datamodels/similarity/Objectidentifier.md", "datamodels/similarity/PairwiseSimilarity.md", "datamodels/similarity/Sparqlpath.md", "datamodels/similarity/String.md", "datamodels/similarity/TermInfo.md", "datamodels/similarity/TermPairwiseSimilarity.md", "datamodels/similarity/TermSetPairwiseSimilarity.md", "datamodels/similarity/Time.md", "datamodels/similarity/Uri.md", "datamodels/similarity/Uriorcurie.md", "datamodels/similarity/ZeroToOne.md", "datamodels/similarity/ancestor_id.md", "datamodels/similarity/ancestor_information_content.md", "datamodels/similarity/ancestor_label.md", "datamodels/similarity/ancestor_source.md", "datamodels/similarity/average_score.md", "datamodels/similarity/best_score.md", "datamodels/similarity/cosine_similarity.md", "datamodels/similarity/dice_similarity.md", "datamodels/similarity/id.md", "datamodels/similarity/index.md", "datamodels/similarity/information_content.md", "datamodels/similarity/intersection_count.md", "datamodels/similarity/jaccard_similarity.md", "datamodels/similarity/label.md", "datamodels/similarity/match_source.md", "datamodels/similarity/match_source_label.md", "datamodels/similarity/match_subsumer.md", "datamodels/similarity/match_subsumer_label.md", "datamodels/similarity/match_target.md", "datamodels/similarity/match_target_label.md", "datamodels/similarity/metric.md", "datamodels/similarity/object_best_matches.md", "datamodels/similarity/object_id.md", "datamodels/similarity/object_information_content.md", "datamodels/similarity/object_label.md", "datamodels/similarity/object_source.md", "datamodels/similarity/object_termset.md", "datamodels/similarity/overlap_coefficient.md", "datamodels/similarity/phenodigm_score.md", "datamodels/similarity/score.md", "datamodels/similarity/similarity.md", "datamodels/similarity/subject_best_matches.md", "datamodels/similarity/subject_id.md", "datamodels/similarity/subject_information_content.md", "datamodels/similarity/subject_label.md", "datamodels/similarity/subject_source.md", "datamodels/similarity/subject_termset.md", "datamodels/similarity/subsumed_by_score.md", "datamodels/similarity/subsumes_score.md", "datamodels/similarity/types.md", "datamodels/similarity/union_count.md", "datamodels/sssom/index.rst", "datamodels/summary-statistics/Agent.md", "datamodels/summary-statistics/Boolean.md", "datamodels/summary-statistics/ChangeTypeStatistic.md", "datamodels/summary-statistics/ContributorRole.md", "datamodels/summary-statistics/ContributorStatistics.md", "datamodels/summary-statistics/Curie.md", "datamodels/summary-statistics/Date.md", "datamodels/summary-statistics/DateOrDatetime.md", "datamodels/summary-statistics/Datetime.md", "datamodels/summary-statistics/Decimal.md", "datamodels/summary-statistics/Double.md", "datamodels/summary-statistics/FacetStatistics.md", "datamodels/summary-statistics/FacetedCount.md", "datamodels/summary-statistics/Float.md", "datamodels/summary-statistics/GlobalStatistics.md", "datamodels/summary-statistics/GroupedStatistics.md", "datamodels/summary-statistics/Integer.md", "datamodels/summary-statistics/Jsonpath.md", "datamodels/summary-statistics/Jsonpointer.md", "datamodels/summary-statistics/Ncname.md", "datamodels/summary-statistics/Nodeidentifier.md", "datamodels/summary-statistics/Objectidentifier.md", "datamodels/summary-statistics/Ontology.md", "datamodels/summary-statistics/Sparqlpath.md", "datamodels/summary-statistics/String.md", "datamodels/summary-statistics/SummaryStatisticCollection.md", "datamodels/summary-statistics/SummaryStatisticsCalculationActivity.md", "datamodels/summary-statistics/SummaryStatisticsReport.md", "datamodels/summary-statistics/Time.md", "datamodels/summary-statistics/UngroupedStatistics.md", "datamodels/summary-statistics/Uri.md", "datamodels/summary-statistics/Uriorcurie.md", "datamodels/summary-statistics/acted_on_behalf_of.md", "datamodels/summary-statistics/agents.md", "datamodels/summary-statistics/annotation_property_count.md", "datamodels/summary-statistics/anonymous_class_expression_count.md", "datamodels/summary-statistics/anonymous_individual_count.md", "datamodels/summary-statistics/by_category.md", "datamodels/summary-statistics/by_ontology.md", "datamodels/summary-statistics/by_subset.md", "datamodels/summary-statistics/by_taxon.md", "datamodels/summary-statistics/change_summary.md", "datamodels/summary-statistics/class_count.md", "datamodels/summary-statistics/class_count_by_category.md", "datamodels/summary-statistics/class_count_by_subset.md", "datamodels/summary-statistics/class_count_excluding_deprecated.md", "datamodels/summary-statistics/class_count_with_definitions.md", "datamodels/summary-statistics/class_count_with_text_definitions.md", "datamodels/summary-statistics/class_count_without_text_definitions.md", "datamodels/summary-statistics/class_statistic_group.md", "datamodels/summary-statistics/compared_with.md", "datamodels/summary-statistics/contributor_id.md", "datamodels/summary-statistics/contributor_name.md", "datamodels/summary-statistics/contributor_summary.md", "datamodels/summary-statistics/count_statistic.md", "datamodels/summary-statistics/datatype_property_count.md", "datamodels/summary-statistics/deprecated_class_count.md", "datamodels/summary-statistics/deprecated_object_property_count.md", "datamodels/summary-statistics/description.md", "datamodels/summary-statistics/description_logic_profile.md", "datamodels/summary-statistics/distinct_synonym_count.md", "datamodels/summary-statistics/edge_count_by_predicate.md", "datamodels/summary-statistics/ended_at_time.md", "datamodels/summary-statistics/entailed_edge_count_by_predicate.md", "datamodels/summary-statistics/equivalent_classes_axiom_count.md", "datamodels/summary-statistics/equivalentclasses_axiom_count.md", "datamodels/summary-statistics/facet.md", "datamodels/summary-statistics/filtered_count.md", "datamodels/summary-statistics/id.md", "datamodels/summary-statistics/index.md", "datamodels/summary-statistics/individual_count.md", "datamodels/summary-statistics/individual_statistic_group.md", "datamodels/summary-statistics/label.md", "datamodels/summary-statistics/mapping_count.md", "datamodels/summary-statistics/mapping_statement_count_by_object_source.md", "datamodels/summary-statistics/mapping_statement_count_by_predicate.md", "datamodels/summary-statistics/mapping_statement_count_subject_by_object_source.md", "datamodels/summary-statistics/merged_class_count.md", "datamodels/summary-statistics/metadata_statistic_group.md", "datamodels/summary-statistics/named_individual_count.md", "datamodels/summary-statistics/non_deprecated_class_count.md", "datamodels/summary-statistics/non_deprecated_object_property_count.md", "datamodels/summary-statistics/normalization_comments.md", "datamodels/summary-statistics/object_property_count.md", "datamodels/summary-statistics/ontologies.md", "datamodels/summary-statistics/ontology_count.md", "datamodels/summary-statistics/owl_axiom_count.md", "datamodels/summary-statistics/owl_statistic_group.md", "datamodels/summary-statistics/partitions.md", "datamodels/summary-statistics/prefix.md", "datamodels/summary-statistics/property_count.md", "datamodels/summary-statistics/property_statistic_group.md", "datamodels/summary-statistics/rdf_triple_count.md", "datamodels/summary-statistics/role_counts.md", "datamodels/summary-statistics/started_at_time.md", "datamodels/summary-statistics/subclass_of_axiom_count.md", "datamodels/summary-statistics/subset_count.md", "datamodels/summary-statistics/summary-statistics.md", "datamodels/summary-statistics/synonym_statement_count.md", "datamodels/summary-statistics/synonym_statement_count_by_predicate.md", "datamodels/summary-statistics/title.md", "datamodels/summary-statistics/types.md", "datamodels/summary-statistics/unsatisfiable_class_count.md", "datamodels/summary-statistics/untyped_entity_count.md", "datamodels/summary-statistics/version.md", "datamodels/summary-statistics/version_info.md", "datamodels/summary-statistics/was_associated_with.md", "datamodels/summary-statistics/was_generated_by.md", "datamodels/taxon-constraints/Boolean.md", "datamodels/taxon-constraints/ConfigurationOption.md", "datamodels/taxon-constraints/Curie.md", "datamodels/taxon-constraints/Date.md", "datamodels/taxon-constraints/DateOrDatetime.md", "datamodels/taxon-constraints/Datetime.md", "datamodels/taxon-constraints/Decimal.md", "datamodels/taxon-constraints/Double.md", "datamodels/taxon-constraints/Float.md", "datamodels/taxon-constraints/Integer.md", "datamodels/taxon-constraints/Jsonpath.md", "datamodels/taxon-constraints/Jsonpointer.md", "datamodels/taxon-constraints/Ncname.md", "datamodels/taxon-constraints/Nodeidentifier.md", "datamodels/taxon-constraints/Objectidentifier.md", "datamodels/taxon-constraints/PredicateTerm.md", "datamodels/taxon-constraints/Sparqlpath.md", "datamodels/taxon-constraints/String.md", "datamodels/taxon-constraints/SubjectTerm.md", "datamodels/taxon-constraints/Taxon.md", "datamodels/taxon-constraints/TaxonConstraint.md", "datamodels/taxon-constraints/Term.md", "datamodels/taxon-constraints/Time.md", "datamodels/taxon-constraints/Uri.md", "datamodels/taxon-constraints/Uriorcurie.md", "datamodels/taxon-constraints/asserted.md", "datamodels/taxon-constraints/candidate.md", "datamodels/taxon-constraints/comments.md", "datamodels/taxon-constraints/contradicted_by.md", "datamodels/taxon-constraints/description.md", "datamodels/taxon-constraints/evolutionary.md", "datamodels/taxon-constraints/id.md", "datamodels/taxon-constraints/index.md", "datamodels/taxon-constraints/label.md", "datamodels/taxon-constraints/never_in.md", "datamodels/taxon-constraints/only_in.md", "datamodels/taxon-constraints/predicate.md", "datamodels/taxon-constraints/predicates.md", "datamodels/taxon-constraints/present_in.md", "datamodels/taxon-constraints/present_in_ancestor_of.md", "datamodels/taxon-constraints/redundant.md", "datamodels/taxon-constraints/redundant_with.md", "datamodels/taxon-constraints/redundant_with_only_in.md", "datamodels/taxon-constraints/sources.md", "datamodels/taxon-constraints/subject.md", "datamodels/taxon-constraints/taxon.md", "datamodels/taxon-constraints/taxon-constraints.md", "datamodels/taxon-constraints/unsatisfiable.md", "datamodels/taxon-constraints/via_terms.md", "datamodels/text-annotator/Boolean.md", "datamodels/text-annotator/Curie.md", "datamodels/text-annotator/Date.md", "datamodels/text-annotator/DateOrDatetime.md", "datamodels/text-annotator/Datetime.md", "datamodels/text-annotator/Decimal.md", "datamodels/text-annotator/Double.md", "datamodels/text-annotator/Float.md", "datamodels/text-annotator/HasSpan.md", "datamodels/text-annotator/Integer.md", "datamodels/text-annotator/Jsonpath.md", "datamodels/text-annotator/Jsonpointer.md", "datamodels/text-annotator/Ncname.md", "datamodels/text-annotator/Nodeidentifier.md", "datamodels/text-annotator/Objectidentifier.md", "datamodels/text-annotator/Position.md", "datamodels/text-annotator/Sparqlpath.md", "datamodels/text-annotator/String.md", "datamodels/text-annotator/TextAnnotation.md", "datamodels/text-annotator/TextAnnotationConfiguration.md", "datamodels/text-annotator/TextAnnotationResultSet.md", "datamodels/text-annotator/TextualElement.md", "datamodels/text-annotator/Time.md", "datamodels/text-annotator/TransformationType.md", "datamodels/text-annotator/Uri.md", "datamodels/text-annotator/Uriorcurie.md", "datamodels/text-annotator/annotations.md", "datamodels/text-annotator/categories.md", "datamodels/text-annotator/confidence.md", "datamodels/text-annotator/id.md", "datamodels/text-annotator/include_aliases.md", "datamodels/text-annotator/index.md", "datamodels/text-annotator/info.md", "datamodels/text-annotator/is_longest_match.md", "datamodels/text-annotator/limit.md", "datamodels/text-annotator/match_string.md", "datamodels/text-annotator/match_type.md", "datamodels/text-annotator/matches_whole_text.md", "datamodels/text-annotator/model.md", "datamodels/text-annotator/object_aliases.md", "datamodels/text-annotator/object_categories.md", "datamodels/text-annotator/object_id.md", "datamodels/text-annotator/object_label.md", "datamodels/text-annotator/object_source.md", "datamodels/text-annotator/parent_document.md", "datamodels/text-annotator/predicate_id.md", "datamodels/text-annotator/source_text.md", "datamodels/text-annotator/sources.md", "datamodels/text-annotator/subject_end.md", "datamodels/text-annotator/subject_label.md", "datamodels/text-annotator/subject_source.md", "datamodels/text-annotator/subject_start.md", "datamodels/text-annotator/subject_text_id.md", "datamodels/text-annotator/text.md", "datamodels/text-annotator/text-annotator.md", "datamodels/text-annotator/token_exclusion_list.md", "datamodels/text-annotator/types.md", "datamodels/validation/Boolean.md", "datamodels/validation/ConstraintComponent.md", "datamodels/validation/Curie.md", "datamodels/validation/Date.md", "datamodels/validation/DateOrDatetime.md", "datamodels/validation/Datetime.md", "datamodels/validation/Decimal.md", "datamodels/validation/Double.md", "datamodels/validation/ExternalReferenceValidationResult.md", "datamodels/validation/Float.md", "datamodels/validation/Integer.md", "datamodels/validation/Jsonpath.md", "datamodels/validation/Jsonpointer.md", "datamodels/validation/MappingValidationResult.md", "datamodels/validation/NamedResource.md", "datamodels/validation/Ncname.md", "datamodels/validation/Node.md", "datamodels/validation/Nodeidentifier.md", "datamodels/validation/Objectidentifier.md", "datamodels/validation/RepairConfiguration.md", "datamodels/validation/RepairOperation.md", "datamodels/validation/RepairReport.md", "datamodels/validation/Report.md", "datamodels/validation/Result.md", "datamodels/validation/SeverityOptions.md", "datamodels/validation/Sparqlpath.md", "datamodels/validation/String.md", "datamodels/validation/Time.md", "datamodels/validation/TypeSeverityKeyValue.md", "datamodels/validation/Uri.md", "datamodels/validation/Uriorcurie.md", "datamodels/validation/ValidationConfiguration.md", "datamodels/validation/ValidationReport.md", "datamodels/validation/ValidationResult.md", "datamodels/validation/ValidationResultType.md", "datamodels/validation/category.md", "datamodels/validation/confidence.md", "datamodels/validation/dry_run.md", "datamodels/validation/http_response_code.md", "datamodels/validation/id.md", "datamodels/validation/index.md", "datamodels/validation/info.md", "datamodels/validation/instantiates.md", "datamodels/validation/max_number_results_per_type.md", "datamodels/validation/modified.md", "datamodels/validation/number_of_attempts.md", "datamodels/validation/object.md", "datamodels/validation/object_id.md", "datamodels/validation/object_info.md", "datamodels/validation/object_str.md", "datamodels/validation/predicate.md", "datamodels/validation/predicate_id.md", "datamodels/validation/problem.md", "datamodels/validation/prompt_info.md", "datamodels/validation/repairs.md", "datamodels/validation/results.md", "datamodels/validation/schema_path.md", "datamodels/validation/severity.md", "datamodels/validation/source.md", "datamodels/validation/subject.md", "datamodels/validation/subject_id.md", "datamodels/validation/subject_info.md", "datamodels/validation/successful.md", "datamodels/validation/suggested_modifications.md", "datamodels/validation/suggested_predicate.md", "datamodels/validation/time_checked.md", "datamodels/validation/type.md", "datamodels/validation/type_severity_map.md", "datamodels/validation/types.md", "datamodels/validation/url.md", "datamodels/validation/validation_configuration.md", "datamodels/validation/validaton-results.md", "faq/architecture.rst", "faq/commandline.rst", "faq/contributing.rst", "faq/general.rst", "faq/index.rst", "faq/ontologies.rst", "faq/troubleshooting.rst", "glossary.rst", "guide/aliases.rst", "guide/associations.rst", "guide/basics.rst", "guide/curies-and-uris.rst", "guide/index.rst", "guide/learning-more.rst", "guide/logical-definitions.rst", "guide/mappings.rst", "guide/obsoletion.rst", "guide/primary-labels.rst", "guide/relationships-and-graphs.rst", "guide/similarity.rst", "howtos/fhir-conversions.rst", "howtos/index.rst", "howtos/perform-lexical-matching.rst", "howtos/roll-up-annotations-to-a-subset.rst", "howtos/use-llms.rst", "howtos/validate-an-obo-ontology.md", "howtos/visualize-ontology-subgraphs.rst", "howtos/write-a-plugin.rst", "index.rst", "intro/index.rst", "intro/tutorial01.rst", "intro/tutorial02.rst", "intro/tutorial03.rst", "intro/tutorial04.rst", "intro/tutorial05.rst", "intro/tutorial06.rst", "intro/tutorial07.rst", "intro/tutorial08.rst", "introduction.rst", "logos/README.md", "notebooks.rst", "packages/architecture.rst", "packages/best-practice.rst", "packages/converters/data-model-converter.rst", "packages/converters/index.rst", "packages/converters/obo-graph-to-cx.rst", "packages/converters/obo-graph-to-fhir.rst", "packages/converters/obo-graph-to-obo-format.rst", "packages/converters/obo-graph-to-owl.rst", "packages/implementations/aggregator.rst", "packages/implementations/bioportal.rst", "packages/implementations/funowl.rst", "packages/implementations/gilda.rst", "packages/implementations/index.rst", "packages/implementations/llm.rst", "packages/implementations/obograph.rst", "packages/implementations/ols.rst", "packages/implementations/ontobee.rst", "packages/implementations/owlery.rst", "packages/implementations/pantherdb.rst", "packages/implementations/pronto.rst", "packages/implementations/simple_obo.rst", "packages/implementations/sparql.rst", "packages/implementations/sqldb.rst", "packages/implementations/ubergraph.rst", "packages/index.rst", "packages/interfaces/association-provider.rst", "packages/interfaces/basic.rst", "packages/interfaces/class-enrichment.rst", "packages/interfaces/differ.rst", "packages/interfaces/dumper.rst", "packages/interfaces/index.rst", "packages/interfaces/mapping-provider.rst", "packages/interfaces/obograph.rst", "packages/interfaces/owl.rst", "packages/interfaces/patcher.rst", "packages/interfaces/relation-graph.rst", "packages/interfaces/search.rst", "packages/interfaces/semantic-similarity.rst", "packages/interfaces/subsetting.rst", "packages/interfaces/summary-statistics.rst", "packages/interfaces/text-annotator.rst", "packages/interfaces/validator.rst", "packages/selectors.rst", "packages/src/oaklib.utilities.apikey_manager.rst", "packages/src/oaklib.utilities.graph.networkx_bridge.rst", "packages/src/oaklib.utilities.graph.relationship_walker.rst", "packages/src/oaklib.utilities.lexical.lexical_indexer.rst", "packages/src/oaklib.utilities.obograph_utils.rst", "packages/src/oaklib.utilities.subsets.slimmer_utils.rst", "packages/src/oaklib.utilities.table_filler.rst", "packages/src/oaklib.utilities.taxon.rst", "packages/utilities.rst", "rdf-owl-layering.rst", "search-syntax.rst"], "titles": ["Command Line", "Ontology Concepts", "Contribution Guidelines", "Class: Association", "Class: AssociationChange", "Type: Boolean", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Type: Float", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Type: Ncname", "Class: NegatedAssociation", "Type: Nodeidentifier", "Type: Objectidentifier", "Class: PairwiseCoAssociation", "Class: ParserConfiguration", "Class: PositiveOrNegativeAssociation", "Class: PropertyValue", "Class: RollupGroup", "Type: Sparqlpath", "Type: String", "Type: Time", "Type: Uri", "Type: Uriorcurie", "Slot: aggregator_knowledge_source", "association", "Slot: associations", "Slot: associations_for_subjects_in_common", "Slot: closure_delta", "Slot: closure_information_content_delta", "Slot: closure_predicates", "Slot: comments", "Slot: core_triple", "Slot: creation_date", "Slot: date", "Slot: denormalized_slot", "Slot: diff_slot", "Slot: evidence_type", "Slot: group_object", "Slot: include_association_attributes", "OAK Association Data Model", "Slot: is_creation", "Slot: is_deletion", "Slot: is_generalization", "Slot: is_migration", "Slot: is_specialization", "Slot: modification_date", "Slot: negated", "Slot: new_date", "Slot: new_object", "Slot: new_predicate", "Slot: number_subject_unique_to_entity1", "Slot: number_subject_unique_to_entity2", "Slot: number_subjects_in_common", "Slot: object", "Slot: object1", "Slot: object1_label", "Slot: object2", "Slot: object2_label", "Slot: object_closure", "Slot: object_closure_label", "Slot: object_label", "Slot: old_date", "Slot: old_object", "Slot: old_object_obsolete", "Slot: old_predicate", "Slot: original_object", "Slot: original_predicate", "Slot: original_subject", "Slot: predicate", "Slot: predicate_label", "Slot: preserve_negated_associations", "Slot: primary_knowledge_source", "Slot: property_values", "Slot: publication_is_added", "Slot: publication_is_deleted", "Slot: publications", "Slot: sub_groups", "Slot: subject", "Slot: subject_closure", "Slot: subject_closure_label", "Slot: subject_label", "Slot: subjects_in_common", "Slot: summary_group", "Slot: supporting_objects", "Type: Boolean", "Class: ClassEnrichmentConfiguration", "Class: ClassEnrichmentResult", "Class: ClassEnrichmentResultSet", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Type: Float", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Type: Ncname", "Type: Nodeidentifier", "Type: Objectidentifier", "Type: Position", "Enum: SortFieldEnum", "Type: Sparqlpath", "Type: String", "Type: Time", "Type: Uri", "Type: Uriorcurie", "Slot: ancestor_of_more_informative_result", "Slot: background_count", "Slot: background_total", "class-enrichment", "Slot: class_id", "Slot: class_label", "Slot: descendant_of_more_informative_result", "Slot: direction", "Slot: false_discovery_rate", "Slot: fold_enrichment", "Class Enrichment Datamodel", "Slot: p_value", "Slot: p_value_adjusted", "Slot: p_value_cutoff", "Slot: probability", "Slot: rank", "Slot: results", "Slot: sample_count", "Slot: sample_total", "Type: Boolean", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Enum: DiffCategory", "Type: Double", "Type: EntityReference", "Type: Float", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Type: Label", "Enum: MappingCardinalityEnum", "Type: Ncname", "Type: Nodeidentifier", "Type: Objectidentifier", "Position", "Class: RelationalDiff", "Type: Source", "Type: Sparqlpath", "Type: String", "Class: StructureDiffResultSet", "Type: Time", "Type: Uri", "Type: Uriorcurie", "Slot: category", "cross-ontology-diff", "Cross-Ontology Diff", "Slot: is_functional", "Slot: label", "Slot: left_object_id", "Slot: left_object_is_functional", "Slot: left_object_label", "Slot: left_object_name", "Slot: left_predicate_id", "Slot: left_predicate_label", "Slot: left_predicate_name", "Slot: left_side", "Slot: left_source", "Slot: left_subject_id", "Slot: left_subject_is_functional", "Slot: left_subject_label", "Slot: left_subject_name", "Slot: object", "Slot: object_mapping_cardinality", "Slot: object_mapping_predicate", "Slot: predicate", "Slot: results", "Slot: right_intermediate_ids", "Slot: right_object_id", "Slot: right_object_label", "Slot: right_object_name", "Slot: right_predicate_ids", "Slot: right_predicate_labels", "Slot: right_predicate_names", "Slot: right_side", "Slot: right_source", "Slot: right_subject_id", "Slot: right_subject_label", "Slot: right_subject_name", "Slot: side", "Slot: subject", "Slot: subject_mapping_cardinality", "Slot: subject_mapping_predicate", "types", "FunOwl", "Datamodels", "Type: Boolean", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Type: Float", "Type: Integer", "Class: ItemList", "Class: ItemListCollection", "Enum: ItemListOrderType", "Type: Jsonpath", "Type: Jsonpointer", "Class: ListItem", "Type: Ncname", "Type: Nodeidentifier", "Type: Objectidentifier", "Type: Sparqlpath", "Type: String", "Class: Thing", "Type: Time", "Type: Uri", "Type: Uriorcurie", "Slot: additionalType", "Slot: categories", "Slot: description", "Slot: elementId", "Slot: id", "Slot: idType", "Slot: identifiers", "Item List Data Model", "Slot: item", "itemList", "Slot: itemListElements", "Slot: itemLists", "Slot: itemMetadataMap", "Slot: keywords", "Slot: name", "Slot: numberOfItems", "Slot: position", "Slot: previousItem", "Slot: type", "Slot: url", "Slot: wasGeneratedBy", "KGCL", "Class: Activity", "Class: Any", "Type: Boolean", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Type: Float", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Class: LexicalGrouping", "Class: LexicalIndex", "Class: LexicalTransformation", "Class: LexicalTransformationPipeline", "Type: Ncname", "Type: Nodeidentifier", "Type: Objectidentifier", "Class: RelationshipToTerm", "Type: Sparqlpath", "Type: String", "Type: Time", "Enum: TransformationType", "Type: Uri", "Type: Uriorcurie", "Slot: element", "Slot: element_term", "Slot: groupings", "Lexical Index", "lexical-index", "lexican-index", "Slot: name", "Slot: params", "Slot: pipeline", "Slot: pipelines", "Slot: predicate", "Slot: relationships", "Slot: source", "Slot: synonymized", "Slot: term", "Slot: transformations", "Slot: type", "types", "Class: Activity", "Class: Any", "Type: Boolean", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Type: Float", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Class: LexicalGrouping", "Class: LexicalIndex", "Class: LexicalTransformation", "Class: LexicalTransformationPipeline", "Class: MappingRule", "Class: MappingRuleCollection", "Type: Ncname", "Type: Nodeidentifier", "Type: Objectidentifier", "Class: Postcondition", "Class: Precondition", "Class: RelationshipToTerm", "Type: Sparqlpath", "Type: String", "Class: Synonymizer", "Class: Test", "Type: Time", "Enum: TransformationType", "Type: Uri", "Type: Uriorcurie", "Slot: description", "Slot: element", "Slot: element_term", "Slot: groupings", "Mapping Rules Datamodel", "Slot: input", "lexical-index", "lexican-index", "mapping-rules", "mapping-rules-datamodel", "Slot: mapping_source_one_of", "Slot: match", "Slot: match_scope", "Slot: minimum_confidence", "Slot: name", "Slot: object_match_field_one_of", "Slot: object_source_one_of", "Slot: oneway", "Slot: output", "Slot: params", "Slot: pipeline", "Slot: pipelines", "Slot: postconditions", "Slot: preconditions", "Slot: predicate", "Slot: predicate_id", "Slot: predicate_id_one_of", "Slot: prefix", "Slot: qualifier", "Slot: relationships", "Slot: replacement", "Slot: rules", "Slot: source", "Slot: subject_match_field_one_of", "Slot: subject_source_one_of", "Slot: synonymized", "Slot: synonymizer", "Slot: term", "Slot: tests", "Slot: the_rule", "Slot: transformations", "Slot: transformations_included_in", "Slot: type", "types", "Slot: weight", "Class: Axiom", "Class: BasicPropertyValue", "Type: Boolean", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Class: DefinitionPropertyValue", "Class: DisjointClassExpressionsAxiom", "Class: DomainRangeAxiom", "Type: Double", "Class: Edge", "Class: EquivalentNodesSet", "Class: ExistentialRestrictionExpression", "Type: Float", "Class: Graph", "Class: GraphDocument", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Class: LogicalDefinitionAxiom", "Class: Meta", "Type: Ncname", "Class: Node", "Enum: NodeTypeEnum", "Type: Nodeidentifier", "Type: Objectidentifier", "Type: OboIdentifierString", "PredsEnum", "Class: PrefixDeclaration", "Class: PropertyChainAxiom", "Enum: PropertyTypeEnum", "Class: PropertyValue", "Enum: ScopeEnum", "ScopesEnum", "Type: Sparqlpath", "Type: String", "Class: SubsetDefinition", "Class: SynonymPropertyValue", "Class: SynonymTypeDefinition", "Type: SynonymTypeIdentifierString", "Type: Time", "Type: Uri", "Type: Uriorcurie", "Class: XrefPropertyValue", "Type: XrefString", "Slot: allValuesFromEdges", "Slot: basicPropertyValues", "Slot: chainPredicateIds", "Slot: classExpressions", "Slot: classIds", "Slot: comments", "Slot: definedClassId", "Slot: definition", "Slot: deprecated", "Slot: disjointClassExpressionsAxioms", "Slot: domainClassIds", "Slot: domainRangeAxioms", "Slot: edges", "Slot: equivalentNodesSets", "Slot: fillerId", "Slot: genusIds", "Slot: graphs", "Slot: id", "Obographs Datamodel", "Slot: isExact", "Slot: label", "Slot: lang", "Slot: lbl", "Slot: logicalDefinitionAxioms", "Slot: meta", "Slot: namespace", "Slot: nodeIds", "Slot: nodes", "Slot: obj", "obographs_datamodel", "obographs_linkml_model", "Slot: pred", "Slot: predicateId", "Slot: prefix", "Slot: prefixes", "Slot: propertyChainAxioms", "Slot: propertyId", "Slot: propertyType", "Slot: rangeClassIds", "Slot: representativeNodeId", "Slot: representitiveNodeId", "Slot: restrictions", "Slot: scope", "Slot: sub", "Slot: subsetDefinitions", "Slot: subsets", "Slot: synonymType", "Slot: synonymTypeDefinitions", "Slot: synonyms", "Slot: type", "types", "Slot: unionEquivalentTo", "Slot: unionEquivalentToExpression", "Slot: val", "Slot: valType", "Slot: version", "Slot: xrefs", "Class: Agent", "Subset: AllotropePermittedProfile", "Subset: AllotropeRequiredProfile", "Class: Annotation", "Class: AnnotationProperty", "Class: AnnotationPropertyMixin", "Class: Anonymous", "Class: AnonymousClassExpression", "Class: Any", "Class: Axiom", "Type: Boolean", "Type: CURIELiteral", "Class: Class", "Class: ClassExpression", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Enum: DefinitionConstraintComponent", "Type: Double", "Class: Expression", "Type: Float", "Subset: GoPermittedProfile", "Subset: GoRecommendedProfile", "Subset: GoRequiredProfile", "Class: HasCategory", "Class: HasLifeCycle", "Class: HasMappings", "Class: HasMinimalMetadata", "Class: HasProvenance", "Class: HasSynonyms", "Class: HasUserInformation", "Class: HomoSapiens", "Slot: IEDB_alternative_term", "Slot: ISA_alternative_term", "Class: Image", "Type: Integer", "Type: IriType", "Type: Jsonpath", "Type: Jsonpointer", "Type: LabelType", "Slot: NCIT_definition_source", "Slot: NCIT_term_source", "Slot: NCIT_term_type", "Class: NamedIndividual", "Class: NamedObject", "Type: NarrativeText", "Type: Ncname", "Type: Nodeidentifier", "Class: NotObsoleteAspect", "Slot: OBO_foundry_unique_label", "Subset: ObiPermittedProfile", "Subset: ObiRequiredProfile", "Class: ObjectProperty", "Type: Objectidentifier", "Class: ObsoleteAspect", "Class: Ontology", "Ontology-Metadata", "Class: Property", "Class: PropertyExpression", "Class: Restriction", "Type: Sparqlpath", "Type: String", "Class: Subset", "Class: Term", "Class: Thing", "Type: TidyString", "Type: Time", "Class: TransitiveProperty", "Type: URLLiteral", "Type: Uri", "Type: Uriorcurie", "Slot: allValuesFrom", "Slot: alternative_term", "Slot: annotatedProperty", "Slot: annotatedSource", "Slot: annotatedTarget", "Slot: annotations", "Slot: broadMatch", "Slot: cardinality", "Slot: category", "Slot: changeNote", "Slot: closeMatch", "Slot: comment", "Slot: complementOf", "Slot: conformsTo", "Slot: consider", "Slot: contributor", "Slot: core_property", "Slot: created", "Slot: created_by", "Slot: creation_date", "Slot: creator", "Slot: curator_note", "Slot: database_cross_reference", "Slot: date", "Slot: date_retrieved", "Slot: defaultLanguage", "Slot: definition", "Slot: definition_source", "Slot: depicted_by", "Slot: deprecated", "Slot: disconnected_from", "Slot: disjointWith", "Slot: distinctMembers", "Slot: domain", "Slot: editor_note", "Slot: editor_preferred_term", "Slot: equivalentClass", "Slot: equivalentProperty", "Slot: evidence", "Slot: exactMatch", "Slot: example_of_usage", "Slot: excluded_axiom", "Slot: excluded_from_QC_check", "Slot: excluded_subClassOf", "Slot: excluded_synonym", "Slot: external_ontology", "Slot: hasValue", "Slot: has_alternative_id", "Slot: has_axiom_label", "Slot: has_broad_synonym", "Slot: has_curation_status", "Slot: has_exact_synonym", "Slot: has_narrow_synonym", "Slot: has_obo_namespace", "Slot: has_obsolescence_reason", "Slot: has_ontology_root_term", "Slot: has_rank", "Slot: has_related_synonym", "Slot: has_synonym_type", "Slot: id", "Slot: image", "Slot: imported_from", "Slot: imports", "Slot: in_subset", "Ontology Metadata Ontology Schema", "Slot: informative_property", "Slot: intersectionOf", "Slot: inverseOf", "Slot: isDefinedBy", "Slot: is_a_defining_property_chain_axiom", "Slot: is_a_defining_property_chain_axiom_where_second_argument_is_reflexive", "Slot: is_class_level", "Slot: is_cyclic", "Slot: is_inferred", "Slot: is_metadata_tag", "Slot: is_transitive", "Slot: label", "Slot: language", "Slot: license", "Slot: logical_predicate", "Slot: match", "Slot: match_aspect", "Slot: maxQualifiedCardinality", "Slot: members", "Slot: minCardinality", "Slot: minQualifiedCardinality", "Slot: narrowMatch", "Slot: never_in_taxon", "Slot: notes", "Slot: object", "Slot: oboInOwl_id", "Slot: oboInOwl_ontology", "Slot: obsoletion_related_property", "omo-schema", "Slot: onClass", "Slot: onProperty", "Slot: oneOf", "Slot: ontology_term_requester", "Slot: page", "Slot: predicate", "Slot: propertyChainAxiom", "Slot: provenance_property", "Slot: qualifiedCardinality", "Slot: range", "Slot: reification_predicate", "Slot: sameAs", "Slot: seeAlso", "Slot: shortcut_annotation_property", "Slot: shorthand", "Slot: should_conform_to", "Slot: someValuesFrom", "Slot: source", "Slot: subClassOf", "Slot: synonym", "Slot: temporal_interpretation", "Slot: term_editor", "Slot: term_replaced_by", "Slot: term_tracker_item", "Slot: title", "Slot: type", "types", "Slot: unionOf", "Slot: url", "Slot: versionIRI", "Slot: versionInfo", "Slot: version_property", "Type: Boolean", "Enum: BooleanOperator", "Class: ComplexQuery", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Type: Float", "Enum: GraphFunction", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Type: Ncname", "Type: Nodeidentifier", "Type: Objectidentifier", "Class: PathExpression", "Class: SearchBaseConfiguration", "Enum: SearchProperty", "Class: SearchResult", "Class: SearchResultSet", "Type: SearchTerm", "Enum: SearchTermSyntax", "Type: Sparqlpath", "Type: String", "Type: Time", "Type: Uri", "Type: Uriorcurie", "Slot: all_of", "Slot: any_of", "Slot: atom", "Slot: categories", "Slot: configuration", "Slot: cursor", "Slot: force_case_insensitive", "Slot: graph_predicates", "Slot: include_aliases", "Slot: include_definition", "Slot: include_id", "Slot: include_label", "Slot: include_obsoletes_in_results", "search datamodel", "Slot: is_complete", "Slot: is_fuzzy", "Slot: is_partial", "Slot: is_regular_expression", "Slot: limit", "Slot: matches_full_search_term", "Slot: none_of", "Slot: object_id", "Slot: object_label", "Slot: object_match_field", "Slot: object_source", "Slot: object_source_version", "Slot: path_to", "Slot: properties", "Slot: rank", "Slot: result_count", "Slot: results", "search-datamodel", "Slot: search_term", "Slot: search_terms", "Slot: snippet", "Slot: syntax", "Slot: traversal", "types", "SemSQL", "Class: BestMatch", "Type: Boolean", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Type: Float", "Type: Integer", "Type: ItemCount", "Type: Jsonpath", "Type: Jsonpointer", "Type: Ncname", "Type: NegativeLogValue", "Type: Nodeidentifier", "Type: NonNegativeFloat", "Type: Objectidentifier", "Class: PairwiseSimilarity", "Type: Sparqlpath", "Type: String", "Class: TermInfo", "Class: TermPairwiseSimilarity", "Class: TermSetPairwiseSimilarity", "Type: Time", "Type: Uri", "Type: Uriorcurie", "Type: ZeroToOne", "Slot: ancestor_id", "Slot: ancestor_information_content", "Slot: ancestor_label", "Slot: ancestor_source", "Slot: average_score", "Slot: best_score", "Slot: cosine_similarity", "Slot: dice_similarity", "Slot: id", "Semantic Similarity", "Slot: information_content", "Slot: intersection_count", "Slot: jaccard_similarity", "Slot: label", "Slot: match_source", "Slot: match_source_label", "Slot: match_subsumer", "Slot: match_subsumer_label", "Slot: match_target", "Slot: match_target_label", "Slot: metric", "Slot: object_best_matches", "Slot: object_id", "Slot: object_information_content", "Slot: object_label", "Slot: object_source", "Slot: object_termset", "Slot: overlap_coefficient", "Slot: phenodigm_score", "Slot: score", "Slot: similarity", "Slot: subject_best_matches", "Slot: subject_id", "Slot: subject_information_content", "Slot: subject_label", "Slot: subject_source", "Slot: subject_termset", "Slot: subsumed_by_score", "Slot: subsumes_score", "types", "Slot: union_count", "SSSOM", "Class: Agent", "Type: Boolean", "Class: ChangeTypeStatistic", "Class: ContributorRole", "Class: ContributorStatistics", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Class: FacetStatistics", "Class: FacetedCount", "Type: Float", "Class: GlobalStatistics", "Class: GroupedStatistics", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Type: Ncname", "Type: Nodeidentifier", "Type: Objectidentifier", "Class: Ontology", "Type: Sparqlpath", "Type: String", "Class: SummaryStatisticCollection", "Class: SummaryStatisticsCalculationActivity", "Class: SummaryStatisticsReport", "Type: Time", "Class: UngroupedStatistics", "Type: Uri", "Type: Uriorcurie", "Slot: acted_on_behalf_of", "Slot: agents", "Slot: annotation_property_count", "Slot: anonymous_class_expression_count", "Slot: anonymous_individual_count", "Slot: by_category", "Slot: by_ontology", "Slot: by_subset", "Slot: by_taxon", "Slot: change_summary", "Slot: class_count", "Slot: class_count_by_category", "Slot: class_count_by_subset", "Slot: class_count_excluding_deprecated", "Slot: class_count_with_definitions", "Slot: class_count_with_text_definitions", "Slot: class_count_without_text_definitions", "Slot: class_statistic_group", "Slot: compared_with", "Slot: contributor_id", "Slot: contributor_name", "Slot: contributor_summary", "Slot: count_statistic", "Slot: datatype_property_count", "Slot: deprecated_class_count", "Slot: deprecated_object_property_count", "Slot: description", "Slot: description_logic_profile", "Slot: distinct_synonym_count", "Slot: edge_count_by_predicate", "Slot: ended_at_time", "Slot: entailed_edge_count_by_predicate", "Slot: equivalent_classes_axiom_count", "Slot: equivalentclasses_axiom_count", "Slot: facet", "Slot: filtered_count", "Slot: id", "Summary Statistics Datamodel", "Slot: individual_count", "Slot: individual_statistic_group", "Slot: label", "Slot: mapping_count", "Slot: mapping_statement_count_by_object_source", "Slot: mapping_statement_count_by_predicate", "Slot: mapping_statement_count_subject_by_object_source", "Slot: merged_class_count", "Slot: metadata_statistic_group", "Slot: named_individual_count", "Slot: non_deprecated_class_count", "Slot: non_deprecated_object_property_count", "Slot: normalization_comments", "Slot: object_property_count", "Slot: ontologies", "Slot: ontology_count", "Slot: owl_axiom_count", "Slot: owl_statistic_group", "Slot: partitions", "Slot: prefix", "Slot: property_count", "Slot: property_statistic_group", "Slot: rdf_triple_count", "Slot: role_counts", "Slot: started_at_time", "Slot: subclass_of_axiom_count", "Slot: subset_count", "summary-statistics", "Slot: synonym_statement_count", "Slot: synonym_statement_count_by_predicate", "Slot: title", "types", "Slot: unsatisfiable_class_count", "Slot: untyped_entity_count", "Slot: version", "Slot: version_info", "Slot: was_associated_with", "Slot: was_generated_by", "Type: Boolean", "Enum: ConfigurationOption", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Type: Float", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Type: Ncname", "Type: Nodeidentifier", "Type: Objectidentifier", "Class: PredicateTerm", "Type: Sparqlpath", "Type: String", "Class: SubjectTerm", "Class: Taxon", "Class: TaxonConstraint", "Class: Term", "Type: Time", "Type: Uri", "Type: Uriorcurie", "Slot: asserted", "Slot: candidate", "Slot: comments", "Slot: contradicted_by", "Slot: description", "Slot: evolutionary", "Slot: id", "Taxon Constraints Reporting Datamodel", "Slot: label", "Slot: never_in", "Slot: only_in", "Slot: predicate", "Slot: predicates", "Slot: present_in", "Slot: present_in_ancestor_of", "Slot: redundant", "Slot: redundant_with", "Slot: redundant_with_only_in", "Slot: sources", "Slot: subject", "Slot: taxon", "taxon-constraints", "Slot: unsatisfiable", "Slot: via_terms", "Type: Boolean", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Type: Float", "Class: HasSpan", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Type: Ncname", "Type: Nodeidentifier", "Type: Objectidentifier", "Type: Position", "Type: Sparqlpath", "Type: String", "Class: TextAnnotation", "Class: TextAnnotationConfiguration", "Class: TextAnnotationResultSet", "Class: TextualElement", "Type: Time", "Enum: TransformationType", "Type: Uri", "Type: Uriorcurie", "Slot: annotations", "Slot: categories", "Slot: confidence", "Slot: id", "Slot: include_aliases", "Text Annotator Datamodel", "Slot: info", "Slot: is_longest_match", "Slot: limit", "Slot: match_string", "Slot: match_type", "Slot: matches_whole_text", "Slot: model", "Slot: object_aliases", "Slot: object_categories", "Slot: object_id", "Slot: object_label", "Slot: object_source", "Slot: parent_document", "Slot: predicate_id", "Slot: source_text", "Slot: sources", "Slot: subject_end", "Slot: subject_label", "Slot: subject_source", "Slot: subject_start", "Slot: subject_text_id", "Slot: text", "text-annotator", "Slot: token_exclusion_list", "types", "Type: Boolean", "Class: ConstraintComponent", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Class: ExternalReferenceValidationResult", "Type: Float", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Class: MappingValidationResult", "Class: NamedResource", "Type: Ncname", "Class: Node", "Type: Nodeidentifier", "Type: Objectidentifier", "Class: RepairConfiguration", "Class: RepairOperation", "Class: RepairReport", "Class: Report", "Class: Result", "Enum: SeverityOptions", "Type: Sparqlpath", "Type: String", "Type: Time", "Class: TypeSeverityKeyValue", "Type: Uri", "Type: Uriorcurie", "Class: ValidationConfiguration", "Class: ValidationReport", "Class: ValidationResult", "Enum: ValidationResultType", "Slot: category", "Slot: confidence", "Slot: dry_run", "Slot: http_response_code", "Slot: id", "Validation Results Datamodel", "Slot: info", "Slot: instantiates", "Slot: max_number_results_per_type", "Slot: modified", "Slot: number_of_attempts", "Slot: object", "Slot: object_id", "Slot: object_info", "Slot: object_str", "Slot: predicate", "Slot: predicate_id", "Slot: problem", "Slot: prompt_info", "Slot: repairs", "Slot: results", "Slot: schema_path", "Slot: severity", "Slot: source", "Slot: subject", "Slot: subject_id", "Slot: subject_info", "Slot: successful", "Slot: suggested_modifications", "Slot: suggested_predicate", "Slot: time_checked", "Slot: type", "Slot: type_severity_map", "types", "Slot: url", "Slot: validation_configuration", "validaton-results", "FAQ: Architecture and Design", "FAQ: Command Line", "FAQ: Contributing", "FAQ: General", "FAQ", "FAQ: Ontologies", "FAQ: Troubleshooting", "Glossary", "Aliases and Synonyms", "Associations and Curated Annotations", "OAK Basics", "Identifying entities: CURIEs and URIs", "The OAK Guide", "Learning More", "Logical Definitions", "Mappings and Cross-References", "Obsoletion", "Primary Labels", "Relationships and Graphs", "Computing Similarity between Entities", "FHIR Conversions", "How-To Guides", "<no title>", "<no title>", "How to use Large Language Models (LLMs) with OAK", "How to Validate an OBO ontology using Obo Metadata Ontology schema", "<no title>", "How to write a plugin", "Ontology Access Kit (OAK) Documentation", "Tutorial", "Part 1: Getting Started", "Part 2: Basic Python", "Part 3: Triplestore Backends", "Part 4: OboGraphs", "Part 5: Graph Visualization", "Part 6: Working With OWL", "Part 7: SQLite files", "Part 8: Applying Changes to Ontologies", "Introduction", "<no title>", "Jupyter Notebooks", "Architecture", "Best Practice", "Abstract Class", "Converters", "OBO Graph to CX Converter", "OBO Graph to FHIR Converter", "OBO Graph to OBO Format Converter", "OBO Graph to OWL Converter", "Aggregator Adapter", "Bioportal Adapter", "FunOwl Adapter", "Gilda Adapter", "Implementations", "LLM Adapter", "OBO Graph Adapter", "Ontology Lookup Service (OLS) Adapter", "Ontobee Adapter", "Owlery Adapter", "PantherDB Adapter", "Pronto / OBO Files Adapter", "Simple OBO Adapter", "Sparql Adapter", "SQL Database Adapter", "Ubergraph Adapter", "OAK Library Documentation", "Association Provider Interface", "Basic Ontology Interface", "Class Enrichment Calculation Interface", "Differ Interface", "Dumper Interface", "Interfaces", "Mapping Provider Interface", "OboGraph Interface", "OWL Interface", "Patcher Interface", "Relation Graph", "Search Interface", "Semantic Similarity Interface", "Subsetting", "Summary Statistics", "Text Annotator Interface", "Validator Interface", "Ontology Adapter Selectors", "oaklib.utilities.apikey_manager", "oaklib.utilities.graph.networkx_bridge", "oaklib.utilities.graph.relationship_walker", "oaklib.utilities.lexical.lexical_indexer", "oaklib.utilities.obograph_utils", "oaklib.utilities.subsets.slimmer_utils", "oaklib.utilities.table_filler", "oaklib.utilities.taxon", "Utilities", "Layering on RDF/OWL", "Search Syntax"], "terms": {"we": [0, 1, 2, 248, 742, 812, 939, 956, 1100, 1101, 1102, 1103, 1105, 1106, 1107, 1108, 1109, 1110, 1113, 1116, 1117, 1118, 1119, 1123, 1126, 1129, 1130, 1131, 1132, 1134, 1135, 1136, 1140, 1162, 1165, 1166, 1167, 1173, 1182, 1192], "follow": [0, 2, 41, 46, 411, 437, 465, 476, 485, 495, 505, 509, 512, 521, 541, 625, 936, 940, 1099, 1100, 1102, 1106, 1108, 1110, 1113, 1117, 1119, 1123, 1124, 1126, 1129, 1130, 1131, 1132, 1133, 1135, 1137, 1141, 1145, 1159, 1162, 1166, 1172, 1181, 1182], "clig": [0, 1100, 1141], "far": [0, 2, 1100, 1113, 1129, 1131, 1132, 1149], "possibl": [0, 1, 2, 765, 771, 1100, 1102, 1106, 1107, 1117, 1129, 1131, 1141, 1166, 1181, 1191, 1192], "you": [0, 1, 202, 212, 213, 228, 1100, 1101, 1102, 1104, 1105, 1107, 1108, 1109, 1110, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1123, 1124, 1126, 1129, 1130, 1132, 1133, 1135, 1140, 1141, 1145, 1149, 1156, 1158, 1159, 1162, 1165, 1170, 1171, 1176, 1182, 1192], "ar": [0, 1, 2, 3, 17, 22, 31, 41, 46, 65, 66, 85, 86, 140, 153, 163, 202, 214, 265, 273, 279, 282, 291, 310, 311, 324, 327, 331, 341, 344, 349, 350, 363, 367, 373, 380, 381, 384, 385, 386, 393, 394, 405, 411, 413, 417, 422, 423, 434, 437, 443, 445, 448, 458, 460, 475, 693, 694, 717, 731, 735, 737, 765, 771, 828, 840, 842, 882, 897, 941, 953, 963, 989, 993, 1000, 1001, 1008, 1058, 1067, 1070, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1123, 1124, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1140, 1141, 1143, 1145, 1149, 1151, 1158, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1170, 1171, 1173, 1174, 1175, 1176, 1177, 1178, 1181, 1182, 1191, 1192], "run": [0, 2, 273, 324, 993, 1102, 1115, 1123, 1128, 1135, 1145, 1176], "thi": [0, 1, 4, 6, 21, 22, 42, 45, 46, 49, 50, 51, 56, 70, 71, 93, 95, 115, 121, 125, 130, 132, 135, 142, 202, 204, 212, 213, 217, 223, 227, 230, 232, 233, 249, 252, 294, 297, 335, 372, 375, 381, 382, 386, 388, 393, 394, 396, 400, 405, 410, 411, 412, 418, 419, 420, 424, 425, 429, 431, 434, 437, 441, 443, 446, 451, 455, 457, 460, 464, 465, 470, 471, 476, 480, 482, 488, 490, 503, 509, 512, 521, 522, 530, 533, 535, 540, 541, 542, 545, 596, 608, 613, 678, 693, 695, 717, 732, 735, 737, 745, 761, 818, 828, 840, 842, 882, 889, 923, 936, 940, 941, 942, 947, 949, 953, 957, 961, 962, 965, 966, 969, 971, 989, 1001, 1008, 1024, 1029, 1049, 1050, 1058, 1067, 1070, 1080, 1099, 1100, 1102, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1123, 1126, 1128, 1129, 1130, 1131, 1132, 1134, 1135, 1136, 1137, 1140, 1141, 1142, 1145, 1148, 1149, 1154, 1155, 1156, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1178, 1179, 1180, 1181, 1182, 1191, 1192, 1193], "an": [0, 1, 2, 3, 4, 7, 13, 17, 19, 22, 23, 24, 28, 31, 42, 44, 46, 60, 75, 89, 96, 102, 107, 113, 125, 136, 140, 144, 151, 153, 154, 159, 161, 163, 164, 166, 167, 168, 170, 171, 173, 175, 176, 177, 180, 181, 184, 185, 186, 188, 189, 193, 194, 198, 199, 201, 202, 205, 211, 212, 217, 220, 225, 227, 228, 230, 232, 234, 235, 243, 244, 249, 253, 259, 263, 264, 268, 269, 274, 276, 277, 278, 279, 280, 281, 283, 284, 285, 286, 288, 289, 292, 294, 298, 304, 308, 309, 311, 315, 317, 318, 325, 327, 328, 329, 330, 331, 333, 334, 337, 342, 343, 344, 346, 347, 348, 349, 350, 351, 353, 359, 360, 361, 362, 363, 368, 369, 372, 373, 376, 380, 381, 382, 384, 385, 386, 388, 389, 390, 393, 394, 396, 399, 400, 402, 403, 405, 411, 412, 415, 417, 420, 421, 422, 423, 424, 425, 426, 427, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 447, 448, 450, 451, 452, 454, 455, 456, 458, 460, 462, 464, 465, 467, 468, 470, 471, 472, 473, 474, 475, 476, 480, 482, 485, 488, 491, 495, 502, 505, 509, 510, 511, 512, 513, 514, 517, 521, 522, 527, 530, 531, 533, 535, 540, 541, 542, 545, 547, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 580, 582, 583, 584, 586, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 604, 606, 608, 609, 610, 611, 612, 613, 616, 617, 620, 621, 623, 624, 625, 627, 635, 646, 647, 649, 652, 655, 657, 658, 660, 663, 664, 665, 666, 667, 668, 672, 673, 679, 686, 691, 693, 694, 695, 702, 717, 723, 725, 726, 727, 728, 729, 732, 737, 738, 746, 752, 760, 761, 768, 780, 813, 819, 829, 834, 835, 839, 840, 842, 843, 845, 854, 871, 875, 881, 882, 885, 902, 907, 913, 917, 918, 919, 924, 930, 935, 941, 942, 944, 946, 947, 948, 949, 951, 952, 953, 954, 957, 958, 961, 962, 963, 964, 965, 966, 969, 972, 978, 979, 984, 988, 994, 998, 1001, 1002, 1003, 1005, 1006, 1007, 1009, 1010, 1011, 1012, 1013, 1015, 1018, 1019, 1020, 1021, 1022, 1030, 1035, 1037, 1045, 1047, 1049, 1050, 1056, 1060, 1061, 1065, 1067, 1068, 1069, 1071, 1072, 1073, 1076, 1077, 1081, 1084, 1085, 1086, 1089, 1092, 1093, 1096, 1102, 1103, 1105, 1106, 1107, 1108, 1110, 1111, 1113, 1115, 1116, 1117, 1118, 1119, 1120, 1123, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1136, 1137, 1140, 1141, 1144, 1145, 1146, 1148, 1149, 1150, 1153, 1154, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1180, 1181, 1182, 1192], "intern": [0, 142, 1100, 1107, 1166], "oak": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 232, 233, 234, 235, 236, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 710, 711, 716, 717, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 825, 826, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1101, 1103, 1104, 1106, 1110, 1112, 1115, 1116, 1117, 1118, 1119, 1120, 1126, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1141, 1143, 1148, 1156, 1158, 1165, 1176, 1180, 1182], "develop": [0, 1099, 1100, 1102, 1104, 1106, 1107, 1113, 1117, 1118, 1123, 1126, 1130, 1132, 1135, 1137, 1140, 1170], "need": [0, 1, 202, 1099, 1103, 1107, 1108, 1113, 1119, 1129, 1135, 1140, 1149, 1158, 1162, 1180, 1192], "preced": [0, 403, 421, 437, 1171], "poetri": [0, 1123, 1126, 1128, 1176], "shell": 0, "The": [0, 1, 2, 3, 4, 9, 14, 15, 17, 21, 22, 23, 25, 30, 31, 36, 39, 40, 41, 42, 43, 46, 52, 54, 55, 65, 66, 67, 68, 69, 72, 73, 74, 75, 76, 78, 82, 84, 85, 86, 87, 89, 90, 93, 94, 98, 103, 104, 109, 110, 116, 117, 119, 120, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 138, 145, 146, 148, 153, 154, 155, 163, 165, 166, 168, 169, 170, 171, 172, 173, 175, 177, 178, 179, 180, 181, 182, 185, 186, 187, 189, 190, 191, 193, 194, 195, 197, 198, 199, 207, 212, 214, 215, 216, 217, 221, 223, 230, 232, 234, 235, 236, 237, 239, 242, 243, 244, 245, 247, 255, 260, 261, 264, 270, 273, 279, 292, 300, 305, 306, 309, 319, 321, 322, 324, 331, 369, 373, 378, 380, 381, 385, 388, 391, 392, 393, 394, 396, 397, 402, 404, 405, 406, 408, 410, 411, 412, 417, 418, 422, 423, 425, 434, 436, 437, 444, 448, 452, 458, 460, 475, 493, 515, 516, 538, 613, 681, 687, 688, 693, 694, 695, 698, 699, 717, 725, 726, 727, 728, 735, 737, 748, 754, 755, 762, 765, 772, 780, 781, 783, 793, 794, 803, 804, 821, 828, 830, 831, 836, 840, 842, 882, 920, 926, 931, 932, 937, 939, 941, 953, 957, 958, 959, 965, 966, 974, 978, 980, 981, 986, 988, 989, 1001, 1004, 1008, 1019, 1032, 1035, 1038, 1039, 1040, 1047, 1052, 1060, 1062, 1067, 1068, 1069, 1071, 1077, 1081, 1086, 1089, 1093, 1099, 1102, 1104, 1105, 1106, 1107, 1108, 1109, 1112, 1114, 1115, 1116, 1117, 1118, 1119, 1123, 1124, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1135, 1136, 1137, 1140, 1141, 1143, 1145, 1149, 1156, 1162, 1165, 1166, 1167, 1168, 1170, 1171, 1175, 1176, 1177, 1180, 1181, 1182, 1192, 1193], "structur": [0, 1, 153, 163, 437, 448, 717, 735, 1061, 1099, 1106, 1107, 1111, 1113, 1115, 1117, 1129, 1145, 1181], "i": [0, 1, 2, 3, 4, 17, 22, 23, 24, 28, 31, 36, 41, 42, 44, 46, 49, 50, 51, 53, 56, 60, 67, 70, 71, 81, 84, 87, 93, 113, 115, 121, 125, 140, 142, 147, 153, 159, 161, 163, 164, 167, 173, 176, 182, 188, 191, 201, 202, 212, 213, 217, 223, 225, 227, 232, 233, 234, 236, 249, 274, 279, 280, 294, 311, 316, 325, 331, 333, 350, 352, 372, 373, 381, 384, 386, 388, 389, 393, 394, 396, 400, 402, 405, 413, 415, 418, 419, 420, 424, 425, 428, 430, 431, 432, 433, 435, 436, 437, 440, 441, 442, 443, 446, 447, 448, 450, 452, 453, 454, 455, 456, 462, 463, 466, 468, 471, 472, 473, 475, 476, 480, 482, 488, 503, 507, 509, 512, 521, 526, 530, 532, 535, 540, 541, 542, 545, 547, 578, 596, 613, 693, 698, 702, 717, 720, 735, 737, 739, 743, 761, 765, 768, 771, 780, 781, 785, 827, 840, 842, 843, 882, 939, 941, 942, 944, 946, 947, 949, 950, 951, 952, 953, 954, 955, 956, 959, 960, 961, 962, 965, 966, 968, 969, 978, 988, 989, 994, 1001, 1019, 1035, 1040, 1049, 1050, 1056, 1060, 1061, 1062, 1063, 1065, 1067, 1068, 1069, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1082, 1084, 1085, 1086, 1087, 1088, 1090, 1091, 1092, 1093, 1096, 1103, 1106, 1107, 1108, 1110, 1111, 1113, 1114, 1115, 1116, 1118, 1119, 1120, 1123, 1124, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1140, 1141, 1143, 1145, 1148, 1149, 1151, 1153, 1154, 1156, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1184, 1192, 1193], "input": [0, 2, 322, 331, 1099, 1105, 1106, 1108, 1110, 1115, 1116, 1117, 1119, 1126, 1129, 1130, 1136, 1143, 1145, 1154, 1156, 1158, 1162, 1165, 1166, 1167, 1171, 1172, 1176, 1180, 1182], "handl": [0, 1, 828, 840, 842, 882, 1109, 1114, 1115, 1129], "arg": [0, 1165, 1171, 1176, 1180, 1193], "AND": [0, 676, 939, 955, 956, 1149, 1151, 1153], "option": [0, 1, 212, 279, 280, 333, 693, 737, 1102, 1103, 1108, 1110, 1113, 1118, 1119, 1124, 1126, 1129, 1133, 1135, 1136, 1142, 1145, 1148, 1149, 1151, 1153, 1154, 1158, 1159, 1160, 1165, 1166, 1171, 1172, 1177, 1182, 1192], "valu": [0, 1, 3, 4, 5, 14, 15, 17, 20, 21, 22, 23, 24, 25, 46, 60, 75, 79, 91, 92, 93, 94, 103, 104, 110, 125, 126, 127, 128, 129, 134, 145, 146, 153, 155, 157, 163, 203, 212, 213, 215, 216, 217, 221, 223, 232, 234, 245, 249, 250, 251, 260, 261, 262, 263, 264, 265, 269, 270, 279, 294, 295, 296, 305, 306, 307, 308, 309, 310, 311, 312, 316, 317, 318, 319, 321, 322, 331, 372, 373, 374, 380, 381, 382, 384, 385, 386, 388, 389, 391, 392, 393, 394, 396, 402, 403, 405, 408, 410, 411, 412, 417, 420, 422, 433, 437, 438, 440, 443, 450, 455, 465, 467, 472, 473, 475, 476, 479, 480, 481, 482, 483, 484, 485, 486, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 512, 515, 516, 521, 522, 526, 530, 532, 533, 535, 536, 537, 538, 540, 541, 542, 545, 613, 675, 677, 687, 688, 692, 693, 695, 696, 699, 717, 743, 744, 754, 755, 761, 762, 764, 765, 766, 780, 813, 814, 815, 816, 817, 824, 825, 827, 828, 830, 831, 835, 836, 838, 839, 840, 842, 847, 849, 855, 856, 857, 860, 861, 862, 868, 869, 870, 873, 874, 876, 882, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 898, 899, 904, 909, 911, 912, 915, 921, 931, 932, 936, 937, 939, 940, 941, 942, 953, 957, 970, 978, 980, 981, 986, 988, 989, 990, 991, 1001, 1027, 1028, 1035, 1038, 1039, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1052, 1055, 1058, 1059, 1060, 1067, 1073, 1084, 1093, 1100, 1107, 1113, 1123, 1129, 1163, 1166, 1167, 1168, 1173, 1174, 1175, 1179, 1181], "which": [0, 1, 3, 4, 17, 22, 28, 41, 46, 84, 87, 113, 159, 202, 225, 274, 325, 386, 394, 405, 415, 437, 464, 547, 693, 694, 695, 702, 717, 727, 731, 768, 828, 839, 840, 842, 843, 875, 882, 897, 907, 941, 944, 953, 965, 966, 994, 1035, 1056, 1060, 1061, 1067, 1077, 1086, 1099, 1100, 1102, 1106, 1107, 1108, 1109, 1110, 1111, 1113, 1114, 1115, 1118, 1119, 1123, 1124, 1126, 1129, 1132, 1140, 1141, 1145, 1158, 1162, 1163, 1166, 1170, 1173, 1176, 1180, 1181, 1182, 1192], "can": [0, 1, 2, 23, 46, 60, 75, 140, 217, 223, 230, 273, 279, 311, 324, 331, 344, 389, 405, 406, 437, 448, 507, 510, 511, 527, 550, 584, 598, 600, 601, 606, 613, 693, 694, 717, 816, 881, 882, 993, 1001, 1099, 1103, 1104, 1106, 1107, 1108, 1109, 1110, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1123, 1124, 1126, 1129, 1130, 1131, 1133, 1135, 1136, 1137, 1140, 1141, 1145, 1156, 1159, 1160, 1162, 1163, 1166, 1170, 1171, 1179, 1181, 1182, 1192, 1193], "short": [0, 1109, 1129, 1166], "specifi": [0, 331, 335, 336, 428, 437, 693, 707, 709, 710, 716, 717, 718, 719, 720, 722, 731, 737, 739, 939, 953, 955, 956, 959, 1061, 1100, 1102, 1106, 1108, 1113, 1115, 1116, 1117, 1118, 1123, 1126, 1129, 1131, 1135, 1136, 1145, 1154, 1159, 1160, 1162, 1166, 1167, 1172, 1173, 1176, 1178, 1181, 1182, 1192, 1193], "adapt": [0, 1099, 1100, 1102, 1105, 1106, 1107, 1109, 1110, 1114, 1115, 1116, 1117, 1118, 1120, 1126, 1127, 1129, 1130, 1131, 1135, 1137, 1140, 1141, 1152, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1175, 1176, 1178, 1180, 1181], "selector": [0, 1099, 1100, 1102, 1106, 1109, 1117, 1118, 1120, 1127, 1129, 1135, 1149, 1151, 1153, 1154, 1156, 1158, 1160, 1162, 1163, 1164], "document": [0, 14, 15, 25, 103, 104, 110, 145, 146, 155, 215, 216, 221, 260, 261, 270, 305, 306, 319, 389, 391, 392, 408, 435, 437, 443, 453, 515, 516, 538, 687, 688, 699, 754, 755, 762, 830, 831, 836, 931, 932, 937, 980, 981, 986, 1038, 1039, 1052, 1100, 1101, 1102, 1105, 1106, 1107, 1118, 1126, 1129, 1130, 1131, 1132, 1136, 1140, 1144, 1145, 1146, 1152, 1193], "exampl": [0, 1, 202, 212, 217, 223, 230, 233, 234, 247, 476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 589, 642, 694, 825, 827, 828, 901, 1099, 1103, 1104, 1105, 1106, 1107, 1109, 1111, 1113, 1115, 1116, 1118, 1119, 1120, 1123, 1124, 1127, 1128, 1129, 1131, 1133, 1141, 1145, 1152, 1164, 1165, 1166, 1167, 1170, 1172, 1173, 1174, 1176, 1180, 1181, 1192, 1193], "ubergraph": [0, 1103, 1106, 1110, 1111, 1116, 1117, 1128, 1136, 1140, 1141, 1152, 1161, 1164, 1170, 1176, 1178, 1182], "fbbt": [0, 1129, 1133], "obo": [0, 1, 388, 389, 394, 396, 400, 402, 410, 412, 413, 418, 424, 436, 437, 453, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 936, 939, 940, 942, 952, 953, 1035, 1060, 1093, 1099, 1100, 1101, 1103, 1106, 1108, 1109, 1110, 1111, 1112, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1123, 1127, 1128, 1130, 1131, 1133, 1135, 1137, 1140, 1141, 1148, 1152, 1153, 1156, 1162, 1163, 1164, 1166, 1167, 1170, 1171, 1172, 1176, 1180, 1182, 1192], "cl": [0, 939, 953, 1099, 1100, 1104, 1105, 1106, 1110, 1123, 1129, 1130, 1135, 1137, 1153, 1163, 1165, 1176, 1180, 1182], "db": [0, 1105, 1124, 1135, 1136, 1148, 1162, 1165, 1166, 1172, 1176, 1182, 1192], "sqlite": [0, 1099, 1100, 1102, 1103, 1104, 1107, 1108, 1113, 1114, 1115, 1117, 1118, 1120, 1123, 1127, 1128, 1129, 1130, 1131, 1136, 1137, 1140, 1141, 1145, 1148, 1153, 1162, 1166, 1168, 1169, 1170, 1171, 1172, 1175, 1176, 1178, 1181, 1192], "It": [0, 1, 402, 405, 437, 452, 717, 735, 1099, 1100, 1102, 1106, 1107, 1109, 1113, 1114, 1115, 1116, 1118, 1123, 1129, 1140, 1163, 1166, 1176], "us": [0, 1, 3, 4, 19, 23, 24, 31, 36, 46, 89, 93, 107, 147, 151, 153, 163, 202, 212, 213, 217, 220, 223, 227, 228, 234, 240, 250, 262, 263, 264, 265, 268, 269, 273, 277, 279, 285, 295, 307, 308, 309, 310, 311, 315, 316, 317, 318, 321, 322, 324, 329, 331, 348, 373, 380, 382, 384, 385, 386, 388, 389, 393, 394, 396, 399, 402, 403, 406, 410, 411, 412, 417, 418, 437, 438, 453, 476, 479, 480, 484, 485, 488, 489, 507, 510, 511, 512, 518, 519, 520, 521, 522, 526, 527, 531, 532, 533, 535, 536, 540, 542, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 582, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 620, 623, 625, 635, 646, 647, 652, 655, 657, 658, 664, 665, 666, 668, 677, 691, 693, 695, 716, 717, 718, 737, 743, 760, 764, 765, 813, 815, 817, 824, 825, 834, 835, 839, 842, 882, 935, 936, 939, 940, 941, 984, 988, 989, 991, 993, 1001, 1008, 1028, 1035, 1043, 1045, 1047, 1050, 1055, 1058, 1060, 1067, 1068, 1069, 1073, 1076, 1077, 1084, 1085, 1086, 1093, 1103, 1104, 1106, 1108, 1109, 1110, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1120, 1126, 1127, 1128, 1130, 1131, 1132, 1133, 1135, 1136, 1137, 1140, 1141, 1142, 1143, 1145, 1148, 1149, 1151, 1153, 1154, 1155, 1156, 1158, 1159, 1160, 1162, 1163, 1166, 1167, 1168, 1169, 1172, 1173, 1174, 1176, 1178, 1179, 1180, 1181, 1182, 1191, 1192], "creat": [0, 2, 39, 40, 46, 476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 568, 613, 650, 1107, 1113, 1116, 1120, 1128, 1129, 1136, 1144, 1146, 1162, 1166, 1167, 1171, 1174], "individu": [0, 1, 311, 317, 327, 331, 337, 342, 343, 344, 349, 350, 353, 360, 361, 363, 368, 380, 384, 397, 402, 437, 444, 452, 509, 510, 511, 527, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668, 693, 695, 717, 723, 725, 726, 727, 728, 729, 732, 737, 738, 761, 780, 842, 849, 882, 883, 892, 941, 946, 947, 948, 949, 951, 953, 957, 958, 961, 962, 963, 964, 965, 966, 969, 978, 988, 998, 1001, 1002, 1003, 1005, 1006, 1007, 1009, 1010, 1011, 1012, 1013, 1015, 1018, 1019, 1020, 1021, 1022, 1047, 1050, 1060, 1067, 1068, 1069, 1071, 1073, 1076, 1077, 1081, 1084, 1085, 1086, 1089, 1093, 1106, 1109, 1118, 1120, 1141, 1142, 1166, 1172, 1180], "For": [0, 1, 153, 163, 202, 217, 223, 232, 233, 695, 717, 732, 825, 827, 828, 840, 842, 863, 882, 901, 941, 953, 969, 1035, 1060, 1093, 1099, 1100, 1102, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1115, 1116, 1117, 1118, 1119, 1123, 1124, 1129, 1130, 1131, 1132, 1133, 1135, 1136, 1141, 1145, 1166, 1168, 1169, 1170, 1171, 1173, 1175, 1176, 1178, 1180, 1181, 1192, 1193], "alia": [0, 3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 153, 157, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 212, 213, 217, 223, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 262, 263, 264, 265, 269, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 479, 480, 485, 488, 489, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 527, 530, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 677, 692, 693, 694, 695, 696, 704, 705, 706, 707, 708, 709, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 879, 880, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1055, 1058, 1059, 1060, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1100, 1104, 1107, 1109, 1129, 1166, 1171, 1176, 1182, 1192], "uberon": [0, 939, 953, 1100, 1106, 1107, 1110, 1116, 1117, 1118, 1123, 1124, 1129, 1131, 1135, 1140, 1149, 1156, 1163, 1165, 1166, 1170, 1171, 1176, 1182], "obi": [0, 93, 126, 476, 480, 485, 488, 503, 505, 506, 507, 509, 510, 511, 512, 521, 530, 535, 540, 541, 545, 575, 576, 578, 584, 625, 665, 1100, 1135, 1137, 1162, 1166], "further": [0, 1109, 1111, 1117], "implement": [0, 1, 989, 1008, 1099, 1102, 1106, 1109, 1111, 1116, 1117, 1120, 1123, 1124, 1127, 1129, 1130, 1133, 1135, 1136, 1141, 1143, 1145, 1148, 1149, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1164, 1166, 1170, 1172, 1173, 1176, 1178, 1179, 1180, 1181, 1182], "aggreg": [0, 3, 4, 17, 21, 22, 30, 46, 1111, 1129, 1152, 1164], "wrap": [0, 1118, 1135, 1148, 1150, 1153, 1157, 1159, 1161, 1162, 1163, 1166, 1168, 1169, 1171, 1175, 1176, 1178, 1179, 1181], "multiplex": 0, "over": [0, 1, 263, 278, 279, 285, 308, 330, 331, 348, 394, 424, 518, 519, 520, 693, 694, 717, 731, 735, 1103, 1106, 1107, 1112, 1113, 1116, 1117, 1118, 1123, 1129, 1137, 1140, 1141, 1165, 1166, 1167, 1172, 1176, 1180, 1181], "differ": [0, 1, 4, 140, 153, 157, 161, 163, 166, 167, 168, 170, 171, 175, 176, 177, 180, 181, 183, 184, 185, 186, 188, 189, 193, 194, 198, 199, 202, 405, 437, 440, 443, 450, 472, 473, 475, 780, 800, 1099, 1100, 1102, 1106, 1108, 1109, 1111, 1112, 1114, 1116, 1117, 1123, 1124, 1129, 1131, 1132, 1136, 1137, 1140, 1143, 1163, 1164, 1170, 1176, 1179, 1180, 1181, 1182, 1192], "endpoint": [0, 1102, 1106, 1129, 1130, 1137, 1140, 1141, 1149, 1155, 1156, 1157, 1161, 1163, 1172, 1176, 1180], "mani": [0, 1, 148, 1099, 1100, 1106, 1107, 1108, 1109, 1110, 1113, 1114, 1116, 1117, 1118, 1120, 1124, 1129, 1132, 1140, 1156, 1166, 1171], "take": [0, 1099, 1100, 1103, 1106, 1107, 1110, 1113, 1118, 1123, 1129, 1130, 1140, 1171, 1193], "primari": [0, 3, 4, 17, 21, 22, 46, 78, 1106, 1107, 1109, 1110, 1111, 1114, 1127, 1192], "argument": [0, 1100, 1102, 1118, 1129, 1142, 1145, 1149, 1151, 1153, 1165, 1166, 1169, 1182], "These": [0, 1, 1099, 1100, 1106, 1107, 1109, 1110, 1113, 1115, 1117, 1118, 1129, 1137, 1140, 1180, 1192], "typic": [0, 1, 31, 46, 212, 227, 234, 273, 324, 393, 394, 434, 437, 460, 939, 953, 993, 1100, 1102, 1106, 1107, 1108, 1109, 1110, 1113, 1118, 1132, 1140, 1145, 1165, 1166, 1176], "one": [0, 1, 2, 4, 36, 140, 148, 153, 161, 163, 164, 166, 167, 168, 170, 171, 175, 176, 177, 180, 181, 184, 185, 186, 188, 189, 193, 194, 198, 199, 202, 381, 437, 476, 480, 485, 488, 508, 509, 512, 521, 530, 533, 535, 540, 541, 545, 560, 693, 717, 722, 765, 771, 842, 889, 936, 940, 1100, 1105, 1106, 1108, 1110, 1111, 1113, 1116, 1117, 1118, 1120, 1123, 1124, 1129, 1132, 1134, 1135, 1140, 1141, 1142, 1144, 1146, 1149, 1152, 1165, 1166, 1168, 1171, 1173, 1181, 1192, 1193], "0000955": [0, 1114], "syntax": [0, 14, 15, 25, 103, 104, 110, 145, 146, 155, 212, 215, 216, 221, 227, 260, 261, 270, 305, 306, 319, 388, 391, 392, 396, 400, 408, 410, 412, 413, 418, 436, 476, 480, 488, 506, 509, 512, 515, 516, 521, 530, 533, 535, 538, 540, 541, 545, 564, 569, 687, 688, 693, 698, 699, 717, 737, 754, 755, 762, 830, 831, 836, 931, 932, 937, 980, 981, 986, 1038, 1039, 1052, 1100, 1102, 1105, 1106, 1109, 1123, 1129, 1148, 1164, 1166, 1169, 1176], "either": [0, 4, 8, 46, 50, 97, 125, 137, 163, 206, 234, 254, 279, 299, 331, 372, 373, 377, 380, 381, 382, 384, 385, 388, 389, 393, 396, 400, 403, 405, 411, 417, 437, 443, 492, 503, 613, 680, 717, 743, 747, 780, 785, 820, 882, 925, 942, 953, 973, 1001, 1031, 1067, 1105, 1106, 1107, 1113, 1116, 1118, 1124, 1129, 1162, 1166, 1171, 1182, 1193], "exact": [0, 406, 407, 485, 842, 889, 940, 1107, 1149, 1176], "match": [0, 140, 153, 161, 163, 165, 179, 182, 185, 186, 187, 188, 191, 193, 194, 195, 197, 311, 317, 321, 327, 331, 337, 342, 343, 344, 349, 350, 353, 355, 360, 361, 363, 368, 476, 480, 485, 488, 495, 504, 509, 512, 521, 530, 535, 540, 541, 545, 555, 559, 571, 588, 613, 630, 635, 693, 695, 698, 707, 710, 717, 720, 723, 725, 726, 727, 728, 738, 743, 780, 789, 978, 988, 989, 1000, 1001, 1019, 1061, 1100, 1113, 1117, 1118, 1123, 1126, 1129, 1137, 1149, 1158, 1165, 1166, 1171, 1173, 1176, 1179, 1180, 1193], "limb": [0, 1117, 1171, 1176], "plasma": 0, "membran": [0, 1117, 1159, 1165, 1166, 1167, 1180], "compound": 0, "t": [0, 1, 2, 202, 939, 953, 978, 988, 1001, 1061, 1099, 1103, 1104, 1106, 1108, 1109, 1110, 1113, 1114, 1117, 1118, 1119, 1123, 1126, 1129, 1135, 1137, 1140, 1149, 1158, 1162, 1166, 1177, 1182, 1192, 1193], "find": [0, 1099, 1103, 1116, 1129, 1165, 1171, 1178, 1180, 1181], "partial": [0, 1107, 1150, 1155, 1164, 1176], "fed": 0, "assum": [0, 698, 1116, 1117, 1118, 1129, 1130, 1136, 1156, 1162, 1166, 1178, 1182], "abov": [0, 1, 153, 163, 1102, 1113, 1115, 1117, 1118, 1123, 1129, 1130, 1135, 1156, 1166, 1192], "look": [0, 1109, 1111, 1113, 1117, 1126, 1129, 1130, 1166, 1172], "up": [0, 2, 1105, 1106, 1111, 1113, 1117, 1123, 1129, 1130, 1166, 1172, 1178, 1180, 1182], "two": [0, 4, 20, 30, 33, 34, 36, 46, 47, 48, 49, 50, 51, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 68, 69, 70, 71, 78, 80, 81, 82, 84, 88, 89, 384, 437, 443, 447, 450, 462, 510, 511, 527, 530, 536, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 580, 582, 583, 584, 586, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 616, 617, 620, 621, 623, 624, 625, 635, 646, 647, 649, 652, 655, 657, 658, 663, 664, 665, 666, 668, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 780, 783, 791, 792, 793, 794, 795, 796, 797, 799, 802, 803, 804, 805, 806, 807, 842, 854, 882, 1100, 1102, 1106, 1109, 1113, 1114, 1116, 1117, 1118, 1130, 1133, 1135, 1161, 1162, 1166, 1167, 1168, 1173], "hand": [0, 140, 163, 1106, 1107, 1109, 1113, 1117, 1129, 1132, 1172, 1176], "foot": [0, 1117], "equival": [0, 381, 385, 388, 432, 437, 443, 445, 458, 471, 842, 877, 882, 1107, 1113, 1115, 1117, 1166], "0002398": [0, 1117, 1156, 1176], "0002397": 0, "shorten": [0, 1106], "p": [0, 21, 45, 46, 92, 93, 125, 126, 127, 128, 384, 437, 1108, 1113, 1117, 1118, 1119, 1123, 1129, 1130, 1133, 1145, 1156, 1159, 1166, 1167, 1175], "aka": [0, 1106, 1117, 1166, 1182], "type": [0, 1, 3, 4, 17, 20, 21, 22, 23, 24, 41, 43, 75, 76, 92, 93, 94, 153, 157, 182, 188, 191, 202, 212, 213, 217, 223, 227, 232, 249, 250, 262, 263, 264, 265, 269, 273, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 355, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 397, 402, 403, 405, 410, 411, 412, 417, 443, 446, 447, 450, 462, 465, 473, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 526, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 598, 600, 601, 606, 625, 628, 662, 677, 692, 693, 695, 696, 743, 761, 764, 765, 766, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 916, 936, 939, 940, 941, 942, 952, 954, 957, 961, 978, 988, 989, 990, 991, 993, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1055, 1058, 1059, 1060, 1061, 1069, 1070, 1084, 1094, 1100, 1106, 1107, 1108, 1109, 1114, 1115, 1116, 1117, 1118, 1123, 1124, 1129, 1132, 1137, 1148, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1172, 1175, 1182, 1192, 1193], "see": [0, 2, 201, 248, 742, 812, 1099, 1102, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1114, 1117, 1118, 1119, 1123, 1124, 1125, 1126, 1129, 1131, 1132, 1134, 1139, 1140, 1141, 1143, 1145, 1156, 1157, 1162, 1163, 1165, 1166, 1168, 1171, 1172, 1174, 1176, 1178, 1179, 1180, 1181, 1182, 1183, 1187, 1193], "filter": [0, 842, 847, 849, 855, 856, 857, 860, 861, 868, 869, 870, 873, 874, 876, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 898, 899, 911, 912, 915, 1117, 1165, 1166, 1167, 1171, 1172, 1173], "comma": [0, 1100, 1119], "delimit": [0, 1180], "space": [0, 273, 324, 993, 1129, 1171], "biolog": [0, 1, 31, 46, 1106, 1109, 1115, 1131, 1172], "is_a": [0, 3, 4, 17, 20, 39, 52, 54, 55, 56, 61, 63, 68, 69, 71, 140, 173, 191, 264, 265, 309, 310, 373, 380, 381, 382, 385, 393, 403, 411, 417, 476, 480, 483, 485, 488, 489, 495, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 527, 530, 533, 535, 536, 537, 540, 541, 542, 545, 549, 551, 552, 553, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 588, 589, 591, 592, 593, 595, 596, 597, 598, 599, 600, 601, 603, 604, 608, 609, 610, 615, 616, 625, 626, 627, 631, 632, 633, 634, 635, 643, 644, 645, 646, 647, 649, 651, 652, 654, 658, 659, 660, 661, 662, 664, 665, 666, 668, 670, 672, 673, 765, 766, 772, 777, 778, 781, 782, 783, 794, 798, 799, 804, 808, 809, 811, 824, 827, 828, 838, 842, 847, 848, 849, 855, 860, 861, 868, 869, 870, 873, 877, 883, 886, 890, 892, 893, 894, 896, 898, 899, 903, 905, 908, 909, 911, 915, 916, 936, 939, 940, 1028, 1035, 1040, 1043, 1047, 1048, 1059, 1060, 1099, 1100, 1106, 1117, 1119, 1129, 1131, 1145, 1156, 1165, 1166, 1172, 1175], "rdf": [0, 1, 3, 4, 6, 17, 22, 23, 24, 25, 28, 37, 44, 60, 75, 84, 95, 110, 113, 135, 142, 155, 159, 165, 179, 182, 197, 204, 212, 221, 223, 225, 252, 270, 274, 297, 319, 325, 373, 375, 380, 384, 388, 394, 396, 397, 405, 408, 410, 411, 412, 415, 417, 424, 441, 447, 450, 462, 472, 475, 476, 480, 485, 488, 489, 490, 505, 506, 508, 509, 512, 521, 522, 530, 533, 535, 537, 538, 540, 541, 542, 545, 547, 551, 552, 553, 560, 582, 608, 613, 617, 625, 652, 655, 661, 668, 678, 694, 699, 702, 745, 762, 764, 768, 784, 813, 818, 836, 842, 843, 882, 885, 904, 905, 923, 936, 937, 939, 940, 941, 942, 944, 954, 957, 965, 966, 971, 986, 994, 1029, 1052, 1056, 1100, 1102, 1104, 1106, 1107, 1109, 1110, 1115, 1116, 1117, 1124, 1129, 1130, 1131, 1135, 1136, 1137, 1145, 1159, 1162, 1166, 1182], "subclassof": [0, 384, 386, 388, 431, 437, 488, 489, 535, 537, 613, 628, 1100, 1102, 1106, 1108, 1110, 1117, 1118, 1129, 1130, 1131, 1135, 1137, 1145, 1159, 1162, 1166, 1173, 1175], "part_of": [0, 1100, 1117, 1165, 1172], "bfo": [0, 1, 1100, 1106, 1113, 1117, 1129, 1135, 1159, 1166], "0000050": [0, 1100, 1106, 1107, 1113, 1117, 1129, 1135, 1159, 1166], "so": [0, 2, 1102, 1103, 1107, 1113, 1115, 1117, 1123, 1129, 1132, 1135, 1140, 1149, 1158, 1170, 1171, 1178, 1182], "interfac": [0, 1, 2, 202, 1102, 1103, 1104, 1106, 1107, 1109, 1112, 1114, 1115, 1116, 1117, 1118, 1120, 1123, 1127, 1128, 1129, 1130, 1131, 1136, 1137, 1141, 1148, 1149, 1152, 1155, 1156, 1158, 1159, 1161, 1162, 1164, 1175, 1178, 1179, 1182, 1191, 1192, 1193], "understand": [0, 1, 212, 227, 1103, 1106, 1109, 1110, 1129, 1192], "shortcut": [0, 1100], "e": [0, 1, 3, 4, 17, 22, 42, 46, 50, 53, 55, 69, 70, 316, 352, 384, 388, 389, 394, 402, 403, 417, 420, 421, 437, 443, 444, 451, 452, 453, 717, 735, 842, 872, 882, 888, 941, 953, 957, 1035, 1060, 1093, 1100, 1102, 1106, 1107, 1108, 1115, 1117, 1118, 1126, 1129, 1137, 1140, 1145, 1148, 1156, 1159, 1163, 1165, 1166, 1168, 1169, 1171, 1173, 1175, 1176, 1178, 1181, 1182], "between": [0, 1, 2, 3, 4, 17, 22, 23, 30, 34, 36, 37, 41, 43, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 60, 65, 66, 67, 68, 69, 70, 71, 75, 76, 78, 79, 80, 81, 82, 84, 85, 86, 87, 89, 90, 140, 153, 157, 161, 163, 166, 167, 168, 170, 171, 175, 176, 177, 180, 181, 182, 183, 184, 185, 186, 188, 189, 193, 194, 197, 198, 199, 212, 227, 384, 388, 389, 402, 431, 437, 443, 444, 447, 448, 450, 452, 453, 462, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 780, 783, 791, 792, 793, 794, 795, 796, 797, 799, 802, 803, 804, 805, 806, 807, 842, 854, 882, 939, 956, 1106, 1107, 1108, 1111, 1113, 1117, 1127, 1132, 1142, 1143, 1158, 1165, 1166, 1168, 1172, 1177, 1182], "name": [0, 3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 109, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 140, 148, 153, 154, 157, 161, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 212, 213, 214, 217, 223, 227, 228, 229, 230, 231, 232, 233, 234, 235, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 249, 250, 262, 263, 264, 265, 269, 273, 276, 277, 278, 279, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 327, 328, 329, 330, 331, 332, 337, 338, 339, 340, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 397, 402, 403, 404, 405, 406, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 495, 497, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 517, 518, 519, 520, 521, 522, 526, 527, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 676, 677, 685, 692, 693, 694, 695, 696, 698, 704, 705, 706, 707, 708, 709, 710, 711, 716, 717, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 743, 761, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 922, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 993, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1051, 1055, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1102, 1105, 1106, 1107, 1110, 1113, 1115, 1116, 1117, 1126, 1129, 1130, 1136, 1151, 1163, 1166, 1167, 1172, 1178, 1182, 1192], "class": [0, 1, 2, 31, 91, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 202, 236, 397, 400, 428, 641, 862, 1099, 1106, 1107, 1108, 1109, 1113, 1115, 1117, 1118, 1126, 1132, 1143, 1144, 1145, 1146, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1187, 1189, 1192, 1193], "part": [0, 16, 46, 105, 125, 149, 163, 218, 234, 266, 279, 313, 331, 395, 437, 524, 613, 689, 717, 735, 756, 780, 832, 882, 933, 953, 982, 1001, 1042, 1067, 1099, 1100, 1102, 1106, 1109, 1113, 1115, 1117, 1118, 1123, 1125, 1127, 1128, 1158, 1166, 1192], "draw": [0, 1001, 1024], "subgraph": [0, 1156, 1172], "start": [0, 2, 503, 698, 839, 882, 907, 1103, 1106, 1117, 1126, 1127, 1128, 1166, 1172], "from": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 163, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 232, 233, 235, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 710, 711, 712, 713, 714, 715, 716, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1099, 1100, 1102, 1105, 1106, 1107, 1108, 1109, 1110, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1123, 1124, 1126, 1128, 1130, 1131, 1133, 1135, 1137, 1138, 1140, 1141, 1142, 1144, 1145, 1146, 1148, 1150, 1154, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1170, 1171, 1172, 1173, 1176, 1177, 1180, 1182, 1192, 1193], "trace": 0, "upward": 0, "through": [0, 693, 1058, 1067, 1080, 1106, 1112, 1123, 1126, 1130, 1135, 1182, 1192], "section": [0, 1100, 1104, 1106, 1109, 1112, 1113, 1123, 1129, 1130, 1133, 1165, 1166], "autogener": [0, 2], "inlin": [0, 3, 17, 22, 24, 32, 79, 83, 157, 183, 212, 213, 217, 235, 237, 238, 239, 263, 264, 278, 283, 285, 308, 309, 312, 330, 346, 348, 358, 388, 389, 431, 435, 442, 446, 453, 463, 466, 766, 792, 797, 802, 807, 817, 827, 828, 840, 842, 846, 854, 856, 857, 863, 866, 874, 876, 887, 888, 889, 897, 901, 906, 912, 941, 966, 969, 990, 996, 1048, 1049, 1058, 1059, 1082, 1094], "doc": [0, 2, 201, 248, 388, 396, 400, 410, 412, 413, 418, 436, 1106, 1123, 1124, 1129, 1135, 1178, 1193], "should": [0, 2, 14, 15, 21, 22, 25, 77, 103, 104, 110, 145, 146, 155, 215, 216, 221, 249, 260, 261, 270, 294, 305, 306, 319, 372, 388, 391, 392, 394, 396, 405, 408, 410, 412, 418, 424, 441, 476, 482, 485, 495, 503, 505, 509, 512, 515, 516, 521, 535, 538, 541, 542, 575, 625, 687, 688, 693, 699, 707, 717, 754, 755, 761, 762, 830, 831, 836, 840, 842, 889, 931, 932, 936, 937, 940, 942, 980, 981, 986, 1038, 1039, 1049, 1050, 1052, 1061, 1103, 1105, 1106, 1107, 1108, 1110, 1111, 1113, 1116, 1123, 1126, 1129, 1135, 1166, 1168, 1169, 1171, 1175, 1176, 1178, 1181, 1192], "get": [0, 1, 1102, 1103, 1107, 1110, 1113, 1114, 1115, 1117, 1124, 1127, 1128, 1149, 1166, 1171, 1172, 1173, 1179, 1182, 1192], "same": [0, 1, 2, 4, 140, 153, 163, 164, 167, 173, 176, 842, 889, 941, 953, 961, 965, 1106, 1107, 1110, 1114, 1116, 1117, 1119, 1123, 1129, 1131, 1137, 1140, 1141, 1165, 1166, 1182], "result": [0, 1, 21, 45, 93, 94, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 132, 133, 153, 157, 162, 163, 174, 192, 202, 693, 695, 696, 717, 722, 723, 725, 726, 727, 728, 729, 732, 735, 738, 989, 990, 996, 1000, 1001, 1024, 1035, 1040, 1047, 1048, 1049, 1055, 1058, 1059, 1060, 1062, 1063, 1065, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1081, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1096, 1102, 1105, 1106, 1113, 1117, 1118, 1123, 1124, 1127, 1136, 1141, 1148, 1165, 1166, 1167, 1168, 1169, 1171, 1175, 1176, 1178, 1180, 1181, 1193], "help": [0, 1103, 1107, 1109, 1124, 1129, 1192], "oaklib": [0, 1099, 1105, 1107, 1110, 1114, 1115, 1116, 1117, 1120, 1123, 1126, 1129, 1130, 1131, 1135, 1137, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1193], "A": [0, 1, 2, 3, 4, 5, 10, 11, 12, 14, 15, 17, 18, 19, 20, 23, 24, 25, 26, 27, 30, 31, 32, 33, 34, 36, 37, 38, 42, 43, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 75, 76, 78, 79, 80, 81, 82, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 99, 100, 101, 103, 104, 106, 107, 110, 111, 112, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 139, 141, 142, 143, 145, 146, 147, 150, 151, 153, 155, 156, 157, 158, 161, 162, 163, 166, 167, 168, 170, 171, 174, 175, 176, 177, 180, 181, 183, 184, 185, 186, 188, 189, 192, 193, 194, 198, 199, 203, 208, 209, 210, 212, 215, 216, 219, 220, 221, 222, 223, 224, 233, 234, 236, 246, 251, 256, 257, 258, 260, 261, 262, 265, 267, 268, 269, 270, 271, 272, 273, 276, 277, 279, 280, 281, 282, 284, 286, 287, 288, 289, 290, 291, 296, 301, 302, 303, 305, 306, 307, 310, 312, 314, 315, 317, 318, 319, 320, 323, 324, 328, 329, 331, 333, 334, 335, 336, 337, 340, 341, 342, 343, 347, 351, 353, 356, 358, 359, 360, 361, 362, 364, 367, 368, 372, 373, 374, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 391, 392, 393, 394, 396, 398, 399, 400, 402, 403, 405, 406, 408, 409, 411, 413, 414, 417, 418, 419, 420, 421, 424, 426, 427, 428, 430, 431, 432, 435, 436, 437, 438, 440, 441, 442, 443, 444, 445, 446, 448, 450, 452, 453, 454, 456, 458, 463, 464, 465, 466, 467, 468, 472, 473, 474, 475, 479, 480, 485, 486, 487, 494, 495, 496, 498, 502, 503, 504, 505, 506, 507, 508, 510, 511, 515, 516, 517, 523, 525, 527, 530, 531, 536, 538, 539, 540, 541, 544, 546, 550, 551, 552, 553, 554, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 580, 582, 583, 584, 586, 587, 588, 589, 591, 592, 593, 594, 596, 597, 598, 599, 600, 601, 602, 603, 606, 607, 608, 609, 610, 612, 613, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 635, 637, 638, 646, 647, 648, 649, 652, 655, 657, 658, 660, 663, 664, 665, 666, 668, 671, 675, 682, 683, 684, 687, 688, 690, 691, 692, 693, 694, 699, 700, 701, 707, 709, 710, 711, 716, 717, 718, 719, 720, 722, 731, 735, 736, 737, 739, 740, 744, 749, 750, 751, 754, 755, 758, 760, 762, 763, 765, 766, 767, 771, 772, 773, 774, 775, 776, 777, 778, 780, 783, 791, 792, 793, 794, 795, 796, 797, 799, 802, 803, 804, 805, 806, 807, 814, 816, 822, 823, 826, 830, 831, 833, 834, 836, 837, 838, 841, 842, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 866, 868, 869, 870, 872, 873, 874, 876, 877, 881, 882, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 897, 898, 899, 903, 905, 908, 909, 910, 911, 912, 915, 916, 920, 921, 927, 928, 929, 931, 932, 934, 935, 936, 937, 938, 939, 940, 943, 950, 952, 953, 954, 955, 956, 959, 960, 967, 968, 970, 975, 976, 977, 980, 981, 983, 984, 986, 987, 989, 990, 992, 993, 996, 997, 1001, 1024, 1025, 1027, 1033, 1034, 1035, 1036, 1038, 1039, 1040, 1044, 1045, 1048, 1049, 1052, 1053, 1054, 1059, 1062, 1063, 1065, 1067, 1068, 1069, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1082, 1084, 1085, 1086, 1087, 1088, 1090, 1091, 1092, 1093, 1096, 1098, 1099, 1106, 1108, 1109, 1111, 1113, 1115, 1118, 1126, 1129, 1130, 1131, 1136, 1137, 1141, 1142, 1145, 1162, 1165, 1166, 1174, 1176, 1180, 1182], "subcommand": [0, 1100, 1102, 1105, 1176], "must": [0, 6, 14, 15, 25, 95, 103, 104, 110, 135, 145, 146, 155, 204, 215, 216, 221, 252, 260, 261, 270, 297, 305, 306, 311, 319, 331, 350, 375, 391, 392, 400, 408, 476, 480, 485, 488, 490, 495, 503, 505, 509, 512, 515, 516, 521, 530, 535, 538, 540, 541, 545, 563, 596, 603, 625, 665, 678, 687, 688, 698, 699, 745, 754, 755, 762, 818, 830, 831, 836, 923, 931, 932, 937, 939, 955, 956, 971, 980, 981, 986, 1029, 1038, 1039, 1052, 1061, 1105, 1129, 1135, 1162, 1166, 1171, 1172, 1182], "pass": [0, 213, 1058, 1067, 1080, 1106, 1107, 1108, 1115, 1118, 1124, 1129, 1133, 1136, 1142, 1145, 1158, 1165, 1169, 1171, 1181, 1182], "most": [0, 1, 21, 77, 373, 386, 394, 405, 411, 417, 475, 695, 732, 765, 771, 780, 1100, 1102, 1106, 1107, 1109, 1110, 1113, 1116, 1117, 1118, 1131, 1132, 1135, 1136, 1140, 1141, 1156, 1163, 1165, 1170, 1171, 1177], "requir": [0, 2, 20, 61, 63, 92, 93, 119, 126, 128, 153, 166, 170, 175, 217, 223, 230, 262, 265, 282, 290, 307, 310, 341, 364, 388, 393, 396, 402, 410, 412, 425, 436, 452, 476, 480, 485, 488, 503, 505, 509, 512, 521, 522, 530, 533, 535, 540, 541, 545, 575, 608, 625, 695, 725, 743, 764, 765, 766, 775, 776, 779, 785, 801, 803, 813, 815, 816, 817, 825, 828, 835, 840, 842, 864, 936, 939, 940, 942, 952, 991, 999, 1028, 1035, 1041, 1043, 1055, 1060, 1066, 1086, 1093, 1102, 1104, 1107, 1109, 1110, 1117, 1123, 1124, 1126, 1132, 1133, 1140, 1181], "specif": [0, 1, 2, 4, 10, 11, 12, 42, 46, 51, 93, 99, 100, 101, 121, 125, 139, 140, 141, 143, 163, 208, 209, 210, 212, 227, 234, 256, 257, 258, 279, 301, 302, 303, 321, 331, 379, 383, 387, 437, 494, 496, 498, 613, 682, 683, 684, 717, 749, 750, 751, 780, 822, 823, 826, 882, 927, 928, 929, 953, 975, 976, 977, 989, 1001, 1008, 1033, 1034, 1036, 1067, 1102, 1106, 1107, 1108, 1113, 1116, 1117, 1118, 1123, 1124, 1126, 1129, 1135, 1136, 1142, 1156, 1163, 1166, 1176, 1181, 1182], "ani": [0, 27, 42, 46, 109, 112, 125, 158, 163, 202, 217, 223, 224, 230, 234, 249, 264, 272, 279, 283, 294, 309, 323, 331, 346, 372, 405, 414, 437, 443, 476, 480, 485, 488, 495, 503, 509, 512, 521, 530, 535, 540, 541, 544, 545, 553, 563, 595, 613, 665, 694, 701, 717, 735, 767, 780, 841, 882, 943, 953, 992, 1001, 1050, 1054, 1067, 1101, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1113, 1114, 1117, 1118, 1119, 1123, 1126, 1129, 1131, 1132, 1135, 1137, 1140, 1142, 1145, 1149, 1155, 1156, 1159, 1161, 1162, 1165, 1166, 1167, 1168, 1172, 1173, 1174, 1176, 1178, 1179, 1180, 1192, 1193], "g": [0, 1, 4, 50, 55, 69, 70, 316, 352, 388, 389, 402, 403, 417, 437, 453, 717, 735, 842, 872, 888, 941, 957, 1035, 1060, 1093, 1102, 1106, 1107, 1108, 1113, 1115, 1117, 1118, 1126, 1140, 1145, 1148, 1156, 1159, 1163, 1165, 1166, 1168, 1169, 1171, 1175, 1176, 1178, 1181, 1182], "h": 0, "v": [0, 941, 961, 1124, 1135, 1166, 1177], "verbos": [0, 1129], "q": [0, 1158], "quiet": 0, "stacktrac": [0, 1100, 1117, 1123], "If": [0, 2, 4, 21, 42, 45, 46, 56, 71, 77, 153, 163, 182, 188, 191, 381, 400, 418, 437, 470, 693, 737, 765, 771, 939, 941, 949, 953, 962, 968, 989, 1000, 1001, 1100, 1105, 1109, 1113, 1115, 1117, 1118, 1119, 1123, 1126, 1129, 1130, 1133, 1135, 1140, 1141, 1142, 1145, 1158, 1162, 1166, 1167, 1169, 1171, 1172, 1174, 1180, 1182], "show": [0, 695, 717, 738, 1099, 1109, 1110, 1113, 1115, 1117, 1129, 1131, 1135, 1165, 1166, 1171], "full": [0, 693, 695, 717, 720, 723, 1100, 1102, 1110, 1114, 1119, 1129, 1131, 1140, 1156, 1172, 1179], "error": [0, 1051, 1103, 1113, 1119, 1124, 1145, 1171], "default": [0, 21, 77, 1055, 1058, 1067, 1083, 1102, 1105, 1106, 1107, 1111, 1113, 1114, 1116, 1117, 1119, 1123, 1135, 1145, 1156, 1166, 1167, 1169, 1170, 1172, 1180, 1181], "fals": [0, 3, 5, 21, 46, 77, 91, 93, 123, 125, 134, 163, 203, 212, 234, 237, 251, 279, 296, 311, 331, 344, 374, 437, 476, 480, 485, 486, 488, 505, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 564, 566, 569, 613, 625, 675, 717, 744, 766, 775, 776, 780, 814, 882, 921, 953, 970, 1001, 1027, 1067, 1117, 1119, 1145, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "save": [0, 1136, 1166, 1170, 1174], "save_a": 0, "mutat": [0, 1107, 1136], "where": [0, 1, 140, 384, 437, 693, 717, 720, 1035, 1040, 1061, 1062, 1063, 1065, 1067, 1068, 1069, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1084, 1085, 1086, 1087, 1088, 1090, 1091, 1092, 1093, 1096, 1099, 1103, 1106, 1107, 1109, 1110, 1111, 1113, 1114, 1115, 1116, 1118, 1119, 1123, 1140, 1145, 1166, 1171, 1173, 1175, 1177, 1179, 1191, 1192], "chang": [0, 4, 30, 31, 34, 36, 42, 46, 47, 48, 49, 50, 51, 54, 55, 56, 68, 69, 70, 71, 78, 80, 81, 82, 84, 89, 248, 842, 854, 882, 1047, 1105, 1106, 1108, 1113, 1118, 1119, 1123, 1127, 1128, 1129, 1135, 1140, 1145, 1165, 1166, 1168, 1174, 1182], "autosav": [0, 1136, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "determin": [0, 4, 21, 30, 36, 45, 46, 77, 78, 153, 163, 693, 694, 698, 707, 709, 710, 716, 717, 718, 719, 720, 722, 731, 737, 739, 842, 882, 916, 1035, 1040, 1062, 1063, 1065, 1067, 1068, 1069, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1084, 1085, 1086, 1087, 1088, 1090, 1091, 1092, 1093, 1096, 1106, 1113, 1119, 1145, 1165, 1166, 1171, 1177, 1181], "automat": [0, 2, 4, 50, 1106, 1109, 1115, 1123, 1135, 1158, 1159, 1192], "place": [0, 140, 153, 161, 163, 1099, 1106, 1136, 1142], "named_prefix_map": 0, "prefixcc": 0, "expans": [0, 1, 1166], "metamodel": [0, 200, 293, 370, 469, 669, 741, 810, 914, 1026, 1095, 1166], "metamodel_map": 0, "overrid": [0, 1055, 1058, 1067, 1083, 1094, 1107, 1110, 1166], "properti": [0, 1, 21, 25, 46, 110, 125, 155, 163, 221, 234, 270, 279, 319, 331, 373, 380, 382, 386, 388, 393, 394, 396, 397, 403, 404, 405, 408, 411, 417, 437, 476, 479, 480, 481, 484, 485, 488, 502, 503, 504, 505, 506, 507, 508, 512, 521, 526, 530, 532, 533, 536, 538, 540, 541, 542, 545, 613, 693, 694, 695, 699, 717, 762, 780, 828, 836, 842, 882, 937, 953, 986, 1001, 1035, 1052, 1060, 1067, 1102, 1106, 1107, 1111, 1117, 1118, 1119, 1145, 1166, 1173, 1174, 1175, 1176, 1179, 1181, 1193], "import": [0, 248, 389, 533, 613, 742, 812, 842, 882, 898, 1099, 1105, 1106, 1107, 1108, 1110, 1114, 1115, 1116, 1117, 1118, 1123, 1124, 1126, 1130, 1131, 1135, 1137, 1140, 1141, 1143, 1145, 1148, 1154, 1156, 1158, 1159, 1162, 1163, 1165, 1166, 1167, 1170, 1171, 1172, 1176, 1180, 1182, 1192, 1193], "depth": [0, 1182], "import_depth": [0, 1182], "maximum": [0, 1, 129, 693, 717, 722, 989, 1001, 1004, 1061, 1116, 1118, 1166, 1182, 1192], "travers": [0, 685, 692, 717, 1102, 1106, 1111, 1129, 1137, 1172, 1182], "current": [0, 14, 15, 25, 103, 104, 110, 145, 146, 155, 215, 216, 221, 260, 261, 270, 305, 306, 319, 381, 391, 392, 408, 422, 515, 516, 538, 687, 688, 699, 754, 755, 762, 830, 831, 836, 931, 932, 937, 980, 981, 986, 1038, 1039, 1052, 1102, 1105, 1106, 1108, 1113, 1117, 1118, 1124, 1128, 1129, 1135, 1136, 1143, 1149, 1151, 1158, 1159, 1161, 1162, 1165, 1166, 1168, 1169, 1173, 1178, 1181, 1182, 1193], "onli": [0, 1, 212, 227, 382, 388, 394, 424, 431, 939, 941, 953, 956, 961, 963, 989, 1001, 1102, 1106, 1109, 1116, 1118, 1119, 1124, 1129, 1136, 1140, 1143, 1145, 1149, 1158, 1165, 1166, 1168, 1171, 1172, 1178, 1179, 1181], "pronto": [0, 1, 1102, 1105, 1106, 1133, 1140, 1141, 1152, 1154, 1160, 1164, 1166], "locat": [0, 1130, 1135], "associations_typ": 0, "prefer": [0, 1, 2, 694, 1129, 1171], "preferred_languag": [0, 1116], "lexic": [0, 202, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 307, 308, 309, 310, 318, 328, 329, 330, 331, 334, 335, 336, 341, 346, 347, 348, 351, 356, 359, 362, 364, 367, 369, 1103, 1109, 1113, 1127, 1129, 1140, 1164, 1166, 1181], "element": [0, 31, 46, 212, 228, 234, 240, 262, 269, 277, 279, 284, 286, 287, 288, 289, 290, 307, 318, 329, 331, 347, 351, 356, 359, 362, 364, 437, 448, 476, 480, 488, 502, 509, 512, 521, 530, 535, 540, 541, 545, 612, 613, 1061, 1100, 1106, 1107, 1108, 1109, 1118, 1132, 1137, 1141, 1165, 1166, 1172, 1176, 1181], "other": [0, 1, 31, 46, 202, 217, 223, 230, 373, 386, 388, 394, 396, 405, 411, 417, 418, 419, 428, 430, 431, 432, 436, 437, 441, 442, 443, 446, 453, 454, 456, 463, 466, 468, 475, 695, 717, 728, 1100, 1102, 1106, 1107, 1108, 1109, 1111, 1112, 1113, 1114, 1115, 1117, 1118, 1123, 1126, 1128, 1130, 1143, 1159, 1164, 1166, 1168, 1172, 1176, 1181, 1192], "other_languag": 0, "addit": [0, 3, 17, 21, 22, 45, 46, 79, 212, 227, 234, 437, 448, 507, 1035, 1058, 1060, 1067, 1068, 1080, 1106, 1108, 1111, 1114, 1117, 1118, 1119, 1123, 1126, 1128, 1129, 1136, 1142, 1145, 1148, 1169, 1174, 1180, 1182, 1192], "request": [0, 1176], "requests_cache_db": 0, "all": [0, 1, 21, 153, 157, 163, 182, 183, 188, 191, 262, 263, 273, 278, 279, 285, 287, 307, 308, 311, 312, 324, 330, 331, 348, 350, 356, 358, 385, 388, 389, 431, 435, 437, 443, 445, 446, 458, 481, 482, 613, 641, 840, 846, 863, 881, 882, 897, 920, 990, 993, 996, 1001, 1099, 1100, 1101, 1103, 1105, 1106, 1109, 1110, 1114, 1115, 1116, 1117, 1118, 1119, 1123, 1129, 1131, 1132, 1133, 1135, 1136, 1140, 1141, 1142, 1158, 1165, 1166, 1167, 1171, 1172, 1173, 1174, 1175, 1177, 1178, 1179, 1180, 1181, 1182, 1192], "http": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 232, 233, 234, 235, 236, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1102, 1106, 1108, 1109, 1110, 1113, 1114, 1116, 1118, 1119, 1123, 1124, 1129, 1134, 1135, 1138, 1145, 1150, 1156, 1157, 1159, 1163, 1166, 1171, 1176, 1178, 1180, 1182, 1183, 1192], "file": [0, 2, 389, 1099, 1103, 1106, 1109, 1114, 1115, 1116, 1118, 1120, 1124, 1127, 1128, 1130, 1131, 1133, 1140, 1142, 1143, 1145, 1152, 1154, 1160, 1164, 1165, 1166, 1169, 1170, 1180, 1182], "w": [0, 1135, 1151], "wrap_adapt": 0, "anoth": [0, 3, 17, 30, 37, 43, 46, 53, 60, 65, 66, 67, 75, 76, 78, 79, 82, 84, 85, 86, 87, 90, 153, 163, 202, 335, 418, 437, 941, 949, 953, 1100, 1106, 1108, 1116, 1117, 1123, 1129, 1165, 1166, 1168, 1171, 1177, 1192], "llm": [0, 1104, 1120, 1127, 1152, 1164, 1180], "semsimian": [0, 1111], "input_typ": 0, "format": [0, 2, 394, 424, 476, 480, 485, 488, 508, 509, 512, 521, 530, 533, 535, 540, 541, 545, 560, 1103, 1106, 1107, 1108, 1110, 1111, 1113, 1114, 1115, 1117, 1119, 1129, 1130, 1131, 1136, 1137, 1143, 1144, 1145, 1159, 1160, 1165, 1166, 1182, 1192], "permiss": [0, 1158], "vari": [0, 1106, 1107, 1136], "depend": [0, 4, 49, 51, 382, 437, 989, 1008, 1106, 1114, 1126, 1129, 1133, 1135, 1136, 1149, 1166], "context": [0, 1106, 1107, 1111, 1126, 1192], "add": [0, 476, 480, 488, 507, 509, 512, 521, 527, 530, 535, 540, 541, 545, 1059, 1116, 1117, 1123, 1124, 1126, 1130, 1148, 1165, 1166, 1171, 1182], "merg": [0, 1, 382, 476, 480, 488, 499, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 613, 842, 882, 890, 1111, 1116, 1129, 1134, 1135, 1166], "0001988": 0, "explicit": [0, 4, 49, 51, 1108, 1129, 1135, 1171, 1182], "fetch": [0, 1102, 1106, 1128, 1166, 1171], "envo": [0, 1118, 1165], "core": [0, 3, 17, 22, 31, 38, 46, 53, 200, 293, 370, 388, 431, 437, 448, 469, 565, 613, 669, 741, 810, 914, 1026, 1095, 1106, 1108, 1110, 1111, 1131, 1140, 1166, 1171], "behavior": [0, 21, 30, 45, 46, 77, 78, 1107, 1119, 1129, 1131, 1132, 1135, 1136, 1145, 1166, 1176, 1193], "simpl": [0, 1, 202, 212, 234, 236, 237, 384, 386, 388, 431, 437, 443, 447, 448, 450, 462, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 780, 783, 791, 792, 793, 794, 795, 796, 797, 799, 802, 803, 804, 805, 806, 807, 1099, 1100, 1104, 1106, 1109, 1111, 1113, 1114, 1117, 1132, 1140, 1152, 1159, 1164, 1166, 1167, 1180, 1191], "datamodel": [0, 1, 118, 162, 163, 201, 248, 273, 279, 280, 281, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 780, 910, 967, 993, 1024, 1035, 1060, 1093, 1098, 1099, 1106, 1117, 1124, 1127, 1128, 1129, 1131, 1132, 1136, 1140, 1143, 1145, 1148, 1154, 1156, 1165, 1166, 1168, 1171, 1172, 1173, 1179, 1180, 1181, 1182], "tupl": [0, 1099, 1107, 1114, 1117, 1154, 1159, 1160, 1162, 1165, 1166, 1172, 1173, 1175, 1176, 1177, 1178, 1180, 1193], "being": [0, 1, 31, 46, 202, 381, 422, 423, 437, 443, 470, 471, 476, 480, 488, 506, 509, 510, 511, 512, 521, 527, 530, 533, 535, 540, 541, 545, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668, 695, 732, 765, 780, 793, 803, 828, 840, 842, 863, 882, 1106, 1107, 1113, 1128, 1129, 1191], "some": [0, 1, 31, 46, 381, 382, 384, 386, 422, 433, 437, 455, 510, 511, 527, 540, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 582, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 620, 623, 625, 635, 646, 647, 652, 655, 657, 658, 664, 665, 666, 668, 939, 953, 968, 1100, 1102, 1106, 1107, 1108, 1109, 1112, 1113, 1114, 1115, 1116, 1117, 1119, 1123, 1129, 1130, 1135, 1136, 1140, 1149, 1159, 1162, 1163, 1165, 1166, 1170, 1172, 1174, 1176, 1180, 1191, 1192], "standard": [0, 1, 2, 273, 324, 372, 394, 411, 418, 420, 437, 465, 993, 1100, 1102, 1104, 1106, 1107, 1108, 1110, 1111, 1114, 1116, 1117, 1118, 1119, 1129, 1131, 1132, 1156, 1159, 1192], "vocabulari": [0, 212, 227, 373, 380, 394, 405, 406, 411, 417, 418, 437, 475, 842, 882, 887, 889, 1035, 1060, 1093, 1099, 1107, 1109, 1114, 1116, 1117, 1119, 1124, 1131, 1156, 1165, 1166, 1172, 1192], "sko": [0, 1, 217, 232, 316, 352, 476, 480, 485, 488, 503, 504, 505, 507, 508, 509, 512, 521, 530, 535, 540, 541, 545, 550, 555, 558, 559, 575, 588, 589, 593, 625, 635, 694, 842, 888, 1106, 1107, 1109, 1110, 1114, 1116, 1129, 1192], "altlabel": [0, 476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 550, 694, 1107], "oboinowl": [0, 411, 437, 465, 480, 485, 530, 535, 540, 545, 587, 594, 620, 621, 622, 623, 624, 637, 657, 671, 1107, 1110, 1114, 1115, 1166, 1192], "etc": [0, 1, 2, 223, 233, 388, 446, 1106, 1118, 1129, 1170, 1182], "know": [0, 1099, 1103, 1107, 1129, 1131, 1162, 1192], "model": [0, 1, 18, 19, 31, 41, 93, 106, 107, 125, 129, 150, 151, 163, 201, 202, 219, 220, 236, 267, 268, 279, 314, 315, 331, 398, 399, 405, 437, 448, 505, 507, 525, 531, 575, 613, 625, 690, 691, 717, 742, 758, 760, 780, 812, 833, 834, 882, 934, 935, 942, 953, 983, 984, 989, 1001, 1024, 1044, 1045, 1047, 1067, 1103, 1104, 1106, 1109, 1111, 1114, 1115, 1117, 1120, 1127, 1140, 1142, 1143, 1152, 1165, 1166, 1180], "give": [0, 1, 153, 163, 1107, 1117, 1123, 1129, 1140, 1173], "back": [0, 1, 394, 424, 1129, 1140, 1141, 1154, 1160], "richer": 0, "data": [0, 1, 31, 41, 201, 202, 236, 404, 437, 448, 742, 812, 824, 882, 910, 1047, 1060, 1067, 1068, 1069, 1073, 1076, 1077, 1084, 1085, 1086, 1093, 1098, 1102, 1103, 1104, 1105, 1106, 1109, 1110, 1111, 1113, 1114, 1119, 1127, 1129, 1132, 1135, 1140, 1142, 1143, 1156, 1158, 1165, 1179, 1180], "present": [0, 4, 42, 46, 80, 81, 153, 163, 164, 167, 173, 176, 202, 381, 386, 388, 393, 431, 437, 446, 460, 470, 471, 1102, 1117, 1119, 1137, 1145, 1166, 1172, 1173, 1180, 1192], "includ": [0, 1, 2, 21, 45, 46, 388, 431, 437, 446, 448, 502, 503, 504, 505, 506, 507, 508, 510, 511, 527, 541, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668, 694, 717, 735, 842, 876, 882, 886, 898, 989, 997, 1000, 1001, 1046, 1067, 1097, 1100, 1101, 1106, 1108, 1109, 1110, 1113, 1114, 1115, 1117, 1118, 1119, 1123, 1126, 1129, 1131, 1136, 1137, 1141, 1145, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1175, 1176, 1178, 1179, 1180, 1181, 1192], "proven": [0, 212, 234, 247, 405, 437, 1108], "In": [0, 1, 2, 212, 227, 942, 953, 1099, 1106, 1107, 1108, 1109, 1110, 1111, 1113, 1115, 1116, 1117, 1118, 1119, 1126, 1129, 1131, 1132, 1135, 1140, 1145, 1158, 1159, 1166, 1173, 1182, 1192], "futur": [0, 1102, 1105, 1106, 1113, 1118, 1123, 1129, 1130, 1135, 1136, 1140, 1159, 1165, 1172, 1173, 1178, 1182], "mai": [0, 1, 2, 4, 6, 21, 45, 49, 51, 95, 135, 202, 204, 212, 227, 252, 297, 335, 375, 382, 418, 490, 678, 745, 818, 825, 827, 828, 901, 923, 939, 940, 941, 952, 953, 954, 959, 966, 971, 1029, 1102, 1105, 1106, 1107, 1108, 1109, 1113, 1114, 1115, 1116, 1117, 1118, 1123, 1126, 1129, 1135, 1136, 1140, 1141, 1149, 1158, 1159, 1166, 1167, 1170, 1172, 1173, 1174, 1176, 1178, 1179, 1180, 1181, 1182, 1191, 1192], "becom": [0, 4, 42, 46, 49, 51, 316, 352, 1115, 1118, 1145], "true": [0, 3, 4, 5, 17, 20, 21, 22, 24, 32, 33, 36, 37, 38, 41, 42, 45, 46, 49, 50, 51, 53, 61, 63, 65, 66, 70, 77, 79, 80, 81, 82, 83, 85, 86, 88, 90, 91, 92, 93, 94, 119, 125, 126, 128, 131, 134, 153, 157, 163, 164, 165, 166, 167, 170, 173, 175, 176, 179, 182, 183, 184, 188, 189, 191, 196, 197, 203, 212, 213, 217, 223, 227, 228, 230, 233, 234, 235, 237, 238, 239, 240, 247, 249, 251, 262, 263, 264, 265, 269, 278, 279, 282, 283, 284, 285, 287, 290, 291, 294, 296, 307, 308, 309, 310, 311, 312, 317, 318, 330, 331, 337, 341, 342, 343, 344, 346, 347, 348, 350, 353, 356, 358, 360, 361, 364, 367, 368, 372, 373, 374, 380, 381, 382, 385, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 428, 429, 430, 431, 432, 434, 435, 436, 437, 442, 445, 446, 452, 453, 454, 457, 460, 463, 464, 466, 467, 475, 476, 479, 480, 481, 482, 485, 486, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 526, 527, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 550, 554, 555, 558, 559, 560, 562, 563, 564, 565, 568, 569, 570, 571, 572, 575, 576, 577, 580, 582, 583, 584, 585, 586, 588, 589, 590, 592, 593, 594, 596, 598, 600, 601, 602, 604, 606, 607, 608, 610, 612, 613, 614, 628, 629, 630, 635, 636, 637, 641, 644, 647, 649, 650, 652, 653, 654, 655, 656, 657, 659, 660, 661, 662, 664, 666, 668, 674, 675, 677, 692, 693, 695, 696, 704, 705, 707, 711, 717, 724, 725, 726, 731, 734, 737, 743, 744, 761, 764, 765, 766, 779, 780, 781, 785, 792, 797, 800, 801, 802, 803, 807, 813, 814, 815, 816, 817, 824, 825, 827, 828, 835, 840, 842, 846, 854, 856, 857, 862, 863, 864, 866, 874, 876, 882, 884, 887, 888, 889, 891, 897, 900, 901, 904, 906, 912, 921, 936, 939, 940, 941, 942, 947, 948, 949, 952, 953, 955, 956, 958, 959, 960, 961, 962, 963, 964, 966, 968, 969, 970, 978, 988, 989, 990, 991, 996, 997, 999, 1000, 1001, 1009, 1010, 1017, 1025, 1027, 1028, 1035, 1041, 1043, 1048, 1049, 1050, 1055, 1058, 1059, 1060, 1066, 1067, 1082, 1086, 1093, 1094, 1106, 1107, 1115, 1117, 1119, 1131, 1142, 1145, 1146, 1158, 1159, 1165, 1166, 1167, 1171, 1172, 1174, 1176, 1177, 1179, 1180, 1181, 1192], "provenancem": 0, "o": [0, 21, 45, 46, 384, 403, 437, 1105, 1110, 1113, 1117, 1118, 1119, 1123, 1124, 1129, 1130, 1133, 1136, 1143, 1145, 1149, 1159, 1166, 1171], "output": [0, 2, 21, 46, 77, 322, 331, 1100, 1110, 1114, 1119, 1123, 1124, 1129, 1133, 1136, 1142, 1143], "output_typ": 0, "desir": [0, 1106, 1135, 1136, 1171], "": [0, 1, 21, 24, 44, 45, 46, 384, 437, 543, 842, 882, 1061, 1103, 1106, 1108, 1115, 1116, 1117, 1123, 1126, 1130, 1140, 1141, 1166], "given": [0, 1061, 1107, 1108, 1119, 1142, 1145, 1166, 1173, 1177, 1178, 1179, 1180, 1182, 1192], "here": [0, 1, 394, 424, 817, 882, 895, 939, 956, 1101, 1106, 1109, 1113, 1115, 1116, 1117, 1118, 1119, 1123, 1124, 1126, 1129, 1130, 1136, 1138, 1140, 1145, 1165, 1166, 1171, 1172, 1180], "mean": [0, 1, 109, 140, 148, 214, 273, 324, 388, 397, 401, 404, 405, 406, 407, 437, 442, 495, 676, 685, 694, 698, 765, 780, 799, 922, 993, 1051, 1061, 1105, 1106, 1107, 1109, 1117, 1129, 1131, 1137, 1166], "transit": [0, 510, 511, 527, 545, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 580, 582, 583, 584, 586, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 616, 617, 620, 621, 623, 624, 625, 635, 646, 647, 649, 652, 655, 657, 658, 663, 664, 665, 666, 668, 1102, 1168, 1172, 1173, 1178], "closur": [0, 3, 4, 17, 22, 42, 46, 49, 51, 65, 66, 85, 86, 389, 1102, 1106, 1165], "parent": [0, 153, 163, 165, 166, 168, 169, 173, 179, 185, 186, 187, 191, 384, 447, 1113, 1129, 1130, 1166, 1175, 1179], "just": [0, 1, 2, 1100, 1103, 1115, 1117, 1129], "owl": [0, 1, 201, 202, 372, 381, 382, 384, 385, 386, 388, 393, 394, 397, 403, 404, 405, 421, 427, 433, 437, 443, 451, 454, 455, 458, 460, 470, 474, 476, 480, 485, 488, 489, 503, 509, 512, 521, 530, 533, 535, 536, 537, 540, 541, 542, 545, 549, 551, 552, 553, 556, 560, 561, 566, 569, 578, 580, 581, 585, 586, 595, 604, 608, 611, 613, 615, 616, 627, 631, 632, 633, 634, 643, 644, 645, 649, 651, 654, 659, 660, 667, 668, 670, 672, 673, 824, 827, 835, 838, 842, 862, 872, 882, 899, 917, 918, 942, 1103, 1106, 1108, 1109, 1110, 1112, 1114, 1115, 1117, 1119, 1126, 1127, 1128, 1129, 1131, 1132, 1135, 1137, 1143, 1145, 1159, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1175, 1176, 1178, 1181, 1182], "4023094": 0, "ancestri": [0, 1102, 1172], "graph": [0, 1, 201, 372, 373, 380, 381, 382, 384, 385, 386, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 419, 430, 431, 432, 436, 437, 441, 442, 443, 446, 448, 453, 454, 463, 466, 1103, 1106, 1111, 1118, 1119, 1127, 1128, 1132, 1135, 1137, 1140, 1152, 1156, 1157, 1161, 1162, 1163, 1164, 1165, 1166, 1170, 1172, 1178, 1181, 1182], "like": [0, 1, 405, 698, 827, 939, 953, 1099, 1100, 1102, 1106, 1107, 1108, 1109, 1113, 1114, 1115, 1116, 1117, 1118, 1123, 1124, 1126, 1129, 1131, 1132, 1136, 1140, 1141, 1149, 1165, 1170, 1181, 1192], "relat": [0, 1, 3, 17, 22, 46, 65, 66, 85, 86, 153, 157, 161, 162, 163, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 180, 181, 182, 183, 184, 185, 186, 188, 189, 192, 193, 194, 198, 199, 406, 407, 476, 480, 488, 499, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 613, 641, 742, 842, 882, 896, 939, 956, 1101, 1102, 1106, 1107, 1108, 1111, 1118, 1135, 1137, 1140, 1143, 1162, 1163, 1164, 1170, 1172, 1178], "constrain": [0, 382, 419, 429, 437, 443, 451, 457, 495, 613, 941, 953, 1117, 1129, 1165, 1166, 1171, 1173], "backend": [0, 1099, 1109, 1110, 1127, 1128, 1130, 1137, 1166, 1191], "also": [0, 1, 153, 163, 405, 437, 1100, 1102, 1106, 1107, 1108, 1109, 1110, 1113, 1114, 1115, 1117, 1118, 1123, 1126, 1129, 1130, 1131, 1135, 1145, 1152, 1155, 1156, 1159, 1162, 1163, 1165, 1166, 1171, 1172, 1174, 1176, 1182], "goblet": 0, "cell": [0, 1104, 1106, 1117, 1118, 1123, 1130, 1135, 1137, 1151, 1166], "go": [0, 1, 31, 46, 388, 389, 402, 437, 453, 476, 480, 485, 488, 503, 505, 507, 509, 512, 521, 530, 535, 540, 541, 545, 563, 575, 578, 596, 625, 665, 827, 828, 901, 939, 953, 1035, 1060, 1093, 1099, 1106, 1107, 1115, 1117, 1118, 1119, 1123, 1126, 1129, 1130, 1132, 1136, 1137, 1143, 1149, 1154, 1158, 1159, 1162, 1165, 1166, 1167, 1171, 1172, 1178, 1180, 1182, 1192], "0005773": [0, 1117, 1159, 1166, 1167, 1172], "0005737": [0, 1117, 1159, 1166], "python": [0, 202, 1099, 1103, 1106, 1109, 1110, 1111, 1115, 1118, 1124, 1126, 1127, 1128, 1129, 1132, 1136, 1141, 1182, 1184, 1191, 1192], "api": [0, 1102, 1103, 1106, 1118, 1123, 1124, 1129, 1136, 1137, 1140, 1148, 1150, 1151, 1152, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1183], "incatool": [0, 495, 1100, 1106, 1124, 1163, 1192], "github": [0, 2, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 480, 488, 495, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 1100, 1102, 1106, 1109, 1124, 1134, 1138, 1139, 1150, 1157, 1163, 1183, 1192], "io": [0, 388, 396, 400, 410, 412, 413, 418, 436, 1106, 1109, 1123, 1192], "access": [0, 1, 495, 1099, 1100, 1103, 1106, 1108, 1110, 1111, 1114, 1123, 1126, 1129, 1131, 1132, 1135, 1137, 1155, 1156, 1158, 1159, 1162, 1182, 1183, 1192], "kit": [0, 495, 1100, 1102, 1109, 1123, 1192], "obograph": [0, 1, 202, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 1107, 1127, 1128, 1133, 1143, 1144, 1145, 1146, 1154, 1156, 1164, 1166, 1170], "separ": [0, 1, 2, 1100, 1107, 1108, 1115, 1118, 1119, 1136, 1137, 1141, 1165], "shorthand": [0, 480, 530, 540, 545, 613, 1106, 1108, 1182], "m": [0, 1114, 1123, 1129, 1151, 1166], "method": [0, 1, 1099, 1102, 1103, 1106, 1107, 1113, 1115, 1117, 1118, 1119, 1130, 1131, 1132, 1136, 1141, 1156, 1159, 1165, 1166, 1170, 1171, 1172, 1178, 1180, 1181, 1182, 1192], "graph_traversal_method": 0, "whether": [0, 1106, 1107, 1115, 1116, 1119, 1137, 1141, 1145, 1161, 1166, 1167, 1168, 1169, 1170, 1171, 1175, 1176, 1178, 1181], "formal": [0, 1, 381, 437, 939, 955, 956, 1100, 1106, 1108, 1109, 1110, 1117, 1123, 1166, 1178], "entail": [0, 140, 153, 163, 842, 876, 882, 1100, 1106, 1111, 1113, 1131, 1166, 1173, 1178, 1179], "walk": [0, 1106, 1117, 1130, 1133, 1172], "hop": [0, 1106, 1117], "each": [0, 1, 140, 153, 161, 163, 202, 273, 321, 324, 331, 365, 437, 448, 827, 993, 1100, 1102, 1106, 1107, 1109, 1117, 1118, 1119, 1123, 1126, 1129, 1132, 1140, 1141, 1145, 1163, 1166, 1168, 1169, 1171, 1175, 1176, 1178, 1180, 1181, 1192], "piec": [0, 1, 1106, 1108, 1109, 1180], "text": [0, 109, 140, 148, 202, 214, 273, 324, 380, 397, 404, 406, 411, 476, 480, 488, 495, 505, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 575, 583, 667, 676, 685, 694, 698, 842, 860, 861, 882, 922, 978, 988, 989, 991, 993, 998, 1002, 1003, 1005, 1006, 1007, 1009, 1010, 1011, 1012, 1013, 1015, 1018, 1019, 1020, 1021, 1022, 1051, 1061, 1099, 1103, 1106, 1109, 1111, 1113, 1118, 1123, 1126, 1127, 1129, 1137, 1149, 1151, 1164, 1165, 1166, 1170, 1176], "entiti": [0, 1, 3, 4, 17, 22, 23, 24, 31, 41, 44, 46, 60, 67, 84, 93, 125, 132, 133, 142, 157, 163, 174, 192, 212, 227, 228, 229, 231, 234, 236, 237, 239, 240, 241, 242, 247, 372, 373, 380, 381, 382, 384, 385, 388, 389, 393, 394, 396, 403, 405, 410, 411, 412, 417, 418, 420, 424, 426, 427, 436, 437, 438, 440, 441, 443, 450, 456, 464, 465, 467, 468, 472, 473, 474, 475, 495, 517, 522, 613, 694, 717, 735, 743, 765, 771, 780, 789, 793, 795, 796, 803, 805, 806, 842, 882, 889, 916, 989, 997, 1000, 1001, 1024, 1106, 1107, 1108, 1109, 1111, 1116, 1117, 1127, 1129, 1132, 1141, 1148, 1151, 1154, 1162, 1165, 1166, 1167, 1170, 1171, 1172, 1173, 1174, 1177, 1178, 1179, 1181], "recognit": [0, 1001, 1024, 1180], "bioport": [0, 1, 1103, 1106, 1128, 1136, 1137, 1152, 1164, 1166, 1171, 1180], "have": [0, 1, 2, 212, 227, 405, 437, 448, 476, 480, 485, 488, 495, 503, 507, 508, 509, 510, 511, 512, 521, 527, 530, 533, 535, 540, 541, 545, 550, 560, 584, 598, 600, 601, 606, 613, 816, 881, 882, 936, 940, 941, 953, 969, 1061, 1099, 1100, 1101, 1102, 1103, 1105, 1106, 1108, 1109, 1113, 1114, 1115, 1116, 1117, 1118, 1123, 1124, 1126, 1129, 1131, 1132, 1135, 1136, 1140, 1141, 1149, 1166, 1192], "built": [0, 1106, 1131], "support": [0, 3, 4, 17, 22, 43, 46, 82, 90, 380, 388, 394, 418, 424, 446, 1099, 1103, 1106, 1107, 1111, 1113, 1117, 1118, 1126, 1129, 1131, 1140, 1149, 1151, 1162, 1165, 1166, 1168, 1176, 1181], "case": [0, 1, 28, 113, 140, 159, 225, 273, 274, 324, 325, 386, 415, 547, 693, 702, 710, 717, 768, 843, 944, 993, 994, 1056, 1099, 1102, 1106, 1108, 1109, 1110, 1111, 1114, 1117, 1118, 1119, 1133, 1140, 1145, 1159, 1166, 1171, 1180, 1182], "function": [0, 1102, 1106, 1109, 1113, 1114, 1115, 1123, 1126, 1129, 1130, 1134, 1136, 1141, 1142, 1164, 1180, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1191], "enlarg": 0, "nucleu": [0, 1099, 1119, 1126, 1136, 1143, 1154, 1159, 1162, 1166, 1167, 1171, 1172, 1180, 1182], "peripher": 0, "blood": 0, "basic": [0, 153, 163, 1099, 1102, 1104, 1106, 1111, 1113, 1114, 1115, 1116, 1117, 1118, 1123, 1124, 1127, 1128, 1132, 1140, 1156, 1164, 1170, 1181], "algorithm": [0, 264, 279, 283, 309, 331, 346], "base": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 25, 26, 27, 28, 29, 42, 46, 49, 50, 51, 91, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 110, 111, 112, 113, 114, 125, 129, 134, 135, 136, 137, 138, 139, 141, 142, 143, 144, 145, 146, 147, 149, 150, 151, 152, 154, 155, 156, 158, 159, 160, 203, 204, 205, 206, 207, 208, 209, 210, 211, 215, 216, 218, 219, 220, 221, 222, 224, 225, 226, 234, 236, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 266, 267, 268, 270, 271, 272, 273, 274, 275, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 313, 314, 315, 319, 320, 322, 323, 324, 325, 326, 331, 345, 374, 375, 376, 377, 378, 379, 383, 387, 390, 391, 392, 395, 398, 399, 400, 408, 409, 413, 414, 415, 416, 418, 449, 486, 487, 490, 491, 492, 493, 494, 496, 498, 513, 514, 515, 516, 517, 523, 524, 525, 531, 538, 539, 543, 544, 546, 547, 548, 675, 678, 679, 680, 681, 682, 683, 684, 686, 687, 688, 689, 690, 691, 697, 699, 700, 701, 702, 703, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 762, 763, 767, 768, 769, 770, 780, 800, 814, 818, 819, 820, 821, 822, 823, 826, 829, 830, 831, 832, 833, 834, 836, 837, 840, 841, 843, 844, 846, 863, 881, 882, 897, 920, 921, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 937, 938, 943, 944, 945, 970, 971, 972, 973, 974, 975, 976, 977, 979, 980, 981, 982, 983, 984, 985, 986, 987, 992, 993, 994, 995, 1027, 1029, 1030, 1031, 1032, 1033, 1034, 1036, 1037, 1038, 1039, 1042, 1044, 1045, 1050, 1052, 1053, 1054, 1056, 1057, 1067, 1102, 1104, 1105, 1106, 1109, 1111, 1113, 1124, 1129, 1140, 1142, 1161, 1166, 1176, 1180, 1182, 1193], "builtin": [0, 1106, 1117], "slow": [0, 1105, 1118, 1123, 1141, 1165], "index": [0, 202, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 307, 308, 309, 310, 318, 330, 331, 348, 827, 1106, 1123, 1127, 1140, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "re": [0, 1135], "everi": [0, 153, 163, 1110, 1113, 1117, 1118, 1129, 1168], "time": [0, 4, 9, 46, 98, 125, 138, 163, 207, 234, 255, 279, 300, 331, 378, 437, 493, 613, 681, 717, 748, 780, 821, 839, 875, 882, 907, 926, 953, 974, 1001, 1032, 1067, 1104, 1112, 1113, 1117, 1129, 1131, 1135, 1136, 1171], "To": [0, 1102, 1105, 1107, 1114, 1115, 1117, 1118, 1127, 1129, 1132, 1136, 1145, 1154, 1156, 1159, 1160, 1162, 1163, 1165, 1166, 1171], "preserv": 0, "On": [0, 1102, 1108, 1110, 1115, 1117, 1135, 1192], "subsequ": [0, 1180], "iter": [0, 693, 1103, 1106, 1132, 1163, 1165, 1166, 1167, 1168, 1171, 1172, 1173, 1175, 1176, 1177, 1178, 1180, 1181, 1191], "reus": [0, 1124], "pars": [0, 21, 30, 45, 46, 77, 78, 418, 1103, 1106, 1159, 1166, 1182], "gilda": [0, 1152, 1164], "instal": [0, 1103, 1120, 1126, 1128, 1135], "extra": [0, 212, 227, 1123, 1129, 1182], "whole": [0, 1124, 1129, 1166, 1177], "perform": [0, 989, 1001, 1047, 1067, 1068, 1071, 1081, 1089, 1102, 1106, 1115, 1117, 1118, 1124, 1129, 1130, 1140, 1151, 1159, 1163, 1170, 1178, 1180], "ground": [0, 989, 1001, 1104, 1107, 1123, 1180], "brca2": 0, "flag": [0, 1108, 1113, 1118, 1119, 1145], "plugin": [0, 1102, 1106, 1120, 1127, 1128, 1180], "oakx": [0, 2, 1126, 1134], "spaci": [0, 1126, 1180], "bero": 0, "myeloid": 0, "deriv": [0, 1135], "suppressor": 0, "yield": [0, 264, 273, 279, 283, 292, 309, 324, 331, 346, 369, 993, 1099, 1106, 1111, 1141, 1165, 1166, 1168, 1171, 1172, 1173, 1175, 1177, 1178, 1180, 1181], "confid": [0, 316, 331, 371, 988, 1001, 1040, 1067, 1129], "0": [0, 2, 3, 4, 17, 20, 21, 22, 23, 24, 93, 94, 129, 148, 153, 157, 212, 213, 217, 223, 262, 263, 264, 265, 269, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 476, 479, 480, 485, 488, 489, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 530, 533, 535, 536, 537, 540, 541, 542, 545, 677, 692, 693, 695, 696, 743, 764, 765, 766, 813, 815, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 936, 939, 940, 941, 942, 978, 988, 989, 990, 991, 1035, 1040, 1046, 1047, 1048, 1049, 1055, 1058, 1059, 1060, 1123, 1129, 1134, 1165, 1166, 1167, 1172], "8": [0, 1106, 1117, 1127, 1128, 1166], "object_alias": [0, 988, 1001], "mdsc": 0, "object_id": [0, 695, 717, 765, 780, 988, 1001, 1040, 1067, 1099, 1114, 1129, 1171, 1180], "mesh_d000072737": 0, "object_label": [0, 3, 17, 22, 41, 46, 695, 717, 765, 780, 988, 1001, 1110, 1129, 1135, 1180], "subject_end": [0, 978, 988, 1001, 1019, 1129, 1180], "30": [0, 1166], "subject_start": [0, 978, 988, 1001, 1019, 1129, 1180], "w3id": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 232, 233, 234, 235, 236, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 469, 669, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1114, 1124, 1171, 1176, 1180], "org": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 232, 233, 234, 235, 236, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 388, 389, 402, 437, 453, 469, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1102, 1106, 1108, 1109, 1110, 1113, 1114, 1116, 1119, 1124, 1129, 1133, 1145, 1156, 1166, 1171, 1176, 1178, 1180, 1182, 1192], "word": [0, 273, 324, 993], "span": [0, 693, 717, 720, 1106, 1165], "entir": [0, 827, 828, 846, 863, 881, 882, 897, 901, 920, 989, 1001, 1119, 1124, 1166, 1169, 1172, 1181], "text_fil": [0, 1180], "newlin": 0, "entri": [0, 1115, 1119, 1126, 1145], "distinct": [0, 1, 413, 507, 842, 873, 882, 889, 909, 1106, 1107, 1162, 1165, 1172, 1182], "lexical_index_fil": 0, "recreat": [0, 2], "unless": [0, 28, 113, 159, 225, 274, 325, 415, 547, 702, 768, 843, 944, 994, 1056, 1119, 1129, 1145, 1167, 1182], "column": [0, 1100, 1106, 1113], "match_column": [0, 1180], "tsv": [0, 1105, 1114, 1124, 1129, 1149, 1171], "csv": [0, 1113, 1114, 1118, 1129], "train": 0, "en_ner_craft_md": 0, "x": [0, 2, 1115], "exclud": [0, 989, 1001, 1025, 1115, 1166], "token": [0, 989, 1001, 1025], "exclude_token": 0, "prior": [0, 2, 46, 72, 73, 74], "r": [0, 386, 403, 437, 1162, 1166, 1167, 1170, 1172, 1175], "rule": [0, 202, 273, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 403, 421, 476, 480, 488, 503, 509, 512, 521, 526, 530, 535, 540, 541, 545, 563, 596, 603, 665, 941, 946, 1035, 1060, 1061, 1067, 1093, 1102, 1105, 1127, 1180], "rules_fil": 0, "conform": [0, 10, 11, 12, 14, 15, 25, 46, 99, 100, 101, 103, 104, 110, 125, 139, 141, 143, 145, 146, 155, 163, 208, 209, 210, 215, 216, 221, 234, 256, 257, 258, 260, 261, 270, 279, 301, 302, 303, 305, 306, 319, 331, 379, 383, 387, 391, 392, 408, 437, 494, 495, 496, 498, 515, 516, 538, 613, 682, 683, 684, 687, 688, 699, 717, 749, 750, 751, 754, 755, 762, 780, 822, 823, 826, 830, 831, 836, 882, 927, 928, 929, 931, 932, 937, 953, 975, 976, 977, 980, 981, 986, 1001, 1033, 1034, 1036, 1038, 1039, 1052, 1061, 1067, 1099, 1104, 1105, 1106, 1107, 1110, 1114, 1118, 1129, 1131, 1136, 1178, 1180], "c": [0, 384, 388, 431, 437, 1113, 1117, 1119, 1126, 1129, 1166, 1175], "configur": [0, 92, 125, 128, 693, 696, 707, 709, 710, 716, 717, 718, 719, 720, 722, 731, 735, 737, 739, 989, 997, 1000, 1001, 1004, 1007, 1008, 1017, 1025, 1046, 1058, 1064, 1067, 1070, 1080, 1083, 1094, 1097, 1119, 1123, 1168, 1172, 1173, 1174, 1180, 1181, 1193], "configuration_fil": 0, "config": [0, 1120, 1148, 1176], "patch": [0, 1106, 1174], "kgcl": [0, 202, 1047, 1099, 1106, 1115, 1127, 1128, 1168, 1174], "com": [0, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 480, 488, 495, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 1100, 1106, 1123, 1124, 1134, 1135, 1138, 1150, 1157, 1159, 1163, 1183], "ttl": [0, 1110, 1166, 1182], "renam": [0, 693], "0000561": 0, "amacrin": 0, "neuron": [0, 1099, 1130, 1135, 1176, 1180], "simpleobo": [0, 1117, 1160, 1166], "edit": [0, 1106, 1123, 1136, 1166], "0005634": [0, 1166, 1171, 1172, 1180], "foo": [0, 1115, 1165], "new": [0, 4, 36, 42, 46, 50, 54, 55, 56, 80, 81, 321, 331, 355, 1101, 1106, 1117, 1120, 1123, 1128, 1136, 1162, 1166], "With": [0, 1117, 1118, 1119, 1127, 1128, 1136, 1145], "uri": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1106, 1107, 1111, 1119, 1124, 1127, 1142, 1145, 1166, 1172], "purl": [0, 388, 389, 402, 437, 453, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 1108, 1110, 1113, 1119, 1129, 1166, 1182, 1192], "obolibrari": [0, 388, 389, 402, 437, 453, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 1108, 1110, 1113, 1119, 1129, 1133, 1135, 1166, 1182, 1192], "cl_0000561": 0, "warn": [0, 1051], "still": [0, 1035, 1067, 1106, 1107, 1116, 1166, 1178, 1192], "experiment": [0, 1102, 1113, 1117, 1136, 1150, 1178, 1193], "thing": [0, 1, 3, 4, 17, 22, 30, 37, 41, 43, 46, 53, 60, 65, 66, 67, 75, 76, 78, 79, 82, 84, 85, 86, 87, 90, 163, 164, 212, 217, 227, 229, 231, 233, 234, 235, 241, 245, 246, 476, 480, 485, 488, 502, 503, 504, 508, 509, 512, 521, 522, 530, 533, 535, 540, 541, 545, 555, 559, 562, 581, 588, 591, 597, 605, 609, 613, 627, 630, 632, 635, 654, 655, 658, 668, 1100, 1106, 1108, 1109, 1110, 1117, 1140, 1166, 1168, 1169, 1171, 1175, 1176, 1178, 1181, 1182, 1192], "bear": 0, "mind": 0, "work": [0, 1, 2, 693, 717, 1102, 1104, 1105, 1106, 1109, 1113, 1116, 1117, 1120, 1127, 1128, 1130, 1131, 1132, 1135, 1140, 1154, 1186, 1192], "instead": [0, 411, 438, 1106, 1115, 1117, 1119, 1129, 1136, 1140, 1145, 1163, 1166, 1182], "surround": 0, "changes_output": 0, "changes_input": 0, "changes_format": 0, "json": [0, 2, 14, 15, 46, 103, 104, 125, 145, 146, 163, 215, 216, 234, 260, 261, 279, 305, 306, 331, 391, 392, 437, 515, 516, 613, 687, 688, 717, 754, 755, 780, 830, 831, 882, 931, 932, 953, 980, 981, 1001, 1038, 1039, 1067, 1106, 1119, 1123, 1136, 1143, 1145, 1154, 1159, 1182], "dry": 0, "kcgl": 0, "do": [0, 1, 202, 386, 765, 771, 1103, 1106, 1108, 1113, 1117, 1119, 1123, 1124, 1126, 1129, 1135, 1136, 1140, 1142, 1145, 1162, 1166, 1168, 1169, 1171, 1172, 1175, 1176, 1178, 1181, 1182], "complex": [0, 437, 448, 1117, 1137, 1162, 1174], "atom": [0, 264, 265, 279, 282, 283, 291, 292, 309, 310, 331, 341, 346, 367, 369, 677, 693, 717, 765, 771, 772, 773, 774, 777, 778, 780, 783, 793, 794, 795, 796, 799, 803, 804, 805, 806, 1174], "ignor": [0, 1166, 1174, 1182], "invalid": [0, 1174], "contributor": [0, 476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650, 816, 817, 864, 865, 881, 882, 895, 906, 1174], "person": [0, 31, 46, 223, 245, 1106, 1110], "contribut": [0, 380, 828, 840, 842, 846, 882, 1103, 1127], "overwrit": 0, "sourc": [0, 2, 46, 163, 169, 172, 178, 279, 331, 613, 717, 780, 953, 1001, 1067, 1099, 1100, 1102, 1111, 1124, 1129, 1133, 1142, 1144, 1145, 1146, 1148, 1150, 1151, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1193], "my": [0, 212, 1103, 1123, 1126, 1130, 1145, 1149, 1158, 1159], "0002200": 0, "modifi": [0, 30, 32, 33, 34, 36, 37, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 161, 166, 167, 168, 170, 171, 174, 175, 176, 177, 180, 181, 183, 184, 185, 186, 188, 189, 192, 193, 194, 198, 199, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 419, 420, 421, 422, 423, 424, 425, 426, 427, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 510, 511, 527, 549, 550, 551, 552, 553, 554, 555, 556, 557, 559, 560, 561, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 579, 580, 582, 583, 584, 585, 586, 587, 588, 589, 591, 592, 593, 594, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 627, 635, 636, 637, 638, 644, 645, 646, 647, 648, 649, 652, 655, 657, 658, 659, 660, 661, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 704, 705, 706, 707, 708, 709, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 771, 772, 773, 774, 775, 776, 777, 778, 779, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 864, 865, 866, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 879, 880, 881, 883, 885, 886, 887, 888, 889, 890, 892, 893, 894, 895, 896, 897, 898, 899, 901, 902, 903, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1047, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1108, 1142, 1181], "id": [0, 93, 119, 125, 140, 212, 217, 223, 230, 232, 233, 234, 239, 388, 396, 410, 412, 437, 480, 488, 499, 503, 512, 521, 522, 530, 533, 535, 540, 541, 545, 565, 596, 613, 639, 764, 780, 813, 816, 828, 835, 840, 842, 882, 939, 942, 953, 988, 991, 1001, 1011, 1028, 1035, 1041, 1043, 1060, 1067, 1093, 1107, 1110, 1113, 1115, 1116, 1117, 1118, 1119, 1129, 1130, 1135, 1145, 1158, 1163, 1166, 1171, 1192], "1": [0, 1, 3, 4, 17, 20, 21, 22, 23, 24, 92, 93, 129, 140, 148, 153, 157, 212, 217, 223, 262, 264, 265, 269, 307, 309, 310, 311, 312, 316, 318, 321, 322, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 476, 479, 480, 485, 488, 489, 495, 502, 503, 505, 506, 508, 509, 512, 521, 522, 530, 533, 535, 537, 540, 541, 545, 677, 692, 693, 695, 696, 743, 764, 765, 766, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 936, 939, 940, 941, 942, 978, 988, 989, 991, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1055, 1058, 1060, 1102, 1106, 1113, 1115, 1116, 1118, 1120, 1127, 1128, 1151, 1159, 1167, 1176], "2": [0, 2, 140, 388, 396, 400, 410, 412, 413, 418, 436, 1113, 1115, 1116, 1117, 1120, 1127, 1128, 1129, 1151, 1166, 1171, 1176], "3": [0, 140, 1113, 1116, 1120, 1123, 1127, 1128, 1129, 1134, 1165, 1166, 1167], "chain": [0, 388, 403, 421, 437, 443, 451, 454, 1117, 1128, 1173], "them": [0, 389, 437, 1103, 1106, 1113, 1124, 1129, 1166, 1178, 1181], "redund": [0, 476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 941, 949, 953, 962, 1167, 1178], "more": [0, 1, 4, 14, 25, 42, 46, 49, 51, 93, 103, 110, 115, 121, 125, 140, 145, 155, 201, 202, 212, 215, 221, 227, 234, 260, 270, 305, 319, 381, 391, 408, 437, 448, 476, 480, 485, 488, 508, 509, 512, 515, 521, 530, 533, 535, 538, 540, 541, 545, 560, 687, 699, 742, 754, 762, 812, 830, 836, 931, 937, 941, 966, 980, 986, 1038, 1052, 1058, 1067, 1070, 1099, 1106, 1107, 1108, 1109, 1110, 1111, 1113, 1115, 1116, 1118, 1120, 1123, 1127, 1129, 1132, 1135, 1140, 1141, 1152, 1158, 1163, 1165, 1166, 1167, 1168, 1171, 1172, 1180, 1181, 1182, 1193], "test": [0, 321, 331, 332, 345, 354, 1099, 1101, 1102, 1110, 1116, 1117, 1119, 1120, 1132, 1135, 1141, 1143, 1145, 1154, 1156, 1159, 1162, 1166, 1167, 1171, 1172, 1180, 1182], "candid": [0, 941, 953, 1191], "form": [0, 14, 15, 103, 104, 145, 146, 153, 188, 215, 216, 260, 261, 273, 305, 306, 324, 388, 391, 392, 403, 421, 431, 432, 437, 476, 495, 505, 509, 512, 515, 516, 521, 541, 575, 687, 688, 754, 755, 830, 831, 931, 932, 980, 981, 993, 1038, 1039, 1100, 1106, 1107, 1108, 1110, 1116, 1118, 1123, 1129, 1136, 1166], "tripl": [0, 3, 17, 22, 38, 46, 53, 476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 842, 882, 905, 1106, 1114, 1117, 1131, 1162, 1163, 1166, 1192], "period": [0, 1119, 1145], "0005743": 0, "ncbitaxon": [0, 488, 509, 605, 940, 1131, 1140, 1165, 1166], "2759": [0, 1166], "never": [0, 939, 941, 953, 955, 961, 963, 1115, 1140], "evolut": 0, "arxiv": 0, "ab": 0, "1802": 0, "06004": 0, "0000229": 0, "gain": 0, "loss": 0, "eukaryota": [0, 1166], "eval": 0, "evo": 0, "blob": [0, 1138], "main": [0, 1, 397, 437, 1100, 1101, 1102, 1106, 1108, 1117, 1126, 1129, 1148, 1161, 1166, 1181], "notebook": [0, 1100, 1102, 1124, 1127], "ipynb": 0, "evolution_fil": 0, "contain": [0, 24, 46, 83, 394, 437, 695, 717, 728, 941, 965, 1106, 1107, 1109, 1116, 1117, 1119, 1129, 1131, 1145, 1172], "lookup": [0, 1102, 1106, 1118, 1129, 1130, 1132, 1137, 1140, 1152, 1164, 1166, 1171, 1182], "hp": [0, 1102, 1107, 1108, 1109, 1115, 1118, 1119, 1123, 1145, 1148, 1153, 1166, 1182], "hpoa": [0, 31, 46, 1108, 1118, 1165], "plu": [0, 212, 227, 228, 229, 231, 234, 237, 239, 240, 241, 242, 247, 939, 953, 968, 1106, 1129, 1133, 1166, 1182, 1186], "0001392": 0, "abnorm": [0, 1106, 1108, 1123, 1145, 1153, 1166], "liver": [0, 1123, 1153], "awkward": 0, "both": [0, 140, 437, 448, 717, 735, 1001, 1024, 1099, 1100, 1103, 1105, 1106, 1107, 1111, 1113, 1114, 1117, 1118, 1168, 1175, 1176, 1192], "bundl": [0, 481, 613, 1134, 1140], "combin": [0, 1, 9, 46, 98, 125, 138, 163, 207, 234, 255, 279, 300, 331, 378, 382, 437, 493, 613, 681, 717, 748, 780, 821, 882, 926, 939, 953, 968, 974, 1001, 1032, 1067, 1102, 1106, 1108, 1118, 1165, 1166, 1172, 1177, 1182, 1192], "togeth": [0, 389, 435, 437, 443, 448, 453, 1116, 1118, 1148, 1165, 1166], "dictybas": 0, "spec": [0, 1143, 1165, 1167], "src": [0, 1124, 1126, 1130, 1165, 1167], "conf": [0, 1165, 1167], "yaml": [0, 3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 109, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 140, 148, 153, 157, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 212, 213, 214, 217, 223, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 262, 263, 264, 265, 269, 273, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 397, 402, 403, 404, 405, 406, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 495, 497, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 526, 527, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 676, 677, 685, 692, 693, 694, 695, 696, 698, 704, 705, 706, 707, 708, 709, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 761, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 879, 880, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 922, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 993, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1051, 1055, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1113, 1114, 1123, 1124, 1129, 1136, 1165, 1167, 1182], "0008104": 0, "autolabel": [0, 1158, 1167], "assign": [0, 1106, 1129, 1166], "absent": [0, 1148], "if_abs": 0, "when": [0, 1, 2, 14, 15, 21, 25, 30, 45, 46, 77, 78, 103, 104, 110, 145, 146, 155, 213, 215, 216, 221, 260, 261, 270, 305, 306, 319, 382, 384, 391, 392, 408, 437, 476, 480, 488, 506, 509, 512, 515, 516, 521, 530, 533, 535, 538, 540, 541, 545, 566, 572, 613, 687, 688, 693, 699, 717, 737, 754, 755, 762, 765, 771, 830, 831, 836, 931, 932, 937, 980, 981, 986, 1038, 1039, 1052, 1099, 1106, 1107, 1109, 1113, 1115, 1116, 1117, 1118, 1126, 1129, 1145, 1154, 1159, 1160, 1165, 1166, 1192], "empti": [0, 1166, 1171], "set_valu": 0, "field": [0, 1, 4, 46, 89, 109, 125, 217, 223, 230, 695, 698, 717, 723, 727, 738, 1099, 1108, 1129, 1165, 1167, 1171], "association_pred": 0, "role": [0, 380, 411, 417, 816, 881, 882, 1166], "terms_rol": 0, "how": [0, 153, 163, 693, 695, 698, 707, 709, 710, 716, 717, 718, 719, 720, 722, 731, 735, 737, 738, 739, 1103, 1106, 1109, 1111, 1113, 1127, 1128, 1129, 1130, 1131, 1136, 1141, 1172, 1182, 1192], "interpret": [0, 394, 437, 693, 698, 717, 739, 1106, 1159], "object": [0, 3, 4, 14, 15, 17, 19, 20, 22, 23, 24, 25, 27, 30, 31, 33, 34, 36, 37, 38, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 75, 76, 78, 79, 80, 81, 82, 84, 85, 86, 87, 88, 89, 90, 103, 104, 107, 110, 112, 125, 140, 145, 146, 148, 151, 153, 155, 158, 163, 164, 165, 166, 167, 168, 169, 173, 180, 182, 185, 186, 187, 188, 191, 215, 216, 220, 221, 224, 234, 260, 261, 268, 270, 272, 279, 305, 306, 311, 315, 319, 323, 331, 344, 373, 380, 384, 386, 391, 392, 399, 404, 405, 408, 411, 414, 417, 433, 437, 447, 448, 472, 476, 479, 480, 485, 488, 503, 509, 510, 511, 512, 515, 516, 521, 522, 527, 530, 531, 535, 536, 538, 540, 541, 544, 545, 550, 553, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 580, 582, 583, 584, 586, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 616, 617, 620, 621, 623, 624, 625, 635, 646, 647, 648, 649, 652, 655, 657, 658, 663, 664, 665, 666, 668, 687, 688, 691, 695, 699, 701, 717, 729, 743, 754, 755, 760, 762, 765, 767, 772, 780, 785, 794, 830, 831, 834, 836, 838, 841, 842, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 866, 868, 869, 870, 872, 873, 874, 876, 877, 881, 882, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 897, 898, 899, 903, 905, 908, 909, 911, 912, 915, 916, 920, 931, 932, 935, 937, 941, 943, 953, 966, 980, 981, 984, 986, 992, 1001, 1035, 1038, 1039, 1043, 1045, 1049, 1052, 1054, 1059, 1060, 1061, 1067, 1082, 1099, 1106, 1108, 1110, 1117, 1124, 1126, 1130, 1132, 1135, 1136, 1140, 1142, 1145, 1154, 1158, 1165, 1166, 1167, 1168, 1171, 1172, 1173, 1174, 1175, 1177], "subject": [0, 3, 4, 17, 20, 22, 23, 30, 31, 33, 37, 38, 41, 43, 46, 53, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 73, 74, 75, 76, 78, 79, 82, 85, 86, 87, 88, 90, 140, 148, 153, 163, 164, 165, 173, 175, 176, 177, 178, 181, 182, 188, 191, 193, 194, 195, 198, 199, 212, 228, 311, 331, 344, 384, 437, 462, 476, 480, 485, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 552, 563, 603, 665, 743, 765, 780, 785, 804, 842, 882, 889, 939, 941, 950, 952, 953, 954, 955, 956, 958, 959, 960, 968, 978, 988, 1001, 1019, 1035, 1043, 1060, 1067, 1069, 1077, 1106, 1108, 1110, 1117, 1118, 1124, 1135, 1140, 1158, 1165, 1166, 1167, 1171, 1172, 1173, 1175, 1177], "co": [0, 20, 33, 46, 57, 58, 59, 61, 62, 63, 64, 88, 1165], "wood": 0, "carbon": 0, "et": [0, 1107, 1118], "al": [0, 1107, 1118], "royalsocietypublish": 0, "doi": [0, 1102, 1108], "10": [0, 140, 1102, 1165], "1098": 0, "rsob": 0, "200149": 0, "amigo": [0, 1165], "9606": [0, 509, 1158], "0042416": 0, "0014046": 0, "As": [0, 1136, 1172, 1176], "heatmap": 0, "tmp": 0, "png": [0, 316, 371, 1133], "ofn": 0, "write": [0, 1102, 1105, 1109, 1120, 1123, 1127, 1130, 1131, 1135, 1136, 1141, 1169, 1170, 1181], "note": [0, 1, 2, 4, 21, 22, 49, 51, 77, 217, 223, 230, 249, 294, 335, 372, 386, 388, 405, 413, 431, 482, 485, 535, 541, 542, 613, 743, 761, 785, 840, 939, 942, 956, 1049, 1050, 1102, 1105, 1106, 1107, 1109, 1111, 1113, 1115, 1116, 1118, 1123, 1129, 1136, 1140, 1149, 1158, 1162, 1165, 1166, 1168, 1171, 1172, 1173, 1179, 1191, 1192], "funowl": [0, 202, 1102, 1106, 1127, 1134, 1140, 1157, 1159, 1160, 1162, 1173], "axiom_typ": 0, "about": [0, 1, 3, 4, 17, 22, 37, 41, 46, 79, 84, 87, 372, 373, 380, 381, 382, 384, 385, 388, 389, 393, 394, 396, 403, 405, 411, 417, 424, 437, 438, 440, 443, 450, 465, 472, 473, 475, 941, 953, 966, 1035, 1060, 1067, 1068, 1077, 1086, 1099, 1106, 1107, 1108, 1115, 1117, 1128, 1130, 1131, 1133, 1140, 1152, 1166, 1170, 1171, 1173], "refer": [0, 1, 28, 113, 142, 159, 163, 225, 274, 325, 373, 394, 405, 411, 415, 417, 418, 437, 440, 443, 450, 472, 473, 475, 547, 702, 768, 843, 944, 994, 1056, 1106, 1109, 1110, 1111, 1115, 1119, 1126, 1127, 1133, 1145, 1172, 1173, 1182], "pystow": [0, 1105, 1135], "dai": [0, 7, 27, 46, 96, 112, 125, 136, 158, 163, 205, 224, 234, 253, 272, 279, 298, 323, 331, 376, 414, 437, 491, 544, 613, 679, 701, 717, 746, 767, 780, 819, 841, 882, 924, 943, 953, 972, 992, 1001, 1030, 1054, 1067], "old": [0, 4, 36, 42, 46, 50, 68, 69, 70, 71, 80, 81, 1105], "days_old": 0, "anyth": [0, 2, 522, 526, 532, 608, 613, 668, 694, 1099, 1135, 1192, 1193], "than": [0, 2, 93, 115, 121, 125, 406, 476, 480, 485, 488, 508, 509, 512, 521, 530, 533, 535, 540, 541, 545, 560, 941, 946, 953, 1058, 1061, 1067, 1070, 1106, 1107, 1108, 1109, 1111, 1115, 1129, 1136, 1141, 1158, 1166, 1167], "number": [0, 10, 11, 12, 46, 93, 99, 100, 101, 125, 132, 133, 139, 141, 143, 163, 208, 209, 210, 234, 256, 257, 258, 279, 301, 302, 303, 331, 379, 383, 387, 437, 494, 496, 498, 613, 682, 683, 684, 693, 695, 717, 722, 732, 749, 750, 751, 765, 780, 783, 815, 822, 823, 825, 826, 842, 847, 848, 849, 855, 856, 857, 860, 861, 868, 869, 870, 873, 874, 876, 877, 882, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 898, 899, 903, 905, 908, 909, 911, 912, 915, 916, 927, 928, 929, 953, 975, 976, 977, 989, 1001, 1004, 1033, 1034, 1036, 1058, 1067, 1070, 1100, 1102, 1106, 1108, 1109, 1113, 1117, 1118, 1123, 1129, 1131, 1132, 1136, 1140, 1143, 1165, 1168, 1192], "100": 0, "todo": [0, 2, 476, 480, 485, 488, 489, 503, 506, 507, 508, 509, 512, 521, 530, 535, 536, 537, 540, 541, 545, 640, 765, 941, 1121, 1122, 1123, 1124, 1132, 1133, 1134, 1157, 1181, 1182], "unix": [0, 1109], "system": [0, 1, 1106, 1107, 1108, 1109, 1113, 1117, 1119, 1123, 1126, 1135, 1145, 1166], "textual": [0, 380, 411, 417, 437, 440, 443, 450, 472, 473, 475, 1001, 1024, 1109, 1113, 1118, 1123, 1180, 1192], "tropic": 0, "biom": 0, "temper": 0, "d": [0, 384, 388, 431, 437, 440, 443, 450, 472, 473, 475, 1099, 1113, 1129, 1135], "displai": [0, 1102, 1104, 1107, 1129, 1145], "obojson": [0, 1], "fhirjson": [0, 1119, 1145], "nl": [0, 1166], "statement": [0, 485, 551, 552, 553, 554, 560, 567, 571, 573, 587, 594, 597, 600, 607, 613, 618, 619, 622, 625, 637, 655, 660, 671, 842, 882, 911, 912, 941, 951, 953, 1106, 1152, 1162, 1166], "store": [0, 1102, 1106, 1110, 1129, 1131, 1132, 1149, 1165, 1166], "reific": 0, "assai": [0, 1135, 1137], "heart": [0, 1106, 1107, 1110, 1116], "invers": [0, 476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 1118], "But": [0, 382, 1102, 1106, 1113, 1117, 1118, 1126, 1140, 1192], "potenti": [0, 382, 419, 429, 437, 443, 451, 457, 507, 1106, 1115, 1117, 1141, 1166, 1192], "explos": 0, "especi": [0, 1117], "high": [0, 1106, 1129, 1136, 1140, 1159, 1168], "level": [0, 4, 49, 51, 405, 940, 952, 953, 954, 1106, 1107, 1114, 1126, 1132, 1136, 1140, 1162, 1166, 1168, 1192], "comput": [0, 828, 840, 842, 882, 897, 1106, 1111, 1113, 1117, 1126, 1127, 1129, 1132, 1177], "bar": 0, "produc": [0, 1104, 1141], "html": [0, 388, 396, 400, 410, 412, 413, 418, 436, 1106, 1119, 1123, 1145, 1192], "control": [0, 212, 228, 234, 273, 279, 324, 331, 993, 1001, 1109, 1129, 1166, 1168, 1169, 1171, 1175, 1176, 1178, 1181], "natur": [0, 1104, 1108, 1123], "txt": [0, 1158], "summari": [0, 4, 46, 89, 202, 824, 827, 828, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 866, 868, 869, 870, 872, 873, 874, 875, 876, 877, 881, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 897, 898, 899, 901, 903, 905, 907, 908, 909, 911, 912, 915, 916, 919, 920, 1123, 1127, 1164, 1168, 1170], "group": [0, 4, 24, 38, 44, 46, 83, 89, 249, 262, 263, 279, 287, 290, 294, 307, 308, 331, 356, 364, 372, 382, 405, 419, 429, 437, 440, 443, 450, 451, 457, 472, 473, 475, 476, 480, 481, 485, 488, 506, 509, 510, 511, 512, 521, 527, 530, 535, 540, 541, 545, 550, 555, 557, 559, 560, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 582, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 620, 623, 625, 635, 641, 646, 647, 652, 655, 657, 658, 664, 665, 666, 668, 761, 780, 815, 825, 828, 842, 856, 857, 874, 876, 882, 887, 888, 889, 901, 912, 940, 952, 953, 954, 1106, 1108, 1109, 1113, 1126, 1129, 1168, 1172, 1179], "accord": [0, 1113, 1123, 1172], "oio": [0, 373, 394, 405, 406, 410, 411, 412, 417, 464, 475, 476, 480, 485, 488, 502, 503, 504, 506, 507, 509, 512, 521, 530, 533, 535, 540, 541, 545, 563, 567, 568, 571, 573, 587, 594, 596, 598, 600, 601, 602, 606, 607, 612, 620, 621, 622, 623, 624, 637, 639, 640, 657, 660, 662, 671, 1104, 1107, 1110, 1114, 1115, 1166], "hasobonamespac": [0, 476, 480, 488, 502, 509, 512, 521, 530, 535, 540, 541, 545, 602, 1115], "partit": [0, 1, 828, 842, 882, 1179], "dictionari": [0, 273, 324, 993, 1132, 1144, 1166, 1168, 1179], "outer": 0, "kei": [0, 3, 17, 22, 46, 79, 212, 217, 230, 234, 239, 262, 263, 265, 278, 279, 280, 282, 285, 290, 307, 308, 310, 330, 331, 333, 341, 348, 364, 402, 405, 437, 440, 443, 450, 452, 472, 473, 475, 815, 817, 824, 825, 827, 850, 851, 852, 853, 864, 1055, 1067, 1084, 1093, 1103, 1129, 1142, 1152, 1166, 1168, 1172, 1175, 1179, 1183], "inner": 0, "__residual__": 0, "tabular": [0, 1113], "out": [0, 1, 827, 828, 901, 1102, 1103, 1115, 1116, 1123, 1130, 1132, 1136, 1148, 1166, 1167], "limit": [0, 394, 424, 437, 448, 693, 717, 989, 1001, 1102, 1106, 1108, 1113, 1129, 1132, 1163, 1165, 1166], "doe": [0, 1, 394, 420, 437, 695, 717, 723, 1103, 1104, 1105, 1106, 1113, 1117, 1118, 1124, 1126, 1129, 1132, 1137], "complet": [0, 1, 28, 46, 113, 125, 159, 163, 225, 234, 274, 279, 325, 331, 415, 437, 547, 613, 702, 717, 768, 780, 843, 882, 944, 953, 994, 1001, 1056, 1067, 1102, 1117, 1164, 1166], "robot": [0, 2, 1102, 1113, 1126, 1128, 1135, 1159, 1166, 1173], "other_ontologi": [0, 1168], "quick": [0, 1102, 1111, 1129], "change_typ": 0, "classcreat": 0, "edgedelet": 0, "group_by_properti": 0, "isdefinedbi": [0, 476, 480, 488, 506, 509, 512, 519, 521, 530, 533, 535, 540, 541, 545, 613, 1166], "namespac": [0, 388, 389, 402, 437, 453, 1099, 1126], "defin": [0, 1, 212, 227, 381, 388, 393, 422, 423, 425, 430, 434, 437, 442, 443, 454, 460, 470, 471, 941, 957, 1108, 1109, 1113, 1117, 1118, 1137, 1165, 1166, 1172, 1180], "infer": [0, 4, 42, 46, 49, 51, 941, 946, 953, 967, 969, 1106, 1113, 1117, 1129, 1158, 1162, 1166, 1179, 1182], "explicitli": [0, 2, 693, 716, 1129, 1162, 1165, 1166], "sh": [0, 311, 350, 388, 389, 402, 444, 452, 453, 816, 835, 902, 1035, 1048, 1049, 1051, 1059, 1060, 1061, 1068, 1069, 1073, 1077, 1082, 1084, 1086, 1093], "gaf": [0, 31, 46, 1108, 1165], "date": [0, 4, 8, 9, 39, 42, 46, 52, 54, 68, 97, 98, 125, 137, 138, 163, 206, 207, 234, 254, 255, 279, 299, 300, 331, 377, 378, 437, 476, 480, 488, 492, 493, 506, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650, 680, 681, 717, 747, 748, 780, 820, 821, 882, 925, 926, 953, 973, 974, 1001, 1031, 1032, 1067, 1103], "date1": 0, "date2": 0, "download_dir": 0, "public": [0, 3, 4, 17, 22, 42, 46, 80, 81, 380, 1108], "move": [0, 335, 1173], "old_dat": [0, 4, 40, 42, 46], "yyyi": 0, "mm": 0, "dd": 0, "new_dat": [0, 4, 40, 42, 46], "other_associ": 0, "group_bi": [0, 1179], "One": [0, 148, 1107, 1117, 1129, 1167, 1182], "primary_knowledge_sourc": [0, 3, 4, 17, 21, 22, 46, 1182], "compar": [0, 765, 771, 780, 793, 803, 828, 840, 842, 863, 882, 1107, 1111, 1117], "calcul": [0, 839, 845, 875, 882, 907, 919, 1099, 1102, 1106, 1118, 1164, 1166, 1170, 1171, 1177], "cross": [0, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 202, 373, 394, 405, 411, 417, 418, 437, 475, 1111, 1113, 1127], "connect": [0, 1, 162, 163, 437, 448, 510, 511, 527, 530, 536, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 580, 582, 583, 584, 586, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 616, 617, 620, 621, 623, 624, 625, 635, 646, 647, 649, 652, 655, 657, 658, 663, 664, 665, 666, 668, 941, 953, 958, 1106, 1107, 1113, 1114, 1128, 1149, 1152, 1155, 1162, 1165, 1166, 1175, 1178], "comparison": [0, 273, 324, 993], "zfa": [0, 1114], "distribut": [0, 1114, 1124, 1165], "within": [0, 14, 15, 24, 25, 46, 83, 103, 104, 110, 145, 146, 153, 155, 163, 164, 167, 173, 176, 215, 216, 221, 260, 261, 270, 305, 306, 319, 391, 392, 408, 476, 485, 505, 509, 512, 515, 516, 521, 538, 541, 625, 687, 688, 699, 754, 755, 762, 830, 831, 836, 931, 932, 937, 941, 953, 961, 980, 981, 986, 1038, 1039, 1052, 1099, 1106, 1107, 1113, 1115, 1123, 1124, 1130, 1163, 1165, 1182, 1192], "provid": [0, 1, 201, 202, 394, 418, 437, 448, 517, 523, 613, 693, 717, 735, 737, 817, 882, 895, 1099, 1100, 1102, 1104, 1106, 1107, 1108, 1109, 1110, 1111, 1113, 1114, 1116, 1118, 1123, 1126, 1129, 1132, 1133, 1136, 1137, 1140, 1141, 1149, 1155, 1156, 1158, 1162, 1164, 1166, 1167, 1168, 1170, 1172, 1174, 1175, 1176, 1178, 1179, 1180, 1181, 1192], "extern": [0, 212, 227, 380, 417, 437, 440, 443, 450, 472, 473, 475, 842, 882, 887, 889, 1035, 1065, 1067, 1068, 1069, 1072, 1073, 1076, 1077, 1084, 1085, 1086, 1092, 1093, 1096, 1099, 1129, 1136], "ont1": 0, "ont2": 0, "sssom": [0, 3, 17, 22, 67, 76, 87, 148, 202, 317, 331, 337, 342, 343, 353, 360, 361, 368, 695, 725, 726, 727, 728, 729, 765, 793, 795, 796, 803, 805, 806, 978, 988, 998, 1001, 1005, 1011, 1012, 1013, 1015, 1020, 1024, 1099, 1105, 1106, 1111, 1116, 1127, 1149, 1171, 1192], "exist": [0, 2, 372, 381, 386, 388, 396, 410, 412, 437, 441, 1107, 1113, 1115, 1117, 1118, 1120, 1126, 1132, 1136, 1153, 1166], "serial": [0, 6, 28, 95, 113, 135, 159, 204, 225, 252, 265, 274, 279, 282, 291, 297, 310, 325, 331, 341, 367, 375, 415, 490, 547, 678, 702, 745, 768, 818, 843, 923, 944, 971, 994, 1029, 1056, 1102, 1106, 1109, 1119, 1145, 1182], "mp": [0, 1118, 1148], "mapping_input": 0, "other_input": 0, "other_input_typ": 0, "intra": 0, "ident": [0, 140, 153, 188, 388, 396, 410, 412, 441, 1106, 1117], "report": [0, 93, 115, 121, 125, 202, 824, 827, 828, 838, 840, 842, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 866, 868, 869, 870, 872, 873, 874, 876, 877, 881, 882, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 897, 898, 899, 903, 905, 908, 909, 910, 911, 912, 915, 916, 920, 1048, 1050, 1058, 1059, 1067, 1070, 1080, 1082, 1083, 1094, 1127], "ha": [0, 1, 4, 50, 70, 389, 405, 437, 507, 510, 511, 521, 527, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668, 1099, 1102, 1106, 1107, 1109, 1110, 1113, 1117, 1118, 1119, 1129, 1131, 1135, 1141, 1145, 1156, 1163, 1166, 1170, 1182], "bidirect": 0, "left": [0, 140, 153, 157, 163, 165, 166, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 179, 182, 196, 197, 1113], "right": [0, 140, 153, 157, 163, 165, 179, 182, 185, 186, 187, 188, 191, 192, 193, 194, 195, 196, 197, 1107, 1113, 1129], "perspect": [0, 140, 153, 163, 202, 1115, 1171], "leav": [0, 21, 77, 1107, 1117, 1129, 1171, 1172], "off": [0, 1102, 1154], "pairwis": [0, 761, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 780, 783, 791, 792, 793, 794, 795, 796, 797, 799, 802, 803, 804, 805, 806, 807, 1106, 1118, 1177], "setwis": 0, "union": [0, 381, 437, 471, 693, 737, 765, 780, 783, 1100, 1193], "involv": [0, 1102, 1103, 1106, 1117, 1136, 1140, 1165, 1166, 1191], "express": [0, 153, 161, 163, 166, 167, 168, 170, 171, 175, 176, 177, 180, 181, 184, 185, 186, 188, 189, 193, 194, 198, 199, 201, 381, 386, 422, 423, 428, 433, 437, 443, 455, 470, 471, 482, 489, 536, 613, 698, 842, 848, 882, 1061, 1104, 1106, 1113, 1118, 1129, 1130, 1136, 1137, 1165, 1166, 1172, 1173, 1176, 1181], "easier": [0, 1105], "brows": 0, "desc": [0, 1100, 1113, 1118, 1123], "immun": [0, 1137], "export": [0, 1119, 1129, 1136, 1145, 1169], "pato": [0, 1117, 1135, 1182], "turtl": [0, 1106, 1109, 1115, 1131, 1182, 1192], "parameter": [0, 693, 717, 735, 737, 1106, 1192], "process": [0, 828, 840, 842, 882, 920, 989, 1001, 1025, 1102, 1106, 1115, 1123, 1137, 1163, 1172], "convert": [0, 382, 394, 424, 1102, 1105, 1116, 1119, 1127, 1141, 1142, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182], "fhir": [0, 1109, 1120, 1127, 1143, 1146], "fhir_config": 0, "block": [0, 1123, 1141], "remot": [0, 1102, 1106, 1123, 1130, 1131, 1137, 1141, 1161, 1162, 1163, 1172, 1180, 1182, 1191], "avoid": [0, 2, 1099, 1129, 1135, 1140, 1163], "killer": 0, "config_fil": 0, "param": [0, 250, 264, 279, 295, 309, 331, 1145, 1172], "enforc": [0, 1102, 1105, 1142], "canon": [0, 1118, 1142, 1145], "order": [0, 212, 214, 234, 242, 273, 324, 993, 1099, 1100, 1142, 1165], "forc": [0, 693, 710, 717, 1135], "dif": 0, "analysi": [0, 1120], "sampl": [0, 93, 125, 132, 133, 1106, 1117, 1167], "identifi": [0, 234, 437, 613, 1100, 1106, 1108, 1109, 1111, 1115, 1116, 1127, 1165, 1166, 1172, 1176, 1192], "gene": [0, 31, 46, 118, 125, 212, 223, 234, 236, 245, 1106, 1107, 1108, 1113, 1115, 1118, 1123, 1158, 1165, 1167], "return": [0, 693, 717, 722, 989, 1001, 1004, 1107, 1110, 1113, 1114, 1115, 1116, 1117, 1129, 1132, 1140, 1141, 1142, 1144, 1145, 1146, 1149, 1162, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1193], "repres": [0, 1, 18, 19, 27, 31, 46, 106, 107, 112, 118, 125, 142, 150, 151, 158, 162, 163, 202, 212, 217, 219, 220, 224, 234, 235, 236, 237, 239, 248, 267, 268, 272, 279, 280, 281, 314, 315, 323, 331, 333, 334, 373, 380, 382, 384, 385, 388, 389, 394, 398, 399, 400, 403, 405, 406, 411, 413, 414, 417, 418, 419, 421, 430, 431, 432, 436, 437, 438, 440, 441, 442, 443, 446, 448, 450, 451, 453, 454, 458, 463, 465, 466, 472, 473, 475, 525, 531, 544, 613, 690, 691, 701, 717, 735, 742, 758, 760, 761, 767, 780, 812, 833, 834, 841, 882, 934, 935, 936, 940, 943, 952, 953, 954, 967, 983, 984, 992, 1001, 1024, 1044, 1045, 1054, 1067, 1106, 1108, 1109, 1111, 1113, 1114, 1133, 1143, 1162, 1165, 1166, 1192], "gene2anat": 0, "g2t": 0, "u": [0, 1106, 1117, 1158], "recommend": [0, 212, 393, 402, 434, 452, 460, 480, 488, 530, 535, 540, 545, 695, 726, 1035, 1060, 1093, 1102, 1105, 1113, 1123, 1124, 1126, 1129, 1165, 1167, 1174, 1181, 1192], "alwai": [0, 1, 393, 460, 1105, 1106, 1126, 1129, 1165], "background": [0, 93, 116, 117, 125, 1111, 1117, 1167], "consid": [0, 2, 388, 396, 410, 412, 441, 476, 480, 484, 488, 499, 503, 509, 512, 521, 530, 532, 535, 540, 541, 545, 613, 641, 1113, 1115, 1141, 1159, 1165, 1166, 1177, 1178, 1179, 1192], "experi": [0, 1109], "subsum": [0, 941, 953, 963, 1175], "lower": [0, 1117], "alreadi": [0, 1118, 1129, 1149], "pseudo": 0, "fake": 0, "simpli": [0, 1109, 1116, 1136, 1171], "reflex": [0, 153, 163, 1106, 1117, 1118, 1172], "itself": [0, 1, 405, 1106, 1109, 1117], "summar": [0, 1113, 1123], "meaning": [0, 1117, 1129], "treat": [0, 28, 113, 159, 225, 274, 325, 415, 547, 693, 702, 737, 768, 843, 944, 994, 1056, 1100, 1106, 1107, 1108, 1115, 1118, 1131, 1135, 1145, 1165, 1179, 1192], "cutoff": [0, 92, 125, 128, 1167], "greater": [0, 1061, 1167], "05": [0, 1165, 1167], "sample_fil": 0, "b": [0, 384, 386, 388, 431, 437, 717, 735, 1117, 1118, 1124, 1129, 1162], "background_fil": 0, "attribute_slim": 0, "value_slim": 0, "sub": [0, 24, 44, 384, 437, 827, 842, 882, 1117, 1149, 1151, 1162], "singl": [0, 1, 93, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 132, 133, 388, 389, 393, 394, 424, 434, 437, 495, 1108, 1116, 1136, 1162, 1166, 1171, 1179, 1181, 1192], "node": [0, 18, 28, 46, 106, 113, 125, 140, 150, 159, 163, 179, 197, 219, 225, 234, 267, 274, 279, 314, 321, 325, 331, 372, 373, 380, 381, 382, 384, 385, 388, 389, 393, 394, 397, 398, 403, 404, 405, 406, 410, 411, 412, 415, 417, 419, 430, 431, 432, 436, 437, 441, 442, 443, 445, 447, 448, 450, 453, 454, 456, 458, 462, 463, 466, 468, 525, 547, 613, 690, 702, 717, 758, 765, 768, 777, 780, 833, 843, 882, 934, 944, 953, 983, 994, 1001, 1035, 1041, 1044, 1056, 1060, 1066, 1067, 1069, 1073, 1077, 1086, 1106, 1107, 1115, 1117, 1118, 1132, 1145, 1165, 1166, 1170, 1172, 1192], "No": [0, 1102, 1103, 1117, 1129, 1166], "dangl": [0, 1, 1166, 1170, 1172], "edg": [0, 140, 153, 161, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 175, 176, 177, 178, 179, 180, 181, 182, 184, 185, 186, 187, 188, 189, 191, 193, 194, 195, 197, 198, 199, 372, 373, 380, 381, 382, 385, 386, 388, 389, 393, 394, 396, 403, 405, 411, 412, 417, 419, 420, 424, 426, 427, 430, 432, 436, 437, 441, 442, 443, 446, 447, 448, 450, 453, 454, 462, 463, 464, 466, 467, 474, 475, 825, 842, 874, 876, 882, 1106, 1108, 1111, 1118, 1132, 1136, 1145, 1152, 1162, 1166, 1170, 1172, 1174, 1178, 1179], "even": [0, 1, 2, 1107, 1109, 1116, 1117, 1129, 1140, 1141, 1166, 1192], "wish": [0, 212, 213, 228, 1113, 1115, 1123, 1135, 1181], "fulli": [0, 1102, 1106, 1115, 1129, 1192, 1193], "anc": [0, 1100, 1117], "split": 0, "seed": [0, 1172, 1178], "Then": [0, 1117, 1123, 1126, 1129, 1130, 1133, 1135, 1159, 1178], "idfil": [0, 1118], "allow": [0, 1, 411, 437, 465, 693, 717, 720, 1058, 1061, 1067, 1080, 1083, 1094, 1100, 1106, 1107, 1114, 1116, 1123, 1126, 1129, 1132, 1133, 1136, 1148, 1156, 1176, 1182], "miss": [0, 140, 153, 163, 1113, 1117, 1124, 1149, 1166, 1181], "util": [0, 1106, 1127, 1141, 1143, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "table_fil": [0, 1164], "popul": [0, 1, 1113, 1119, 1145, 1166, 1171], "unpopul": 0, "row": [0, 1113], "revers": 0, "blank": [0, 1106, 1166], "scenario": [0, 1, 1166], "convent": [0, 3, 4, 17, 22, 23, 60, 84, 495, 1102, 1109, 1111, 1116, 1119, 1192], "header": 0, "later": [0, 2, 1117, 1118, 1129, 1165], "don": [0, 1, 2, 202, 1100, 1103, 1108, 1117, 1119, 1126, 1129, 1135, 1140, 1149, 1162, 1192], "By": [0, 1105, 1113, 1116, 1166, 1167], "throw": [0, 1172], "success": [0, 1047, 1067, 1129, 1174], "relax": [0, 418, 1166], "cannot": [0, 153, 163, 476, 480, 485, 488, 508, 509, 512, 521, 530, 533, 535, 540, 541, 545, 560, 1132, 1166], "remain": 0, "no_data": 0, "recogn": [0, 1107, 1126, 1180], "uniqu": [0, 1, 2, 153, 163, 164, 167, 173, 176, 217, 223, 230, 388, 396, 410, 412, 436, 437, 476, 485, 505, 509, 512, 521, 541, 625, 813, 816, 828, 835, 840, 842, 882, 1106, 1109, 1110, 1126, 1129, 1166], "procedur": 0, "denorm": [0, 41, 46, 1108], "foo_id": 0, "foo_nam": 0, "implicit": [0, 1108, 1182, 1193], "wai": [0, 1, 1099, 1102, 1104, 1106, 1107, 1108, 1109, 1110, 1113, 1114, 1115, 1116, 1118, 1119, 1123, 1124, 1126, 1129, 1133, 1135, 1141, 1162, 1163, 1165, 1167, 1176, 1181, 1182, 1192], "linkml": [0, 2, 8, 97, 137, 152, 169, 172, 178, 187, 190, 195, 200, 206, 254, 281, 293, 299, 333, 334, 335, 370, 377, 469, 492, 669, 680, 712, 713, 714, 715, 721, 741, 747, 810, 820, 850, 851, 852, 853, 858, 859, 878, 914, 925, 973, 1026, 1027, 1029, 1030, 1031, 1032, 1033, 1034, 1036, 1037, 1038, 1039, 1042, 1044, 1045, 1052, 1053, 1054, 1056, 1057, 1067, 1095, 1098, 1113, 1123, 1124, 1181], "first": [0, 2, 163, 173, 765, 780, 803, 805, 806, 1100, 1106, 1108, 1116, 1118, 1126, 1128, 1129, 1132, 1133, 1149, 1168, 1178], "cl_identifi": 0, "cl_display_label": 0, "sai": 0, "primary_kei": 0, "dependent_column": 0, "2nd": [0, 1117], "schema": [0, 1, 2, 202, 234, 236, 449, 534, 1067, 1106, 1109, 1110, 1120, 1123, 1127, 1131, 1135, 1159, 1162, 1166, 1180, 1181, 1182], "least": [0, 2, 1117, 1126], "slot": [0, 28, 113, 159, 202, 225, 274, 325, 415, 547, 702, 768, 843, 944, 994, 1056, 1061, 1124], "slot_uri": [0, 3, 4, 17, 21, 22, 23, 24, 30, 37, 44, 60, 67, 72, 73, 74, 75, 76, 78, 82, 84, 87, 93, 126, 165, 179, 182, 197, 212, 217, 223, 227, 228, 235, 237, 240, 242, 243, 244, 247, 311, 350, 373, 380, 384, 388, 389, 393, 394, 396, 402, 405, 410, 411, 412, 417, 424, 426, 427, 441, 444, 447, 450, 452, 453, 460, 462, 464, 472, 474, 476, 480, 485, 488, 489, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 527, 530, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 606, 607, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 631, 632, 633, 634, 635, 636, 637, 639, 640, 643, 644, 645, 646, 647, 649, 651, 652, 654, 655, 657, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 695, 725, 726, 727, 728, 729, 764, 765, 784, 793, 795, 796, 803, 805, 806, 813, 835, 839, 845, 871, 875, 885, 902, 907, 913, 917, 918, 919, 936, 939, 940, 941, 942, 954, 955, 956, 957, 959, 965, 966, 978, 988, 998, 1005, 1011, 1012, 1013, 1015, 1020, 1035, 1048, 1049, 1059, 1060, 1068, 1073, 1082, 1084, 1086, 1093], "attribut": [0, 3, 4, 17, 20, 21, 22, 23, 24, 45, 92, 93, 94, 153, 157, 212, 213, 217, 223, 227, 262, 263, 264, 265, 269, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 476, 479, 480, 485, 488, 489, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 530, 533, 535, 536, 537, 540, 541, 542, 545, 677, 692, 693, 695, 696, 743, 764, 765, 766, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 936, 939, 940, 941, 942, 978, 988, 989, 990, 991, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1055, 1058, 1059, 1060, 1061, 1099, 1106, 1166], "power": [0, 1123, 1132, 1140], "soon": [0, 1113, 1140], "now": [0, 1103, 1112, 1113, 1117, 1118, 1129, 1130, 1131, 1132, 1175, 1182], "pleas": [0, 1102, 1105, 1135, 1182], "issu": [0, 393, 434, 460, 476, 480, 488, 495, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 1035, 1040, 1051, 1060, 1062, 1067, 1068, 1084, 1100, 1105, 1107, 1120, 1141, 1151], "question": [0, 2, 1100, 1108, 1117, 1123], "fuzzi": 0, "detect": [0, 1126], "inconsist": 0, "replac": [0, 1, 321, 331, 503, 694, 1107, 1115, 1119, 1145, 1166, 1171, 1172, 1174, 1192], "optim": [0, 1165], "whichev": [0, 1126], "post": [0, 1100, 1165, 1167], "missing_value_token": 0, "comment": [0, 3, 17, 21, 22, 23, 46, 212, 316, 381, 388, 393, 394, 396, 402, 410, 412, 437, 476, 480, 485, 488, 503, 505, 508, 509, 512, 521, 530, 533, 535, 540, 541, 545, 613, 614, 693, 694, 743, 827, 828, 842, 939, 941, 953, 1115, 1166, 1170], "indic": [0, 405, 437, 485, 695, 717, 732, 1106, 1108, 1109, 1115, 1129, 1192, 1193], "begin": [0, 1176], "string": [0, 1, 3, 4, 6, 14, 15, 16, 17, 20, 22, 25, 37, 39, 40, 41, 46, 52, 54, 66, 67, 68, 76, 86, 87, 89, 93, 95, 103, 104, 105, 110, 120, 125, 135, 142, 145, 146, 147, 149, 153, 154, 155, 163, 173, 179, 182, 191, 196, 197, 204, 212, 215, 216, 217, 218, 221, 223, 229, 230, 231, 234, 240, 241, 252, 260, 261, 262, 264, 265, 266, 269, 270, 277, 279, 282, 283, 290, 292, 297, 305, 306, 307, 309, 310, 311, 313, 316, 317, 318, 319, 321, 322, 327, 329, 331, 332, 337, 338, 339, 341, 342, 343, 345, 346, 352, 353, 354, 355, 357, 360, 361, 364, 366, 368, 369, 373, 375, 380, 381, 382, 384, 385, 386, 388, 391, 392, 393, 394, 395, 396, 400, 402, 403, 405, 408, 410, 411, 412, 413, 417, 418, 421, 424, 429, 433, 437, 439, 440, 441, 445, 447, 450, 451, 452, 455, 457, 458, 459, 462, 464, 468, 472, 473, 474, 476, 479, 480, 485, 487, 488, 489, 490, 502, 503, 506, 507, 508, 509, 510, 511, 512, 515, 516, 517, 518, 519, 520, 521, 523, 524, 527, 530, 533, 535, 536, 537, 538, 540, 541, 543, 545, 546, 549, 550, 556, 557, 558, 560, 561, 565, 566, 567, 568, 570, 572, 573, 574, 576, 580, 582, 584, 587, 589, 590, 593, 594, 599, 602, 603, 611, 613, 614, 618, 619, 626, 628, 629, 630, 637, 638, 639, 640, 641, 646, 647, 648, 649, 650, 651, 652, 653, 656, 657, 659, 660, 664, 666, 670, 671, 673, 674, 677, 678, 687, 688, 689, 695, 697, 699, 709, 717, 723, 725, 726, 727, 728, 729, 730, 738, 743, 745, 754, 755, 756, 762, 764, 765, 773, 774, 779, 780, 784, 785, 786, 788, 789, 790, 795, 796, 800, 805, 806, 813, 815, 817, 818, 824, 825, 827, 828, 830, 831, 832, 835, 836, 838, 840, 842, 862, 865, 871, 872, 873, 879, 880, 881, 882, 884, 885, 891, 895, 900, 902, 904, 913, 917, 918, 923, 931, 932, 933, 936, 937, 939, 940, 941, 942, 948, 950, 953, 954, 971, 978, 980, 981, 982, 986, 988, 989, 991, 997, 1001, 1002, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1020, 1023, 1025, 1029, 1035, 1038, 1039, 1040, 1042, 1047, 1052, 1058, 1060, 1062, 1067, 1068, 1074, 1075, 1076, 1078, 1080, 1083, 1085, 1087, 1088, 1090, 1091, 1092, 1096, 1106, 1107, 1116, 1129, 1132, 1146, 1151, 1180, 1182, 1192], "correspond": [0, 1, 2, 153, 163, 165, 182, 189, 190, 191, 394, 420, 437, 1035, 1060, 1093, 1106, 1114, 1117, 1126, 1166], "relation_fil": 0, "extens": [0, 495, 613, 1108, 1109, 1113, 1117, 1123, 1136], "foodon": 0, "03315258": 0, "style": [0, 507, 698, 1113, 1123], "hint": [0, 1123], "pretenti": 0, "food": [0, 1118], "critic": 0, "pancak": 0, "humbl": 0, "delight": 0, "realm": [0, 1108], "breakfast": 0, "fare": 0, "delect": 0, "disc": 0, "gastronom": 0, "style_hint": 0, "descript": [0, 3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 109, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 140, 148, 153, 157, 161, 163, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 212, 213, 214, 217, 223, 227, 228, 230, 231, 232, 233, 234, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 262, 263, 264, 265, 269, 273, 276, 277, 278, 279, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 328, 329, 330, 331, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 397, 401, 402, 403, 404, 405, 406, 407, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 488, 489, 495, 497, 499, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 523, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 579, 580, 582, 583, 584, 585, 586, 587, 588, 589, 591, 592, 593, 594, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 627, 630, 635, 636, 637, 638, 641, 644, 645, 646, 647, 648, 649, 652, 655, 657, 658, 659, 660, 661, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 676, 677, 685, 692, 693, 694, 695, 696, 698, 704, 705, 706, 707, 708, 709, 710, 711, 716, 717, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 761, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 864, 865, 866, 868, 869, 870, 872, 873, 874, 875, 876, 877, 879, 880, 881, 882, 883, 885, 886, 887, 888, 889, 890, 892, 893, 894, 895, 896, 897, 898, 899, 901, 902, 903, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 922, 936, 939, 940, 941, 942, 946, 947, 948, 949, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 993, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1051, 1055, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1106, 1117, 1118, 1123, 1126, 1140, 1174], "written": [0, 1109, 1116, 1133], "patch_format": 0, "iao": [0, 394, 426, 476, 480, 485, 488, 503, 505, 506, 507, 508, 509, 512, 521, 527, 530, 533, 535, 540, 541, 545, 550, 570, 575, 576, 583, 584, 589, 597, 599, 603, 604, 610, 646, 664, 665, 666, 1107, 1115, 1166], "spatial": 0, "min": 0, "min_descend": 0, "minimum": [0, 129, 505, 575, 613, 625, 1061, 1129, 1177], "duplic": 0, "patterns_fil": 0, "origin": [0, 46, 72, 73, 74, 269, 277, 279, 318, 329, 331, 1115, 1166], "analyz": 0, "consist": [0, 153, 163, 182, 188, 191, 1048, 1059, 1067, 1082, 1100, 1106, 1109, 1110, 1113, 1132, 1172, 1173], "progress": [0, 1120], "unmelt": 0, "wide": [0, 1106, 1107, 1108, 1116, 1123], "lso": 0, "foo_rul": 0, "foo_syn": 0, "NOT": [0, 476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 676, 939, 955, 1124, 1135, 1166, 1182], "rules_datamodel": 0, "matcher_rul": [0, 273, 324], "minim": [0, 405, 437, 1102, 1166, 1171], "few": [0, 273, 324, 993, 1102, 1105, 1140], "xref": [0, 373, 380, 394, 405, 411, 417, 420, 437, 842, 882, 886, 888, 1107, 1114, 1117, 1129, 1176], "multivalu": [0, 3, 4, 17, 20, 22, 24, 32, 33, 36, 37, 65, 66, 79, 82, 83, 85, 86, 88, 90, 94, 131, 153, 157, 183, 184, 188, 189, 212, 213, 223, 227, 228, 233, 237, 238, 239, 240, 247, 262, 263, 264, 265, 269, 278, 283, 284, 285, 287, 291, 307, 308, 309, 310, 312, 317, 318, 330, 337, 342, 343, 346, 347, 348, 353, 356, 358, 360, 361, 367, 368, 373, 380, 381, 382, 385, 388, 389, 393, 394, 403, 405, 411, 417, 419, 420, 421, 422, 423, 424, 428, 429, 430, 431, 432, 434, 435, 442, 445, 446, 453, 454, 457, 460, 463, 464, 466, 467, 475, 476, 480, 485, 488, 489, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 527, 530, 533, 535, 536, 537, 540, 541, 542, 545, 550, 554, 555, 558, 559, 560, 562, 563, 564, 566, 568, 569, 570, 571, 572, 575, 576, 577, 580, 582, 583, 584, 585, 586, 588, 589, 592, 593, 594, 596, 598, 600, 601, 602, 604, 606, 607, 610, 612, 625, 635, 636, 637, 644, 647, 649, 652, 654, 655, 657, 659, 660, 661, 662, 664, 666, 668, 677, 692, 693, 696, 704, 705, 707, 711, 724, 731, 734, 737, 766, 792, 797, 802, 807, 817, 827, 828, 840, 842, 846, 854, 856, 857, 863, 866, 874, 876, 887, 888, 889, 897, 901, 906, 912, 939, 941, 948, 949, 955, 956, 958, 959, 960, 962, 964, 969, 988, 989, 990, 996, 997, 1009, 1010, 1017, 1025, 1048, 1049, 1058, 1059, 1082, 1094], "mixtur": [0, 1099], "well": [0, 1, 2, 31, 46, 388, 405, 437, 446, 1100, 1106, 1108, 1109, 1110, 1129, 1132, 1140, 1166, 1173, 1176], "boolean": [0, 3, 4, 17, 21, 22, 42, 45, 46, 47, 48, 49, 50, 51, 53, 70, 77, 80, 81, 93, 115, 121, 125, 163, 164, 167, 176, 234, 269, 279, 289, 311, 318, 331, 344, 362, 394, 411, 427, 437, 438, 476, 480, 485, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 578, 613, 620, 621, 622, 623, 624, 693, 695, 710, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 723, 780, 882, 939, 941, 946, 947, 951, 953, 961, 963, 968, 988, 989, 1000, 1001, 1003, 1040, 1046, 1047, 1064, 1067, 1071, 1079, 1089, 1166], "stato": 0, "ontobe": [0, 827, 1103, 1106, 1128, 1131, 1136, 1141, 1152, 1161, 1164], "0000286": 0, "0000287": 0, "forest": 0, "subtyp": [0, 404, 437, 1142], "hypothesi": 0, "oper": [0, 249, 279, 294, 331, 693, 717, 1048, 1067, 1082, 1100, 1102, 1106, 1108, 1113, 1117, 1118, 1128, 1129, 1130, 1132, 1136, 1137, 1140, 1166, 1168, 1169, 1170, 1171, 1172, 1174, 1175, 1176, 1178, 1181], "frequenc": [0, 1118, 1177], "equal": [0, 1061, 1171], "divid": [0, 765, 777, 780, 783, 1106, 1118], "total": [0, 93, 117, 125, 133, 1118], "corpu": [0, 1118, 1177], "ic": [0, 765, 772, 780, 781, 794, 804, 1118, 1177], "4023093": 0, "ones": [0, 1109], "multilingu": [0, 1111, 1166, 1170, 1192], "sql": [0, 698, 742, 1099, 1100, 1102, 1106, 1117, 1124, 1129, 1131, 1135, 1137, 1140, 1141, 1152, 1164, 1166, 1181, 1182], "restrict": [0, 1, 381, 382, 386, 388, 393, 419, 422, 433, 437, 455, 476, 480, 483, 485, 488, 489, 503, 506, 508, 509, 512, 521, 530, 535, 536, 540, 541, 545, 549, 552, 553, 556, 561, 568, 576, 580, 582, 585, 595, 603, 613, 615, 616, 644, 645, 649, 652, 654, 655, 659, 661, 666, 670, 1106, 1113, 1117, 1132, 1163, 1166, 1172], "particular": [0, 1, 2, 27, 46, 112, 125, 158, 163, 212, 224, 227, 234, 272, 279, 323, 331, 414, 437, 544, 613, 693, 701, 707, 709, 710, 716, 717, 718, 719, 720, 722, 731, 737, 739, 767, 780, 815, 828, 841, 879, 880, 882, 901, 943, 953, 992, 1001, 1054, 1058, 1060, 1067, 1094, 1099, 1102, 1106, 1107, 1110, 1113, 1118, 1119, 1129, 1130, 1137, 1140, 1163, 1166, 1171, 1182], "fr": [0, 2, 140, 1116, 1166], "hpintern": 0, "0020110": 0, "pivot": 0, "per": [0, 394, 424, 1058, 1070, 1100, 1106, 1116, 1118, 1166, 1178, 1192], "multi": [0, 389, 1107, 1129], "lingual": 0, "rather": [0, 2, 941, 946, 953, 1106, 1115, 1117, 1136, 1141], "avail": [0, 1102, 1106, 1134, 1135, 1173, 1180, 1182], "cob": [0, 1106, 1166], "wrapper": [0, 1106, 1123, 1145], "onto": [0, 842, 882, 1106, 1108, 1123, 1145], "basicontologyinterfac": [0, 1, 202, 1107, 1115, 1130, 1140, 1148, 1166, 1168, 1170, 1175, 1178, 1181, 1182, 1192], "basic_ontology_interfac": [0, 1148, 1166], "tool": [0, 1, 4, 49, 51, 212, 227, 1102, 1106, 1108, 1113, 1118, 1120, 1126, 1133], "preprocess": 0, "step": [0, 1120, 1128, 1136, 1180], "addl": 0, "second": [0, 163, 191, 765, 780, 793, 795, 796, 1106, 1118, 1124, 1166, 1168], "member": [0, 507, 510, 511, 527, 550, 584, 598, 600, 601, 606, 613, 628], "omit": [0, 1, 1116, 1133, 1162, 1166, 1182], "trivial": [0, 1106, 1110, 1113, 1166], "reciproc": [0, 941, 965, 1174], "feed": [0, 1129], "nativ": [0, 3, 4, 17, 20, 21, 22, 23, 24, 92, 93, 94, 153, 157, 212, 213, 217, 223, 227, 249, 250, 262, 263, 264, 265, 269, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 526, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 677, 692, 693, 695, 696, 743, 761, 764, 765, 766, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 936, 939, 940, 941, 942, 978, 988, 989, 990, 991, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1055, 1058, 1059, 1060, 1099, 1106, 1119, 1136, 1145], "faster": [0, 1118, 1166], "custom": [0, 1107, 1111, 1113, 1126, 1162], "match_rul": 0, "packag": [0, 2, 335, 1102, 1110, 1123, 1126, 1129, 1130, 1133, 1145, 1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173, 1184, 1193], "lexical_index": [0, 281, 333, 334, 1164, 1170, 1180], "modul": [0, 1126, 1127, 1141, 1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "fragment": [0, 1119], "local": [0, 27, 46, 112, 125, 158, 163, 224, 234, 272, 279, 323, 331, 414, 437, 544, 613, 701, 717, 767, 780, 841, 882, 943, 953, 992, 1001, 1054, 1067, 1103, 1106, 1110, 1116, 1128, 1131, 1136, 1137, 1140, 1141, 1158, 1159, 1161, 1162, 1165, 1170, 1180, 1182, 1192], "semant": [0, 1, 2, 202, 373, 380, 382, 394, 405, 411, 417, 475, 742, 1100, 1106, 1108, 1110, 1116, 1118, 1124, 1127, 1131, 1135, 1162, 1164, 1170, 1182, 1192], "otherwis": [0, 1130, 1145], "load": [0, 1102, 1103, 1108, 1117, 1118, 1135, 1137, 1140, 1145, 1154, 1159, 1160, 1162, 1172, 1182], "ensur": [0, 1132, 1135, 1141, 1154, 1159, 1160], "strict": [0, 1106, 1108, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "clean": 0, "befor": [0, 311, 331, 350, 1105, 1113, 1129, 1148], "highli": [0, 1106, 1119, 1140, 1149, 1166, 1181], "incomplet": [0, 1118, 1149, 1160], "syntact": [0, 1102], "whitespac": [0, 273, 324, 993], "trail": 0, "compliant": 0, "execut": [0, 1046, 1058, 1064, 1067, 1070, 1080, 1083, 1094, 1097, 1106, 1166], "mode": [0, 200, 293, 370, 469, 669, 741, 810, 914, 1026, 1095], "workflow": [0, 1123], "emit": [0, 1131], "manual": [0, 4, 50, 1113, 1115, 1176, 1192], "check": [0, 1, 19, 107, 151, 220, 268, 315, 399, 531, 691, 760, 834, 935, 984, 1035, 1040, 1045, 1060, 1062, 1063, 1065, 1067, 1068, 1069, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1084, 1085, 1086, 1087, 1088, 1090, 1091, 1092, 1093, 1096, 1113, 1124, 1166, 1173, 1181], "examin": [0, 153, 163, 1179], "report_format": 0, "propos": [0, 476, 480, 485, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 567, 568, 941, 947, 953, 1106, 1126, 1136], "noth": [0, 1166, 1168, 1169, 1171, 1175, 1176, 1178, 1181], "branch": [0, 1123, 1179], "physic": 0, "qualiti": [0, 1129], "render": 0, "definedclassid": [0, 393, 437, 1113], "0045071": 0, "genusid": [0, 393, 437, 1113, 1172], "0001439": 0, "fillerid": [0, 386, 437, 1113, 1172], "0000461": 0, "propertyid": [0, 386, 437, 1113, 1172], "ro": [0, 485, 488, 530, 545, 618, 619, 636, 663, 936, 939, 955, 956, 959, 1100, 1106, 1113, 1117, 1130, 1131, 1135, 1137, 1166], "0015010": 0, "flatten": 0, "choos": [0, 1109, 1110, 1113, 1117, 1132, 1166, 1172, 1180, 1181], "ax": 0, "f": [0, 384, 437, 1107, 1110, 1117, 1126, 1130, 1137, 1141, 1159, 1165, 1166, 1167, 1172], "filler": [0, 386, 433, 437, 1113, 1137, 1166, 1172, 1175], "genu": [0, 393, 425, 434, 437, 443, 460, 476, 495, 505, 509, 512, 521, 541, 575, 1123, 1172], "repeat": [0, 1140], "prop_1": 0, "prop_2": 0, "differentia": [0, 393, 437, 460, 476, 495, 505, 509, 512, 521, 541, 575, 1123, 1172], "what": [0, 1, 765, 771, 1103, 1106, 1111, 1117, 1120, 1123, 1132], "inspect": 0, "nest": [0, 405, 1113], "logicaldefinit": 0, "matrix_ax": 0, "encod": [0, 1, 14, 15, 25, 46, 103, 104, 110, 125, 145, 146, 155, 163, 215, 216, 221, 234, 260, 261, 270, 279, 305, 306, 319, 331, 391, 392, 408, 437, 515, 516, 538, 613, 687, 688, 699, 717, 754, 755, 762, 780, 830, 831, 836, 882, 931, 932, 937, 953, 980, 981, 986, 1001, 1038, 1039, 1052, 1067, 1114, 1118, 1131], "retriev": [0, 1115, 1165, 1166, 1179, 1192], "subset_siren": 0, "maps_to_sourc": 0, "mapper": [0, 1116, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "rewir": [0, 1174], "instanc": [0, 1, 14, 15, 25, 103, 104, 110, 145, 146, 155, 215, 216, 221, 260, 261, 270, 305, 306, 319, 381, 391, 392, 408, 437, 476, 509, 510, 511, 515, 516, 521, 527, 538, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668, 687, 688, 699, 754, 755, 762, 830, 831, 836, 931, 932, 936, 937, 940, 980, 981, 986, 1035, 1038, 1039, 1052, 1060, 1061, 1067, 1068, 1069, 1073, 1076, 1077, 1084, 1085, 1086, 1093, 1106, 1109, 1155, 1166], "target": [0, 2, 384, 447, 1107, 1142, 1144, 1145, 1146, 1165, 1167, 1171, 1172], "src1": 0, "tgt1": 0, "src2": 0, "tgt2": 0, "migrate_curi": [0, 1170, 1174], "patcherinterfac": [0, 1136, 1170, 1174], "patcher": [0, 1099, 1106, 1160, 1164, 1170], "patcher_interfac": [0, 1174], "curie_pair": 0, "updat": [0, 40, 46, 476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 572, 613, 1136, 1137], "translat": [0, 28, 113, 159, 225, 274, 325, 382, 386, 388, 415, 431, 547, 702, 768, 843, 944, 994, 1056, 1115, 1165, 1167], "hgnc": [0, 223, 233, 1158], "ncbigen": [0, 1158], "0000187": 0, "0000188": 0, "taxonconstraint": [0, 936, 939, 940, 946, 947, 948, 949, 951, 953, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 969], "replaced_bi": [0, 476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596], "pre": [0, 1105, 1117, 1118, 1135, 1163, 1171, 1177, 1180, 1182], "yet": [0, 1115, 1124, 1166, 1182, 1192], "nuclear": [0, 1166], "shortest": [0, 1172], "cytoplasm": [0, 1117, 1159, 1166], "thylakoid": 0, "4": [0, 1106, 1107, 1113, 1116, 1123, 1125, 1127, 1128, 1159], "end": [0, 2, 394, 411, 420, 437, 465, 839, 875, 882, 1117, 1129, 1162, 1166, 1172], "start_nod": 0, "end_nod": 0, "weight": [0, 316, 331], "0001": 0, "999": 0, "after": [0, 2, 1100, 1102, 1129, 1133, 1149, 1156, 1166, 1168, 1169, 1171, 1174, 1175, 1176, 1178, 1181, 1193], "visual": [0, 1117, 1127, 1128, 1132], "narrow": [0, 316, 352, 406, 407], "gap": 0, "flat": [0, 1099, 1115], "point": [0, 14, 15, 103, 104, 145, 146, 215, 216, 260, 261, 305, 306, 391, 392, 515, 516, 687, 688, 754, 755, 830, 831, 931, 932, 939, 953, 955, 956, 980, 981, 1038, 1039, 1117, 1118, 1126, 1166, 1192], "exclude_pred": 0, "direct": [0, 125, 140, 1106, 1111, 1123, 1129, 1135, 1167, 1172, 1175], "predicate_weight": [0, 1172], "stylemap": 0, "berkeleybop": 0, "kgviz": 0, "round": [0, 1167], "declar": [0, 212, 388, 389, 402, 437, 444, 452, 453, 1173], "thei": [0, 1, 202, 1104, 1106, 1113, 1115, 1117, 1118, 1119, 1129, 1131, 1132, 1135, 1140, 1145, 1161, 1166, 1167, 1170], "appear": [0, 1, 1119, 1145], "shacl": [0, 495, 613, 1035, 1060, 1093, 1124, 1181], "prefixdeclar": [0, 388, 389, 437, 444, 452, 453], "cl_": [0, 1110], "prefixmap": [0, 1111], "arbitrari": [0, 3, 10, 17, 22, 46, 79, 99, 125, 139, 163, 208, 234, 256, 279, 301, 331, 379, 405, 437, 448, 494, 613, 682, 717, 749, 780, 822, 882, 927, 953, 975, 1001, 1033, 1067, 1102, 1166, 1176], "sparql": [0, 25, 46, 110, 125, 155, 163, 221, 234, 270, 279, 319, 331, 408, 437, 538, 613, 699, 717, 762, 780, 836, 882, 937, 953, 986, 1001, 1052, 1067, 1106, 1116, 1131, 1137, 1140, 1141, 1152, 1156, 1163, 1164, 1166, 1182], "label_field": 0, "down": [0, 825, 879, 880, 882, 1172], "lung": 0, "And": [0, 1, 1109, 1113, 1117, 1123, 1126, 1129, 1130, 1131], "arteri": 0, "suppli": [0, 1110, 1171, 1172], "0002178": 0, "indirect": [0, 842, 876, 882, 1117, 1175], "tbox": 0, "subclass": [0, 382, 388, 419, 437, 842, 882, 908, 1100, 1115, 1129, 1142, 1166, 1173, 1192], "existenti": [0, 381, 386, 388, 422, 431, 433, 437, 455, 1106, 1113, 1117, 1166], "abox": 0, "assert": [0, 140, 373, 380, 394, 411, 417, 437, 438, 440, 443, 450, 465, 467, 472, 473, 475, 842, 882, 911, 912, 941, 953, 967, 969, 1106, 1115, 1117, 1129, 1131, 1165, 1166, 1167, 1181], "dimens": 0, "remaind": 0, "wb": 0, "0032502": 0, "0007568": 0, "0048869": 0, "0098727": 0, "0008152": [0, 1], "0009056": 0, "0044238": 0, "1901275": 0, "0050896": 0, "0051716": 0, "0051606": 0, "0014823": 0, "0023052": 0, "wbgene00000417": 0, "wbgene00000912": 0, "wbgene00000898": 0, "wbgene00006752": 0, "object_group": 0, "top": [0, 1109, 1126, 1132, 1192], "sometim": [0, 1, 1106, 1107, 1113, 1114, 1115, 1118, 1123, 1132, 1182], "unintuit": 0, "has_prefix": 0, "disk": [0, 1102, 1131, 1182], "substr": [0, 321, 331, 338, 357], "rank": [0, 3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 109, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 140, 148, 153, 157, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 212, 213, 214, 217, 223, 227, 228, 230, 232, 233, 235, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 262, 263, 264, 265, 269, 273, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 397, 402, 403, 404, 405, 406, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 480, 485, 488, 489, 495, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 527, 530, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 676, 677, 685, 692, 693, 694, 695, 696, 698, 704, 705, 706, 707, 708, 710, 711, 716, 717, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 733, 734, 736, 737, 738, 739, 740, 743, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 817, 825, 828, 835, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 922, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 993, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1051, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1129, 1149, 1176], "your": [0, 2, 1100, 1105, 1110, 1120, 1123, 1126, 1128, 1129, 1130, 1141, 1149, 1158], "broad": [0, 1, 31, 46, 316, 352, 380, 406, 407, 1106, 1123, 1131], "relev": [0, 695, 717, 732, 1106, 1129, 1149, 1176], "There": [0, 1100, 1102, 1106, 1107, 1108, 1117, 1118, 1129, 1131, 1132, 1135, 1140], "stream": [0, 1099, 1124], "ctrl": [0, 1129], "stop": 0, "unifi": [0, 717, 735, 1107, 1129], "across": [0, 162, 163, 389, 437, 476, 485, 505, 509, 512, 521, 541, 625, 1105, 1131], "keyval": 0, "set1": 0, "hpo": [0, 1108, 1115, 1118, 1119, 1165, 1166], "terms1": 0, "set2": 0, "terms2": 0, "altern": [0, 1107, 1109, 1120, 1154, 1156, 1159, 1160, 1167], "term_1": 0, "term_2": 0, "term_n": 0, "term_m": 0, "select": [0, 765, 771, 1102, 1106, 1111, 1120, 1162, 1178], "ma": [0, 1114], "mix": [0, 41, 42, 164, 165, 173, 179, 182, 191, 196, 197, 481, 489, 497, 502, 503, 504, 505, 506, 507, 508, 526, 532, 536, 537, 630, 978], "pipelin": [0, 263, 265, 269, 279, 308, 310, 318, 331, 1180], "phenotyp": [0, 31, 46, 1106, 1108, 1109, 1118, 1166], "0000118": [0, 476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 550, 1107, 1166], "done": [0, 153, 163, 1106, 1109, 1110, 1117, 1118, 1123, 1135], "compactli": 0, "set1_fil": 0, "set2_fil": 0, "jaccard": [0, 765, 780, 799, 1106, 1111, 1177], "min_jaccard_similar": [0, 1177], "score": [0, 743, 765, 772, 777, 778, 780, 781, 782, 783, 794, 798, 799, 804, 808, 809, 811, 1118, 1163, 1165, 1177], "min_ancestor_information_cont": [0, 1177], "main_score_field": 0, "phenodigm_scor": [0, 765, 780, 800], "information_content_fil": 0, "varieti": [0, 1102, 1106, 1107, 1108, 1116, 1129, 1137, 1170], "metric": [0, 766, 780, 1118, 1179], "deprec": [0, 394, 411, 437, 438, 476, 477, 480, 485, 488, 499, 503, 506, 509, 512, 518, 519, 520, 521, 526, 528, 530, 532, 535, 540, 541, 545, 563, 567, 568, 587, 594, 596, 603, 613, 620, 621, 622, 623, 624, 637, 640, 641, 657, 665, 671, 693, 716, 718, 842, 869, 870, 882, 890, 893, 894, 1061, 1115, 1166, 1171, 1182, 1192], "0000540": [0, 1099], "0000000": 0, "hard": 0, "0001750": 0, "stage": [0, 1140, 1141], "found": [0, 1, 153, 163, 695, 717, 727, 939, 953, 955, 956, 1116, 1123, 1153, 1163, 1166, 1170, 1172], "adult": [0, 1129], "mrca": [0, 765, 771, 1118, 1177], "upheno": 0, "anatomi": [0, 1107, 1118, 1129], "0010922": 0, "0010616": 0, "0000001": [0, 1106, 1117, 1145, 1171], "pr": [0, 2, 1101, 1106, 1130, 1134, 1177], "break": [0, 827], "collect": [0, 1, 20, 24, 32, 33, 46, 57, 58, 59, 61, 62, 63, 64, 88, 94, 125, 131, 157, 163, 174, 183, 192, 202, 265, 279, 282, 291, 310, 312, 331, 340, 341, 358, 367, 372, 373, 380, 381, 382, 384, 385, 388, 389, 393, 394, 396, 403, 405, 411, 417, 419, 420, 424, 426, 427, 430, 431, 432, 435, 436, 437, 441, 442, 443, 446, 453, 454, 463, 464, 466, 467, 474, 475, 510, 511, 527, 540, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 582, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 620, 623, 625, 635, 646, 647, 652, 655, 657, 658, 664, 665, 666, 668, 827, 990, 996, 1001, 1048, 1049, 1059, 1067, 1082, 1106, 1123, 1137, 1140, 1165, 1166, 1171, 1172, 1177], "Its": 0, "non": [0, 1, 6, 21, 45, 46, 95, 135, 140, 204, 252, 273, 297, 324, 375, 480, 482, 485, 490, 510, 511, 527, 550, 551, 552, 553, 554, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 582, 583, 584, 587, 588, 589, 591, 592, 593, 594, 596, 597, 598, 599, 600, 601, 602, 603, 606, 607, 608, 609, 610, 612, 613, 617, 618, 619, 620, 622, 623, 625, 635, 637, 646, 647, 652, 655, 657, 658, 660, 664, 665, 666, 668, 671, 678, 745, 818, 842, 882, 893, 894, 923, 971, 993, 1029, 1102, 1106, 1111, 1123, 1129, 1156, 1178, 1192], "lot": [0, 1, 1099, 1107, 1109, 1114, 1117, 1129], "mechan": [0, 1123, 1192], "releas": [0, 1, 1102, 1117, 1120, 1166], "product": [0, 765, 777, 780, 1108, 1113, 1115], "complic": [0, 1113], "naiv": [0, 1178], "count": [0, 93, 116, 125, 815, 825, 879, 880, 882, 1129, 1168, 1172], "kind": [0, 1, 405, 437, 440, 443, 450, 472, 473, 475, 717, 735, 780, 800, 815, 879, 880, 882, 1101, 1106, 1107, 1108, 1109, 1113, 1123, 1136, 1137, 1166, 1181], "summarystatist": [0, 1179], "facet": [0, 815, 824, 825, 842, 856, 857, 874, 876, 880, 882, 887, 888, 889, 912], "broken": [0, 825, 827, 828, 879, 880, 882, 901], "dynam": [0, 1123], "rel": [0, 1107, 1117, 1118, 1130, 1131, 1137, 1159, 1166], "v2": 0, "v1": 0, "stat": [0, 827, 828, 901, 1179], "accordingli": 0, "residu": 0, "compare_with": 0, "concept": [0, 2, 488, 717, 735, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 780, 781, 783, 791, 792, 793, 794, 795, 796, 797, 799, 802, 803, 804, 805, 806, 807, 1106, 1107, 1110, 1111, 1112, 1113, 1114, 1115, 1117, 1119, 1128, 1129, 1136, 1145, 1166, 1172, 1180], "directli": [0, 1, 22, 28, 113, 159, 225, 249, 274, 294, 325, 372, 405, 415, 482, 535, 541, 542, 547, 702, 761, 768, 840, 843, 942, 944, 994, 1049, 1050, 1056, 1106, 1110, 1113, 1118, 1123, 1129, 1133, 1136, 1140, 1141, 1142, 1156, 1162, 1165], "goslim_gener": [0, 1166], "portion": [0, 978, 988, 1001, 1019, 1109], "ncbi": [0, 1118, 1158], "taxonomi": [0, 1109], "0034357": [0, 1167], "0003884": [0, 1170], "0003941": 0, "taxon_constraints_util": 0, "ancestr": 0, "category_system": 0, "biolink": [0, 3, 4, 17, 21, 22, 30, 72, 73, 74, 78, 82, 217, 223, 232, 245, 476, 480, 488, 502, 509, 512, 521, 530, 535, 540, 541, 545, 557, 1106, 1163], "dbpedia": 0, "hasdbxref": [0, 373, 405, 411, 417, 475, 476, 480, 485, 488, 504, 509, 512, 521, 530, 535, 540, 541, 545, 571, 1114, 1166], "without": [0, 842, 861, 882, 1099, 1102, 1106, 1114, 1117, 1128, 1136, 1166, 1167, 1170], "prontolib": [0, 1159], "objectproperti": [0, 1, 404, 476, 480, 484, 488, 510, 511, 512, 521, 526, 527, 532, 533, 535, 536, 540, 542, 545, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 580, 582, 583, 584, 586, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 616, 617, 620, 621, 623, 624, 625, 630, 635, 646, 647, 649, 652, 655, 657, 658, 663, 664, 665, 666, 668, 842, 870, 894, 896, 1106, 1166], "omo": [0, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 1058, 1067, 1083, 1107, 1115, 1116], "annotationproperti": [0, 1, 404, 476, 484, 485, 488, 510, 511, 512, 521, 526, 527, 530, 532, 533, 535, 540, 542, 545, 550, 551, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 582, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 607, 608, 609, 610, 612, 613, 617, 620, 623, 625, 635, 646, 647, 652, 655, 657, 658, 664, 665, 666, 668, 842, 847, 1106, 1166, 1181], "owl_typ": [0, 1166, 1170], "vacuol": [0, 1117, 1166, 1172], "ascii": [0, 1129], "markdown": 0, "instruct": [0, 1104, 1105, 1123, 1130], "analog": [0, 140, 1123], "too": [0, 1102, 1103, 1107, 1109, 1113], "00000372": 0, "00000094": 0, "volcan": 0, "featur": [0, 2, 393, 437, 460, 1101, 1102, 1108, 1109, 1117, 1126, 1129, 1135, 1136, 1137, 1193], "00000247": 0, "volcano": 0, "00000403": 0, "shield": 0, "pyroclast": 0, "view": [0, 1, 202, 1106, 1107, 1113, 1132, 1162, 1166, 1172, 1192], "explod": 0, "subglaci": 0, "alongsid": [0, 1099, 1108, 1124, 1129], "intermedi": [0, 1117], "mud": 0, "recent": [0, 765, 771, 780, 1118, 1177], "max": [0, 1165], "distanc": [0, 1129, 1135, 1172], "00000407": 0, "though": 0, "highlight": [0, 1129], "asterisk": 0, "length": [0, 765, 777, 780, 1061], "extend": [0, 1117, 1118, 1128, 1141, 1172], "max_hop": 0, "trim": [0, 273, 324, 993], "skip": [0, 1113], "against": [0, 317, 331, 337, 342, 343, 353, 360, 361, 368, 828, 840, 842, 863, 882, 1035, 1060, 1093, 1102, 1106, 1165, 1177, 1181], "ecto": 0, "ontology_metadata": [0, 1124], "heurist": [0, 1113, 1166], "align": [0, 1, 373, 394, 405, 411, 417, 475, 1106, 1137], "guid": [0, 1, 1100, 1103, 1104, 1106, 1109, 1112, 1123, 1127, 1165, 1178, 1181], "howto": [0, 1181], "50": [0, 1172], "presenc": 0, "mine": [0, 1111], "machin": [0, 394, 437, 1106, 1111, 1126, 1151, 1192], "action": [0, 2], "initi": [0, 1106, 1126, 1152, 1156, 1163], "lag": [0, 1129], "accept": [0, 1, 1100, 1135, 1140, 1193], "0002053": 0, "hierarchi": [0, 1109], "larg": [0, 1, 827, 1102, 1104, 1106, 1107, 1113, 1115, 1118, 1120, 1127, 1129, 1140, 1141, 1170, 1175, 1176], "focus": [0, 1117, 1118], "sole": [0, 1106], "bad": 0, "attempt": [0, 1107, 1109, 1119, 1124, 1129, 1131, 1145, 1163], "download": [0, 1102, 1109, 1124, 1128, 1129, 1133, 1137, 1140, 1172, 1182], "wildcard": [0, 698], "applic": [0, 21, 1099, 1102, 1106, 1107, 1132, 1140, 1141, 1174], "adapter_map": 0, "except": [0, 1114, 1115, 1166, 1172, 1174], "databas": [0, 373, 394, 405, 411, 417, 418, 475, 1099, 1102, 1105, 1106, 1117, 1118, 1124, 1129, 1135, 1137, 1140, 1141, 1152, 1164, 1170, 1182], "want": [0, 1103, 1107, 1108, 1111, 1117, 1118, 1126, 1129, 1135, 1136, 1182], "obographviz": [0, 1128, 1132], "meant": 0, "0002202": [0, 1117, 1135, 1137], "abbrevi": [0, 413, 1128], "open": [0, 31, 46, 394, 411, 420, 437, 465, 477, 478, 1104, 1108, 1117, 1131, 1133, 1165, 1166], "imag": [0, 476, 480, 484, 488, 508, 509, 510, 511, 521, 526, 527, 530, 532, 533, 535, 540, 541, 542, 545, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 610, 612, 613, 614, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668, 1129], "meta": [0, 372, 373, 380, 381, 382, 384, 385, 388, 389, 393, 396, 403, 405, 411, 417, 420, 424, 426, 427, 437, 448, 464, 467, 474, 475, 1166, 1172], "describ": [1, 4, 30, 31, 34, 36, 46, 47, 48, 49, 50, 51, 54, 55, 56, 68, 69, 70, 71, 78, 80, 81, 82, 84, 89, 212, 234, 240, 1047, 1124, 1136, 1140, 1168, 1182], "arch": 1, "librari": [1, 202, 1102, 1106, 1109, 1111, 1118, 1126, 1127, 1128, 1132, 1133, 1134, 1135, 1137, 1140, 1156, 1159, 1162, 1182, 1191], "impos": [1, 1110], "own": [1, 1107, 1109, 1110, 1119, 1120, 1128, 1166, 1182], "world": [1, 1108, 1181], "intend": [1, 717, 735, 1102, 1104, 1106, 1107, 1108, 1113, 1116, 1140, 1160, 1166, 1167, 1192], "lingua": 1, "franca": 1, "veri": [1, 1100, 1102, 1104, 1107, 1109, 1114, 1116, 1123, 1129, 1140, 1155], "keep": [1, 2, 21, 46, 77], "rang": [1, 3, 4, 17, 20, 21, 22, 23, 24, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 113, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 153, 157, 159, 161, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 212, 213, 217, 223, 225, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 262, 263, 264, 265, 269, 274, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 325, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 415, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 526, 527, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 547, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 677, 692, 693, 695, 696, 702, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 761, 764, 765, 766, 768, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 843, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 936, 939, 940, 941, 942, 944, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 994, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1055, 1056, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1102, 1108, 1123, 1129, 1156, 1182], "address": [1, 1106], "user": [1, 394, 424, 693, 707, 709, 710, 716, 717, 718, 719, 720, 722, 731, 737, 739, 1102, 1107, 1109, 1113, 1117, 1118, 1129, 1132, 1141, 1162, 1178, 1180, 1182], "quit": [1, 1165], "straightforward": 1, "someth": [1, 212, 227, 406, 523, 613, 1104, 1106, 1107, 1108, 1123, 1126], "paper": 1, "2000": 1, "thousand": [1, 1141], "inter": [1, 1142], "term": [1, 4, 31, 46, 50, 55, 69, 70, 93, 115, 121, 125, 212, 228, 234, 262, 264, 269, 273, 276, 277, 279, 280, 283, 284, 286, 287, 288, 289, 292, 307, 309, 318, 324, 328, 329, 331, 333, 346, 347, 351, 356, 359, 362, 369, 388, 393, 406, 425, 434, 437, 442, 443, 448, 460, 476, 480, 484, 485, 488, 499, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 526, 527, 530, 532, 533, 535, 540, 542, 545, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 582, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 620, 623, 625, 635, 646, 647, 652, 655, 657, 658, 660, 664, 665, 666, 668, 693, 695, 698, 717, 720, 725, 726, 728, 729, 737, 739, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 780, 783, 791, 792, 793, 794, 795, 796, 797, 799, 802, 803, 804, 805, 806, 807, 936, 939, 940, 941, 950, 952, 953, 954, 955, 956, 958, 959, 960, 965, 968, 969, 993, 1106, 1107, 1108, 1109, 1113, 1115, 1117, 1118, 1119, 1123, 1128, 1130, 1133, 1136, 1137, 1141, 1149, 1165, 1166, 1167, 1171, 1175, 1176, 1177, 1178, 1180, 1181, 1182, 1192, 1193], "howev": [1, 1102, 1104, 1106, 1107, 1108, 1110, 1113, 1117, 1118, 1119, 1123, 1129, 1131, 1141, 1162, 1192], "turn": [1, 1116, 1191], "flexibl": [1, 1106], "malleabl": 1, "might": [1, 31, 46, 380, 1106, 1109, 1113, 1118, 1126, 1129, 1180, 1181, 1192], "prov": [1, 212, 247, 249, 294, 476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 564, 569, 813, 839, 845, 875, 907, 919, 1059], "logic": [1, 388, 394, 428, 437, 442, 480, 485, 495, 510, 511, 527, 530, 536, 550, 551, 552, 553, 554, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 580, 582, 583, 584, 586, 587, 588, 589, 591, 592, 593, 594, 596, 597, 598, 599, 600, 601, 602, 603, 606, 607, 608, 609, 610, 612, 613, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 635, 637, 646, 647, 649, 652, 655, 657, 658, 660, 663, 664, 665, 666, 668, 671, 842, 872, 882, 1100, 1104, 1106, 1108, 1109, 1111, 1117, 1131, 1166, 1172, 1181, 1192], "artifact": 1, "countri": 1, "knowledg": [1, 3, 4, 17, 21, 22, 30, 46, 78, 1104, 1106, 1109, 1118, 1123, 1129, 1130, 1131, 1163, 1165], "entireti": 1, "wikidata": [1, 1055, 1131], "try": [1, 1105, 1129, 1130, 1135, 1136, 1182, 1192], "pluralist": [1, 1099, 1106, 1107, 1132, 1192], "appropri": [1, 1131, 1136], "abstract": [1, 22, 249, 294, 372, 405, 482, 535, 541, 542, 565, 590, 613, 614, 628, 629, 641, 650, 653, 656, 662, 674, 761, 780, 781, 800, 840, 846, 863, 881, 882, 897, 920, 942, 1049, 1050, 1067, 1106, 1116, 1129, 1132, 1135, 1140, 1143, 1161, 1170, 1175], "commun": [1, 1106, 1111, 1114, 1136], "serv": [1, 1106, 1109, 1137, 1140, 1163, 1166, 1171], "classic": [1, 1118], "those": [1, 212, 227, 394, 420, 437, 1106, 1108, 1114, 1166, 1172], "conceiv": [1, 1118, 1132, 1172], "loos": [1, 1106], "thought": [1, 1117, 1192], "persist": [1, 1106, 1136], "variou": [1, 1106, 1118, 1129, 1136, 1186], "metadata": [1, 4, 50, 202, 212, 227, 228, 229, 231, 234, 237, 239, 240, 241, 242, 247, 372, 373, 380, 381, 382, 384, 385, 388, 389, 393, 394, 396, 403, 405, 411, 417, 437, 443, 505, 575, 625, 642, 842, 847, 882, 1106, 1108, 1109, 1111, 1114, 1119, 1120, 1127, 1131, 1149, 1166, 1171, 1172, 1174, 1176, 1181], "associ": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 202, 402, 405, 437, 440, 443, 444, 450, 472, 473, 475, 839, 882, 919, 1099, 1106, 1107, 1111, 1118, 1127, 1158, 1159, 1161, 1162, 1164, 1166, 1167, 1170, 1182], "predomin": 1, "purpos": [1, 202, 388, 396, 410, 412, 441, 510, 511, 527, 540, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 582, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 620, 623, 625, 635, 646, 647, 652, 655, 657, 658, 664, 665, 666, 668, 717, 735, 1106, 1107, 1108, 1110, 1113, 1117, 1123, 1135, 1140], "necessarili": [1, 1106, 1192], "disjoint": [1, 381, 422, 423, 428, 437, 471, 1106, 1166, 1172, 1173], "categori": [1, 140, 153, 163, 212, 234, 476, 480, 488, 502, 509, 512, 520, 521, 530, 535, 540, 541, 545, 613, 614, 693, 717, 827, 842, 850, 856, 882, 989, 1001, 1040, 1067, 1106, 1117, 1163, 1166], "ambigu": [1, 1106, 1108, 1166], "equat": [1, 381, 437, 470, 1106], "broadli": [1, 1106, 1118], "encompass": [1, 31, 46, 1106, 1166], "scotland": 1, "denot": [1, 1106, 1107, 1109], "strictli": [1, 1105], "three": [1, 1102, 1108], "datatypeproperti": [1, 404, 842, 868, 1106, 1166], "discrimin": 1, "confus": [1, 1103, 1106, 1117, 1182], "ask": [1, 1108, 1117, 1123, 1132, 1166], "think": [1, 1106, 1192], "would": [1, 217, 223, 232, 233, 1102, 1106, 1111, 1113, 1115, 1117, 1118, 1123, 1126, 1140, 1192], "accustom": 1, "stand": [1, 1102, 1109, 1117], "alon": 1, "monolith": 1, "make": [1, 827, 1099, 1101, 1105, 1106, 1107, 1108, 1116, 1117, 1118, 1119, 1123, 1124, 1126, 1129, 1130, 1135, 1136, 1141, 1192], "assumpt": [1, 153, 163, 1116, 1119], "fact": [1, 1109, 1113, 1117, 1129, 1140], "organ": [1, 827, 853, 1106, 1109, 1117, 1163, 1191], "modular": 1, "compon": [1, 495, 613, 1115, 1126, 1172, 1180], "much": [1, 1103, 1140, 1192], "softwar": [1, 1126, 1133], "evolv": 1, "program": [1, 1106, 1109, 1126, 1129, 1130], "incorpor": [1, 1117, 1129], "design": [1, 163, 173, 191, 202, 1103, 1106, 1117, 1123, 1127, 1140, 1145], "worri": [1, 1099, 1129, 1140, 1170], "everyth": [1, 437, 448, 1100, 1106, 1109, 1110, 1117], "were": [1, 1115, 1123, 1131, 1153, 1166], "actual": [1, 942, 953, 1099, 1106, 1117], "let": [1, 1117, 1130], "explor": [1, 1111, 1112, 1118, 1176], "composit": 1, "detail": [1, 3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 109, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 140, 148, 153, 157, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 212, 213, 214, 217, 223, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 262, 263, 264, 265, 269, 273, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 397, 402, 403, 404, 405, 406, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 495, 497, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 526, 527, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 676, 677, 685, 692, 693, 694, 695, 696, 698, 704, 705, 706, 707, 708, 709, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 761, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 922, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 993, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1051, 1055, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1099, 1106, 1108, 1109, 1110, 1112, 1118, 1123, 1129, 1135, 1162, 1165, 1170, 1172, 1181], "driven": [1, 1124], "infrastructur": 1, "web": [1, 1104, 1106, 1109, 1110, 1116, 1131, 1133, 1192], "stack": 1, "scienc": [1, 1106, 1129], "bioinformat": [1, 1106, 1117, 1132, 1151], "bridg": [1, 1131], "essenti": [1, 1117], "expand": [1, 6, 95, 135, 204, 252, 273, 297, 324, 375, 490, 678, 745, 818, 923, 971, 993, 1029, 1166, 1172, 1174], "contract": [1, 1166], "seem": [1, 1113, 1140], "surpris": [1, 1129], "construct": [1, 372, 437, 1102, 1106, 1109, 1117, 1119, 1145, 1166, 1192], "call": [1, 1103, 1106, 1108, 1118, 1129, 1136, 1140, 1148, 1166, 1191], "owlinterfac": [1, 202, 1128, 1150, 1170, 1173], "rdfinterfac": 1, "common": [1, 31, 46, 316, 371, 765, 771, 780, 1104, 1106, 1107, 1109, 1113, 1115, 1116, 1117, 1118, 1127, 1129, 1137, 1140, 1141, 1170, 1177], "opaqu": 1, "exactli": [1, 140, 153, 161, 163, 164, 1141], "human": [1, 31, 46, 147, 163, 165, 388, 394, 396, 410, 412, 437, 441, 509, 510, 511, 517, 523, 527, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668, 694, 936, 939, 940, 942, 953, 954, 1106, 1107, 1108, 1109, 1110, 1111, 1117, 1118, 1192], "represent": [1, 6, 95, 135, 204, 252, 297, 375, 417, 437, 448, 487, 490, 546, 613, 678, 745, 818, 923, 971, 1029, 1106, 1109, 1111, 1115, 1117, 1118, 1159, 1167], "univers": [1, 382, 388, 419, 437, 1107, 1116], "preflabel": [1, 217, 232, 476, 485, 505, 509, 512, 521, 541, 625, 988, 1012, 1106, 1116, 1192], "share": [1, 200, 262, 279, 287, 290, 293, 307, 331, 356, 364, 370, 469, 669, 741, 810, 914, 1026, 1095, 1105, 1106, 1108, 1114, 1118, 1166], "multipl": [1, 212, 213, 227, 382, 389, 394, 419, 424, 429, 437, 443, 448, 451, 457, 693, 737, 765, 771, 1049, 1067, 1082, 1106, 1107, 1108, 1116, 1118, 1120, 1129, 1148, 1162, 1163, 1166, 1176, 1179, 1182, 1192, 1193], "intent": [1, 1166, 1192], "languag": [1, 373, 380, 405, 411, 417, 437, 440, 613, 614, 1104, 1106, 1111, 1116, 1120, 1127, 1136, 1166, 1170, 1182, 1192], "unintent": 1, "version": [1, 2, 153, 163, 394, 437, 673, 695, 717, 729, 835, 842, 854, 882, 918, 1107, 1110, 1117, 1120, 1129, 1166, 1171, 1182], "freedom": 1, "littl": [1, 1129, 1140], "disallow": 1, "suit": [1, 1106, 1119], "qc": [1, 1132, 1181], "dashboard": 1, "aim": [1, 1100, 1107, 1192], "conveni": [1, 1102, 1106, 1108, 1166], "certain": [1, 1102, 1110, 1166], "cardin": [1, 3, 4, 17, 20, 21, 22, 23, 24, 92, 93, 94, 148, 153, 157, 163, 180, 198, 212, 213, 217, 223, 249, 250, 262, 263, 264, 265, 269, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 526, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 613, 628, 677, 692, 693, 695, 696, 743, 761, 764, 765, 766, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 936, 939, 940, 941, 942, 978, 988, 989, 990, 991, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1055, 1058, 1059, 1060, 1061], "ol": [1, 1102, 1106, 1113, 1128, 1136, 1137, 1152, 1164, 1166], "roughli": [1, 1117], "adher": [1, 1106, 1132], "welcom": [2, 1100, 1101, 1103, 1128], "tracker": [2, 1100, 1120], "bug": [2, 1101, 1119, 1145], "enhanc": [2, 1123], "tutori": [2, 1103, 1111, 1117, 1125, 1127, 1129, 1130, 1133, 1135, 1162, 1193], "resid": 2, "folder": [2, 1100, 1102, 1124, 1129, 1135, 1149], "build": [2, 263, 279, 285, 308, 331, 348, 1106, 1118, 1126, 1128, 1162, 1180], "live": [2, 476, 480, 488, 499, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 613, 1124], "diataxi": 2, "rst": 2, "md": [2, 1102], "docstr": [2, 1102], "read": [2, 1104, 1109, 1111, 1136], "architectur": [2, 1103, 1127, 1129, 1164], "best": [2, 1105, 1118, 1123, 1165, 1182], "practic": [2, 1105, 1107, 1113, 1115, 1116, 1118, 1166, 1192], "sooner": 2, "mark": [2, 1115, 1117], "draft": 2, "readi": [2, 1124, 1128], "review": [2, 1113, 1123], "sure": [2, 1126, 1129], "unit": [2, 263, 278, 279, 285, 308, 321, 330, 331, 348, 365, 1102], "print": [2, 1099, 1107, 1110, 1114, 1115, 1116, 1117, 1126, 1130, 1131, 1137, 1140, 1141, 1145, 1148, 1154, 1156, 1158, 1159, 1165, 1166, 1167, 1170, 1171, 1172, 1176, 1180, 1192], "ing": 2, "log": [2, 780, 781, 1118], "diagnost": [2, 1118], "captur": [2, 372, 437, 443, 1108, 1166], "exemplar": 2, "regist": [2, 418], "scheme": [2, 1126, 1154, 1160, 1162, 1164], "__init__": [2, 1156, 1157, 1161, 1163], "py": [2, 812, 1130, 1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "__post_init__": [2, 1126], "cli": [2, 1102, 1120, 1123, 1129, 1141, 1182, 1192], "refactor": 2, "substanti": 2, "ad": [2, 212, 227, 234, 1107, 1112, 1113, 1117, 1123, 1126, 1136, 1137, 1138], "diff": [2, 4, 42, 46, 56, 71, 89, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 202, 815, 828, 840, 842, 863, 879, 880, 882, 1106, 1127, 1168, 1170, 1174], "coordin": 2, "advanc": [2, 1102, 1106, 1107, 1112, 1117, 1128, 1135, 1151, 1166, 1180], "dev": [2, 1135], "environ": [2, 1109, 1123, 1129], "test_implement": 2, "test_util": 2, "author": 2, "makefil": 2, "set": [2, 3, 4, 17, 21, 22, 30, 36, 42, 45, 46, 65, 66, 77, 78, 80, 81, 85, 86, 118, 125, 213, 234, 238, 381, 388, 389, 393, 422, 423, 425, 432, 434, 435, 437, 443, 453, 460, 470, 471, 766, 775, 776, 780, 791, 792, 797, 802, 807, 842, 857, 882, 909, 941, 949, 953, 957, 961, 962, 1055, 1058, 1067, 1070, 1084, 1093, 1102, 1104, 1106, 1109, 1110, 1113, 1116, 1117, 1118, 1123, 1129, 1130, 1131, 1136, 1140, 1141, 1149, 1165, 1166, 1167, 1170, 1171, 1172, 1174, 1177, 1178, 1179, 1181, 1192], "vx": 2, "click": [2, 1141], "button": 2, "tweak": 2, "emphasi": 2, "titl": [2, 533, 613, 835, 882], "githu": 2, "clear": [2, 1107], "concis": [2, 1126], "changelog": 2, "goe": 2, "trigger": 2, "publish": [2, 476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 617, 1126], "fail": [2, 1159], "fix": [2, 1101, 1166, 1181], "delet": [2, 1105, 1115, 1137, 1166], "again": [2, 1129], "gener": [3, 4, 23, 30, 31, 36, 37, 42, 43, 46, 49, 53, 60, 65, 66, 67, 75, 76, 78, 79, 82, 84, 85, 86, 87, 90, 93, 115, 125, 212, 234, 247, 249, 279, 294, 321, 331, 355, 372, 405, 437, 440, 443, 450, 472, 473, 475, 495, 717, 735, 828, 840, 842, 882, 889, 920, 941, 966, 1101, 1103, 1106, 1108, 1109, 1111, 1117, 1118, 1119, 1123, 1124, 1127, 1129, 1131, 1132, 1133, 1136, 1141, 1143, 1158, 1163, 1165, 1168, 1172, 1174, 1177, 1179, 1180, 1181, 1192, 1193], "oa": [3, 4, 17, 22, 23, 60, 84, 978, 988, 1020, 1165], "annot": [3, 31, 46, 202, 372, 373, 380, 381, 382, 384, 385, 388, 389, 394, 396, 403, 404, 405, 411, 417, 420, 424, 426, 427, 437, 443, 446, 464, 467, 474, 475, 481, 485, 507, 613, 638, 648, 824, 827, 838, 842, 882, 978, 988, 989, 990, 998, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1015, 1018, 1019, 1020, 1021, 1022, 1025, 1061, 1099, 1103, 1106, 1107, 1109, 1111, 1115, 1118, 1120, 1126, 1127, 1137, 1149, 1152, 1164, 1165, 1166, 1167, 1170, 1171, 1173, 1192], "positiveornegativeassoci": [3, 4, 17, 21, 23, 30, 37, 41, 43, 46, 53, 60, 65, 66, 67, 75, 76, 78, 79, 82, 84, 85, 86, 87, 90], "uriorcuri": [3, 4, 17, 20, 21, 22, 23, 24, 30, 36, 43, 44, 46, 55, 56, 60, 61, 63, 65, 69, 71, 72, 73, 74, 75, 78, 82, 84, 85, 90, 93, 119, 125, 142, 163, 212, 217, 223, 227, 228, 232, 233, 234, 245, 247, 269, 276, 279, 286, 288, 318, 328, 331, 351, 359, 437, 476, 480, 488, 503, 509, 512, 514, 521, 522, 530, 533, 535, 540, 541, 542, 545, 596, 608, 613, 668, 672, 692, 693, 707, 711, 717, 743, 765, 766, 771, 780, 787, 791, 793, 803, 816, 817, 864, 882, 936, 939, 940, 941, 942, 952, 953, 964, 991, 999, 1001, 1014, 1028, 1041, 1043, 1055, 1066, 1067], "predic": [3, 4, 17, 22, 23, 36, 38, 42, 46, 49, 51, 56, 65, 66, 71, 85, 86, 140, 153, 163, 165, 170, 171, 172, 173, 181, 188, 189, 191, 197, 199, 269, 279, 311, 316, 318, 331, 344, 352, 373, 380, 384, 386, 403, 405, 411, 412, 417, 421, 437, 450, 455, 479, 485, 551, 613, 825, 842, 857, 874, 876, 882, 888, 912, 936, 941, 953, 1035, 1043, 1060, 1067, 1099, 1100, 1102, 1106, 1107, 1108, 1110, 1113, 1114, 1117, 1118, 1119, 1124, 1128, 1131, 1135, 1145, 1156, 1162, 1165, 1166, 1167, 1172, 1175, 1177, 1178, 1192], "relationship": [3, 17, 22, 23, 41, 46, 75, 76, 140, 153, 163, 182, 212, 227, 262, 269, 276, 277, 279, 284, 286, 288, 289, 307, 318, 328, 329, 331, 347, 351, 359, 362, 384, 388, 437, 443, 446, 447, 448, 450, 462, 825, 936, 941, 952, 953, 954, 957, 1100, 1106, 1108, 1109, 1110, 1111, 1127, 1128, 1130, 1132, 1135, 1137, 1159, 1166, 1170, 1172, 1175, 1178], "ontologi": [3, 17, 22, 23, 24, 31, 41, 44, 46, 60, 67, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 202, 248, 262, 263, 269, 276, 277, 278, 279, 280, 281, 284, 285, 286, 287, 288, 289, 290, 307, 308, 318, 328, 329, 330, 331, 333, 334, 347, 348, 351, 356, 359, 362, 364, 372, 373, 380, 381, 382, 384, 385, 388, 389, 393, 394, 396, 403, 405, 411, 417, 418, 420, 424, 426, 427, 435, 436, 437, 441, 443, 448, 456, 464, 467, 468, 474, 475, 476, 480, 485, 488, 495, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 527, 530, 535, 540, 541, 542, 545, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 604, 606, 608, 609, 610, 611, 612, 617, 625, 627, 635, 640, 642, 646, 647, 655, 658, 660, 664, 665, 666, 667, 668, 672, 673, 695, 717, 728, 735, 742, 812, 813, 816, 827, 828, 839, 840, 842, 845, 847, 848, 849, 851, 852, 854, 855, 856, 857, 860, 861, 863, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 881, 882, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 898, 899, 902, 903, 905, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 939, 941, 942, 946, 952, 953, 954, 968, 1099, 1103, 1106, 1107, 1108, 1110, 1111, 1113, 1114, 1115, 1117, 1118, 1119, 1120, 1123, 1126, 1128, 1129, 1130, 1131, 1132, 1137, 1141, 1143, 1145, 1149, 1151, 1152, 1156, 1159, 1162, 1163, 1164, 1165, 1167, 1168, 1170, 1171, 1172, 1173, 1174, 1176, 1177, 1178, 1179, 1180, 1181, 1186], "property_valu": [3, 17, 22, 23, 46, 1179], "propertyvalu": [3, 17, 22, 46, 60, 75, 79, 372, 373, 380, 381, 382, 384, 385, 388, 389, 393, 394, 396, 403, 411, 412, 417, 437, 440, 443, 450, 472, 473, 475, 1108], "pair": [3, 17, 22, 42, 46, 79, 148, 153, 157, 162, 163, 180, 183, 198, 479, 613, 638, 648, 1055, 1067, 1084, 1093, 1100, 1106, 1113, 1117, 1118, 1123, 1165, 1166, 1173, 1177, 1178], "subject_label": [3, 17, 22, 41, 46, 765, 780, 978, 988, 1001, 1110, 1114, 1129, 1135, 1165], "label": [3, 17, 22, 41, 46, 67, 76, 87, 93, 120, 125, 153, 163, 168, 171, 173, 177, 179, 182, 186, 189, 191, 194, 197, 223, 311, 321, 331, 338, 357, 363, 388, 396, 410, 412, 437, 441, 476, 478, 480, 485, 488, 501, 503, 505, 507, 509, 512, 521, 526, 529, 530, 532, 535, 540, 541, 545, 565, 598, 600, 601, 606, 613, 662, 694, 695, 717, 726, 764, 765, 773, 780, 795, 805, 813, 882, 936, 939, 940, 942, 953, 1099, 1104, 1106, 1107, 1109, 1110, 1111, 1115, 1117, 1123, 1124, 1127, 1129, 1130, 1131, 1135, 1137, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1148, 1154, 1159, 1165, 1166, 1167, 1170, 1172, 1174, 1176, 1180, 1193], "predicate_label": [3, 17, 22, 41, 46, 1110, 1135], "negat": [3, 17, 21, 22, 30, 37, 43, 46, 60, 65, 66, 67, 75, 76, 77, 78, 79, 82, 84, 85, 86, 87, 90, 1108], "evidence_typ": [3, 17, 22, 46], "evid": [3, 17, 22, 43, 46, 485, 613, 1106, 1108], "supporting_object": [3, 17, 22, 46], "aggregator_knowledge_sourc": [3, 4, 17, 21, 22, 46, 1182], "subject_closur": [3, 17, 22, 46], "via": [3, 17, 22, 46, 65, 66, 85, 86, 1099, 1102, 1105, 1106, 1108, 1109, 1113, 1114, 1116, 1117, 1120, 1129, 1135, 1136, 1155, 1162, 1165, 1173, 1176, 1192], "th": [3, 4, 17, 22, 42, 46, 381, 435, 437, 443, 453, 989, 1001], "subject_closure_label": [3, 17, 22, 46], "object_closur": [3, 17, 22, 46], "object_closure_label": [3, 17, 22, 46], "rollupgroup": [3, 32, 44, 46, 83], "pairwisecoassoci": [3, 33, 46, 57, 58, 59, 61, 62, 63, 64, 88, 1165], "associations_for_subjects_in_common": [3, 20, 46], "self": [3, 4, 17, 20, 21, 22, 23, 24, 92, 93, 94, 153, 157, 212, 213, 217, 223, 249, 250, 262, 263, 264, 265, 269, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 526, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 677, 692, 693, 695, 696, 743, 761, 764, 765, 766, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 936, 939, 940, 941, 942, 978, 988, 989, 990, 991, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1055, 1058, 1059, 1060, 1167, 1172], "ontoassoc": [3, 4, 17, 20, 21, 22, 23, 24, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 77, 79, 80, 81, 83, 85, 86, 88, 89, 90], "from_schema": [3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 109, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 140, 148, 153, 157, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 212, 213, 214, 217, 223, 227, 228, 230, 232, 233, 235, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 249, 250, 262, 263, 264, 265, 269, 273, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 397, 402, 403, 404, 405, 406, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 495, 497, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 526, 527, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 676, 677, 685, 692, 693, 694, 695, 696, 698, 704, 705, 706, 707, 708, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 761, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 922, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 993, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1051, 1055, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097], "slot_usag": [3, 17, 380, 394, 411, 417, 476, 485, 488, 509, 532, 533, 535, 1048, 1059], "domain_of": [3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 36, 37, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 153, 157, 161, 166, 167, 168, 170, 171, 174, 175, 176, 177, 180, 181, 183, 184, 185, 186, 188, 189, 192, 193, 194, 198, 199, 212, 213, 217, 223, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 262, 263, 264, 265, 269, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 479, 480, 485, 488, 489, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 527, 530, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 559, 560, 561, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 579, 580, 582, 583, 584, 585, 586, 587, 588, 589, 591, 592, 593, 594, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 627, 635, 636, 637, 638, 644, 645, 646, 647, 648, 649, 652, 655, 657, 658, 659, 660, 661, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 677, 692, 693, 695, 696, 704, 705, 706, 707, 708, 709, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 813, 815, 816, 817, 825, 828, 835, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 864, 865, 866, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 879, 880, 881, 883, 885, 886, 887, 888, 889, 890, 892, 893, 894, 895, 896, 897, 898, 899, 901, 902, 903, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1055, 1058, 1059, 1060, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097], "equals_express": [3, 17, 503, 526, 532, 765, 799, 824, 827, 838, 842, 849], "class_uri": [3, 212, 217, 223, 249, 250, 294, 295, 372, 385, 386, 388, 396, 402, 410, 412, 476, 480, 484, 485, 488, 509, 512, 521, 530, 533, 535, 537, 540, 542, 813, 816, 835, 941, 942, 988, 1059, 1060], "induc": [3, 4, 17, 20, 21, 22, 23, 24, 92, 93, 94, 153, 157, 212, 213, 217, 223, 249, 250, 262, 263, 264, 265, 269, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 526, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 677, 692, 693, 695, 696, 743, 761, 764, 765, 766, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 936, 939, 940, 941, 942, 978, 988, 989, 990, 991, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1055, 1058, 1059, 1060], "ontolog": [3, 4, 17, 22, 23, 60, 84, 1106, 1114], "descriptor": [3, 4, 17, 22, 23, 31, 46, 60, 84, 1106, 1109, 1165, 1182], "exact_map": [3, 4, 17, 22, 23, 60, 72, 73, 74, 84, 148, 373, 405, 411, 417, 475, 476, 480, 485, 488, 503, 505, 507, 508, 509, 512, 521, 530, 533, 535, 540, 541, 545, 550, 551, 552, 553, 575, 589, 593, 605, 625, 626, 660, 665, 940, 978, 988, 1011, 1012, 1018, 1019, 1020, 1021, 1035, 1051, 1060, 1069], "hasbodi": [3, 4, 17, 22, 84, 978, 988, 1020], "1000": [3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 109, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 140, 148, 153, 157, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 212, 213, 214, 217, 223, 227, 228, 230, 232, 233, 235, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 262, 263, 264, 265, 269, 273, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 397, 402, 403, 404, 405, 406, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 480, 485, 488, 489, 495, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 527, 530, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 676, 677, 685, 692, 693, 694, 695, 696, 698, 704, 705, 706, 707, 708, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 817, 825, 828, 835, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 922, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 993, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1051, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1180], "owner": [3, 4, 17, 20, 21, 22, 23, 24, 45, 77, 92, 93, 94, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 153, 157, 161, 166, 167, 168, 170, 171, 174, 175, 176, 177, 180, 181, 183, 184, 185, 186, 188, 189, 192, 193, 194, 198, 199, 212, 213, 217, 223, 227, 228, 230, 232, 233, 235, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 262, 263, 264, 265, 269, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 422, 423, 425, 434, 444, 452, 460, 470, 471, 476, 479, 480, 485, 488, 489, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 530, 533, 535, 536, 537, 540, 541, 542, 545, 677, 692, 693, 695, 696, 704, 705, 706, 707, 708, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 764, 765, 766, 779, 784, 785, 786, 787, 788, 789, 790, 801, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 864, 865, 866, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 883, 885, 886, 887, 888, 889, 890, 892, 893, 894, 895, 896, 897, 898, 899, 901, 902, 903, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1055, 1058, 1059, 1060, 1062, 1063, 1064, 1065, 1066, 1070, 1071, 1072, 1074, 1075, 1078, 1079, 1080, 1081, 1083, 1087, 1088, 1089, 1090, 1091, 1092, 1094, 1096, 1097], "associationchang": [3, 17, 21, 22, 30, 34, 36, 42, 46, 47, 48, 49, 50, 51, 54, 55, 56, 68, 69, 70, 71, 78, 80, 81, 82, 84, 89], "slot_group": [3, 4, 17, 22, 23, 60, 75, 84, 824, 827, 838, 842, 847, 848, 849, 855, 856, 857, 860, 861, 868, 869, 870, 872, 873, 874, 876, 877, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 899, 903, 905, 908, 911, 912, 915], "core_tripl": [3, 4, 17, 22, 23, 46, 60, 75, 84], "hastarget": [3, 17, 22, 23, 60], "mixin": [3, 4, 17, 22, 46, 47, 48, 49, 50, 51, 54, 55, 56, 67, 68, 69, 70, 71, 76, 80, 81, 87, 153, 166, 167, 168, 170, 171, 175, 176, 177, 181, 185, 186, 188, 189, 193, 194, 199, 488, 510, 511, 527, 530, 541, 545, 550, 584, 585, 586, 598, 600, 601, 606, 613, 629, 654, 988], "denormalized_slot": [3, 17, 22, 46, 67, 76, 87], "parserconfigur": [3, 4, 17, 22, 30, 45, 46, 77, 78], "inherit": [4, 19, 20, 21, 23, 24, 92, 93, 94, 107, 151, 153, 157, 212, 213, 217, 220, 223, 250, 262, 263, 268, 269, 295, 307, 308, 311, 312, 315, 316, 317, 318, 321, 322, 384, 386, 388, 389, 394, 396, 399, 402, 410, 412, 479, 484, 485, 526, 531, 532, 677, 691, 692, 693, 695, 696, 743, 760, 764, 813, 815, 816, 817, 825, 834, 835, 839, 935, 941, 978, 984, 989, 990, 991, 1045, 1046, 1055, 1058, 1107], "summary_group": [4, 46], "publication_is_ad": [4, 42, 46], "wa": [4, 39, 40, 42, 46, 49, 51, 52, 80, 476, 480, 488, 499, 503, 506, 509, 512, 521, 530, 535, 540, 541, 545, 572, 596, 613, 695, 717, 727, 738, 817, 839, 882, 895, 919, 1102, 1109, 1115], "prese": [4, 42, 46], "publication_is_delet": [4, 42, 46], "presen": [4, 42, 46], "old_pred": [4, 42, 46, 75], "new_pred": [4, 42, 46, 75], "old_object": [4, 42, 46, 60], "new_object": [4, 42, 46, 60], "old_object_obsolet": [4, 42, 46], "is_migr": [4, 42, 46], "is_gener": [4, 42, 46], "is_speci": [4, 42, 46], "is_creat": [4, 42, 46], "is_delet": [4, 42, 46], "closure_pred": [4, 46], "sp": [4, 46, 1061], "closure_delta": [4, 46], "integ": [4, 20, 34, 46, 57, 58, 59, 93, 108, 116, 117, 122, 125, 130, 132, 133, 152, 163, 217, 234, 243, 279, 331, 437, 613, 631, 633, 634, 693, 695, 696, 717, 722, 732, 733, 753, 780, 815, 824, 825, 827, 838, 842, 847, 848, 849, 855, 858, 859, 860, 861, 867, 868, 869, 870, 873, 877, 878, 882, 883, 886, 890, 892, 893, 894, 896, 898, 899, 903, 905, 908, 909, 911, 915, 916, 953, 985, 989, 1001, 1004, 1035, 1058, 1065, 1067, 1070, 1072], "diff_slot": [4, 40, 46, 47, 48, 49, 50, 51, 54, 55, 56, 60, 68, 69, 70, 71, 75, 80, 81], "been": [4, 50, 70, 1108, 1114, 1115, 1131, 1132, 1156], "obsolet": [4, 50, 70, 476, 480, 485, 488, 503, 506, 509, 512, 521, 526, 530, 532, 535, 540, 541, 545, 567, 568, 578, 613, 842, 869, 870, 882, 890, 893, 894, 1111, 1127, 1136, 1166, 1170, 1174], "migrat": [4, 49, 50, 51, 1136], "special": [4, 36, 140, 437, 448, 698, 1106, 1113, 1115, 1129, 1137, 1140, 1156, 1163, 1166, 1181, 1192], "binari": [5, 46, 91, 125, 134, 163, 203, 234, 251, 279, 296, 331, 374, 437, 486, 613, 675, 717, 744, 780, 814, 882, 921, 953, 970, 1001, 1027, 1067], "xsd": [5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 25, 26, 27, 28, 29, 46, 91, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 108, 110, 111, 112, 113, 114, 125, 134, 135, 136, 138, 139, 141, 143, 144, 145, 146, 147, 149, 154, 155, 156, 158, 159, 160, 163, 203, 204, 205, 207, 208, 209, 210, 211, 215, 216, 218, 221, 222, 224, 225, 226, 234, 251, 252, 253, 255, 256, 257, 258, 259, 260, 261, 266, 270, 271, 272, 274, 275, 279, 296, 297, 298, 300, 301, 302, 303, 304, 305, 306, 313, 319, 320, 323, 325, 326, 331, 374, 375, 376, 378, 379, 383, 387, 390, 391, 392, 395, 400, 408, 409, 413, 414, 415, 416, 418, 437, 459, 486, 487, 490, 491, 493, 494, 496, 498, 513, 514, 515, 516, 517, 523, 524, 538, 539, 543, 544, 546, 547, 548, 613, 675, 678, 679, 681, 682, 683, 684, 686, 687, 688, 689, 697, 699, 700, 701, 702, 703, 712, 713, 714, 715, 717, 721, 744, 745, 746, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 759, 762, 763, 767, 768, 769, 770, 780, 814, 818, 819, 821, 822, 823, 824, 826, 827, 829, 830, 831, 832, 836, 837, 838, 841, 843, 844, 858, 859, 878, 882, 921, 923, 924, 926, 927, 928, 929, 930, 931, 932, 933, 937, 938, 943, 944, 945, 953, 970, 971, 972, 974, 975, 976, 977, 979, 980, 981, 982, 985, 986, 987, 992, 994, 995, 1001, 1027, 1029, 1030, 1032, 1033, 1034, 1036, 1037, 1038, 1039, 1042, 1052, 1053, 1054, 1056, 1057, 1067, 1116, 1192], "bool": [5, 91, 134, 203, 251, 296, 374, 486, 675, 744, 814, 921, 970, 1027, 1142, 1144, 1145, 1146, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1193], "repr": [5, 6, 7, 8, 9, 14, 15, 16, 18, 19, 25, 27, 28, 29, 91, 95, 96, 97, 98, 103, 104, 105, 106, 107, 110, 112, 113, 114, 134, 135, 136, 137, 138, 142, 145, 146, 149, 150, 151, 155, 158, 159, 160, 203, 204, 205, 206, 207, 215, 216, 218, 219, 220, 221, 224, 225, 226, 251, 252, 253, 254, 255, 260, 261, 266, 267, 268, 270, 272, 274, 275, 296, 297, 298, 299, 300, 305, 306, 313, 314, 315, 319, 323, 325, 326, 374, 375, 376, 377, 378, 391, 392, 395, 398, 399, 408, 414, 415, 416, 486, 490, 491, 492, 493, 514, 515, 516, 524, 525, 531, 538, 544, 547, 548, 675, 678, 679, 680, 681, 687, 688, 689, 690, 691, 699, 701, 702, 703, 744, 745, 746, 747, 748, 754, 755, 756, 758, 760, 762, 767, 768, 769, 814, 818, 819, 820, 821, 830, 831, 832, 833, 834, 836, 841, 843, 844, 921, 923, 924, 925, 926, 931, 932, 933, 934, 935, 937, 943, 944, 945, 970, 971, 972, 973, 974, 980, 981, 982, 983, 984, 986, 992, 994, 995, 1027, 1029, 1030, 1031, 1032, 1038, 1039, 1042, 1044, 1045, 1052, 1054, 1056, 1057], "compact": [6, 46, 95, 125, 135, 163, 204, 234, 252, 279, 297, 331, 375, 437, 490, 613, 678, 717, 745, 780, 818, 882, 923, 953, 971, 1001, 1029, 1067, 1106, 1113, 1117, 1129], "str": [6, 7, 8, 9, 14, 15, 16, 18, 19, 25, 26, 27, 28, 29, 95, 96, 97, 98, 103, 104, 105, 106, 107, 110, 111, 112, 113, 114, 135, 136, 137, 138, 142, 145, 146, 147, 149, 150, 151, 154, 155, 156, 158, 159, 160, 204, 205, 206, 207, 215, 216, 218, 219, 220, 221, 222, 224, 225, 226, 252, 253, 254, 255, 260, 261, 266, 267, 268, 270, 271, 272, 274, 275, 297, 298, 299, 300, 305, 306, 313, 314, 315, 319, 320, 323, 325, 326, 375, 376, 377, 378, 391, 392, 395, 398, 399, 400, 408, 409, 413, 414, 415, 416, 418, 487, 490, 491, 492, 493, 514, 515, 516, 517, 523, 524, 525, 531, 538, 539, 543, 544, 546, 547, 548, 678, 679, 680, 681, 687, 688, 689, 690, 691, 697, 699, 700, 701, 702, 703, 745, 746, 747, 748, 754, 755, 756, 758, 760, 762, 763, 767, 768, 769, 818, 819, 820, 821, 830, 831, 832, 833, 834, 836, 837, 841, 843, 844, 923, 924, 925, 926, 931, 932, 933, 934, 935, 937, 938, 943, 944, 945, 971, 972, 973, 974, 980, 981, 982, 983, 984, 986, 987, 992, 994, 995, 1029, 1030, 1031, 1032, 1038, 1039, 1042, 1044, 1045, 1052, 1053, 1054, 1056, 1057, 1130, 1142, 1144, 1145, 1146, 1154, 1155, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1193], "year": [7, 46, 96, 125, 136, 163, 205, 234, 253, 279, 298, 331, 376, 437, 491, 613, 679, 717, 746, 780, 819, 882, 924, 953, 972, 1001, 1030, 1067], "month": [7, 46, 96, 125, 136, 163, 205, 234, 253, 279, 298, 331, 376, 437, 491, 613, 679, 717, 746, 780, 819, 882, 924, 953, 972, 1001, 1030, 1067], "ideal": [7, 46, 96, 125, 136, 163, 205, 234, 253, 279, 298, 331, 376, 437, 491, 613, 679, 717, 746, 780, 819, 882, 924, 953, 972, 1001, 1030, 1067], "calendar": [7, 46, 96, 125, 136, 163, 205, 234, 253, 279, 298, 331, 376, 437, 491, 613, 679, 717, 746, 780, 819, 882, 924, 953, 972, 1001, 1030, 1067], "xsddate": [7, 96, 136, 205, 253, 298, 376, 491, 679, 746, 819, 924, 972, 1030], "datetim": [8, 46, 97, 125, 137, 163, 206, 234, 254, 279, 299, 331, 377, 437, 492, 613, 680, 717, 747, 780, 820, 839, 875, 882, 907, 925, 953, 973, 1001, 1031, 1067], "xsddatetim": [9, 98, 138, 207, 255, 300, 378, 493, 681, 748, 821, 926, 974, 1032], "real": [10, 11, 12, 46, 99, 100, 101, 125, 139, 141, 143, 163, 208, 209, 210, 234, 256, 257, 258, 279, 301, 302, 303, 331, 379, 383, 387, 437, 494, 496, 498, 613, 682, 683, 684, 717, 749, 750, 751, 780, 822, 823, 826, 882, 927, 928, 929, 953, 975, 976, 977, 1001, 1033, 1034, 1036, 1067], "precis": [10, 46, 99, 125, 139, 163, 208, 234, 256, 279, 301, 331, 379, 437, 494, 613, 682, 717, 749, 780, 822, 882, 927, 953, 975, 1001, 1033, 1067, 1107, 1117, 1123], "float": [11, 35, 46, 92, 93, 100, 123, 124, 125, 126, 127, 128, 129, 141, 163, 209, 234, 257, 279, 302, 312, 316, 331, 340, 371, 383, 437, 496, 613, 683, 717, 743, 750, 757, 759, 765, 766, 770, 775, 776, 777, 780, 823, 882, 928, 953, 976, 988, 998, 1001, 1034, 1040, 1063, 1067, 1162, 1165, 1172, 1177], "int": [13, 102, 108, 144, 152, 211, 259, 304, 390, 513, 686, 752, 753, 829, 930, 979, 985, 1037, 1158, 1162, 1165, 1172, 1179, 1182], "path": [14, 25, 46, 103, 110, 125, 145, 153, 155, 163, 188, 215, 221, 234, 260, 270, 279, 305, 319, 331, 391, 408, 437, 515, 538, 613, 687, 692, 699, 711, 717, 736, 740, 754, 762, 780, 830, 836, 882, 931, 937, 953, 980, 986, 1001, 1038, 1052, 1067, 1106, 1117, 1126, 1129, 1135, 1154, 1159, 1160, 1162, 1166, 1169, 1170, 1172, 1182], "derefer": [14, 15, 25, 103, 104, 110, 145, 146, 155, 215, 216, 221, 260, 261, 270, 305, 306, 319, 391, 392, 408, 515, 516, 538, 687, 688, 699, 754, 755, 762, 830, 831, 836, 931, 932, 937, 980, 981, 986, 1038, 1039, 1052], "zero": [14, 25, 103, 110, 145, 155, 215, 221, 260, 270, 305, 319, 391, 408, 515, 538, 687, 699, 754, 762, 830, 836, 931, 937, 980, 986, 1038, 1052, 1110, 1117, 1166], "valid": [14, 15, 25, 103, 104, 110, 145, 146, 155, 202, 215, 216, 221, 260, 261, 270, 305, 306, 319, 382, 391, 392, 402, 408, 452, 515, 516, 538, 687, 688, 699, 754, 755, 762, 830, 831, 836, 931, 932, 937, 980, 981, 986, 1035, 1038, 1039, 1040, 1046, 1052, 1055, 1058, 1059, 1060, 1062, 1063, 1064, 1065, 1068, 1069, 1070, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1098, 1099, 1102, 1120, 1126, 1127, 1128, 1164, 1170, 1173, 1175], "tree": [14, 15, 103, 104, 145, 146, 215, 216, 260, 261, 305, 306, 391, 392, 515, 516, 687, 688, 754, 755, 830, 831, 931, 932, 980, 981, 1038, 1039, 1100, 1102, 1128, 1132], "pointer": [15, 46, 104, 125, 146, 163, 216, 234, 261, 279, 306, 331, 392, 437, 516, 613, 688, 717, 755, 780, 831, 882, 932, 953, 981, 1001, 1039, 1067], "prefix": [16, 46, 105, 125, 149, 163, 218, 234, 266, 279, 313, 321, 322, 331, 388, 389, 395, 402, 435, 437, 443, 444, 524, 613, 689, 717, 756, 780, 832, 835, 842, 882, 887, 889, 933, 953, 982, 1001, 1042, 1067, 1106, 1111, 1115, 1116, 1118, 1123, 1145, 1165, 1166, 1171, 1179, 1182, 1193], "curi": [16, 18, 19, 29, 46, 105, 106, 107, 114, 125, 149, 150, 151, 160, 163, 217, 218, 219, 220, 223, 226, 230, 234, 266, 267, 268, 275, 279, 313, 314, 315, 326, 331, 388, 389, 395, 398, 399, 400, 416, 418, 437, 453, 487, 524, 525, 531, 546, 548, 613, 689, 690, 691, 695, 703, 717, 725, 756, 758, 760, 769, 780, 832, 833, 834, 844, 882, 933, 934, 935, 936, 939, 940, 942, 945, 952, 953, 982, 983, 984, 995, 1001, 1042, 1044, 1045, 1057, 1067, 1104, 1106, 1107, 1108, 1109, 1111, 1114, 1117, 1119, 1127, 1129, 1130, 1136, 1137, 1141, 1142, 1145, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "bnode": [18, 46, 106, 125, 150, 163, 219, 234, 267, 279, 314, 331, 398, 437, 525, 613, 690, 717, 758, 780, 833, 882, 934, 953, 983, 1001, 1044, 1067], "shex": [18, 19, 106, 107, 150, 151, 219, 220, 267, 268, 314, 315, 398, 399, 525, 531, 690, 691, 758, 760, 833, 834, 934, 935, 983, 984, 1044, 1045], "nonliter": [18, 106, 150, 219, 267, 314, 398, 525, 690, 758, 833, 934, 983, 1044], "iri": [19, 107, 151, 220, 268, 315, 388, 389, 399, 453, 510, 511, 514, 521, 522, 527, 531, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668, 691, 695, 717, 729, 760, 834, 935, 984, 1045, 1106, 1110, 1173], "elementidentifi": [19, 107, 151, 220, 268, 315, 399, 531, 691, 760, 834, 935, 984, 1045], "object1": [20, 46, 60, 1165], "object2": [20, 46, 60, 1165], "object1_label": [20, 46], "object2_label": [20, 46], "number_subjects_in_common": [20, 46, 1165], "number_subject_unique_to_entity1": [20, 46], "number_subject_unique_to_entity2": [20, 46], "subjects_in_common": [20, 46], "preserve_negated_associ": [21, 46], "parser": [21, 45, 46, 77, 1105], "include_association_attribut": [21, 46], "attr": [21, 46], "resourc": [21, 142, 396, 827, 828, 835, 846, 863, 871, 881, 882, 897, 901, 913, 917, 918, 920, 1035, 1067, 1106, 1110, 1112, 1114, 1119, 1126, 1136, 1145, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182], "remov": [21, 77, 273, 324, 993, 1136, 1167, 1174, 1178], "defens": [21, 77], "slower": [21, 45], "instanti": [22, 249, 294, 372, 381, 405, 437, 482, 535, 541, 542, 761, 840, 942, 1035, 1043, 1049, 1050, 1060, 1067, 1106, 1140, 1158, 1166, 1182], "negatedassoci": [22, 23, 30, 37, 43, 46, 53, 60, 65, 66, 67, 75, 76, 78, 79, 82, 84, 85, 86, 87, 90], "tag": [23, 46, 60, 75, 212, 234, 240, 386, 393, 824, 827, 838, 842, 847, 849, 855, 856, 857, 860, 861, 862, 868, 869, 870, 873, 874, 876, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 898, 899, 904, 911, 912, 915, 1061, 1107, 1108, 1109, 1114, 1115, 1116, 1166, 1192], "group_object": [24, 46], "ancestor": [24, 44, 46, 765, 771, 773, 780, 1099, 1100, 1102, 1106, 1111, 1118, 1128, 1132, 1133, 1156, 1170, 1172, 1177], "sub_group": [24, 46], "rollup": [24, 46, 83, 1165], "nassoci": [24, 44], "inlined_as_list": [24, 32, 83, 264, 283, 309, 346, 388, 389, 428, 431, 435, 442, 446, 828, 840, 842, 846, 863, 897, 941, 969, 1048, 1049, 1059, 1082], "charact": [26, 46, 111, 125, 156, 163, 222, 234, 271, 273, 279, 320, 324, 331, 409, 437, 539, 613, 700, 717, 763, 780, 837, 882, 938, 953, 987, 993, 1001, 1053, 1067], "independ": [27, 46, 112, 125, 158, 163, 224, 234, 272, 273, 279, 323, 324, 331, 414, 437, 544, 613, 701, 717, 767, 780, 841, 882, 943, 953, 992, 993, 1001, 1054, 1067, 1117], "xsdtime": [27, 112, 158, 224, 272, 323, 414, 544, 701, 767, 841, 943, 992, 1054], "anyuri": [28, 29, 113, 114, 159, 160, 225, 226, 274, 275, 325, 326, 415, 416, 514, 547, 548, 702, 703, 768, 769, 843, 844, 944, 945, 994, 995, 1056, 1057], "liter": [28, 113, 159, 225, 274, 325, 415, 547, 702, 768, 843, 944, 994, 1056, 1106, 1107, 1116, 1124, 1166, 1192], "w3": [31, 46, 152, 1001, 1024, 1110, 1165, 1166], "bioscienc": [31, 46], "aspect": [31, 46, 1108, 1113, 1118, 1136, 1186], "drug": [31, 46], "diseas": [31, 46, 1106, 1108, 1167], "chemic": [31, 46, 1117], "none": [38, 41, 42, 46, 62, 64, 88, 109, 140, 148, 152, 164, 169, 172, 173, 178, 187, 190, 195, 234, 273, 279, 324, 331, 401, 407, 423, 425, 434, 437, 470, 613, 630, 676, 685, 694, 698, 717, 780, 824, 827, 838, 922, 993, 1001, 1051, 1061, 1067, 1107, 1110, 1115, 1116, 1117, 1129, 1130, 1135, 1137, 1142, 1144, 1145, 1146, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1193], "is_grouping_slot": [38, 862, 884, 891, 900, 904], "last": [40, 46, 52, 273, 324, 993], "modification_d": [40, 46], "creation_d": [40, 46, 476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650], "domain": [41, 42, 164, 165, 173, 179, 182, 191, 196, 197, 382, 388, 430, 437, 476, 480, 488, 503, 509, 512, 521, 526, 530, 532, 535, 540, 541, 545, 563, 578, 596, 603, 613, 628, 630, 665, 1099, 1106, 1108, 1117, 1136], "pertain": [42, 46], "_an": 44, "_": [44, 153, 402, 1100, 1106, 1109, 1117, 1119, 1145, 1159, 1192], "closure_information_content_delta": 46, "original_object": 46, "normal": [46, 72, 73, 74, 262, 279, 280, 287, 290, 307, 311, 331, 333, 356, 363, 364, 817, 882, 895, 1115, 1123, 1126, 1135, 1151, 1158, 1159, 1161, 1162, 1165, 1166, 1167, 1170, 1171, 1182], "original_pred": 46, "original_subject": 46, "inform": [46, 437, 742, 780, 812, 1067, 1106, 1107, 1108, 1109, 1111, 1112, 1115, 1117, 1126, 1130, 1131, 1133, 1137, 1143, 1163, 1166, 1168, 1177, 1182, 1192], "dateordatetim": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 953, 1001, 1067], "decim": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 953, 1001, 1067], "speci": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 940, 941, 952, 953, 954, 966, 1001, 1067, 1107, 1158], "doubl": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 953, 1001, 1067], "jsonpath": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 953, 1001, 1067], "jsonpoint": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 953, 1001, 1067], "ncname": [46, 125, 163, 234, 279, 331, 402, 437, 452, 613, 717, 780, 882, 953, 1001, 1067], "nodeidentifi": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 953, 1001, 1067], "objectidentifi": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 953, 1001, 1067], "sparqlpath": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 953, 1001, 1067], "ye": [53, 450, 472, 475, 555, 559, 571, 575, 588, 608, 625, 627, 635, 661, 667, 672, 673, 1082, 1100, 1102], "enrich": [91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 1099, 1123, 1131, 1152, 1164, 1170], "search": [92, 125, 128, 202, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 989, 997, 1000, 1001, 1004, 1007, 1008, 1017, 1025, 1100, 1103, 1109, 1111, 1118, 1123, 1127, 1128, 1135, 1137, 1140, 1148, 1152, 1156, 1164, 1165, 1166, 1170], "ontoenrich": [92, 93, 94, 115, 116, 117, 119, 120, 121, 122, 123, 124, 127, 128, 129, 130, 131, 132, 133], "p_value_cutoff": [92, 125], "class_id": [93, 125, 1167], "class_label": [93, 125, 1167], "p_valu": [93, 109, 125, 1167], "p_value_adjust": [93, 125, 1167], "adjust": [93, 125, 127, 1167], "false_discovery_r": [93, 125], "discoveri": [93, 123, 125], "rate": [93, 123, 125], "fold_enrich": [93, 125], "fold": [93, 124, 125], "probabl": [93, 125, 780, 781, 1106, 1118, 1177], "estim": [93, 125, 129], "approach": [93, 125, 129, 1099, 1111, 1131, 1141, 1165], "sample_count": [93, 125, 1167], "sample_tot": [93, 125], "background_count": [93, 125, 1167], "background_tot": [93, 125], "ancestor_of_more_informative_result": [93, 125], "previous": [93, 115, 121, 125, 1115, 1129, 1131], "descendant_of_more_informative_result": [93, 125], "classenrichmentresultset": [93, 125, 131], "0000175": [93, 126], "minimum_valu": [93, 129, 1061], "maximum_valu": [93, 129, 1061], "enrichemt": [94, 125, 131], "classenrichmentresult": [94, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 1167], "typeof": [108, 142, 147, 154, 212, 227, 400, 413, 418, 487, 514, 517, 523, 543, 546, 697, 753, 757, 759, 770, 985], "sort": [109, 125, 1107, 1115, 1117, 1148, 1166, 1167, 1172, 1176], "permissible_valu": [109, 140, 148, 214, 273, 324, 397, 404, 406, 495, 676, 685, 694, 698, 922, 993, 1051, 1061], "classenrichmentconfigur": [125, 128], "sortfieldenum": 125, "posit": [125, 217, 234, 316, 331, 371, 978, 988, 1001, 1018, 1021, 1129, 1166], "side": [140, 153, 163, 173, 179, 182, 191, 197, 1113, 1167], "morespecificpredicateonright": 140, "lessspecificpredicateonright": 140, "less": [140, 1061, 1106, 1107, 1129, 1160, 1167, 1182, 1192], "leftentailedbyright": 140, "rightentailedbyleft": 140, "indirectformofedgeonright": 140, "ent": 140, "rightnodesareident": 140, "nonentailedrelationship": 140, "norelationship": 140, "missingmap": 140, "missingsubjectmap": 140, "missingobjectmap": 140, "lack": [140, 153, 161, 163, 212, 228, 482, 613, 1104, 1107], "5": [140, 316, 371, 388, 396, 400, 410, 412, 413, 418, 436, 1113, 1116, 1123, 1127, 1128, 1180], "neither": [140, 503, 1166], "nor": [140, 503, 1166], "20": 140, "99": 140, "readabl": [147, 163, 165, 388, 396, 410, 412, 437, 441, 517, 523, 613, 694, 936, 939, 940, 942, 953, 954, 1106, 1117, 1192], "n": [148, 153, 1130], "subject_mapping_cardin": [148, 153, 163], "object_mapping_cardin": [148, 153, 163], "mapping_cardinality_enum": 148, "www": [152, 1001, 1024, 1106, 1110, 1156, 1166, 1192], "2001": 152, "xmlschema": 152, "cross_ontology_diff": 152, "__": [153, 230, 372, 955, 956, 959], "categor": [153, 163, 212, 228, 234], "left_object": [153, 163], "right_object": [153, 163], "right_": 153, "predicate_": 153, "left_subject": [153, 163], "right_subject": [153, 163], "figur": [153, 163, 1117], "classif": [153, 163, 1113, 1117], "xodiff": [153, 157, 161, 164, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 180, 181, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 198, 199], "diffcategori": [153, 161, 163], "left_subject_id": [153, 163, 173, 182, 197, 199], "entityrefer": [153, 163, 166, 170, 173, 175, 179, 181, 182, 184, 185, 188, 191, 193, 197, 199], "child": [153, 163, 165, 173, 175, 177, 178, 191, 193, 194, 195, 197, 384, 462, 1166, 1175], "left_object_id": [153, 163, 173, 179, 181, 182, 197], "left_predicate_id": [153, 163, 173, 182], "left_subject_label": [153, 163, 165, 173, 197], "left_object_label": [153, 163, 165, 173, 179], "left_predicate_label": [153, 163, 165, 173, 182], "right_subject_id": [153, 163, 182, 191, 197, 199], "matchabl": [153, 163, 165, 179, 185, 186, 187, 191, 193, 194, 195, 197], "right_object_id": [153, 163, 179, 181, 182, 191, 197], "right_predicate_id": [153, 163, 165, 182, 189, 190, 191], "right_subject_label": [153, 163, 165, 191, 197], "right_object_label": [153, 163, 165, 179, 191], "right_predicate_label": [153, 163, 165, 182, 191], "left_subject_is_funct": [153, 163, 164, 173], "ontol": [153, 163, 164, 173], "left_object_is_funct": [153, 163, 164, 173], "subject_mapping_pred": [153, 163, 182, 197], "hold": [153, 163, 181, 182, 197, 199, 941, 946, 951, 953, 1116, 1119, 1166, 1192], "object_mapping_pred": [153, 163, 182, 197], "right_intermediate_id": [153, 163], "mappingcardinalityenum": [153, 163, 180, 198], "structurediffresultset": [153, 163, 174, 183, 192], "nanoth": 153, "nontologi": 153, "nfor": 153, "nif": 153, "nthe": 153, "ni": 153, "nleft_object": 153, "nleft_subject": 153, "left_sid": [153, 163, 166, 167, 168, 170, 171, 175, 176, 177, 196], "right_sid": [153, 163, 185, 186, 188, 189, 193, 194, 196], "otherrelationship": [153, 188], "is_funct": [153, 163, 167, 176], "act": [154, 163, 698, 839, 845, 882, 1123], "relationaldiff": [157, 161, 163, 166, 167, 168, 170, 171, 175, 176, 177, 180, 181, 183, 184, 185, 186, 188, 189, 193, 194, 198, 199], "left_sourc": [157, 163], "right_sourc": [157, 163], "map": [162, 163, 202, 234, 437, 613, 812, 882, 1067, 1099, 1102, 1106, 1109, 1111, 1116, 1120, 1127, 1129, 1142, 1145, 1152, 1155, 1156, 1162, 1164, 1165, 1166, 1170, 1172, 1174, 1175, 1176, 1177, 1180, 1181, 1182, 1186, 1192, 1193], "arbitrarili": [163, 173, 191], "ed": 163, "text_annot": [169, 172, 178, 187, 190, 195, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1126, 1180], "definit": [200, 293, 370, 373, 380, 388, 393, 394, 420, 437, 440, 442, 443, 450, 469, 472, 473, 475, 476, 478, 480, 488, 495, 501, 505, 509, 512, 521, 529, 530, 535, 540, 541, 545, 565, 613, 669, 694, 741, 810, 842, 860, 861, 882, 914, 1026, 1095, 1100, 1106, 1109, 1119, 1120, 1130, 1131, 1137, 1145, 1166, 1170, 1172, 1173, 1179, 1181, 1192], "axiom": [201, 202, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 403, 405, 411, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 434, 436, 437, 441, 442, 443, 446, 448, 451, 453, 454, 457, 460, 463, 464, 466, 467, 470, 471, 474, 475, 476, 479, 480, 484, 488, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 527, 530, 533, 535, 536, 540, 541, 542, 545, 550, 551, 552, 553, 554, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 580, 582, 583, 584, 586, 587, 588, 589, 591, 592, 593, 594, 596, 597, 598, 599, 600, 601, 602, 603, 606, 607, 608, 609, 610, 612, 613, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 635, 637, 646, 647, 649, 652, 655, 657, 658, 660, 663, 664, 665, 666, 668, 671, 842, 877, 882, 899, 908, 1104, 1106, 1107, 1108, 1109, 1111, 1113, 1114, 1117, 1123, 1132, 1137, 1140, 1162, 1166, 1168, 1173, 1192], "orient": [201, 437, 448, 1099, 1104, 1108, 1130, 1132, 1172], "contrast": [201, 1106, 1132], "intention": [202, 373, 380, 394, 405, 411, 417, 475, 1108, 1132, 1166], "overlap": [202, 1117], "lossi": [202, 1166], "respect": [202, 1117, 1129, 1180], "datatyp": [202, 373, 380, 405, 411, 417, 437, 473, 842, 868, 882, 1106], "enumer": 202, "subset": [202, 388, 394, 446, 476, 480, 484, 488, 502, 509, 510, 511, 512, 521, 526, 527, 530, 532, 533, 535, 541, 542, 545, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 582, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 605, 606, 608, 609, 610, 612, 617, 620, 623, 625, 635, 646, 647, 652, 655, 657, 658, 664, 665, 666, 668, 693, 720, 827, 842, 847, 848, 849, 852, 855, 856, 857, 860, 861, 868, 869, 870, 872, 873, 874, 876, 877, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 898, 899, 903, 905, 908, 909, 911, 912, 915, 916, 1102, 1104, 1106, 1117, 1123, 1136, 1164, 1165, 1166, 1168, 1170, 1177, 1179], "similar": [202, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 811, 1100, 1106, 1107, 1108, 1111, 1114, 1115, 1123, 1126, 1127, 1132, 1164, 1165, 1170], "statist": [202, 815, 817, 824, 827, 828, 838, 839, 840, 842, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 860, 861, 863, 864, 865, 866, 868, 869, 870, 872, 873, 874, 875, 876, 877, 879, 880, 881, 883, 886, 887, 888, 889, 890, 892, 893, 894, 895, 896, 897, 898, 899, 901, 903, 905, 906, 907, 908, 909, 911, 912, 915, 916, 919, 920, 1118, 1127, 1128, 1164, 1170], "taxon": [202, 827, 853, 939, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 968, 969, 1127, 1158], "constraint": [202, 495, 613, 939, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 1061, 1127, 1166, 1181], "item": [203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 232, 233, 236, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 815, 825, 882, 1137, 1166, 1167, 1177], "list": [203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 373, 380, 382, 388, 389, 394, 403, 405, 411, 417, 419, 420, 421, 424, 428, 430, 432, 435, 437, 442, 454, 464, 465, 467, 475, 693, 716, 780, 989, 997, 1001, 1025, 1099, 1102, 1106, 1107, 1109, 1110, 1113, 1114, 1117, 1119, 1123, 1129, 1131, 1132, 1140, 1141, 1145, 1148, 1154, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1182], "itemlistel": [212, 217, 234], "listitem": [212, 223, 230, 232, 234, 235, 237, 239, 243, 244], "numberofitem": [212, 214, 234], "itemlistordertyp": [212, 234, 242], "itemmetadatamap": [212, 217, 234], "keyword": [212, 228, 234, 1145, 1182], "additionaltyp": [212, 234], "wasgeneratedbi": [212, 234], "script": [212, 234, 247], "itemlistcollect": [212, 234, 238], "close": [212, 373, 394, 405, 406, 411, 417, 475, 488, 1106, 1130, 1138, 1181], "close_map": [212, 373, 405, 411, 417, 475, 476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 564, 566, 569, 572, 617, 673], "henc": 212, "mtor": 212, "pathwai": [212, 1165], "shop": 212, "bui": 212, "supermarket": 212, "singular_nam": [212, 228, 237, 240], "uncontrol": [212, 228], "dcterm": [212, 228, 476, 480, 485, 488, 502, 503, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 562, 564, 566, 569, 572, 617, 626, 627, 660, 665, 667, 835, 871, 913], "microdata": [212, 227], "rdfa": [212, 227], "better": [212, 227, 1101, 1118, 1129, 1141], "weaker": [212, 227], "itemlist": [213, 217, 223, 227, 228, 229, 230, 231, 232, 233, 234, 237, 239, 240, 241, 242, 245, 246, 247, 1167], "catalog": 213, "around": [213, 1104, 1105, 1106, 1107, 1129, 1135, 1172], "ascend": 214, "itemlistorderascend": 214, "descend": [214, 939, 953, 955, 956, 959, 1099, 1100, 1102, 1106, 1108, 1118, 1123, 1132, 1135, 1165, 1167, 1170, 1172], "itemlistorderdescend": 214, "unord": 214, "itemlistunord": 214, "enum_uri": 214, "elementid": [217, 234], "idtyp": [217, 234], "previousitem": [217, 234], "previou": [217, 234, 244, 1117, 1129], "proper": [217, 223, 230, 1177], "symbol": [217, 223, 230, 232, 233, 698, 1129, 1182], "url": [223, 234, 418, 485, 546, 613, 1035, 1067, 1106, 1110, 1119, 1145, 1166], "mgi": [223, 233], "lexicaltransformationpipelin": [249, 263, 264, 269, 279, 282, 284, 285, 291, 294, 308, 309, 318, 331, 341, 347, 348, 367], "lexicaltransform": [249, 250, 265, 279, 283, 291, 292, 294, 295, 310, 331, 346, 367, 369], "ontolexindex": [249, 250, 262, 263, 264, 265, 269, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292], "relationshiptoterm": [262, 265, 276, 277, 279, 284, 286, 287, 288, 289, 307, 310, 328, 329, 331, 347, 351, 356, 359, 362], "lexicalindex": [262, 265, 278, 279, 285, 307, 310, 330, 331, 348, 1180], "lexicalgroup": [263, 269, 278, 279, 287, 290, 308, 318, 330, 331, 356, 364], "transform": [264, 265, 273, 279, 282, 283, 292, 309, 310, 324, 331, 341, 346, 369, 993, 1001, 1113], "appli": [264, 265, 273, 279, 282, 283, 291, 292, 309, 310, 311, 321, 324, 331, 341, 346, 349, 367, 369, 389, 437, 817, 882, 895, 941, 953, 965, 993, 1001, 1106, 1115, 1118, 1127, 1128, 1137, 1174, 1180, 1192], "activ": [264, 265, 279, 309, 310, 331, 839, 845, 875, 882, 907, 919, 1115, 1118, 1129, 1174], "transformationtyp": [264, 279, 292, 309, 331, 369, 1001], "paramet": [264, 279, 283, 309, 331, 346, 1046, 1058, 1064, 1067, 1070, 1080, 1083, 1094, 1097, 1119, 1128, 1142, 1144, 1145, 1146, 1162, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1193], "fashion": [265, 279, 310, 331, 1106], "element_term": [269, 279, 318, 331], "synonym": [269, 273, 279, 311, 318, 322, 324, 331, 338, 339, 354, 355, 357, 365, 366, 373, 394, 406, 411, 413, 420, 437, 438, 440, 443, 450, 465, 472, 473, 475, 476, 480, 485, 488, 507, 509, 510, 511, 512, 521, 527, 530, 535, 540, 541, 545, 550, 584, 598, 600, 601, 606, 613, 694, 842, 873, 882, 911, 912, 989, 1000, 1001, 1103, 1106, 1109, 1111, 1127, 1137, 1145, 1166, 1176, 1180, 1192], "stem": [273, 324, 993, 1119, 1145], "wo": [273, 324, 993], "lemmat": [273, 324, 993], "contextu": [273, 324, 993, 1107, 1108], "reduct": [273, 324, 993, 1178], "its": [273, 324, 503, 939, 955, 956, 993, 1107, 1109, 1114, 1115, 1119, 1123, 1137, 1182], "wordordernorm": [273, 324, 993], "reorder": [273, 324, 993], "deplur": [273, 324, 993], "plural": [273, 324, 993], "singular": [273, 324, 993], "casenorm": [273, 324, 993], "lowercas": [273, 324, 993], "whitespacenorm": [273, 324, 993], "condens": [273, 324, 993], "white": [273, 324, 993], "termexpanson": [273, 324, 993], "fa": [282, 291, 341, 367], "transf": [283, 292, 346, 369], "mappingrul": [294, 295, 307, 308, 309, 310, 312, 316, 317, 318, 321, 322, 327, 328, 329, 330, 331, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371], "precondit": [311, 327, 331, 337, 342, 343, 344, 349, 353, 360, 361, 363, 368, 503], "postcondit": [311, 327, 331, 344, 350, 352, 363, 371, 503, 526], "onewai": [311, 331], "switch": [311, 331, 344, 1129], "invert": [311, 316, 331, 344, 352], "criteria": [311, 331, 350, 1173], "fire": [311, 331, 350], "condit": [311, 331, 349, 350, 1166, 1171], "mappingrulecollect": [311, 331, 340, 358, 1180], "ifabs": [311, 344], "minimum_confid": [312, 331], "tree_root": 312, "predicate_id": [316, 331, 988, 1001, 1040, 1067, 1114, 1129], "increas": [316, 331, 371, 1107, 1117], "neg": [316, 331, 371, 780, 781, 1172], "decreas": [316, 331, 371], "see_also": [316, 371, 388, 393, 396, 410, 412, 434, 436, 460, 476, 480, 488, 495, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596], "en": [316, 371, 1107, 1116, 1123, 1166, 1192], "wikipedia": [316, 371, 1099, 1118, 1126, 1129, 1171], "wiki": [316, 371, 477, 478], "logit": [316, 371], "upload": [316, 371, 477, 478, 1119, 1145], "wikimedia": [316, 371], "57": [316, 371], "pattern": [317, 331, 337, 342, 343, 353, 360, 361, 368, 476, 503, 509, 526, 532, 543, 1061, 1110, 1119, 1123, 1127, 1129, 1132, 1136, 1141, 1143, 1163, 1165], "subject_source_one_of": [317, 331], "object_source_one_of": [317, 331], "mapping_source_one_of": [317, 331], "subject_match_field_one_of": [317, 331], "object_match_field_one_of": [317, 331], "transformations_included_in": [317, 331], "predicate_id_one_of": [317, 331], "the_rul": [321, 331], "reg": [321, 331, 338, 339, 357], "ex": [321, 331, 338, 339, 357], "match_scop": [321, 331], "scope": [321, 331, 339, 406, 413, 437, 507, 717, 735, 842, 882, 912, 1102, 1115, 1166], "qualifi": [321, 322, 331], "app": [327, 344, 349, 350, 363], "mapping_rules_datamodel": 335, "domainrangeaxiom": [372, 384, 388, 394, 403, 419, 429, 437, 443, 448, 451, 457], "equivalentnodesset": [372, 388, 394, 437, 443, 445, 458], "logicaldefinitionaxiom": [372, 386, 388, 394, 425, 434, 437, 443, 448, 460, 1172], "disjointclassexpressionsaxiom": [372, 386, 394, 422, 423, 437, 443, 470, 471, 1172], "propertychainaxiom": [372, 382, 388, 394, 421, 437, 443, 451, 530, 545, 613, 628], "geneontologi": [372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 1110, 1178, 1192], "alias": [372, 373, 380, 382, 384, 385, 388, 389, 396, 403, 410, 411, 412, 417, 476, 480, 503, 509, 512, 521, 530, 535, 540, 545, 989, 1000, 1001, 1104, 1109, 1111, 1127, 1166, 1171, 1176, 1192], "graphdocu": [372, 373, 380, 381, 382, 384, 385, 388, 393, 394, 396, 402, 403, 405, 411, 417, 435, 437, 443, 448, 453, 1144, 1145, 1146, 1154], "pred": [373, 380, 384, 405, 406, 411, 412, 417, 437, 1104, 1107, 1165], "val": [373, 380, 405, 411, 417, 437, 1107], "xrefstr": [373, 380, 405, 411, 417, 437, 475], "valtyp": [373, 380, 405, 411, 417, 437], "lang": [373, 380, 405, 411, 417, 437, 1166], "synonympropertyvalu": [373, 380, 384, 394, 405, 412, 417, 437, 438, 440, 443, 450, 465, 467, 472, 473, 475, 1172], "synonymtypedefinit": [373, 380, 384, 388, 396, 405, 410, 411, 417, 436, 437, 441, 450], "websit": [373, 380, 394, 405, 411, 417, 418, 475, 1101], "weak": [373, 394, 405, 411, 417, 475, 1108], "seealso": [373, 394, 405, 411, 417, 475, 476, 480, 485, 488, 508, 509, 512, 521, 530, 535, 540, 541, 542, 545, 613, 1166], "agent": [380, 480, 484, 488, 506, 509, 510, 511, 512, 521, 526, 527, 530, 532, 533, 535, 540, 541, 542, 545, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668, 816, 828, 835, 839, 840, 842, 845, 881, 882, 885, 919, 1058, 1067, 1080], "link": [380, 1035, 1065, 1067, 1068, 1069, 1072, 1073, 1076, 1077, 1084, 1085, 1086, 1092, 1093, 1096, 1106, 1110, 1114, 1118, 1131, 1156], "plai": [380, 1129], "mutual": [381, 385, 422, 423, 437, 443, 445, 458, 470, 471, 1129], "classid": [381, 437, 471], "classexpress": [381, 386, 437, 471, 483, 488, 497, 530, 536, 537, 541, 545, 556, 561, 580, 585, 613, 615, 630, 643, 645, 661, 670], "existentialrestrictionexpress": [381, 393, 422, 433, 437, 455, 460, 471], "unionequivalentto": [381, 437], "disjointunion": [381, 437, 470, 1173], "unionequivalenttoexpress": [381, 386, 437], "ot": [381, 437, 471], "predicateid": [382, 403, 437], "domainclassid": [382, 437], "rangeclassid": [382, 437], "allvaluesfromedg": [382, 384, 388, 437], "subpropertyof": [384, 388, 431, 437], "equivalentto": [384, 437], "obj": [384, 437], "head": [384, 462], "tail": [384, 447, 1140], "cliqu": [385, 388, 432, 437, 443, 445, 458, 1172], "equivalentclass": [385, 393, 488, 489, 537, 613, 628, 630, 1113, 1114, 1129, 1167, 1173], "representativenodeid": [385, 437], "cliq": [385, 437], "nodeid": [385, 437], "fstring": [386, 393], "objectsomevaluesfrom": [386, 1166, 1175], "oboidentifierstr": [388, 396, 410, 412, 436, 437], "lbl": [388, 396, 410, 412, 437], "subsetdefinit": [388, 396, 412, 436, 437, 441], "ter": [388, 437], "owlcollab": [388, 396, 400, 410, 412, 413, 418, 436, 1106], "oboformat": [388, 396, 400, 410, 412, 413, 418, 436, 1106], "legaci": [388, 396, 410, 412, 418, 441], "0008150": [388, 389, 453, 1166], "go_0008150": [388, 389, 453], "objectpropertyassert": [388, 431, 1173], "frequent": [389, 1106, 1108], "differenti": [393, 437, 460, 1113], "objectintersectionof": 393, "89": [393, 434, 460], "somevaluesfrom": [393, 460, 537, 613, 628, 1102, 1108, 1166], "affect": [394, 437], "belong": [394, 437, 464, 476, 480, 488, 502, 509, 512, 521, 530, 535, 540, 541, 545, 612, 613, 1119, 1166], "definitionpropertyvalu": [394, 405, 426, 437, 440, 443, 450, 472, 473, 475], "xrefpropertyvalu": [394, 405, 437, 440, 443, 450, 472, 473, 475], "basicpropertyvalu": [394, 405, 437, 440, 443, 450, 472, 473, 475], "predef": [394, 437], "insubset": [394, 464, 476, 480, 488, 502, 509, 512, 521, 530, 535, 540, 541, 545, 612], "versioninfo": [394, 474, 533, 613, 674, 835, 918], "histor": [394, 424, 1107, 1108, 1109, 1114], "reason": [394, 424, 842, 882, 890, 941, 946, 1103, 1106, 1111, 1115, 1119, 1126, 1129, 1166, 1173, 1181], "carri": [394, 424], "awar": [394, 424], "0000115": [394, 426, 476, 480, 488, 505, 509, 512, 521, 530, 535, 540, 541, 545, 575, 1115], "predefin": [394, 420], "propertytyp": [396, 404, 437], "propertytypeenum": [396, 437, 456], "namedindividu": [397, 476, 480, 484, 488, 506, 509, 510, 511, 512, 526, 527, 530, 532, 533, 535, 540, 541, 542, 545, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 663, 664, 665, 666, 668, 824, 827, 838, 842, 892, 1166], "prefixedid": 400, "unprefixedid": 400, "info": [401, 407, 824, 827, 835, 838, 882, 918, 988, 1001, 1035, 1040, 1047, 1051, 1058, 1060, 1067, 1080, 1100, 1107, 1110, 1124, 1129, 1135, 1137], "hasexactsynonym": [401, 406, 476, 480, 485, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 600, 1104, 1107, 1115], "hasnarrowsynonym": [401, 406, 476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 601, 1107], "hasbroadsynonym": [401, 406, 476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 598, 1107], "hasrelatedsynonym": [401, 406, 476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 606, 1104, 1107], "go_": [402, 437, 1166], "strongli": [402, 452], "r1": [403, 437], "rn": [403, 437], "chainpredicateid": [403, 437], "claus": [403, 421, 437], "prope": [403, 437], "broader": [406, 1106, 1129], "bu": 406, "subsetproperti": [410, 1166], "synonymtyp": [411, 412, 437, 438, 1107], "synonymtypeidentifierstr": [411, 437, 465], "isexact": [411, 437], "scopeenum": [411, 437], "commonli": [413, 1106, 1192], "plain": [413, 698, 1107], "pmid": [417, 1108, 1129], "12345": 417, "registri": [418, 1182], "bioregistri": 418, "usag": [419, 429, 437, 443, 451, 457, 1106, 1107, 1109, 1118, 1128, 1129, 1164, 1174], "propert": [419, 429, 443, 451, 457], "principl": [437, 448, 1035, 1060, 1093, 1117], "attach": [437, 448, 694, 1166, 1174], "metedata": [437, 448], "Not": [437, 448, 1117, 1140, 1157], "obographs_datamodel": 437, "expr": 437, "nodetypeenum": 437, "objec": [440, 443, 450, 472, 473, 475], "benchmark": 449, "scopesenum": 461, "namedobject": [476, 480, 485, 488, 509, 512, 521, 530, 533, 535, 540, 541, 542, 545, 552, 608, 613, 668], "hassynonym": [476, 480, 481, 485, 488, 509, 510, 511, 512, 521, 522, 527, 530, 535, 540, 541, 545, 550, 584, 598, 600, 601, 606, 613, 662], "haslifecycl": [476, 480, 481, 484, 488, 509, 512, 521, 522, 526, 530, 532, 535, 540, 541, 542, 545, 563, 578, 591, 592, 593, 596, 603, 613, 658, 665], "hasproven": [476, 480, 481, 485, 488, 509, 512, 521, 522, 530, 533, 535, 540, 541, 545, 564, 566, 567, 568, 569, 572, 576, 583, 610, 613, 617, 646, 664, 666], "hasmap": [476, 480, 481, 485, 488, 509, 512, 521, 522, 530, 535, 540, 541, 542, 545, 555, 559, 571, 588, 613, 635], "hascategori": [476, 480, 481, 488, 509, 512, 521, 522, 530, 535, 540, 541, 542, 545, 557, 562, 602, 612, 613], "hasuserinform": [476, 480, 481, 485, 488, 509, 512, 521, 522, 530, 533, 535, 540, 541, 542, 545, 560, 570, 577, 589, 599, 609, 613, 647, 655], "hasminimalmetadata": [476, 480, 481, 485, 488, 509, 512, 521, 522, 530, 535, 540, 541, 545, 575, 613, 625], "has_exact_synonym": [476, 480, 485, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 613, 662], "labeltyp": [476, 480, 485, 488, 505, 507, 509, 512, 521, 530, 535, 540, 541, 545, 598, 600, 601, 606, 613, 625, 662], "has_narrow_synonym": [476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 613, 662], "has_broad_synonym": [476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 613, 662], "has_related_synonym": [476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 613], "alternative_term": [476, 477, 480, 488, 507, 509, 510, 511, 512, 521, 527, 530, 535, 540, 541, 545, 584, 598, 600, 601, 613, 662], "isa_alternative_term": [476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 550, 613], "iedb_alternative_term": [476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 550, 613], "editor_preferred_term": [476, 480, 488, 507, 509, 512, 521, 528, 530, 535, 540, 541, 545, 550, 613], "obo_foundry_unique_label": [476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 550, 613], "has_obsolescence_reason": [476, 480, 488, 503, 509, 512, 521, 530, 532, 535, 540, 541, 545, 613, 641], "term_replaced_bi": [476, 477, 480, 484, 488, 499, 503, 509, 512, 521, 528, 530, 532, 535, 540, 541, 545, 613, 641], "has_alternative_id": [476, 480, 488, 499, 503, 509, 512, 521, 526, 530, 535, 540, 541, 545, 613, 641], "excluded_from_qc_check": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 542, 545, 590, 613], "excluded_subclassof": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 590, 613], "excluded_synonym": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 590, 613], "should_conform_to": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 542, 545, 590, 613], "created_bi": [476, 480, 485, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650], "creator": [476, 480, 485, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 567, 613, 650, 1174], "came": [476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 566, 613], "editor_not": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650], "narrativetext": [476, 480, 488, 505, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 575, 583, 613, 667], "term_editor": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650], "definition_sourc": [476, 480, 488, 506, 509, 512, 518, 521, 528, 530, 535, 540, 541, 545, 613, 650], "ontology_term_request": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650], "imported_from": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650], "term_tracker_item": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650], "broadmatch": [476, 480, 488, 504, 509, 512, 521, 530, 535, 540, 541, 542, 545, 613, 629], "closematch": [476, 480, 488, 504, 509, 512, 521, 530, 535, 540, 541, 542, 545, 613, 629, 694, 1129], "exactmatch": [476, 480, 488, 504, 509, 512, 521, 530, 535, 540, 541, 542, 545, 613, 629], "narrowmatch": [476, 480, 488, 504, 509, 512, 521, 530, 535, 540, 541, 542, 545, 613, 629], "database_cross_refer": [476, 480, 485, 488, 504, 509, 512, 521, 530, 535, 540, 541, 545, 613, 629], "curieliter": [476, 480, 485, 488, 504, 509, 512, 521, 530, 535, 540, 541, 545, 571, 613], "has_obo_namespac": [476, 480, 488, 502, 509, 512, 521, 530, 535, 540, 541, 545, 613], "in_subset": [476, 480, 485, 488, 502, 503, 505, 506, 507, 508, 509, 512, 521, 530, 535, 540, 541, 545, 550, 558, 563, 575, 576, 578, 584, 589, 596, 613, 625, 665], "conformsto": [476, 480, 488, 502, 509, 512, 521, 530, 535, 540, 541, 542, 545, 613, 614], "example_of_usag": [476, 477, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 613, 614], "curator_not": [476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650], "has_curation_statu": [476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 613, 614], "depicted_bi": [476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 613, 614], "page": [476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 613, 614, 1106, 1109], "transitiveproperti": [476, 484, 488, 510, 511, 512, 521, 526, 527, 530, 532, 533, 535, 540, 542, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 580, 582, 583, 584, 586, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 616, 617, 620, 621, 623, 624, 625, 635, 646, 647, 649, 652, 655, 657, 658, 663, 664, 665, 666, 668, 1166], "homosapien": [476, 484, 488, 510, 511, 512, 521, 526, 527, 532, 533, 540, 542, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668], "orcid": [476, 509, 1107], "omoschema": [476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 495, 497, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 526, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 554, 565, 579, 590, 591, 592, 593, 605, 608, 614, 628, 629, 630, 638, 641, 648, 650, 653, 656, 658, 674], "id_prefix": [476, 509, 936, 940, 1166], "disjoint_with": [476, 480, 485, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 600], "allotrop": [476, 477, 478, 480, 485, 488, 503, 505, 507, 508, 509, 512, 521, 530, 535, 540, 541, 545, 550, 558, 575, 578, 589, 625, 665], "permit": [476, 480, 485, 488, 503, 506, 507, 508, 509, 512, 521, 530, 535, 540, 541, 545, 550, 558, 563, 576, 578, 584, 589, 596, 665], "profil": [476, 480, 485, 488, 503, 505, 506, 507, 508, 509, 512, 521, 530, 535, 540, 541, 545, 550, 558, 563, 575, 576, 578, 584, 589, 596, 625, 665, 842, 872, 882, 1110, 1116, 1118, 1178], "0001847": [476, 480, 488, 507, 509, 511, 512, 521, 530, 535, 540, 541, 545], "9991118": [476, 480, 488, 507, 509, 510, 512, 521, 530, 535, 540, 541, 545], "0000111": [476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 584], "uniquekei": [476, 480, 488, 507, 509, 512, 521, 527, 530, 535, 540, 541, 545], "0000589": [476, 480, 488, 507, 509, 512, 521, 527, 530, 535, 540, 541, 545], "obsoletion_related_properti": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 563, 578, 596, 603, 613, 665], "obsoleteaspect": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 563, 578, 603, 613, 665], "0000231": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 603, 1115], "isreplacedbi": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 665], "0100001": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 665, 1115, 1166], "owlc": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596], "owlapi": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 1173], "317": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596], "notobsoleteaspect": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 613], "hasalternativeid": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 1115], "excluded_axiom": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 591, 592, 593, 613, 658], "hiddensynonym": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 593], "2022": [476, 480, 485, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 567, 568, 1151], "04": [476, 480, 485, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 567, 568], "12": [476, 480, 485, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 567, 568], "deprecated_element_has_exact_replac": [476, 480, 485, 488, 506, 509, 512, 518, 519, 520, 521, 530, 535, 540, 541, 545, 567, 568, 624, 640], "provenance_properti": [476, 480, 485, 488, 506, 508, 509, 512, 521, 530, 533, 535, 540, 541, 545, 564, 566, 567, 568, 569, 570, 572, 573, 576, 583, 597, 610, 613, 646, 660, 664, 666], "wasattributedto": [476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 564, 569], "structured_pattern": [476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 564, 569], "orcid_regex": [476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 564, 569], "interpol": [476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 564, 569], "partial_match": [476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 564, 569], "pav": [476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 566, 572, 617, 673], "createdon": [476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 566], "authoredon": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 572], "importedfrom": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 617], "0000116": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 583], "narr": [476, 480, 488, 505, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 575, 583, 667], "0000117": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 664], "0000119": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 576], "0000234": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 646], "0000412": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 610], "0000233": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 666], "informative_properti": [476, 480, 485, 488, 502, 508, 509, 512, 521, 530, 533, 535, 540, 541, 545, 557, 558, 560, 562, 574, 577, 589, 599, 604, 609, 613, 626, 627, 647], "sdo": [476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 609], "0000112": [476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 589], "0000232": [476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 570], "0000114": [476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 599], "foaf": [476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 577, 647, 1116, 1192], "guidelin": [476, 485, 505, 509, 512, 521, 541, 625, 1100, 1127, 1141], "core_properti": [476, 480, 485, 488, 505, 509, 512, 521, 522, 530, 533, 535, 540, 541, 545, 575, 608, 613, 625], "aristotelian": [476, 505, 509, 512, 521, 541, 575, 1113], "logical_pred": [476, 480, 488, 489, 509, 512, 521, 522, 530, 533, 535, 536, 537, 540, 541, 542, 545, 549, 556, 561, 580, 581, 582, 585, 586, 595, 613, 615, 616, 631, 632, 633, 634, 643, 644, 645, 649, 651, 652, 654, 659, 661, 668, 670], "designates_typ": [476, 480, 488, 509, 512, 521, 522, 530, 533, 535, 540, 541, 542, 545, 668], "gitlab": [477, 478], "devop": [477, 478], "allotrope_framework_term_curation_style_guid": [477, 478], "pdf": [477, 478, 495], "changenot": [477, 613, 614], "reifi": [479, 613, 638, 648], "relational_rol": [479, 485, 551, 552, 553, 638, 648], "represents_relationship": [479, 485], "is_class_level": [480, 530, 535, 540, 545, 613], "is_metadata_tag": [480, 530, 535, 540, 545, 613], "annotatedproperti": [480, 485, 613, 653], "has_synonym_typ": [480, 485, 613], "root": [482, 613, 1106, 1129, 1166, 1170, 1172, 1179], "anonymousclassexpress": [482, 537, 613], "anonym": [483, 537, 613, 842, 848, 849, 882, 883, 1113, 1166], "annotatedtarget": [484, 485, 613, 653], "annotatedsourc": [485, 522, 613, 653], "is_inf": [485, 613], "has_axiom_label": [485, 542, 613, 650], "is_a_defining_property_chain_axiom": [485, 613], "is_a_defining_property_chain_axiom_where_second_argument_is_reflex": [485, 613], "date_retriev": [485, 613, 650], "external_ontologi": [485, 613], "reification_pred": [485, 551, 552, 553, 613], "dc": [485, 533, 660], "0010000": [485, 597], "0002581": [485, 618], "0002582": [485, 619], "hassynonymtyp": [485, 607], "never_in_taxon": [488, 613], "disconnected_from": [488, 613, 656], "has_rank": [488, 542, 613], "disjointwith": [488, 489, 530, 536, 537, 545, 613, 628], "intersectionof": [488, 489, 537, 613, 628], "complementof": [488, 489, 537, 613, 628], "oneof": [488, 489, 537, 613, 628], "unionof": [488, 489, 537, 613, 628], "has_ontology_root_term": [488, 533, 613, 614], "0002161": [488, 636, 939, 955], "shortcut_annotation_properti": [488, 579, 613], "taxslim": [488, 605], "propertyexpress": [488, 489, 497, 530, 535, 537, 545, 580, 613, 644], "match_aspect": [488, 489, 530, 537, 545, 555, 559, 571, 585, 586, 588, 613, 628, 629, 635, 654], "definitionconstraint": 495, "dcc": 495, "problem": [495, 1040, 1067, 1181, 1192], "definitionpres": 495, "s0": 495, "s1": 495, "harmon": 495, "genusdifferentiaform": 495, "s3": [495, 1124, 1135, 1182], "singlegenu": 495, "circular": [495, 1113], "s7": 495, "matchtextandlog": 495, "s11": 495, "305": 495, "philpap": 495, "archiv": 495, "sepgfw": 495, "annotationpropertymixin": [502, 503, 504, 505, 506, 507, 508, 613], "namedth": [502, 503, 504, 505, 506, 507, 508, 510, 511, 527, 541, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668], "slot_condit": [503, 526, 532], "any_of": [503, 677, 717], "none_of": [503, 526, 677, 717], "absolut": [505, 575, 613, 625], "whose": [507, 510, 511, 527, 550, 584, 598, 600, 601, 606, 613, 842, 882, 916, 1106, 1107, 1117, 1137], "four": 507, "subproperti": 507, "0000101": 512, "tidi": 517, "ncit": [518, 519, 520, 1107, 1166], "p378": 518, "p384": 519, "p383": 520, "temporal_interpret": [521, 530, 545, 613], "auto": [526, 532, 613, 1166, 1168, 1169, 1171, 1175, 1176, 1178, 1181], "classifi": [526, 532, 613, 1117], "classification_rul": [526, 532], "jsonobj": [526, 1176, 1180, 1193], "is_cycl": [530, 545, 613], "is_transit": [530, 545, 613, 1117], "equivalentproperti": [530, 535, 545, 613, 628, 630], "inverseof": [530, 535, 545, 613, 628], "0001900": [530, 545, 663], "licens": [533, 542, 613, 614], "versioniri": [533, 613, 674, 835, 917], "0000700": [533, 604], "version_properti": [533, 613, 672, 673], "onproperti": [536, 537, 613, 628], "allvaluesfrom": [537, 613, 628], "proteg": 574, "defaultlanguag": [613, 614], "distinctmemb": [613, 628], "hasvalu": [613, 628], "maxqualifiedcardin": [613, 628], "mincardin": [613, 628], "minqualifiedcardin": [613, 628], "ncit_definition_sourc": 613, "ncit_term_sourc": 613, "ncit_term_typ": 613, "oboinowl_id": 613, "oboinowl_ontologi": 613, "lifecycl": [613, 641, 1115], "onclass": [613, 628], "qualifiedcardin": [613, 628], "samea": [613, 628, 630, 1114], "definitionconstraintcompon": 613, "irityp": 613, "tidystr": 613, "urlliter": 613, "allotropepermittedprofil": 613, "allotroperequiredprofil": 613, "gopermittedprofil": 613, "gorecommendedprofil": 613, "gorequiredprofil": 613, "obipermittedprofil": 613, "obirequiredprofil": 613, "dce": 626, "OR": [676, 1102, 1171, 1182, 1193], "xor": 676, "ontosearch": [677, 692, 693, 695, 696, 704, 705, 706, 707, 708, 709, 710, 711, 716, 718, 719, 720, 722, 723, 724, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740], "all_of": [677, 717], "path_to": [677, 717], "searchbaseconfigur": [677, 692, 696, 706, 707, 708, 709, 710, 716, 717, 718, 719, 720, 722, 731, 736, 737, 739], "descendant_of": 685, "ancestor_of": 685, "proper_descendant_of": 685, "proper_ancestor_of": 685, "parent_of": 685, "child_of": 685, "queri": [692, 693, 711, 717, 736, 737, 740, 1103, 1104, 1106, 1108, 1111, 1114, 1115, 1116, 1117, 1123, 1124, 1128, 1130, 1131, 1133, 1135, 1137, 1140, 1148, 1162, 1163, 1165, 1166, 1170, 1172, 1176, 1181, 1182, 1192], "graphfunct": [692, 717, 740], "graph_pred": [692, 717], "search_term": [692, 693, 717, 1176], "searchterm": [693, 717, 737], "searchtermsyntax": [693, 717, 739, 1148, 1176, 1193], "searchproperti": [693, 717, 731, 1176], "batch": [693, 717, 722, 1141, 1163], "cursor": [693, 696, 717], "exce": [693, 717], "iterat": [693, 717], "is_parti": [693, 717, 718, 1176], "is_complet": [693, 717], "include_obsoletes_in_result": [693, 717], "is_fuzzi": [693, 717], "force_case_insensit": [693, 717], "insensit": [693, 710, 717], "complexqueri": [693, 704, 705, 706, 717, 724, 730], "pathexpress": [693, 711, 717, 736, 740], "searchresultset": [693, 695, 708, 709, 717, 733, 734], "searchconfigur": [693, 1148, 1170, 1176, 1193], "replacement_identifi": 694, "mapped_identifi": [694, 1176], "informative_text": 694, "low": [695, 717, 732, 1141], "object_sourc": [695, 717, 765, 780, 842, 882, 887, 889, 988, 1001, 1114, 1129, 1171], "object_source_vers": [695, 717], "object_match_field": [695, 717], "matches_full_search_term": [695, 717], "snippet": [695, 717], "searchresult": [696, 717, 723, 725, 726, 727, 728, 729, 732, 734, 738], "result_count": [696, 717], "plaintext": [698, 1193], "regular_express": [698, 1148, 1176, 1193], "regular": [698, 1061, 1129, 1176], "ecmascript": 698, "percent": 698, "lucen": 698, "solr": [698, 1137], "starts_with": 698, "searc": 698, "operat": [707, 709, 710, 716, 718, 719, 720, 722, 731, 737, 739], "search_datamodel": [712, 713, 714, 715, 721], "layer": [717, 735, 1109, 1135, 1162], "servic": [717, 735, 1102, 1106, 1151, 1152, 1158, 1164, 1167, 1182], "cover": [717, 735], "googl": [717, 735, 1123], "although": [717, 735, 1106, 1107, 1109, 1110, 1115, 1118, 1158], "could": [717, 735, 842, 882, 916, 1099, 1106, 1109, 1123, 1141], "booleanoper": 717, "orm": [742, 1128, 1152], "sim": [743, 761, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 785, 786, 787, 788, 789, 790, 791, 792, 794, 797, 798, 799, 800, 801, 802, 804, 807, 808, 809, 811, 1165], "match_sourc": [743, 780], "match_source_label": [743, 780], "match_target": [743, 780], "match_target_label": [743, 780], "match_subsum": [743, 780], "match_subsumer_label": [743, 780], "termpairwisesimilar": [743, 761, 771, 772, 773, 774, 777, 778, 780, 783, 793, 794, 795, 796, 799, 801, 803, 804, 805, 806, 1177], "termsetpairwisesimilar": [743, 761, 764, 775, 776, 780, 791, 792, 797, 802, 807, 1118, 1165], "subject_best_match": [743, 766, 780], "object_best_match": [743, 766, 780], "subject_termset": [764, 766, 780], "object_termset": [764, 766, 780], "pairwisesimilar": [765, 766, 780], "subject_id": [765, 780, 1040, 1067, 1099, 1114, 1129, 1171], "subject_sourc": [765, 780, 978, 988, 1001, 1114, 1129], "ancestor_id": [765, 780], "ancestor_label": [765, 780], "ancestor_sourc": [765, 780], "object_information_cont": [765, 780, 781], "negativelogvalu": [765, 772, 780, 781, 794, 804], "subject_information_cont": [765, 780, 781], "ancestor_information_cont": [765, 780, 781], "jaccard_similar": [765, 780, 799, 800], "zerotoon": [765, 778, 780, 783, 798, 808, 809], "intersect": [765, 780, 783], "cosine_similar": [765, 780, 800], "dot": [765, 777, 780], "embed": [765, 777, 780, 1118], "dice_similar": [765, 780, 800], "nonnegativefloat": [765, 780, 799], "geometr": [765, 780, 799], "content": [765, 780, 799, 1106, 1131, 1163, 1166, 1169, 1177], "bestmatch": [765, 766, 780, 785, 786, 787, 788, 789, 790, 792, 800, 801, 802], "decid": [765, 771, 1117, 1165, 1181], "ancesto": [765, 771], "information_cont": [765, 772, 780, 794, 799, 800, 804], "sqrt": [765, 799], "terminfo": [766, 779, 780, 784, 797, 807], "average_scor": [766, 780], "best_scor": [766, 780], "intersection_count": [780, 800], "overlap_coeffici": [780, 800], "subsumed_by_scor": [780, 800], "subsumes_scor": [780, 800], "union_count": [780, 800], "itemcount": [780, 782, 811], "summarystatisticsreport": [813, 816, 828, 835, 839, 842, 846, 863, 881, 882, 897, 920], "groupedstatist": [813, 835, 839, 840, 842, 846, 863, 881, 882, 897, 901, 920, 1179], "ungroupedstatist": [813, 815, 817, 825, 828, 835, 839, 840, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 866, 868, 869, 870, 872, 873, 874, 876, 877, 881, 882, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 897, 898, 899, 901, 903, 905, 908, 909, 911, 912, 915, 916, 920, 1179], "summarystatisticscalculationact": [813, 828, 840, 842, 845, 875, 882, 907, 919, 920], "was_associated_with": [813, 839, 882], "acted_on_behalf_of": [813, 839, 882], "summary_statist": [813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 915, 916, 917, 918, 919, 920], "contributorrol": [813, 828, 835, 840, 842, 881, 882], "filtered_count": [815, 825, 882], "change_summari": [815, 842, 882], "facetedcount": [815, 817, 842, 856, 857, 874, 876, 879, 880, 882, 887, 888, 889, 906, 912], "contributor_id": [817, 882], "contributor_nam": [817, 882], "normalization_com": [817, 882], "role_count": [817, 825, 882], "contributor_summari": [817, 842, 882], "summarystatisticcollect": [824, 827], "class_count": [824, 827, 838, 842, 867, 882], "anonymous_class_expression_count": [824, 827, 838, 842, 867, 882], "unsatisfiable_class_count": [824, 827, 838, 842, 867, 882], "class_count_excluding_deprec": [824, 827, 838], "class_count_with_definit": [824, 827, 838], "property_count": [824, 827, 838, 842, 867, 882], "object_property_count": [824, 827, 838, 842, 867, 882], "datatype_property_count": [824, 827, 838, 842, 867, 882], "annotation_property_count": [824, 827, 838, 842, 867, 882], "individual_count": [824, 827, 838, 842, 849, 867, 882], "named_individual_count": [824, 827, 838, 842, 849, 867, 882], "anonymous_individual_count": [824, 827, 838, 842, 867, 882], "untyped_entity_count": [824, 827, 838, 842, 867, 882], "description_logic_profil": [824, 827, 838, 842, 882], "owl_axiom_count": [824, 827, 838, 842, 867, 882], "rdf_triple_count": [824, 827, 838, 842, 867, 882], "subclass_of_axiom_count": [824, 827, 838, 842, 867, 882], "equivalentclasses_axiom_count": [824, 827, 838], "distinct_synonym_count": [824, 827, 838, 842, 867, 882], "synonym_statement_count": [824, 827, 838, 842, 867, 882], "mapping_count": [824, 827, 838, 842, 867, 882], "ontology_count": [824, 827, 838, 842, 867, 882], "globalstatist": [824, 838], "by_categori": [824, 827], "by_taxon": [824, 827], "by_ontologi": [824, 827], "by_subset": [824, 827], "count_statist": [824, 827, 838, 842, 847, 848, 849, 855, 858, 859, 860, 861, 868, 869, 870, 873, 877, 878, 882, 883, 886, 890, 892, 893, 894, 896, 898, 899, 903, 905, 908, 909, 911, 915, 916], "class_statistic_group": [824, 827, 838, 842, 848, 855, 860, 861, 869, 882, 890, 893, 915], "property_statistic_group": [824, 827, 838, 842, 847, 868, 870, 882, 894, 896, 903], "individual_statistic_group": [824, 827, 838, 842, 849, 882, 883, 892], "count_of": [824, 827, 838, 862, 904], "owl_statistic_group": [824, 827, 838, 842, 872, 877, 882, 899, 905, 908], "metadata_statistic_group": [824, 827, 838, 842, 856, 857, 873, 874, 876, 882, 886, 887, 888, 889, 911, 912], "edge_count_by_pred": [825, 842, 882], "entailed_edge_count_by_pred": [825, 842, 882], "synonym_statement_count_by_pred": [825, 842, 882], "class_count_by_subset": [825, 842, 882], "class_count_by_categori": [825, 842, 882], "mapping_statement_count_by_pred": [825, 842, 882], "mapping_statement_count_by_object_sourc": [825, 842, 882, 889], "mapping_statement_count_subject_by_object_sourc": [825, 842, 882], "contributorstatist": [825, 842, 864, 865, 866, 882, 895, 906], "changetypestatist": [825, 842, 854, 879, 880, 882], "facetstatist": [827, 838, 850, 851, 852, 853], "mf": [827, 828, 901], "bp": [827, 828, 901], "cc": [827, 828, 901], "sens": [827, 1106, 1109, 1113, 1140], "metagenomics_slim": 827, "compared_with": [828, 835, 840, 842, 882], "was_generated_bi": [828, 839, 840, 842, 882], "version_info": [835, 882], "started_at_tim": [839, 882], "ended_at_tim": [839, 882], "behalf": [839, 845, 882], "startedattim": [839, 907], "endedattim": [839, 875], "wasassociatedwith": [839, 919], "actedonbehalfof": [839, 845], "unsatisfi": [842, 882, 915, 939, 953, 1126, 1181], "deprecated_class_count": [842, 867, 882], "non_deprecated_class_count": [842, 867, 882], "merged_class_count": [842, 867, 882], "class_count_with_text_definit": [842, 867, 882], "class_count_without_text_definit": [842, 867, 882], "deprecated_object_property_count": [842, 867, 882], "non_deprecated_object_property_count": [842, 867, 882], "subset_count": [842, 867, 882], "slim": [842, 857, 882, 909, 1166], "equivalent_classes_axiom_count": [842, 867, 882], "exter": [842, 882], "notdeprec": [842, 893, 894], "hastextdefinit": [842, 860], "nothastextdefinit": [842, 861], "anonymousindividu": [842, 849], "el": [842, 872], "dl": [842, 872], "entailededg": [842, 876, 1152, 1162], "objectsourc": [842, 887, 889], "reportby_categori": 850, "reportby_ontologi": 851, "reportby_subset": 852, "reportby_taxon": 853, "reportclass_count_excluding_deprec": 858, "reportclass_count_with_definit": 859, "reportequivalentclasses_axiom_count": 878, "taxon_constraint": [921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969], "excluderedund": 922, "includeredund": 922, "includeneverinifredundantwithonlyin": 922, "excludeneverinifredundantwithonlyin": 922, "tc": [936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 958, 960, 961, 962, 963, 964, 968, 969], "come": [939, 953, 1100, 1105, 1106, 1117, 1132, 1134, 1140], "lead": [939, 953, 968, 1117], "cont": [939, 953], "only_in": [939, 941, 953], "state": [939, 953, 955, 956, 1117, 1166, 1181], "never_in": [939, 941, 953, 957], "present_in": [939, 941, 953], "present_in_ancestor_of": [939, 941, 953], "via_term": [939, 941, 953, 958], "contradict": [939, 968], "conflat": [939, 956], "0002160": [939, 956, 1131, 1166], "0002175": [939, 959], "taxonom": [940, 952, 953, 954], "higher": [940, 952, 953, 954, 1129, 1162, 1192], "ncbitaxon_union": 940, "subjectterm": [941, 942, 950, 952, 953, 954, 955, 956, 959, 960, 965, 968, 969], "predicateterm": [941, 942, 952, 953, 954, 957, 958], "evolutionari": [941, 953], "nev": [941, 953], "redundant_with_only_in": [941, 953], "redundant_with": [941, 953], "contradicted_bi": [941, 953], "conflict": [941, 949, 953], "taxo": [941, 953], "in_taxon": [941, 957], "configurationopt": 953, "ann": [978, 988, 989, 990, 991, 996, 997, 999, 1000, 1002, 1003, 1004, 1006, 1007, 1008, 1009, 1010, 1014, 1016, 1017, 1018, 1019, 1021, 1022, 1023, 1025], "subject_text_id": [978, 988, 991, 1001], "textualel": [978, 988, 999, 1001, 1014, 1016, 1022, 1023], "textannot": [978, 989, 990, 991, 996, 998, 1001, 1002, 1003, 1005, 1006, 1007, 1009, 1010, 1011, 1012, 1013, 1015, 1018, 1019, 1020, 1021, 1022, 1170, 1180], "bpa": [978, 988, 1011, 1012, 1018, 1019, 1021], "hasspan": [988, 991, 1001, 1018, 1019, 1020, 1021, 1022], "object_categori": [988, 1001], "match_str": [988, 1001, 1129], "is_longest_match": [988, 1001, 1129], "matches_whole_text": [988, 989, 1001, 1129], "match_typ": [988, 1001, 1129], "textannotationresultset": [988, 996, 1001], "annotatedclass": [988, 1011, 1012], "textannotationconfigur": [988, 997, 1000, 1001, 1004, 1007, 1008, 1017, 1025, 1180], "token_exclusion_list": [989, 1001], "include_alias": [989, 1001], "grounding_mod": 989, "source_text": [991, 1001], "parent_docu": [991, 1001], "upon": [1001, 1024, 1119, 1129, 1165], "tr": [1001, 1024, 1166], "validation_result": [1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1098], "vm": [1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1055, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1069, 1070, 1071, 1072, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1083, 1085, 1087, 1088, 1089, 1090, 1091, 1092, 1094, 1096, 1097], "namedresourc": [1028, 1043, 1066, 1067], "validationresult": [1028, 1035, 1040, 1043, 1047, 1050, 1055, 1059, 1067, 1068, 1069, 1073, 1076, 1077, 1081, 1084, 1085, 1086, 1093, 1181], "externalreferencevalidationresult": [1028, 1043, 1060, 1065, 1067, 1068, 1069, 1072, 1073, 1076, 1077, 1084, 1085, 1086, 1092, 1093, 1096], "time_check": [1035, 1067], "number_of_attempt": [1035, 1067], "http_response_cod": [1035, 1067], "constraintcompon": [1035, 1041, 1060, 1066, 1067, 1093], "sever": [1035, 1051, 1055, 1058, 1060, 1067, 1093, 1094, 1108, 1124], "severityopt": [1035, 1055, 1060, 1067, 1084], "object_str": [1035, 1060, 1067], "sourceconstraintcompon": [1035, 1060, 1093], "typeseveritykeyvalu": [1035, 1058, 1060, 1067, 1084, 1093, 1094], "resultsever": [1035, 1060, 1084], "severity_opt": [1035, 1051, 1055, 1060, 1084], "focusnod": [1035, 1060, 1086], "sourceshap": [1035, 1060, 1069], "related_map": [1035, 1060, 1077], "resultpath": [1035, 1060, 1077], "resultmessag": [1035, 1060, 1068], "mappingvalidationresult": [1035, 1047, 1050, 1060, 1062, 1063, 1067, 1068, 1074, 1075, 1078, 1079, 1087, 1088, 1090, 1091, 1181], "repairoper": [1035, 1040, 1048, 1050, 1060, 1067, 1068, 1071, 1081, 1089, 1181], "correct": [1040, 1062, 1063, 1067, 1068, 1074, 1075, 1078, 1079, 1087, 1088, 1090, 1091, 1100, 1115], "subject_info": [1040, 1067], "object_info": [1040, 1067], "suggested_pred": [1040, 1067], "suggested_modif": [1040, 1067], "repair": [1046, 1047, 1048, 1060, 1064, 1067, 1068, 1071, 1082, 1089, 1097, 1170, 1181], "validation_configur": [1046, 1058, 1067], "validationconfigur": [1046, 1055, 1067, 1070, 1080, 1083, 1094, 1097, 1181], "dry_run": [1046, 1067, 1181], "repairreport": [1047, 1049, 1067, 1082], "integr": [1047, 1106, 1129, 1148], "abl": [1047, 1107, 1109, 1118, 1176], "holder": [1049, 1067, 1082], "validationreport": [1049, 1060, 1067, 1082], "fatal": 1051, "violat": [1051, 1181], "type_severity_map": [1055, 1058, 1067], "conforms_to": 1055, "q4818718": 1055, "max_number_results_per_typ": [1058, 1067], "truncat": [1058, 1067, 1070, 1129], "schema_path": [1058, 1067], "prompt_info": [1058, 1067], "ai": [1058, 1067, 1080, 1106], "prompt": [1058, 1067, 1080], "repairconfigur": [1058, 1064, 1067, 1097, 1181], "aris": [1060, 1067, 1068, 1069, 1073, 1076, 1077, 1084, 1085, 1086, 1093], "datatypeconstraintcompon": [1061, 1124], "mincountconstraintcompon": [1061, 1124], "spe": 1061, "maxcountconstraintcompon": [1061, 1124], "deprecatedpropertycompon": [1061, 1124], "maxlengthconstraintcompon": 1061, "minlengthconstraintcompon": 1061, "patternconstraintcompon": 1061, "closedconstraintcompon": [1061, 1124], "ruleconstraintcompon": 1061, "validaton": 1067, "validationresulttyp": 1067, "parti": [1068, 1069, 1073, 1076, 1077, 1084, 1085, 1086, 1093], "focu": [1099, 1106, 1135, 1140], "code": [1099, 1101, 1102, 1106, 1116, 1119, 1123, 1126, 1128, 1131, 1133, 1137, 1140, 1141, 1143, 1145, 1152, 1166, 1170, 1182], "talk": [1099, 1102, 1130, 1172, 1180], "get_adapt": [1099, 1107, 1110, 1114, 1115, 1116, 1117, 1123, 1126, 1130, 1131, 1137, 1140, 1141, 1148, 1154, 1156, 1158, 1159, 1162, 1163, 1165, 1166, 1167, 1170, 1171, 1172, 1176, 1180, 1182], "0011103": 1099, "sympathet": 1099, "underli": [1099, 1115, 1117, 1135], "basic_ontology_imerfac": 1099, "doesn": [1099, 1109, 1110, 1113, 1117, 1118, 1129, 1158, 1192], "task": [1099, 1102, 1104, 1106, 1107, 1109, 1123], "often": [1099, 1102, 1106, 1107, 1109, 1113], "coupl": 1099, "notat": 1099, "sssom_map": [1099, 1114, 1170, 1171], "0005886": [1099, 1171], "cell_membran": [1099, 1171], "scalabl": 1099, "amen": 1099, "runoak": [1100, 1102, 1104, 1105, 1107, 1108, 1109, 1110, 1113, 1114, 1115, 1117, 1118, 1119, 1123, 1124, 1126, 1129, 1133, 1135, 1136, 1137, 1143, 1145, 1148, 1149, 1151, 1153, 1154, 1156, 1158, 1159, 1160, 1163, 1165, 1171, 1176, 1192], "global": 1100, "jupyt": [1100, 1102, 1127], "directori": [1100, 1129, 1139, 1159], "our": [1100, 1104, 1117, 1182], "eventu": 1100, "repositori": [1100, 1104, 1106, 1129, 1135, 1137, 1162, 1172], "easiest": [1100, 1124], "myontid": 1100, "chebi": [1100, 1115, 1129, 1131, 1140], "cystein": [1100, 1129], "almost": 1100, "disjunct": 1100, "handi": 1100, "memor": 1100, "devic": 1100, "l": [1100, 1129, 1176, 1193], "pameter": 1100, "bone": 1100, "forelimb": [1100, 1117], "pipe": 1100, "interneuron": [1100, 1129, 1130], "next": [1100, 1123, 1128, 1130], "0002405": 1100, "0002039": 1100, "0000893": 1100, "0001042": 1100, "0000935": 1100, "chainabl": 1100, "slack": [1100, 1101], "channel": [1100, 1101], "copi": [1100, 1105, 1115, 1123, 1174], "idea": [1101, 1123], "improv": [1101, 1105, 1129], "stylist": 1101, "suggest": [1101, 1120], "free": [1101, 1124, 1130], "repo": [1101, 1102, 1124, 1139], "workspac": 1101, "join": [1101, 1107], "technic": 1102, "site": [1102, 1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "academi": [1102, 1109, 1112], "command": [1102, 1104, 1106, 1107, 1108, 1109, 1110, 1111, 1113, 1114, 1115, 1117, 1118, 1119, 1123, 1127, 1128, 1135, 1145, 1152, 1154, 1159, 1160, 1164, 1174, 1182, 1192], "line": [1102, 1104, 1106, 1107, 1108, 1109, 1110, 1111, 1115, 1117, 1123, 1127, 1128, 1129, 1145, 1152, 1164, 1180, 1182, 1192], "5281": 1102, "zenodo": 1102, "7708963": 1102, "monarch": [1102, 1106], "video": 1102, "throughout": 1102, "chosen": 1102, "mirror": 1102, "companion": 1102, "odk": [1102, 1135], "homag": 1102, "oakland": 1102, "onc": [1102, 1135, 1192, 1193], "consult": [1102, 1126, 1135], "ontoport": [1102, 1106, 1128, 1149, 1180], "speak": 1102, "allianc": [1102, 1129], "expens": 1102, "excel": 1102, "bank": 1102, "brown": 1102, "fox": 1102, "synchron": 1102, "addition": [1102, 1116, 1117, 1131, 1182], "capabl": [1102, 1105, 1123, 1131, 1137, 1169], "particularli": [1102, 1117], "simpleobo_implement": 1102, "fast": [1102, 1105, 1119], "rigor": 1102, "major": 1102, "blocker": 1102, "maintain": 1102, "small": [1102, 1109, 1140], "consum": [1102, 1113], "compil": 1102, "sqlite3": [1102, 1105, 1128, 1182], "sparql_implement": [1102, 1161], "wider": [1102, 1129], "abil": [1102, 1104, 1123], "plan": [1102, 1140, 1162], "rust": [1102, 1118], "whelk": 1102, "viz": [1102, 1109, 1117, 1129, 1132, 1133], "variant": [1102, 1109], "runnabl": 1103, "am": 1103, "familiar": [1103, 1130], "me": [1103, 1123], "why": [1103, 1108, 1111, 1117, 1140], "bio": [1103, 1104, 1106, 1107, 1108, 1117], "portal": [1103, 1140], "matport": 1103, "triplestor": [1103, 1106, 1116, 1127, 1128, 1129, 1136], "chatgpt": [1103, 1123], "stai": 1103, "troubleshoot": [1103, 1127], "messag": 1103, "won": 1103, "long": [1103, 1118, 1140], "cach": [1103, 1129, 1135, 1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1166, 1172, 1173, 1180], "fine": [1104, 1116, 1140, 1141], "tune": [1104, 1163], "impress": 1104, "pure": [1104, 1115, 1118, 1170], "answer": [1104, 1108, 1123, 1140], "good": [1104, 1113, 1115, 1165, 1176], "interest": [1104, 1113, 1118, 1158], "fusion": 1104, "research": 1104, "ontogpt": [1104, 1106, 1120, 1180], "project": [1104, 1106, 1117, 1119, 1120, 1128, 1162, 1181], "theoret": [1104, 1132], "easili": 1104, "0000084": [1104, 1137], "lymphocyt": [1104, 1137], "immatur": 1104, "matur": 1104, "becaus": [1105, 1106, 1113, 1115, 1116, 1119, 1129, 1166, 1192], "ont": [1105, 1110, 1116, 1123, 1131, 1145, 1166, 1192], "lexmatch": [1105, 1114], "guidanc": 1105, "rdflib": [1105, 1134, 1156, 1157, 1161, 1163, 1182], "sparql_adapt": 1105, "known": [1105, 1106, 1109, 1110, 1113, 1117, 1118, 1152, 1165, 1166], "sql_adapt": 1105, "made": [1105, 1115, 1124, 1128, 1182, 1192], "manag": [1105, 1106, 1110, 1123, 1130, 1132, 1180, 1183], "purg": 1105, "stale": 1105, "rm": [1105, 1135], "necessari": [1105, 1109, 1115, 1117, 1129, 1141], "gz": [1105, 1135], "strive": 1105, "fill": 1105, "feedback": 1105, "deeper": 1106, "dive": 1106, "discret": 1106, "artefact": [1106, 1140], "0000948": [1106, 1110, 1116], "technologi": 1106, "uniform": [1106, 1108, 1131, 1192], "peopl": [1106, 1118, 1126, 1129, 1182], "usual": [1106, 1108], "literatur": 1106, "learn": [1106, 1111, 1126, 1127, 1129, 1130, 1151], "neo4j": 1106, "upper": [1106, 1117], "seen": [1106, 1113, 1117, 1129], "nuanc": 1106, "despit": 1106, "terminologi": [1106, 1107, 1109], "confusingli": 1106, "curat": [1106, 1109, 1111, 1127, 1129, 1165], "conceptu": 1106, "due": [1106, 1126, 1129], "emploi": 1106, "numer": [1106, 1110, 1137, 1158, 1162], "obscur": 1106, "finger": [1106, 1113, 1123, 1132, 1172], "vertex": 1106, "scoliosi": 1106, "vertebr": 1106, "overload": 1106, "programmat": [1106, 1123, 1126, 1128, 1129], "counterpart": [1106, 1113], "Of": 1106, "reachabl": 1106, "convers": [1106, 1120, 1127], "mucopolysaccharidosi": 1106, "lysosom": 1106, "storag": 1106, "singleton": [1106, 1166, 1170], "musculoskelet": 1106, "behind": [1106, 1131, 1140], "scene": [1106, 1131, 1140], "obook": [1106, 1109, 1112], "harold": 1106, "solbrig": 1106, "easi": [1106, 1118, 1123, 1136, 1192], "popular": [1106, 1119, 1184], "outsid": [1106, 1108, 1114, 1117, 1124, 1129, 1133, 1135], "genom": 1106, "sphere": 1106, "althono": 1106, "primer": [1106, 1112, 1166], "john": 1106, "characterist": [1106, 1113, 1117, 1118, 1137, 1166, 1173], "silent": 1106, "coher": [1106, 1126, 1170, 1181], "comprehens": [1106, 1129], "expos": [1106, 1114, 1166], "bioontologi": [1106, 1129], "framework": [1106, 1109, 1120], "agroport": 1106, "ecoport": 1106, "oppos": 1106, "isn": [1106, 1117], "tautologi": [1106, 1166], "strategi": [1106, 1111, 1178, 1180], "oborel": 1106, "ebi": [1106, 1155], "ac": 1106, "uk": 1106, "awai": [1106, 1135, 1170], "while": [1106, 1116, 1136, 1165], "measur": [1106, 1111, 1166, 1177], "wherea": [1106, 1108], "log2": [1106, 1177], "taken": [1106, 1108], "account": [1106, 1118, 1129], "observ": 1106, "realpython": 1106, "regardless": [1106, 1115, 1130, 1135, 1137, 1141], "worldview": 1106, "distinguish": [1107, 1158], "reflect": 1107, "occasion": 1107, "urea": 1107, "cycl": 1107, "ornithin": 1107, "biosynthesi": 1107, "boost": 1107, "below": 1107, "reli": [1107, 1165], "phrase": 1107, "pten": 1107, "risk": 1107, "breast": 1107, "cancer": 1107, "malign": 1107, "neoplasm": 1107, "funk": 1107, "2016": 1107, "neutral": [1107, 1176], "priorit": 1107, "manu": [1107, 1117, 1176], "scientif": 1107, "medic": 1107, "favor": [1107, 1130, 1132, 1179], "layperson": 1107, "vasilevski": 1107, "diagnosi": 1107, "70": 1107, "sweet": 1107, "mint": 1107, "variat": 1107, "area": 1107, "consensu": 1107, "english": [1107, 1116, 1166], "untyp": 1107, "entity_alias": [1107, 1166, 1170], "0001698": 1107, "fluid": 1107, "pericardi": 1107, "effus": 1107, "simplist": [1107, 1166], "alias_relationship": 1107, "exclude_label": 1107, "tabl": [1107, 1110, 1118, 1129, 1162, 1181], "obograph_datamodel": 1107, "spv": 1107, "synonym_property_valu": 1107, "0000": 1107, "0002": 1107, "6548": 1107, "5200": 1107, "ag": 1108, "onset": 1108, "challeng": [1108, 1131], "administr": 1108, "constitut": 1108, "pragmat": 1108, "emphas": 1108, "invari": 1108, "conting": 1108, "treatment": 1108, "beyond": [1108, 1166, 1192], "gruber": 1108, "todai": 1108, "biomed": [1108, 1129, 1151], "minimalist": 1108, "supplement": 1108, "lacrim": 1108, "gland": [1108, 1148], "morphologi": [1108, 1117, 1145], "wget": [1108, 1110, 1124, 1129, 1135], "0011482": 1108, "unif": 1108, "biologi": 1108, "inclus": 1109, "quickstart": 1109, "intro": 1109, "environment": 1109, "glacier": 1109, "lake": 1109, "ocean": 1109, "hierarch": [1109, 1129, 1166], "articl": 1109, "shown": 1109, "drawn": 1109, "patient": [1109, 1182], "rich": 1109, "introduct": [1109, 1111, 1127, 1128], "book": [1109, 1112], "xml": [1109, 1135, 1159, 1182], "manchest": [1109, 1182], "thesauri": 1109, "clinic": [1109, 1118], "rrf": 1109, "lightweight": [1109, 1130], "0005671": 1109, "bilater": 1109, "intracerebr": 1109, "calcif": 1109, "0005676": 1109, "rudimentari": 1109, "postaxi": 1109, "polydactyli": 1109, "0005678": 1109, "anterior": [1109, 1117], "atlanto": 1109, "occipit": 1109, "disloc": 1109, "oboacademi": 1109, "themselv": [1109, 1118, 1140, 1165, 1177], "compress": [1110, 1145, 1166], "uberon_0000948": 1110, "foundri": [1110, 1116, 1131, 1156, 1166], "under": [1110, 1114, 1118, 1129, 1162], "hood": [1110, 1114, 1162], "similarli": 1110, "curie_to_uri": [1110, 1166, 1170], "po": 1110, "po_": 1110, "poro": 1110, "poro_": 1110, "2002": 1110, "07": [1110, 1141], "2004": 1110, "02": 1110, "suffic": 1110, "soil_oi": 1110, "soil": [1110, 1116], "nt": [1110, 1116], "prefix_map": [1110, 1116, 1166, 1170], "soilprofil": [1110, 1116], "anzsoil": [1110, 1116], "def": [1110, 1116, 1129, 1130], "au": [1110, 1116], "asl": [1110, 1116], "expect": [1110, 1113, 1158], "uppercas": 1110, "pad": 1110, "7": [1110, 1127, 1128, 1171], "digit": [1110, 1113, 1131, 1176], "latest": 1110, "schemaorg": 1110, "explan": 1111, "nlp": 1111, "signatur": [1111, 1165, 1173, 1192], "accompani": [1111, 1192], "vector": 1111, "overview": [1113, 1129], "realli": 1113, "browser": [1113, 1133], "fingernail": 1113, "uberon_0009565": 1113, "dedic": 1113, "parthood": 1113, "autom": 1113, "amount": [1113, 1119, 1141, 1145], "deal": 1113, "mistak": 1113, "0009565": 1113, "0001705": 1113, "0002389": 1113, "definedclassid_label": 1113, "genusids_label": 1113, "restrictionspropertyid": 1113, "restrictionspropertyids_label": 1113, "restrictionsfillerid": 1113, "restrictionsfillerids_label": 1113, "0009567": 1113, "pedal": 1113, "0001466": 1113, "0011273": 1113, "0001463": 1113, "0011274": 1113, "0003622": 1113, "0011275": 1113, "0003623": 1113, "0011276": 1113, "0003624": 1113, "0011277": 1113, "0003625": 1113, "0011278": 1113, "0003631": 1113, "0011279": 1113, "0003632": 1113, "0011280": 1113, "0003633": 1113, "0011281": 1113, "0003634": 1113, "0011282": 1113, "0003635": 1113, "matrix": 1113, "intersection_of": 1113, "ahead": [1113, 1117], "prone": 1113, "templat": 1113, "dosdp": 1113, "ottr": 1113, "experienc": [1113, 1130], "aid": 1113, "creation": [1113, 1171], "saw": [1113, 1129], "At": [1113, 1129, 1140], "lattic": 1113, "brain": [1114, 1149], "0000008": 1114, "mapping_justif": 1114, "semapv": 1114, "unspecifiedmatch": 1114, "hba": 1114, "4005": 1114, "0000168": 1114, "mat": 1114, "0000098": 1114, "caloha": 1114, "0095": 1114, "dhba": 1114, "10155": 1114, "efo": 1114, "0000302": 1114, "interchang": [1115, 1192], "longer": 1115, "discov": 1115, "fairli": [1115, 1117, 1131, 1192], "myo": [1115, 1192], "123456": [1115, 1192], "is_obsolet": [1115, 1192], "0040180": 1115, "hyperkeratosi": 1115, "pilari": 1115, "0040193": 1115, "pinealoblastoma": 1115, "0040199": 1115, "midfac": 1115, "older": [1115, 1192], "obsoleteclass": [1115, 1192], "evalu": [1115, 1192], "entity_metadata": [1115, 1192], "0000005": [1115, 1192], "assist": 1115, "assembli": 1115, "ribosom": 1115, "subunit": 1115, "vivo": 1115, "assembl": 1115, "0042254": 1115, "0044183": 1115, "0051082": 1115, "chaperon": 1115, "molecular_funct": [1115, 1123, 1166], "molecular": 1115, "mondo": [1115, 1165, 1166], "extrem": [1115, 1116], "lost": 1115, "alt_id": [1115, 1166], "x1": 1115, "0000227": 1115, "stanza": [1115, 1166], "nodeobsolet": 1115, "guarante": [1116, 1159, 1168, 1192], "ontologymetadatamapp": [1116, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "vocab": 1116, "curie_convert": [1116, 1142, 1143, 1144, 1145, 1146], "use_skos_profil": 1116, "ontology_metamodel_mapp": [1116, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "void": 1116, "crack": 1116, "medium": 1116, "coars": 1116, "happen": 1116, "infrequ": 1116, "interer": 1116, "idiom": 1117, "perhap": 1117, "surprisingli": 1117, "heavili": 1117, "pe": 1117, "0002387": 1117, "0002103": 1117, "0006871": 1117, "0002551": 1117, "0001445": 1117, "0002470": 1117, "0008784": 1117, "0002102": 1117, "0006875": 1117, "0001442": 1117, "0008785": 1117, "hindlimb": 1117, "embryon": 1117, "footplat": 1117, "skeleton": 1117, "autopod": [1117, 1131], "region": 1117, "segment": 1117, "handplat": 1117, "triad": 1117, "0000002": 1117, "continu": [1117, 1129], "0000004": 1117, "0000040": 1117, "materi": [1117, 1129], "0000026": 1117, "appendag": [1117, 1129], "0000061": 1117, "anatom": [1117, 1129, 1166], "0000153": 1117, "bodi": [1117, 1129, 1165], "0000465": 1117, "0000468": 1117, "multicellular": 1117, "0000475": 1117, "subdivis": [1117, 1131], "0001062": [1117, 1131], "0002101": [1117, 1149, 1165, 1171], "deduct": [1117, 1181], "tell": 1117, "hope": [1117, 1135], "furthermor": 1117, "meaningless": 1117, "concret": 1117, "0012505": [1117, 1166], "endomembran": [1117, 1166], "0110165": [1117, 1166], "cellular": [1117, 1166], "has_part": [1117, 1166], "0043231": [1117, 1159, 1166, 1172], "intracellular": [1117, 1159, 1166], "bound": [1117, 1159, 1166], "organel": [1117, 1154, 1159, 1166, 1180], "0043227": 1117, "0043226": [1117, 1154, 1180], "0043229": 1117, "typedef": 1117, "0000051": [1117, 1166], "inverse_of": 1117, "0002131": 1117, "holds_over_chain": 1117, "simplifi": [1117, 1140, 1166, 1182], "demo": [1117, 1130], "len": [1117, 1167, 1172], "obograph_interfac": [1117, 1172], "graphtraversalmethod": [1117, 1172], "advantag": [1117, 1129, 1136, 1141], "include_entail": [1117, 1131, 1166, 1179], "_e": 1117, "target_curi": [1117, 1172], "liquid": 1117, "0001735": 1117, "hop_anc": 1117, "ent_anc": 1117, "9": [1117, 1129, 1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "recal": 1117, "mislead": 1117, "has_part_with_characterist": 1117, "odd": 1117, "imagin": 1117, "charg": 1117, "anticip": 1117, "care": [1117, 1140], "topic": 1117, "reader": 1117, "who": 1117, "wonder": 1117, "mention": 1117, "mesentericvein": 1117, "drain": 1117, "smallintestin": 1117, "vein": [1117, 1129, 1133], "closer": 1118, "music": 1118, "genr": 1118, "favorit": 1118, "newer": 1118, "theori": [1118, 1135, 1140], "j": 1118, "frac": 1118, "cap": 1118, "cup": 1118, "choic": [1118, 1165], "partof": 1118, "indirectli": 1118, "resnik": 1118, "kg": 1118, "leaf": [1118, 1166, 1170], "bia": 1118, "e1": 1118, "e2": 1118, "goal": [1118, 1124, 1181, 1192], "simplest": 1118, "max_": 1118, "t1": 1118, "t2": 1118, "averag": 1118, "bma": 1118, "sum_": 1118, "termset": 1118, "0010771": 1118, "0002169": 1118, "0005391": 1118, "0005389": 1118, "0005367": 1118, "substitut": 1118, "formul": [1118, 1166, 1175], "hot": 1118, "bit": [1118, 1129], "cosin": 1118, "numpi": 1118, "effici": [1118, 1129, 1135, 1181], "reduc": 1118, "dimension": 1118, "grape": 1118, "ml": 1118, "curategpt": [1118, 1120], "lord": 1118, "pubm": 1118, "nlm": 1118, "nih": 1118, "gov": 1118, "12603061": 1118, "koehler": 1118, "genet": 1118, "19800049": 1118, "healthcar": 1119, "interoper": 1119, "exchang": [1119, 1165], "codesystem": [1119, 1145, 1146], "agre": [1119, 1165], "server": [1119, 1123, 1141, 1145, 1156], "dump": [1119, 1142, 1143, 1144, 1145, 1146, 1169, 1170], "fhir_config_exampl": 1119, "code_system_id": [1119, 1145], "_the": 1119, "identif": [1119, 1145], "hl7": [1119, 1145], "code_system_url": [1119, 1145], "_canon": 1119, "native_uri_stem": [1119, 1145], "_a": 1119, "omim": [1119, 1145], "phenotypicseri": [1119, 1145], "include_all_pred": [1119, 1145], "maxim": [1119, 1145], "use_curies_native_concept": [1119, 1145], "_fhir": [1119, 1145], "convention": [1119, 1145], "use_curies_foreign_concept": [1119, 1145], "_typic": 1119, "predicate_period_replac": [1119, 1145], "_predic": 1119, "hapi": [1119, 1145], "caus": [1119, 1145], "underscor": [1119, 1126, 1145], "hp_": 1119, "obtain": [1120, 1172], "caveat": 1120, "discuss": 1120, "pypi": [1120, 1128], "talisman": 1120, "conjunct": 1120, "mixtral": 1120, "ollama": 1120, "litellm": 1120, "groq": 1120, "leverag": [1123, 1173, 1180], "extract": [1123, 1172, 1178, 1180], "autosuggest": 1123, "window": 1123, "datasett": 1123, "pipx": 1123, "inject": 1123, "proxi": [1123, 1166], "determinist": 1123, "unpredict": 1123, "ey": [1123, 1153], "toe": 1123, "gpt": 1123, "jsonl": 1123, "turbo": 1123, "awesom": [1123, 1126], "gemini": 1123, "pro": [1123, 1137, 1140], "cd": [1123, 1129, 1130], "openai": 1123, "stabl": 1123, "model_nam": 1123, "model_id": 1123, "api_bas": 1123, "8000": 1123, "soup": 1123, "hardwar": 1123, "llama2": 1123, "bash": 1123, "8x7b": 1123, "32768": 1123, "yourself": 1124, "bucket": 1124, "amazonaw": [1124, 1135], "bbop": [1124, 1135], "pip": [1124, 1126, 1129], "caro": 1124, "0000003": [1124, 1166], "0000006": 1124, "validatorinterfac": [1124, 1170, 1181], "sqldatabas": [1124, 1162, 1173, 1181], "cmungal": 1124, "plug": [1126, 1129], "ins": 1126, "enabl": 1126, "nltk": 1126, "wouldn": 1126, "drop": 1126, "my_awesome_plugin": 1126, "unsat": 1126, "get_resource_from_shorthand": [1126, 1182], "discovered_plugin": 1126, "oakx_robot": 1126, "robot_implement": 1126, "robotimplement": 1126, "owl_noth": 1126, "oi": [1126, 1154, 1156], "is_coher": [1126, 1170, 1181], "congratul": 1126, "els": [1126, 1135], "usatisfi": 1126, "unsatisfiable_class": [1126, 1170, 1181], "someon": 1126, "rememb": 1126, "pollut": 1126, "pyproject": 1126, "toml": 1126, "setuptool": 1126, "6": [1127, 1128], "glossari": 1127, "faq": 1127, "graphviz": 1128, "docker": 1128, "rdbmss": 1128, "drosophila": 1129, "fruit": 1129, "fly": [1129, 1171], "mkdir": 1129, "virtual": 1129, "python3": [1129, 1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "venv": 1129, "bin": 1129, "pythonpath": 1129, "invok": [1129, 1133], "wing": [1129, 1133], "00004751": [1129, 1133], "shorter": 1129, "sound": 1129, "introduc": [1129, 1132], "00004754": 1129, "axillari": 1129, "00004759": 1129, "l1": 1129, "00004760": 1129, "l2": 1129, "00046009": 1129, "presumpt": 1129, "00046030": 1129, "00046031": 1129, "l3": 1129, "00004761": 1129, "00004762": 1129, "l4": 1129, "00004763": 1129, "l5": 1129, "00004764": 1129, "l6": 1129, "filenam": 1129, "got": 1129, "cuticl": 1129, "00004729": 1129, "00007000": 1129, "effect": 1129, "visit": [1129, 1135, 1166], "00007245": 1129, "cuticular": 1129, "00006015": 1129, "blade": 1129, "00007010": 1129, "tissu": 1129, "00004551": 1129, "thorax": 1129, "10000000": 1129, "00007016": 1129, "00007001": 1129, "00007013": 1129, "acellular": 1129, "unbound": 1129, "tempt": 1129, "partonomi": 1129, "sinc": [1129, 1166, 1171, 1182], "00047212": 1129, "longitudin": 1129, "brief": 1129, "referenti": 1129, "blazegraph": 1129, "tradeoff": 1129, "obviou": 1129, "15356": 1129, "sulfur": 1129, "amino": 1129, "acid": 1129, "propano": 1129, "sulfanyl": 1129, "beilstein": 1129, "1721406": 1129, "ca": [1129, 1177], "3374": 1129, "22": [1129, 1172], "33704": 1129, "alpha": [1129, 1136], "26167": 1129, "polar": 1129, "26834": 1129, "isa": [1129, 1166], "life": 1129, "apikei": [1129, 1149], "kill": 1129, "rout": 1129, "forebrain": 1129, "0000099": 1129, "pref": 1129, "11": [1129, 1180], "0001890": 1129, "16": 1129, "24": 1129, "breadth": 1129, "offer": [1129, 1136], "mapping_provid": 1129, "25181601": 1129, "unspecifi": 1129, "cdno": 1129, "17439666": 1129, "kegg": 1129, "c00736": 1129, "knapsack": 1129, "c00007323": 1129, "zp": 1129, "feel": 1130, "advis": 1130, "stick": 1130, "adaptor": 1130, "connector": 1130, "my_oak_demo": 1130, "4023017": 1130, "sst": 1130, "gabaerg": 1130, "cortic": 1130, "cerebr": 1130, "cortex": [1130, 1151], "somatostatin": 1130, "outgo": [1130, 1166], "0002292": 1130, "000015665": 1130, "0010011": 1130, "show_info": 1130, "term_id": [1130, 1131], "outgoing_relationship": [1130, 1166, 1170], "queryabl": 1131, "lov": 1131, "bspo": 1131, "0002544": 1131, "32523": 1131, "0005881": 1131, "compos": 1132, "philosophi": 1132, "illustr": [1132, 1138], "obographinterfac": [1132, 1133, 1170, 1172], "dao": 1132, "smarter": 1132, "network": [1133, 1140, 1141], "javascript": 1133, "npm": 1133, "yarn": 1133, "preview": 1133, "temp": 1133, "immedi": 1133, "test_obograph_util": 1133, "until": 1134, "v0": 1134, "wait": [1134, 1141], "pull": 1134, "1686": 1134, "gzip": 1135, "enter": 1135, "center": [1135, 1172], "0007011": 1135, "0002005": 1135, "nervou": [1135, 1145], "0002100": 1135, "soma": 1135, "0002607": 1135, "migratori": 1135, "neural": 1135, "crest": 1135, "0000029": 1135, "0000107": 1135, "autonom": 1135, "suffix": [1135, 1163, 1182], "shape": [1135, 1181], "semsql": [1135, 1162], "pwd": 1135, "ti": 1135, "odkful": 1135, "recip": 1135, "prerequisit": 1135, "rdftab": [1135, 1162], "riot": 1135, "maco": 1135, "homebrew": 1135, "brew": 1135, "jena": 1135, "seamlessli": 1135, "rdbm": 1135, "tester": 1136, "fraction": 1136, "dsl": 1136, "optimis": 1136, "obsolete_class": 1136, "classobsolet": 1136, "queue": 1136, "deploi": 1136, "inapplic": 1136, "memori": [1136, 1140, 1141, 1154], "toolkit": 1137, "modif": 1137, "filesystem": [1137, 1162], "basic_search": [1137, 1148, 1170, 1176], "outgoing_relationship_map": [1137, 1166, 1170], "receptor": 1137, "0000827": 1137, "0002215": 1137, "0002456": 1137, "mediat": 1137, "0000542": 1137, "logo": 1138, "jmcmurri": 1138, "master": 1138, "mostli": 1140, "pictur": 1140, "client": [1140, 1149, 1155, 1158], "0001825": 1140, "paranas": 1140, "sinu": 1140, "great": 1140, "latenc": [1140, 1141], "burden": 1140, "dron": 1140, "80": [1140, 1166], "demand": 1140, "terminolog": 1140, "unlik": 1140, "scalar": [1140, 1166], "dict": [1140, 1144, 1154, 1155, 1159, 1160, 1162, 1165, 1166, 1168, 1171, 1172, 1174, 1177, 1179, 1180, 1181], "autocomplet": 1140, "robust": 1141, "hsapdv": 1141, "0000013": 1141, "0000014": [1141, 1166], "anti": 1141, "carnegi": 1141, "08": 1141, "ineffici": [1141, 1172], "sizeabl": 1141, "iterator_util": 1141, "curie_it": 1141, "slightli": 1141, "boilerpl": 1141, "consider": 1141, "test_click": 1141, "data_model_convert": 1142, "datamodelconvert": [1142, 1143], "callabl": [1142, 1144, 1145, 1146, 1176, 1180, 1193], "enforce_canonical_ord": [1142, 1143, 1144, 1145, 1146, 1169], "kwarg": [1142, 1144, 1145, 1146, 1162, 1165, 1166, 1169, 1171, 1172, 1174, 1176, 1177, 1180, 1182, 1193], "obograph_util": [1143, 1164], "load_obograph_docu": 1143, "graph_doc": 1143, "obographtofhirconvert": [1143, 1145], "obographtooboformatconvert": [1143, 1146], "as_bytes_io": [1143, 1146], "obo_graph_to_cx_convert": 1144, "obographtocxconvert": 1144, "obo_graph_to_fhir_convert": 1145, "concept_": 1145, "conceptproperty_": 1145, "direct_predicate_map": 1145, "conceptdesignation_": 1145, "coding_": 1145, "scope_map": 1145, "my_prefix": 1145, "my_expans": 1145, "codingsystem": 1145, "linkml_runtim": [1145, 1162], "dumper": [1145, 1164, 1170], "json_dump": 1145, "loader": 1145, "json_load": 1145, "hp_test": 1145, "target_class": 1145, "code_system": 1145, "0012639": 1145, "anomali": [1145, 1166], "obo_graph_to_obo_format_convert": 1146, "use_shorthand": 1146, "bytesio": 1146, "obodocu": [1146, 1160], "aggregator_implement": 1148, "aggregatorimplement": [1148, 1152], "ontologyresourc": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182], "_multilingu": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "factori": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "exclude_owl_top_and_bottom": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "ontology_metadata_mapp": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "_convert": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "auto_relax_axiom": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "cache_lookup": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "property_cach": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "keyval_cach": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "keyvalcach": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "_edge_index": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "edge_index": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "edgeindex": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "_entailed_edge_index": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "farm": 1148, "weav": 1148, "cfg": [1148, 1176, 1193], "agg": 1148, "parathyroid": 1148, "0000860": 1148, "hypoplasia": 1148, "0000680": 1148, "tentacl": 1149, "multiword": 1149, "octopu": 1149, "crucial": 1149, "funowl_implement": 1150, "funowlimplement": 1150, "functional_writ": [1150, 1157, 1159, 1160, 1162, 1173], "writer": [1150, 1157, 1159, 1160, 1162, 1173], "functionalwrit": [1150, 1157, 1159, 1160, 1162, 1173], "home": [1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "runner": [1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "pypoetri": [1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "virtualenv": [1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "5bvmowl": [1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "py3": [1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "lib": [1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "ontology_docu": 1150, "ontologydocu": 1150, "_kwarg": [1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163], "hsolbrig": 1150, "gildaimplement": [1151, 1152], "grounder": 1151, "gyori2021": 1151, "benjamin": 1151, "gyori": 1151, "charl": 1151, "taplei": 1151, "hoyt": 1151, "albert": 1151, "steppi": 1151, "2021": 1151, "disambigu": 1151, "volum": 1151, "vbac034": 1151, "prontoimplement": [1152, 1159], "sqlimplement": [1152, 1162, 1182], "alchemi": 1152, "olsimplement": [1152, 1155], "simpleoboimplement": [1152, 1160], "obographimplement": [1152, 1154], "sparqlimplement": [1152, 1161, 1163], "ubergraphimplement": [1152, 1163], "relationgraphenum": [1152, 1163], "ontobeeimplement": [1152, 1156], "pantherdb": [1152, 1164], "pantherdbimplement": [1152, 1158], "obograph_implement": [1154, 1159], "obograph_docu": 1154, "_relationship_index_cach": [1154, 1159, 1160], "node_id": 1154, "embl": 1155, "oxo": 1155, "ols_implement": 1155, "label_cach": 1155, "_prefix_map": [1155, 1162], "focus_ontologi": 1155, "ontobee_implement": 1156, "sparql_wrapp": [1156, 1157, 1161, 1163], "sparqlwrapp": [1156, 1157, 1161, 1163], "_list_of_named_graph": [1156, 1157, 1161, 1163], "Or": [1156, 1159, 1166, 1192], "vaccin": 1156, "vo": 1156, "uncom": 1156, "owlery_implement": 1157, "owleryimplement": 1157, "phenoscap": 1157, "uniprotkb": [1158, 1171], "p04217": 1158, "pantherdb_implement": 1158, "_association_index": [1158, 1159, 1161, 1162, 1165, 1167], "association_index": [1158, 1159, 1161, 1162, 1165, 1167], "associationindex": [1158, 1159, 1161, 1162, 1165, 1167], "association_provider_interfac": [1158, 1159, 1161, 1162, 1165, 1167], "entitynorm": [1158, 1159, 1161, 1162, 1165, 1167], "_requests_sess": 1158, "requests_cach": 1158, "session": 1158, "cachedsess": 1158, "taxon_id": 1158, "use_protein_id": 1158, "assoc": [1158, 1165, 1167], "0005576": 1158, "pronto_implement": 1159, "wrapped_ontologi": 1159, "_alt_id_to_replacement_map": [1159, 1160], "slug": [1159, 1182], "fastobo": 1159, "simple_obo_implement": 1160, "obo_docu": 1160, "simple_obo_pars": 1160, "_uses_legacy_properti": 1160, "primarili": 1160, "abandon": 1160, "sqlitefil": 1162, "sqldb": 1162, "sql_implement": [1162, 1182], "engin": 1162, "_session": 1162, "_connect": 1162, "_ontology_metadata_model": 1162, "schemaview": 1162, "_information_content_cach": 1162, "_relationships_by_subject_index": 1162, "max_items_for_in_claus": 1162, "can_store_associ": 1162, "ontologyinterfac": [1162, 1166, 1169, 1182], "postgresql": 1162, "sqlalchemi": 1162, "classmethod": 1162, "sqla": 1162, "ever": 1162, "craft": 1162, "throttl": 1163, "overus": 1163, "larger": [1163, 1179], "hippocampu": [1163, 1180], "ubergraph_implement": 1163, "ug": 1163, "relationship_walk": 1164, "networkx_bridg": 1164, "slimmer_util": 1164, "apikey_manag": 1164, "associationproviderinterfac": [1165, 1170, 1182], "mpo": 1165, "gpad": 1165, "kgx": 1165, "augment": 1165, "inputspecif": [1165, 1182], "pombas": [1165, 1167], "amigo_implement": 1165, "10090": 1165, "mous": 1165, "property_filt": 1165, "subject_closure_pred": 1165, "predicate_closure_pred": 1165, "object_closure_pred": [1165, 1167, 1177], "include_modifi": 1165, "add_closure_field": 1165, "spac1142": [1165, 1167], "02c": [1165, 1167], "spac3h1": [1165, 1167], "06": [1165, 1167], "spac4g8": [1165, 1167], "0006620": [1165, 1167], "protein": [1165, 1167], "endoplasm": [1165, 1167], "reticulum": [1165, 1167], "sgt2": 1165, "associations_subject": [1165, 1170], "0045047": 1165, "spbc1271": 1165, "05c": 1165, "associations_subject_search": [1165, 1170], "subject_prefix": [1165, 1171], "include_similarity_object": 1165, "sort_by_similar": 1165, "semanticsimilarityinterfac": [1165, 1170, 1177], "association_pairwise_coassoci": [1165, 1170], "curies1": 1165, "curies2": 1165, "inputs_are_subject": 1165, "include_reciproc": 1165, "include_diagon": 1165, "include_ent": 1165, "0000910": 1165, "0006281": 1165, "0006412": 1165, "coassoc": 1165, "add_associ": [1165, 1170, 1182], "association_subject_count": [1165, 1170], "num": 1165, "0051668": 1165, "map_associ": [1165, 1170], "subset_ent": 1165, "map2slim": 1165, "normalize_associ": [1165, 1170], "payload": [1166, 1180], "fit": [1166, 1192], "horsetail": 1166, "granular": 1166, "BE": 1166, "children": [1166, 1172], "rais": [1166, 1171, 1172, 1174], "transact": [1166, 1168, 1169, 1171, 1175, 1176, 1178, 1181], "commit": [1166, 1168, 1169, 1171, 1174, 1175, 1176, 1178, 1181], "default_prefix_map": 1166, "get_prefix_map": [1166, 1170], "go_0005634": 1166, "set_metamodel_map": [1166, 1170], "uri_to_curi": [1166, 1170], "use_uri_fallback": 1166, "entailed_edge_index": [1166, 1170], "default_languag": [1166, 1170], "null": 1166, "ontology_curi": [1166, 1170], "all_ontology_curi": [1166, 1170], "include_merg": 1166, "obsolesc": 1166, "obsoletes_migration_relationship": [1166, 1170], "all_obsolete_curi": [1166, 1170], "refus": 1166, "ontology_vers": [1166, 1170], "ontology_metadata_map": [1166, 1170], "filter_obsolet": 1166, "owl_object_properti": 1166, "metaclass": 1166, "all_entity_curi": [1166, 1170], "synonymtypeproperti": 1166, "owl2": 1166, "entity_declar": 1166, "pun": 1166, "defined_bi": [1166, 1170], "ignore_owl_th": 1166, "annotated_root": 1166, "0100026": 1166, "exhibit": 1166, "messi": 1166, "0003674": 1166, "0005575": 1166, "cellular_compon": 1166, "biological_process": 1166, "artifici": 1166, "ignore_owl_noth": 1166, "goslim_drosophila": 1166, "goslim_flybase_ribbon": 1166, "subset_curi": [1166, 1170], "all_subset_curi": [1166, 1170], "subset_memb": [1166, 1170], "0005635": 1166, "envelop": 1166, "terms_subset": [1166, 1170], "goslim_yeast": 1166, "goslim_chembl": 1166, "terms_categori": [1166, 1170], "curies_by_subset": [1166, 1170], "internation": 1166, "ph\u00e9notypiqu": 1166, "get_label_by_curi": [1166, 1170], "allow_non": 1166, "multilingual_label": [1166, 1170], "fenotypisch": 1166, "abnormaliteit": 1166, "get_labels_for_curi": [1166, 1170], "set_label": [1166, 1170], "curies_by_label": [1166, 1170], "circumst": 1166, "get_curies_by_label": [1166, 1170], "0016772": [1166, 1171], "31": 1166, "snip": 1166, "include_tbox": 1166, "include_abox": 1166, "exclude_blank": 1166, "incom": 1166, "relationships_metadata": [1166, 1170], "0009831": 1166, "0002516": 1166, "c9005": 1166, "hierarchical_par": [1166, 1170], "isa_onli": 1166, "fresh": 1166, "invoc": [1166, 1180], "rp": [1166, 1175], "incoming_relationship_map": [1166, 1170], "ref": 1166, "incoming_relationship": [1166, 1170], "all_relationship": [1166, 1170], "defn": 1166, "include_metadata": [1166, 1172], "goc": 1166, "go_cur": 1166, "isbn": 1166, "0198547684": 1166, "include_miss": 1166, "get_definition_by_curi": [1166, 1170], "simple_mappings_by_curi": [1166, 1170], "sophist": 1166, "mappingproviderinterfac": [1166, 1170, 1171], "simple_map": [1166, 1170], "lump": 1166, "aliases_by_curi": [1166, 1170], "entity_alias_map": [1166, 1170], "deem": 1166, "alias_map_by_curi": [1166, 1170], "alias_map": 1166, "entity_metadata_map": [1166, 1170], "entities_metadata_stat": [1166, 1170], "include_nested_metadata": 1166, "add_missing_property_valu": [1166, 1170], "metadata_map": 1166, "create_ent": [1166, 1170], "delete_ent": [1166, 1170], "thu": 1166, "portabl": 1166, "clone": [1166, 1170], "precompute_lookup": [1166, 1170], "precomput": 1166, "repeatedli": 1166, "class_enrichment_calculation_interfac": 1167, "classenrichmentcalculationinterfac": [1167, 1170], "membership": 1167, "enriched_class": [1167, 1170], "item_list": 1167, "hypothes": 1167, "filter_redund": 1167, "sort_bi": 1167, "signific": 1167, "threshold": 1167, "odds_ratio": 1167, "create_self_associ": [1167, 1170], "0031965": 1167, "0016020": [1167, 1180], "004": 1167, "differ_interfac": 1168, "differinterfac": [1168, 1170], "diffconfigur": 1168, "nodecr": 1168, "nodedelet": 1168, "nodemov": 1168, "noderenam": [1168, 1174], "predicatechang": 1168, "newtextdefinit": 1168, "nodetextdefinitionchang": 1168, "diff_summari": [1168, 1170], "compare_ontology_term_list": [1168, 1170], "dumper_interfac": 1169, "dumperinterfac": [1169, 1170], "stdout": 1169, "search_interfac": [1170, 1176], "searchinterfac": [1170, 1176], "multiterm_search": [1170, 1176], "subsetterinterfac": [1170, 1178], "extract_subset_ontologi": [1170, 1178], "gap_fill_relationship": [1170, 1178], "term_curies_without_definit": [1170, 1181], "validate_map": [1170, 1181], "relationgraphinterfac": [1170, 1175], "entailed_outgoing_relationship": [1170, 1175], "entailed_incoming_relationship": [1170, 1175], "entailed_relationships_between": [1170, 1175], "sssom_mappings_by_sourc": [1170, 1171], "all_sssom_map": [1170, 1171], "get_sssom_mappings_by_curi": [1170, 1171], "get_transitive_mappings_by_curi": [1170, 1171], "normalize_prefix": [1170, 1171], "create_normalization_map": [1170, 1171], "enable_transitive_query_cach": [1170, 1172], "disable_transitive_query_cach": [1170, 1172], "synonym_map_for_curi": [1170, 1172], "ancestor_graph": [1170, 1172], "descendant_graph": [1170, 1172], "descendant_count": [1170, 1172], "subgraph_from_travers": [1170, 1172], "extract_graph": [1170, 1172], "relationships_to_graph": [1170, 1172], "walk_up_relationship_graph": [1170, 1172], "logical_definit": [1170, 1172], "disjoint_class_expressions_axiom": [1170, 1172], "add_metadata": [1170, 1172], "as_obograph": [1170, 1172], "load_graph": [1170, 1172], "traversalconfigur": [1170, 1172], "textannotatorinterfac": [1170, 1180], "cache_directori": [1170, 1180], "rule_collect": [1170, 1180], "annotate_text": [1170, 1180], "annotate_fil": [1170, 1180], "annotate_tabular_fil": [1170, 1180], "summarystatisticsinterfac": [1170, 1179], "global_summary_statist": [1170, 1179], "branch_summary_statist": [1170, 1179], "metadata_property_summary_statist": [1170, 1179], "summary_statistic_descript": [1170, 1179], "auto_add_contributor_us": [1170, 1174], "ignore_invalid_chang": [1170, 1174], "apply_patch": [1170, 1174], "expand_chang": [1170, 1174], "undo": [1170, 1174], "reverse_chang": [1170, 1174], "cached_information_content_map": [1170, 1177], "most_recent_common_ancestor": [1170, 1177], "setwise_most_recent_common_ancestor": [1170, 1177], "multiset_most_recent_common_ancestor": [1170, 1177], "common_ancestor": [1170, 1177], "get_information_cont": [1170, 1177], "information_content_scor": [1170, 1177], "pairwise_similar": [1170, 1177], "all_by_all_pairwise_similar": [1170, 1177], "subclass_axiom": [1170, 1173], "equivalence_axiom": [1170, 1173], "annotation_assertion_axiom": [1170, 1173], "disjoint_pair": [1170, 1173], "is_disjoint": [1170, 1173], "is_satisfi": [1170, 1173], "reasoner_configur": [1170, 1173], "axiom_is_about": [1170, 1173], "axiom_refer": [1170, 1173], "property_characterist": [1170, 1173], "transitive_object_properti": [1170, 1173], "simple_subproperty_of_chain": [1170, 1173], "overridden": 1170, "mapping_provider_interfac": 1171, "sssom_util": 1171, "central": 1171, "ec": 1171, "subject_or_object_sourc": 1171, "target_prefix": 1171, "source_prefix": 1171, "prefix_alias_map": 1171, "uniprot": 1171, "p12345": 1171, "nmap": 1171, "cell_nucleu": 1171, "object_prefix": 1171, "expand_curi": 1172, "start_curi": 1172, "interact": 1172, "opposit": 1172, "downward": 1172, "up_dist": 1172, "down_dist": 1172, "27": 1172, "ldef": 1172, "0009892": 1172, "regul": 1172, "metabol": 1172, "decor": 1172, "notimplementederror": 1172, "impract": 1172, "owl_interfac": 1173, "_funowl_datamodel": 1173, "owleri": 1173, "py4j": 1173, "superclass": 1173, "reasonerconfigur": 1173, "criterion": 1173, "annotationassert": 1173, "disjointclass": 1173, "subobjectpropertyof": 1173, "equivalentobjectproperti": 1173, "disjointobjectproperti": 1173, "inverseobjectproperti": 1173, "objectpropertydomain": 1173, "objectpropertyrang": 1173, "functionalobjectproperti": 1173, "inversefunctionalobjectproperti": 1173, "reflexiveobjectproperti": 1173, "irreflexiveobjectproperti": 1173, "symmetricobjectproperti": 1173, "asymmetricobjectproperti": 1173, "transitiveobjectproperti": 1173, "subdatapropertyof": 1173, "equivalentdataproperti": 1173, "disjointdataproperti": 1173, "datapropertydomain": 1173, "datapropertyrang": 1173, "functionaldataproperti": 1173, "datatypedefinit": 1173, "haskei": 1173, "sameindividu": 1173, "differentindividu": 1173, "classassert": 1173, "negativeobjectpropertyassert": 1173, "datapropertyassert": 1173, "negativedatapropertyassert": 1173, "subannotationpropertyof": 1173, "annotationpropertydomain": 1173, "annotationpropertyrang": 1173, "super": 1173, "propag": 1174, "dct": 1174, "tbd": 1174, "curie_map": 1174, "namebecomessynonym": 1174, "newsynonym": 1174, "relation_graph_interfac": 1175, "honor": 1176, "sqldatabaseimplement": [1176, 1181], "fulfil": 1176, "inexact": 1176, "fma": 1176, "9712": 1176, "0007723": 1176, "interphalang": 1176, "joint": 1176, "0007729": 1176, "_if_miss": [1176, 1180, 1193], "alter": [1176, 1193], "semsim_interfac": 1177, "include_owl_th": 1177, "asymmetr": 1177, "subject_ancestor": 1177, "object_ancestor": 1177, "use_associ": 1177, "term_to_entities_map": 1177, "freq": 1177, "subsetter_interfac": 1178, "roll": 1178, "seed_curi": 1178, "subsetstrategi": 1178, "basi": 1178, "summary_statistics_interfac": 1179, "branch_nam": 1179, "branch_root": 1179, "metadata_properti": 1179, "summary_statistics_datamodel": 1179, "text_annotator_interfac": 1180, "occurr": 1180, "cr": 1180, "mitochondrion": 1180, "hippocamp": 1180, "obviat": 1180, "scispaci": 1180, "oger": 1180, "ner": 1180, "35": 1180, "42": 1180, "18": 1180, "26": 1180, "textiowrapp": 1180, "result_column": 1180, "matched_id": 1180, "result_label_column": 1180, "matched_label": 1180, "match_multipl": 1180, "include_unmatch": 1180, "validator_interfac": 1181, "overal": 1181, "ontologymetadata": 1181, "quickli": 1181, "checker": 1181, "exclude_noth": 1181, "tautolog": 1181, "bewild": 1182, "constantli": 1182, "trip": 1182, "ld": 1182, "huh": 1182, "moment": 1182, "bioportalimplement": 1182, "colon": 1182, "guess": 1182, "get_implementation_from_shorthand": 1182, "get_implementation_class_from_schem": 1182, "activest": 1183, "appdir": 1183, "standalon": 1191, "fundament": 1192, "wild": 1192, "solv": 1192, "whilst": 1192, "retain": 1192, "intuit": 1192, "myontologi": 1192, "get_implentation_from_shorthand": 1192, "iao_0100001": 1192, "preliminari": 1193, "search1": 1193, "search2": 1193, "search3": 1193, "subtract": 1193, "create_search_configur": 1193}, "objects": {"oaklib.converters.data_model_converter": [[1142, 0, 1, "", "DataModelConverter"]], "oaklib.converters.data_model_converter.DataModelConverter": [[1142, 1, 1, "", "convert"], [1142, 2, 1, "", "curie_converter"], [1142, 1, 1, "", "dump"], [1142, 2, 1, "", "enforce_canonical_ordering"], [1142, 2, 1, "", "labeler"]], "oaklib.converters.obo_graph_to_cx_converter": [[1144, 0, 1, "", "OboGraphToCXConverter"]], "oaklib.converters.obo_graph_to_cx_converter.OboGraphToCXConverter": [[1144, 1, 1, "", "convert"], [1144, 1, 1, "", "dump"]], "oaklib.converters.obo_graph_to_fhir_converter": [[1145, 0, 1, "", "OboGraphToFHIRConverter"]], "oaklib.converters.obo_graph_to_fhir_converter.OboGraphToFHIRConverter": [[1145, 1, 1, "", "code"], [1145, 1, 1, "", "convert"], [1145, 1, 1, "", "dump"]], "oaklib.converters.obo_graph_to_obo_format_converter": [[1146, 0, 1, "", "OboGraphToOboFormatConverter"]], "oaklib.converters.obo_graph_to_obo_format_converter.OboGraphToOboFormatConverter": [[1146, 1, 1, "", "as_bytes_io"], [1146, 1, 1, "", "convert"], [1146, 1, 1, "", "dump"], [1146, 1, 1, "", "dumps"]], "oaklib.datamodels": [[1193, 3, 0, "-", "search"]], "oaklib.datamodels.search": [[1193, 0, 1, "", "SearchConfiguration"], [1193, 4, 1, "", "create_search_configuration"]], "oaklib.datamodels.text_annotator": [[1180, 0, 1, "", "TextAnnotation"]], "oaklib.implementations.aggregator.aggregator_implementation": [[1148, 0, 1, "", "AggregatorImplementation"]], "oaklib.implementations.funowl.funowl_implementation": [[1150, 0, 1, "", "FunOwlImplementation"]], "oaklib.implementations.gilda": [[1151, 0, 1, "", "GildaImplementation"]], "oaklib.implementations.obograph.obograph_implementation": [[1154, 0, 1, "", "OboGraphImplementation"]], "oaklib.implementations.ols.ols_implementation": [[1155, 0, 1, "", "OlsImplementation"]], "oaklib.implementations.ontobee.ontobee_implementation": [[1156, 0, 1, "", "OntobeeImplementation"]], "oaklib.implementations.owlery.owlery_implementation": [[1157, 0, 1, "", "OwleryImplementation"]], "oaklib.implementations.pantherdb.pantherdb_implementation": [[1158, 0, 1, "", "PantherDBImplementation"]], "oaklib.implementations.pronto.pronto_implementation": [[1159, 0, 1, "", "ProntoImplementation"]], "oaklib.implementations.simpleobo.simple_obo_implementation": [[1160, 0, 1, "", "SimpleOboImplementation"]], "oaklib.implementations.sparql.sparql_implementation": [[1161, 0, 1, "", "SparqlImplementation"]], "oaklib.implementations.sqldb.sql_implementation": [[1162, 0, 1, "", "SqlImplementation"]], "oaklib.implementations.sqldb.sql_implementation.SqlImplementation": [[1162, 1, 1, "", "create"]], "oaklib.implementations.ubergraph.ubergraph_implementation": [[1163, 0, 1, "", "RelationGraphEnum"], [1163, 0, 1, "", "UbergraphImplementation"]], "oaklib.interfaces.association_provider_interface": [[1165, 0, 1, "", "AssociationProviderInterface"]], "oaklib.interfaces.association_provider_interface.AssociationProviderInterface": [[1165, 1, 1, "", "add_associations"], [1165, 1, 1, "", "association_pairwise_coassociations"], [1165, 1, 1, "", "association_subject_counts"], [1165, 1, 1, "", "associations"], [1165, 1, 1, "", "associations_subject_search"], [1165, 1, 1, "", "associations_subjects"], [1165, 1, 1, "", "map_associations"], [1165, 1, 1, "", "normalize_association"], [1165, 1, 1, "", "normalize_associations"]], "oaklib.interfaces.basic_ontology_interface": [[1166, 0, 1, "", "BasicOntologyInterface"]], "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface": [[1166, 1, 1, "", "add_missing_property_values"], [1166, 1, 1, "", "alias_map_by_curie"], [1166, 1, 1, "", "aliases_by_curie"], [1166, 1, 1, "", "all_entity_curies"], [1166, 1, 1, "", "all_obsolete_curies"], [1166, 1, 1, "", "all_ontology_curies"], [1166, 1, 1, "", "all_relationships"], [1166, 1, 1, "", "all_subset_curies"], [1166, 2, 1, "", "auto_relax_axioms"], [1166, 2, 1, "", "autosave"], [1166, 2, 1, "", "cache_lookups"], [1166, 1, 1, "", "clone"], [1166, 1, 1, "", "comments"], [1166, 5, 1, "", "converter"], [1166, 1, 1, "", "create_entity"], [1166, 1, 1, "", "curie_to_uri"], [1166, 1, 1, "", "curies_by_label"], [1166, 1, 1, "", "curies_by_subset"], [1166, 1, 1, "", "dangling"], [1166, 5, 1, "", "default_language"], [1166, 1, 1, "", "defined_by"], [1166, 1, 1, "", "defined_bys"], [1166, 1, 1, "", "definition"], [1166, 1, 1, "", "definitions"], [1166, 1, 1, "", "delete_entity"], [1166, 5, 1, "", "edge_index"], [1166, 5, 1, "", "entailed_edge_index"], [1166, 1, 1, "", "entities"], [1166, 1, 1, "", "entities_metadata_statements"], [1166, 1, 1, "", "entity_alias_map"], [1166, 1, 1, "", "entity_aliases"], [1166, 1, 1, "", "entity_metadata_map"], [1166, 2, 1, "", "exclude_owl_top_and_bottom"], [1166, 1, 1, "", "get_curies_by_label"], [1166, 1, 1, "", "get_definition_by_curie"], [1166, 1, 1, "", "get_label_by_curie"], [1166, 1, 1, "", "get_labels_for_curies"], [1166, 1, 1, "", "get_prefix_map"], [1166, 1, 1, "", "hierarchical_parents"], [1166, 1, 1, "", "incoming_relationship_map"], [1166, 1, 1, "", "incoming_relationships"], [1166, 1, 1, "", "label"], [1166, 1, 1, "", "labels"], [1166, 1, 1, "", "languages"], [1166, 1, 1, "", "leafs"], [1166, 5, 1, "", "multilingual"], [1166, 1, 1, "", "multilingual_labels"], [1166, 1, 1, "", "obsoletes"], [1166, 1, 1, "", "obsoletes_migration_relationships"], [1166, 1, 1, "", "ontologies"], [1166, 1, 1, "", "ontology_curies"], [1166, 1, 1, "", "ontology_metadata_map"], [1166, 2, 1, "", "ontology_metamodel_mapper"], [1166, 1, 1, "", "ontology_versions"], [1166, 1, 1, "", "outgoing_relationship_map"], [1166, 1, 1, "", "outgoing_relationships"], [1166, 1, 1, "", "owl_type"], [1166, 1, 1, "", "owl_types"], [1166, 1, 1, "", "precompute_lookups"], [1166, 1, 1, "", "prefix_map"], [1166, 1, 1, "", "query"], [1166, 1, 1, "", "relationships"], [1166, 1, 1, "", "relationships_metadata"], [1166, 1, 1, "", "roots"], [1166, 1, 1, "", "save"], [1166, 1, 1, "", "set_label"], [1166, 1, 1, "", "set_metamodel_mappings"], [1166, 1, 1, "", "simple_mappings"], [1166, 1, 1, "", "simple_mappings_by_curie"], [1166, 1, 1, "", "singletons"], [1166, 2, 1, "", "strict"], [1166, 1, 1, "", "subset_curies"], [1166, 1, 1, "", "subset_members"], [1166, 1, 1, "", "subsets"], [1166, 1, 1, "", "terms_categories"], [1166, 1, 1, "", "terms_subsets"], [1166, 1, 1, "", "uri_to_curie"]], "oaklib.interfaces.class_enrichment_calculation_interface": [[1167, 0, 1, "", "ClassEnrichmentCalculationInterface"]], "oaklib.interfaces.class_enrichment_calculation_interface.ClassEnrichmentCalculationInterface": [[1167, 1, 1, "", "create_self_associations"], [1167, 1, 1, "", "enriched_classes"]], "oaklib.interfaces.differ_interface": [[1168, 0, 1, "", "DifferInterface"]], "oaklib.interfaces.differ_interface.DifferInterface": [[1168, 2, 1, "", "autosave"], [1168, 1, 1, "", "compare_ontology_term_lists"], [1168, 1, 1, "", "diff"], [1168, 1, 1, "", "diff_summary"], [1168, 2, 1, "", "exclude_owl_top_and_bottom"]], "oaklib.interfaces.dumper_interface": [[1169, 0, 1, "", "DumperInterface"]], "oaklib.interfaces.dumper_interface.DumperInterface": [[1169, 2, 1, "", "autosave"], [1169, 1, 1, "", "dump"], [1169, 2, 1, "", "exclude_owl_top_and_bottom"]], "oaklib.interfaces.mapping_provider_interface": [[1171, 0, 1, "", "MappingProviderInterface"]], "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface": [[1171, 1, 1, "", "all_sssom_mappings"], [1171, 2, 1, "", "autosave"], [1171, 1, 1, "", "create_normalization_map"], [1171, 2, 1, "", "exclude_owl_top_and_bottom"], [1171, 1, 1, "", "get_sssom_mappings_by_curie"], [1171, 1, 1, "", "get_transitive_mappings_by_curie"], [1171, 1, 1, "", "normalize"], [1171, 1, 1, "", "normalize_prefix"], [1171, 1, 1, "", "sssom_mappings"], [1171, 1, 1, "", "sssom_mappings_by_source"]], "oaklib.interfaces.obograph_interface": [[1172, 0, 1, "", "OboGraphInterface"], [1172, 0, 1, "", "TraversalConfiguration"]], "oaklib.interfaces.obograph_interface.OboGraphInterface": [[1172, 1, 1, "", "add_metadata"], [1172, 1, 1, "", "ancestor_graph"], [1172, 1, 1, "", "ancestors"], [1172, 1, 1, "", "as_obograph"], [1172, 1, 1, "", "descendant_count"], [1172, 1, 1, "", "descendant_graph"], [1172, 1, 1, "", "descendants"], [1172, 1, 1, "", "disable_transitive_query_cache"], [1172, 1, 1, "", "disjoint_class_expressions_axioms"], [1172, 1, 1, "", "edges"], [1172, 1, 1, "", "enable_transitive_query_cache"], [1172, 1, 1, "", "extract_graph"], [1172, 1, 1, "", "load_graph"], [1172, 1, 1, "", "logical_definitions"], [1172, 1, 1, "", "node"], [1172, 1, 1, "", "nodes"], [1172, 1, 1, "", "paths"], [1172, 1, 1, "", "relationships_to_graph"], [1172, 1, 1, "", "subgraph_from_traversal"], [1172, 1, 1, "", "synonym_map_for_curies"], [1172, 1, 1, "", "walk_up_relationship_graph"]], "oaklib.interfaces.owl_interface": [[1173, 0, 1, "", "OwlInterface"]], "oaklib.interfaces.owl_interface.OwlInterface": [[1173, 1, 1, "", "annotation_assertion_axioms"], [1173, 1, 1, "", "axiom_is_about"], [1173, 1, 1, "", "axiom_references"], [1173, 1, 1, "", "disjoint_pairs"], [1173, 1, 1, "", "equivalence_axioms"], [1173, 1, 1, "", "is_disjoint"], [1173, 1, 1, "", "is_satisfiable"], [1173, 1, 1, "", "property_characteristics"], [1173, 1, 1, "", "reasoner_configurations"], [1173, 1, 1, "", "simple_subproperty_of_chains"], [1173, 1, 1, "", "subclass_axioms"], [1173, 1, 1, "", "transitive_object_properties"]], "oaklib.interfaces.patcher_interface": [[1174, 0, 1, "", "PatcherInterface"]], "oaklib.interfaces.patcher_interface.PatcherInterface": [[1174, 1, 1, "", "apply_patch"], [1174, 2, 1, "", "auto_add_contributor_using"], [1174, 1, 1, "", "expand_change"], [1174, 1, 1, "", "expand_changes"], [1174, 2, 1, "", "ignore_invalid_changes"], [1174, 1, 1, "", "migrate_curies"], [1174, 1, 1, "", "reverse_changes"], [1174, 1, 1, "", "save"], [1174, 1, 1, "", "undo"]], "oaklib.interfaces.relation_graph_interface": [[1175, 0, 1, "", "RelationGraphInterface"]], "oaklib.interfaces.relation_graph_interface.RelationGraphInterface": [[1175, 2, 1, "", "autosave"], [1175, 1, 1, "", "entailed_incoming_relationships"], [1175, 1, 1, "", "entailed_outgoing_relationships"], [1175, 1, 1, "", "entailed_relationships_between"], [1175, 2, 1, "", "exclude_owl_top_and_bottom"]], "oaklib.interfaces.search_interface": [[1176, 0, 1, "", "SearchConfiguration"], [1176, 0, 1, "", "SearchInterface"]], "oaklib.interfaces.search_interface.SearchInterface": [[1176, 2, 1, "", "autosave"], [1176, 1, 1, "", "basic_search"], [1176, 2, 1, "", "exclude_owl_top_and_bottom"], [1176, 1, 1, "", "multiterm_search"]], "oaklib.interfaces.semsim_interface": [[1177, 0, 1, "", "SemanticSimilarityInterface"]], "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface": [[1177, 1, 1, "", "all_by_all_pairwise_similarity"], [1177, 2, 1, "", "cached_information_content_map"], [1177, 1, 1, "", "common_ancestors"], [1177, 1, 1, "", "get_information_content"], [1177, 1, 1, "", "information_content_scores"], [1177, 1, 1, "", "most_recent_common_ancestors"], [1177, 1, 1, "", "multiset_most_recent_common_ancestors"], [1177, 1, 1, "", "pairwise_similarity"], [1177, 1, 1, "", "setwise_most_recent_common_ancestors"]], "oaklib.interfaces.subsetter_interface": [[1178, 0, 1, "", "SubsetterInterface"]], "oaklib.interfaces.subsetter_interface.SubsetterInterface": [[1178, 2, 1, "", "autosave"], [1178, 2, 1, "", "exclude_owl_top_and_bottom"], [1178, 1, 1, "", "extract_subset_ontology"], [1178, 1, 1, "", "gap_fill_relationships"]], "oaklib.interfaces.summary_statistics_interface": [[1179, 0, 1, "", "SummaryStatisticsInterface"]], "oaklib.interfaces.summary_statistics_interface.SummaryStatisticsInterface": [[1179, 1, 1, "", "branch_summary_statistics"], [1179, 1, 1, "", "global_summary_statistics"], [1179, 1, 1, "", "metadata_property_summary_statistics"], [1179, 1, 1, "", "summary_statistic_description"]], "oaklib.interfaces.text_annotator_interface": [[1180, 0, 1, "", "TextAnnotatorInterface"]], "oaklib.interfaces.text_annotator_interface.TextAnnotatorInterface": [[1180, 1, 1, "", "annotate_file"], [1180, 1, 1, "", "annotate_tabular_file"], [1180, 1, 1, "", "annotate_text"], [1180, 2, 1, "", "cache_directory"], [1180, 2, 1, "", "lexical_index"], [1180, 2, 1, "", "rule_collection"]], "oaklib.interfaces.validator_interface": [[1181, 0, 1, "", "ValidatorInterface"]], "oaklib.interfaces.validator_interface.ValidatorInterface": [[1181, 2, 1, "", "autosave"], [1181, 2, 1, "", "exclude_owl_top_and_bottom"], [1181, 1, 1, "", "is_coherent"], [1181, 1, 1, "", "repair"], [1181, 1, 1, "", "term_curies_without_definitions"], [1181, 1, 1, "", "unsatisfiable_classes"], [1181, 1, 1, "", "validate"], [1181, 1, 1, "", "validate_mappings"]], "oaklib": [[1182, 3, 0, "-", "selector"]], "oaklib.selector": [[1182, 4, 1, "", "add_associations"], [1182, 4, 1, "", "get_adapter"], [1182, 4, 1, "", "get_implementation_class_from_scheme"], [1182, 4, 1, "", "get_implementation_from_shorthand"], [1182, 4, 1, "", "get_resource_from_shorthand"]], "oaklib.utilities": [[1183, 3, 0, "-", "apikey_manager"], [1187, 3, 0, "-", "obograph_utils"], [1189, 3, 0, "-", "table_filler"], [1190, 3, 0, "-", "taxon"]], "oaklib.utilities.graph": [[1184, 3, 0, "-", "networkx_bridge"], [1185, 3, 0, "-", "relationship_walker"]], "oaklib.utilities.lexical": [[1186, 3, 0, "-", "lexical_indexer"]], "oaklib.utilities.subsets": [[1188, 3, 0, "-", "slimmer_utils"]], "semsql.sqla.semsql": [[1162, 0, 1, "", "Edge"], [1162, 0, 1, "", "EntailedEdge"], [1162, 0, 1, "", "Statements"]], "runoak-aliases": [[0, 6, 1, "cmdoption-runoak-aliases-obo-model", "--no-obo-model"], [0, 6, 1, "cmdoption-runoak-aliases-obo-model", "--obo-model"], [0, 6, 1, "cmdoption-runoak-aliases-o", "--output"], [0, 6, 1, "cmdoption-runoak-aliases-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-aliases-O", "-O"], [0, 6, 1, "cmdoption-runoak-aliases-o", "-o"], [0, 6, 1, "cmdoption-runoak-aliases-arg-TERMS", "TERMS"]], "runoak-ancestors": [[0, 6, 1, "cmdoption-runoak-ancestors-M", "--graph-traversal-method"], [0, 6, 1, "cmdoption-runoak-ancestors-statistics", "--no-statistics"], [0, 6, 1, "cmdoption-runoak-ancestors-o", "--output"], [0, 6, 1, "cmdoption-runoak-ancestors-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-ancestors-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-ancestors-statistics", "--statistics"], [0, 6, 1, "cmdoption-runoak-ancestors-M", "-M"], [0, 6, 1, "cmdoption-runoak-ancestors-O", "-O"], [0, 6, 1, "cmdoption-runoak-ancestors-o", "-o"], [0, 6, 1, "cmdoption-runoak-ancestors-p", "-p"], [0, 6, 1, "cmdoption-runoak-ancestors-arg-TERMS", "TERMS"]], "runoak-annotate": [[0, 6, 1, "cmdoption-runoak-annotate-C", "--configuration-file"], [0, 6, 1, "cmdoption-runoak-annotate-x", "--exclude-tokens"], [0, 6, 1, "cmdoption-runoak-annotate-include-aliases", "--include-aliases"], [0, 6, 1, "cmdoption-runoak-annotate-L", "--lexical-index-file"], [0, 6, 1, "cmdoption-runoak-annotate-A", "--match-column"], [0, 6, 1, "cmdoption-runoak-annotate-W", "--matches-whole-text"], [0, 6, 1, "cmdoption-runoak-annotate-m", "--model"], [0, 6, 1, "cmdoption-runoak-annotate-W", "--no-W"], [0, 6, 1, "cmdoption-runoak-annotate-include-aliases", "--no-include-aliases"], [0, 6, 1, "cmdoption-runoak-annotate-W", "--no-matches-whole-text"], [0, 6, 1, "cmdoption-runoak-annotate-o", "--output"], [0, 6, 1, "cmdoption-runoak-annotate-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-annotate-R", "--rules-file"], [0, 6, 1, "cmdoption-runoak-annotate-text-file", "--text-file"], [0, 6, 1, "cmdoption-runoak-annotate-A", "-A"], [0, 6, 1, "cmdoption-runoak-annotate-C", "-C"], [0, 6, 1, "cmdoption-runoak-annotate-L", "-L"], [0, 6, 1, "cmdoption-runoak-annotate-O", "-O"], [0, 6, 1, "cmdoption-runoak-annotate-R", "-R"], [0, 6, 1, "cmdoption-runoak-annotate-W", "-W"], [0, 6, 1, "cmdoption-runoak-annotate-m", "-m"], [0, 6, 1, "cmdoption-runoak-annotate-o", "-o"], [0, 6, 1, "cmdoption-runoak-annotate-x", "-x"], [0, 6, 1, "cmdoption-runoak-annotate-arg-WORDS", "WORDS"]], "runoak-apply-obsolete": [[0, 6, 1, "cmdoption-runoak-apply-obsolete-expand", "--expand"], [0, 6, 1, "cmdoption-runoak-apply-obsolete-ignore-invalid-changes", "--ignore-invalid-changes"], [0, 6, 1, "cmdoption-runoak-apply-obsolete-expand", "--no-expand"], [0, 6, 1, "cmdoption-runoak-apply-obsolete-ignore-invalid-changes", "--no-ignore-invalid-changes"], [0, 6, 1, "cmdoption-runoak-apply-obsolete-o", "--output"], [0, 6, 1, "cmdoption-runoak-apply-obsolete-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-apply-obsolete-O", "-O"], [0, 6, 1, "cmdoption-runoak-apply-obsolete-o", "-o"], [0, 6, 1, "cmdoption-runoak-apply-obsolete-arg-TERMS", "TERMS"]], "runoak-apply-taxon-constraints": [[0, 6, 1, "cmdoption-runoak-apply-taxon-constraints-E", "--evolution-file"], [0, 6, 1, "cmdoption-runoak-apply-taxon-constraints-M", "--graph-traversal-method"], [0, 6, 1, "cmdoption-runoak-apply-taxon-constraints-o", "--output"], [0, 6, 1, "cmdoption-runoak-apply-taxon-constraints-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-apply-taxon-constraints-E", "-E"], [0, 6, 1, "cmdoption-runoak-apply-taxon-constraints-M", "-M"], [0, 6, 1, "cmdoption-runoak-apply-taxon-constraints-o", "-o"], [0, 6, 1, "cmdoption-runoak-apply-taxon-constraints-p", "-p"], [0, 6, 1, "cmdoption-runoak-apply-taxon-constraints-arg-CONSTRAINTS", "CONSTRAINTS"]], "runoak-apply": [[0, 6, 1, "cmdoption-runoak-apply-changes-format", "--changes-format"], [0, 6, 1, "cmdoption-runoak-apply-changes-input", "--changes-input"], [0, 6, 1, "cmdoption-runoak-apply-changes-output", "--changes-output"], [0, 6, 1, "cmdoption-runoak-apply-contributor", "--contributor"], [0, 6, 1, "cmdoption-runoak-apply-dry-run", "--dry-run"], [0, 6, 1, "cmdoption-runoak-apply-expand", "--expand"], [0, 6, 1, "cmdoption-runoak-apply-ignore-invalid-changes", "--ignore-invalid-changes"], [0, 6, 1, "cmdoption-runoak-apply-dry-run", "--no-dry-run"], [0, 6, 1, "cmdoption-runoak-apply-expand", "--no-expand"], [0, 6, 1, "cmdoption-runoak-apply-ignore-invalid-changes", "--no-ignore-invalid-changes"], [0, 6, 1, "cmdoption-runoak-apply-overwrite", "--no-overwrite"], [0, 6, 1, "cmdoption-runoak-apply-o", "--output"], [0, 6, 1, "cmdoption-runoak-apply-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-apply-overwrite", "--overwrite"], [0, 6, 1, "cmdoption-runoak-apply-O", "-O"], [0, 6, 1, "cmdoption-runoak-apply-o", "-o"], [0, 6, 1, "cmdoption-runoak-apply-arg-COMMANDS", "COMMANDS"]], "runoak-associations-matrix": [[0, 6, 1, "cmdoption-runoak-associations-matrix-association-predicates", "--association-predicates"], [0, 6, 1, "cmdoption-runoak-associations-matrix-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-associations-matrix-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-associations-matrix-o", "--output"], [0, 6, 1, "cmdoption-runoak-associations-matrix-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-associations-matrix-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-associations-matrix-Q", "--terms-role"], [0, 6, 1, "cmdoption-runoak-associations-matrix-O", "-O"], [0, 6, 1, "cmdoption-runoak-associations-matrix-Q", "-Q"], [0, 6, 1, "cmdoption-runoak-associations-matrix-o", "-o"], [0, 6, 1, "cmdoption-runoak-associations-matrix-p", "-p"], [0, 6, 1, "cmdoption-runoak-associations-matrix-arg-TERMS", "TERMS"]], "runoak-associations": [[0, 6, 1, "cmdoption-runoak-associations-add-closure-fields", "--add-closure-fields"], [0, 6, 1, "cmdoption-runoak-associations-association-predicates", "--association-predicates"], [0, 6, 1, "cmdoption-runoak-associations-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-associations-if-absent", "--if-absent"], [0, 6, 1, "cmdoption-runoak-associations-add-closure-fields", "--no-add-closure-fields"], [0, 6, 1, "cmdoption-runoak-associations-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-associations-o", "--output"], [0, 6, 1, "cmdoption-runoak-associations-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-associations-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-associations-S", "--set-value"], [0, 6, 1, "cmdoption-runoak-associations-Q", "--terms-role"], [0, 6, 1, "cmdoption-runoak-associations-O", "-O"], [0, 6, 1, "cmdoption-runoak-associations-Q", "-Q"], [0, 6, 1, "cmdoption-runoak-associations-S", "-S"], [0, 6, 1, "cmdoption-runoak-associations-o", "-o"], [0, 6, 1, "cmdoption-runoak-associations-p", "-p"], [0, 6, 1, "cmdoption-runoak-associations-arg-TERMS", "TERMS"]], "runoak-axioms": [[0, 6, 1, "cmdoption-runoak-axioms-about", "--about"], [0, 6, 1, "cmdoption-runoak-axioms-axiom-type", "--axiom-type"], [0, 6, 1, "cmdoption-runoak-axioms-o", "--output"], [0, 6, 1, "cmdoption-runoak-axioms-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-axioms-references", "--references"], [0, 6, 1, "cmdoption-runoak-axioms-O", "-O"], [0, 6, 1, "cmdoption-runoak-axioms-o", "-o"], [0, 6, 1, "cmdoption-runoak-axioms-arg-TERMS", "TERMS"]], "runoak-cache-clear": [[0, 6, 1, "cmdoption-runoak-cache-clear-days-old", "--days-old"]], "runoak-definitions": [[0, 6, 1, "cmdoption-runoak-definitions-additional-metadata", "--additional-metadata"], [0, 6, 1, "cmdoption-runoak-definitions-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-definitions-D", "--display"], [0, 6, 1, "cmdoption-runoak-definitions-if-absent", "--if-absent"], [0, 6, 1, "cmdoption-runoak-definitions-additional-metadata", "--no-additional-metadata"], [0, 6, 1, "cmdoption-runoak-definitions-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-definitions-o", "--output"], [0, 6, 1, "cmdoption-runoak-definitions-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-definitions-S", "--set-value"], [0, 6, 1, "cmdoption-runoak-definitions-D", "-D"], [0, 6, 1, "cmdoption-runoak-definitions-O", "-O"], [0, 6, 1, "cmdoption-runoak-definitions-S", "-S"], [0, 6, 1, "cmdoption-runoak-definitions-o", "-o"], [0, 6, 1, "cmdoption-runoak-definitions-arg-TERMS", "TERMS"]], "runoak-descendants": [[0, 6, 1, "cmdoption-runoak-descendants-D", "--display"], [0, 6, 1, "cmdoption-runoak-descendants-M", "--graph-traversal-method"], [0, 6, 1, "cmdoption-runoak-descendants-o", "--output"], [0, 6, 1, "cmdoption-runoak-descendants-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-descendants-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-descendants-D", "-D"], [0, 6, 1, "cmdoption-runoak-descendants-M", "-M"], [0, 6, 1, "cmdoption-runoak-descendants-O", "-O"], [0, 6, 1, "cmdoption-runoak-descendants-o", "-o"], [0, 6, 1, "cmdoption-runoak-descendants-p", "-p"], [0, 6, 1, "cmdoption-runoak-descendants-arg-TERMS", "TERMS"]], "runoak-diff-associations": [[0, 6, 1, "cmdoption-runoak-diff-associations-g", "--associations"], [0, 6, 1, "cmdoption-runoak-diff-associations-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-diff-associations-group-by", "--group-by"], [0, 6, 1, "cmdoption-runoak-diff-associations-new-date", "--new-date"], [0, 6, 1, "cmdoption-runoak-diff-associations-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-diff-associations-old-date", "--old-date"], [0, 6, 1, "cmdoption-runoak-diff-associations-X", "--other-associations"], [0, 6, 1, "cmdoption-runoak-diff-associations-o", "--output"], [0, 6, 1, "cmdoption-runoak-diff-associations-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-diff-associations-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-diff-associations-O", "-O"], [0, 6, 1, "cmdoption-runoak-diff-associations-X", "-X"], [0, 6, 1, "cmdoption-runoak-diff-associations-g", "-g"], [0, 6, 1, "cmdoption-runoak-diff-associations-o", "-o"], [0, 6, 1, "cmdoption-runoak-diff-associations-p", "-p"]], "runoak-diff-terms": [[0, 6, 1, "cmdoption-runoak-diff-terms-other-ontology", "--other-ontology"], [0, 6, 1, "cmdoption-runoak-diff-terms-o", "--output"], [0, 6, 1, "cmdoption-runoak-diff-terms-o", "-o"], [0, 6, 1, "cmdoption-runoak-diff-terms-arg-TERMS", "TERMS"]], "runoak-diff-via-mappings": [[0, 6, 1, "cmdoption-runoak-diff-via-mappings-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-bidirectional", "--bidirectional"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-filter-category-identical", "--filter-category-identical"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-include-identity-mappings", "--include-identity-mappings"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-intra", "--intra"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-mapping-input", "--mapping-input"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-bidirectional", "--no-bidirectional"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-filter-category-identical", "--no-filter-category-identical"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-include-identity-mappings", "--no-include-identity-mappings"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-intra", "--no-intra"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-X", "--other-input"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-other-input-type", "--other-input-type"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-o", "--output"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-S", "--source"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-O", "-O"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-S", "-S"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-X", "-X"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-o", "-o"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-p", "-p"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-arg-TERMS", "TERMS"]], "runoak-diff": [[0, 6, 1, "cmdoption-runoak-diff-change-type", "--change-type"], [0, 6, 1, "cmdoption-runoak-diff-group-by-defined-by", "--group-by-defined-by"], [0, 6, 1, "cmdoption-runoak-diff-group-by-obo-namespace", "--group-by-obo-namespace"], [0, 6, 1, "cmdoption-runoak-diff-group-by-prefix", "--group-by-prefix"], [0, 6, 1, "cmdoption-runoak-diff-group-by-property", "--group-by-property"], [0, 6, 1, "cmdoption-runoak-diff-group-by-defined-by", "--no-group-by-defined-by"], [0, 6, 1, "cmdoption-runoak-diff-group-by-obo-namespace", "--no-group-by-obo-namespace"], [0, 6, 1, "cmdoption-runoak-diff-group-by-prefix", "--no-group-by-prefix"], [0, 6, 1, "cmdoption-runoak-diff-simple", "--no-simple"], [0, 6, 1, "cmdoption-runoak-diff-statistics", "--no-statistics"], [0, 6, 1, "cmdoption-runoak-diff-X", "--other-ontology"], [0, 6, 1, "cmdoption-runoak-diff-o", "--output"], [0, 6, 1, "cmdoption-runoak-diff-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-diff-simple", "--simple"], [0, 6, 1, "cmdoption-runoak-diff-statistics", "--statistics"], [0, 6, 1, "cmdoption-runoak-diff-O", "-O"], [0, 6, 1, "cmdoption-runoak-diff-X", "-X"], [0, 6, 1, "cmdoption-runoak-diff-o", "-o"]], "runoak-disjoints": [[0, 6, 1, "cmdoption-runoak-disjoints-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-disjoints-named-classes-only", "--named-classes-only"], [0, 6, 1, "cmdoption-runoak-disjoints-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-disjoints-named-classes-only", "--no-named-classes-only"], [0, 6, 1, "cmdoption-runoak-disjoints-o", "--output"], [0, 6, 1, "cmdoption-runoak-disjoints-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-disjoints-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-disjoints-O", "-O"], [0, 6, 1, "cmdoption-runoak-disjoints-o", "-o"], [0, 6, 1, "cmdoption-runoak-disjoints-p", "-p"], [0, 6, 1, "cmdoption-runoak-disjoints-arg-TERMS", "TERMS"]], "runoak-dump": [[0, 6, 1, "cmdoption-runoak-dump-c", "--config-file"], [0, 6, 1, "cmdoption-runoak-dump-enforce-canonical-ordering", "--enforce-canonical-ordering"], [0, 6, 1, "cmdoption-runoak-dump-enforce-canonical-ordering", "--no-enforce-canonical-ordering"], [0, 6, 1, "cmdoption-runoak-dump-o", "--output"], [0, 6, 1, "cmdoption-runoak-dump-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-dump-O", "-O"], [0, 6, 1, "cmdoption-runoak-dump-c", "-c"], [0, 6, 1, "cmdoption-runoak-dump-o", "-o"], [0, 6, 1, "cmdoption-runoak-dump-arg-TERMS", "TERMS"]], "runoak-enrichment": [[0, 6, 1, "cmdoption-runoak-enrichment-association-predicates", "--association-predicates"], [0, 6, 1, "cmdoption-runoak-enrichment-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-enrichment-B", "--background-file"], [0, 6, 1, "cmdoption-runoak-enrichment-cutoff", "--cutoff"], [0, 6, 1, "cmdoption-runoak-enrichment-filter-redundant", "--filter-redundant"], [0, 6, 1, "cmdoption-runoak-enrichment-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-enrichment-filter-redundant", "--no-filter-redundant"], [0, 6, 1, "cmdoption-runoak-enrichment-ontology-only", "--no-ontology-only"], [0, 6, 1, "cmdoption-runoak-enrichment-ontology-only", "--ontology-only"], [0, 6, 1, "cmdoption-runoak-enrichment-o", "--output"], [0, 6, 1, "cmdoption-runoak-enrichment-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-enrichment-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-enrichment-U", "--sample-file"], [0, 6, 1, "cmdoption-runoak-enrichment-B", "-B"], [0, 6, 1, "cmdoption-runoak-enrichment-O", "-O"], [0, 6, 1, "cmdoption-runoak-enrichment-U", "-U"], [0, 6, 1, "cmdoption-runoak-enrichment-o", "-o"], [0, 6, 1, "cmdoption-runoak-enrichment-p", "-p"], [0, 6, 1, "cmdoption-runoak-enrichment-arg-TERMS", "TERMS"]], "runoak-expand-subsets": [[0, 6, 1, "cmdoption-runoak-expand-subsets-o", "--output"], [0, 6, 1, "cmdoption-runoak-expand-subsets-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-expand-subsets-o", "-o"], [0, 6, 1, "cmdoption-runoak-expand-subsets-p", "-p"], [0, 6, 1, "cmdoption-runoak-expand-subsets-arg-SUBSETS", "SUBSETS"]], "runoak-extract": [[0, 6, 1, "cmdoption-runoak-extract-dangling", "--dangling"], [0, 6, 1, "cmdoption-runoak-extract-include-metadata", "--include-metadata"], [0, 6, 1, "cmdoption-runoak-extract-dangling", "--no-dangling"], [0, 6, 1, "cmdoption-runoak-extract-include-metadata", "--no-include-metadata"], [0, 6, 1, "cmdoption-runoak-extract-o", "--output"], [0, 6, 1, "cmdoption-runoak-extract-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-extract-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-extract-O", "-O"], [0, 6, 1, "cmdoption-runoak-extract-o", "-o"], [0, 6, 1, "cmdoption-runoak-extract-p", "-p"], [0, 6, 1, "cmdoption-runoak-extract-arg-TERMS", "TERMS"]], "runoak-fill-table": [[0, 6, 1, "cmdoption-runoak-fill-table-allow-missing", "--allow-missing"], [0, 6, 1, "cmdoption-runoak-fill-table-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-fill-table-comment", "--comment"], [0, 6, 1, "cmdoption-runoak-fill-table-delimiter", "--delimiter"], [0, 6, 1, "cmdoption-runoak-fill-table-missing-value-token", "--missing-value-token"], [0, 6, 1, "cmdoption-runoak-fill-table-allow-missing", "--no-allow-missing"], [0, 6, 1, "cmdoption-runoak-fill-table-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-fill-table-o", "--output"], [0, 6, 1, "cmdoption-runoak-fill-table-relation", "--relation"], [0, 6, 1, "cmdoption-runoak-fill-table-relation-file", "--relation-file"], [0, 6, 1, "cmdoption-runoak-fill-table-schema", "--schema"], [0, 6, 1, "cmdoption-runoak-fill-table-o", "-o"], [0, 6, 1, "cmdoption-runoak-fill-table-arg-TABLE_FILE", "TABLE_FILE"]], "runoak-generate-definitions": [[0, 6, 1, "cmdoption-runoak-generate-definitions-apply-patch", "--apply-patch"], [0, 6, 1, "cmdoption-runoak-generate-definitions-apply-patch", "--no-apply-patch"], [0, 6, 1, "cmdoption-runoak-generate-definitions-o", "--output"], [0, 6, 1, "cmdoption-runoak-generate-definitions-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-generate-definitions-patch", "--patch"], [0, 6, 1, "cmdoption-runoak-generate-definitions-patch-format", "--patch-format"], [0, 6, 1, "cmdoption-runoak-generate-definitions-style-hints", "--style-hints"], [0, 6, 1, "cmdoption-runoak-generate-definitions-O", "-O"], [0, 6, 1, "cmdoption-runoak-generate-definitions-o", "-o"], [0, 6, 1, "cmdoption-runoak-generate-definitions-arg-TERMS", "TERMS"]], "runoak-generate-disjoints": [[0, 6, 1, "cmdoption-runoak-generate-disjoints-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-exclude-existing", "--exclude-existing"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-M", "--min-descendants"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-exclude-existing", "--no-exclude-existing"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-o", "--output"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-M", "-M"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-O", "-O"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-o", "-o"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-p", "-p"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-arg-TERMS", "TERMS"]], "runoak-generate-logical-definitions": [[0, 6, 1, "cmdoption-runoak-generate-logical-definitions-analyze", "--analyze"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-fill", "--fill"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-analyze", "--no-analyze"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-fill", "--no-fill"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-parse", "--no-parse"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-show-extract", "--no-show-extract"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-unmelt", "--no-unmelt"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-o", "--output"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-parse", "--parse"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-P", "--patterns-file"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-show-extract", "--show-extract"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-unmelt", "--unmelt"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-O", "-O"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-P", "-P"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-o", "-o"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-arg-TERMS", "TERMS"]], "runoak-generate-synonyms": [[0, 6, 1, "cmdoption-runoak-generate-synonyms-apply-patch", "--apply-patch"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-apply-patch", "--no-apply-patch"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-o", "--output"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-patch", "--patch"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-patch-format", "--patch-format"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-R", "--rules-file"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-O", "-O"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-R", "-R"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-o", "-o"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-arg-TERMS", "TERMS"]], "runoak-info": [[0, 6, 1, "cmdoption-runoak-info-D", "--display"], [0, 6, 1, "cmdoption-runoak-info-o", "--output"], [0, 6, 1, "cmdoption-runoak-info-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-info-D", "-D"], [0, 6, 1, "cmdoption-runoak-info-O", "-O"], [0, 6, 1, "cmdoption-runoak-info-o", "-o"], [0, 6, 1, "cmdoption-runoak-info-arg-TERMS", "TERMS"]], "runoak-information-content": [[0, 6, 1, "cmdoption-runoak-information-content-use-associations", "--no-use-associations"], [0, 6, 1, "cmdoption-runoak-information-content-o", "--output"], [0, 6, 1, "cmdoption-runoak-information-content-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-information-content-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-information-content-use-associations", "--use-associations"], [0, 6, 1, "cmdoption-runoak-information-content-O", "-O"], [0, 6, 1, "cmdoption-runoak-information-content-o", "-o"], [0, 6, 1, "cmdoption-runoak-information-content-p", "-p"], [0, 6, 1, "cmdoption-runoak-information-content-arg-TERMS", "TERMS"]], "runoak-labels": [[0, 6, 1, "cmdoption-runoak-labels-all-languages", "--all-languages"], [0, 6, 1, "cmdoption-runoak-labels-D", "--display"], [0, 6, 1, "cmdoption-runoak-labels-if-absent", "--if-absent"], [0, 6, 1, "cmdoption-runoak-labels-all-languages", "--no-all-languages"], [0, 6, 1, "cmdoption-runoak-labels-pivot-languages", "--no-pivot-languages"], [0, 6, 1, "cmdoption-runoak-labels-o", "--output"], [0, 6, 1, "cmdoption-runoak-labels-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-labels-pivot-languages", "--pivot-languages"], [0, 6, 1, "cmdoption-runoak-labels-S", "--set-value"], [0, 6, 1, "cmdoption-runoak-labels-D", "-D"], [0, 6, 1, "cmdoption-runoak-labels-O", "-O"], [0, 6, 1, "cmdoption-runoak-labels-S", "-S"], [0, 6, 1, "cmdoption-runoak-labels-o", "-o"], [0, 6, 1, "cmdoption-runoak-labels-arg-TERMS", "TERMS"]], "runoak-leafs": [[0, 6, 1, "cmdoption-runoak-leafs-filter-obsoletes", "--filter-obsoletes"], [0, 6, 1, "cmdoption-runoak-leafs-filter-obsoletes", "--no-filter-obsoletes"], [0, 6, 1, "cmdoption-runoak-leafs-o", "--output"], [0, 6, 1, "cmdoption-runoak-leafs-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-leafs-o", "-o"], [0, 6, 1, "cmdoption-runoak-leafs-p", "-p"]], "runoak-lexmatch": [[0, 6, 1, "cmdoption-runoak-lexmatch-add-labels", "--add-labels"], [0, 6, 1, "cmdoption-runoak-lexmatch-ensure-strict-prefixes", "--ensure-strict-prefixes"], [0, 6, 1, "cmdoption-runoak-lexmatch-L", "--lexical-index-file"], [0, 6, 1, "cmdoption-runoak-lexmatch-add-labels", "--no-add-labels"], [0, 6, 1, "cmdoption-runoak-lexmatch-ensure-strict-prefixes", "--no-ensure-strict-prefixes"], [0, 6, 1, "cmdoption-runoak-lexmatch-recreate", "--no-recreate"], [0, 6, 1, "cmdoption-runoak-lexmatch-o", "--output"], [0, 6, 1, "cmdoption-runoak-lexmatch-recreate", "--recreate"], [0, 6, 1, "cmdoption-runoak-lexmatch-R", "--rules-file"], [0, 6, 1, "cmdoption-runoak-lexmatch-L", "-L"], [0, 6, 1, "cmdoption-runoak-lexmatch-R", "-R"], [0, 6, 1, "cmdoption-runoak-lexmatch-o", "-o"], [0, 6, 1, "cmdoption-runoak-lexmatch-arg-TERMS", "TERMS"]], "runoak-lint": [[0, 6, 1, "cmdoption-runoak-lint-dry-run", "--dry-run"], [0, 6, 1, "cmdoption-runoak-lint-dry-run", "--no-dry-run"], [0, 6, 1, "cmdoption-runoak-lint-o", "--output"], [0, 6, 1, "cmdoption-runoak-lint-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-lint-report-format", "--report-format"], [0, 6, 1, "cmdoption-runoak-lint-O", "-O"], [0, 6, 1, "cmdoption-runoak-lint-o", "-o"]], "runoak-logical-definitions": [[0, 6, 1, "cmdoption-runoak-logical-definitions-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-logical-definitions-if-absent", "--if-absent"], [0, 6, 1, "cmdoption-runoak-logical-definitions-matrix-axes", "--matrix-axes"], [0, 6, 1, "cmdoption-runoak-logical-definitions-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-logical-definitions-unmelt", "--no-unmelt"], [0, 6, 1, "cmdoption-runoak-logical-definitions-o", "--output"], [0, 6, 1, "cmdoption-runoak-logical-definitions-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-logical-definitions-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-logical-definitions-S", "--set-value"], [0, 6, 1, "cmdoption-runoak-logical-definitions-unmelt", "--unmelt"], [0, 6, 1, "cmdoption-runoak-logical-definitions-O", "-O"], [0, 6, 1, "cmdoption-runoak-logical-definitions-S", "-S"], [0, 6, 1, "cmdoption-runoak-logical-definitions-o", "-o"], [0, 6, 1, "cmdoption-runoak-logical-definitions-p", "-p"], [0, 6, 1, "cmdoption-runoak-logical-definitions-arg-TERMS", "TERMS"]], "runoak-mappings": [[0, 6, 1, "cmdoption-runoak-mappings-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-mappings-mapper", "--mapper"], [0, 6, 1, "cmdoption-runoak-mappings-M", "--maps-to-source"], [0, 6, 1, "cmdoption-runoak-mappings-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-mappings-o", "--output"], [0, 6, 1, "cmdoption-runoak-mappings-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-mappings-M", "-M"], [0, 6, 1, "cmdoption-runoak-mappings-O", "-O"], [0, 6, 1, "cmdoption-runoak-mappings-o", "-o"], [0, 6, 1, "cmdoption-runoak-mappings-arg-TERMS", "TERMS"]], "runoak-migrate-curies": [[0, 6, 1, "cmdoption-runoak-migrate-curies-replace", "--no-replace"], [0, 6, 1, "cmdoption-runoak-migrate-curies-o", "--output"], [0, 6, 1, "cmdoption-runoak-migrate-curies-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-migrate-curies-replace", "--replace"], [0, 6, 1, "cmdoption-runoak-migrate-curies-O", "-O"], [0, 6, 1, "cmdoption-runoak-migrate-curies-o", "-o"], [0, 6, 1, "cmdoption-runoak-migrate-curies-arg-CURIE_PAIRS", "CURIE_PAIRS"]], "runoak-normalize": [[0, 6, 1, "cmdoption-runoak-normalize-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-normalize-M", "--maps-to-source"], [0, 6, 1, "cmdoption-runoak-normalize-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-normalize-o", "--output"], [0, 6, 1, "cmdoption-runoak-normalize-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-normalize-M", "-M"], [0, 6, 1, "cmdoption-runoak-normalize-O", "-O"], [0, 6, 1, "cmdoption-runoak-normalize-o", "-o"], [0, 6, 1, "cmdoption-runoak-normalize-arg-TERMS", "TERMS"]], "runoak-obsoletes": [[0, 6, 1, "cmdoption-runoak-obsoletes-include-merged", "--include-merged"], [0, 6, 1, "cmdoption-runoak-obsoletes-include-merged", "--no-include-merged"], [0, 6, 1, "cmdoption-runoak-obsoletes-show-migration-relationships", "--no-show-migration-relationships"], [0, 6, 1, "cmdoption-runoak-obsoletes-o", "--output"], [0, 6, 1, "cmdoption-runoak-obsoletes-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-obsoletes-show-migration-relationships", "--show-migration-relationships"], [0, 6, 1, "cmdoption-runoak-obsoletes-O", "-O"], [0, 6, 1, "cmdoption-runoak-obsoletes-o", "-o"], [0, 6, 1, "cmdoption-runoak-obsoletes-arg-TERMS", "TERMS"]], "runoak-ontologies": [[0, 6, 1, "cmdoption-runoak-ontologies-o", "--output"], [0, 6, 1, "cmdoption-runoak-ontologies-o", "-o"]], "runoak-ontology-metadata": [[0, 6, 1, "cmdoption-runoak-ontology-metadata-all", "--all"], [0, 6, 1, "cmdoption-runoak-ontology-metadata-all", "--no-all"], [0, 6, 1, "cmdoption-runoak-ontology-metadata-o", "--output"], [0, 6, 1, "cmdoption-runoak-ontology-metadata-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-ontology-metadata-O", "-O"], [0, 6, 1, "cmdoption-runoak-ontology-metadata-o", "-o"], [0, 6, 1, "cmdoption-runoak-ontology-metadata-arg-ONTOLOGIES", "ONTOLOGIES"]], "runoak-ontology-versions": [[0, 6, 1, "cmdoption-runoak-ontology-versions-all", "--all"], [0, 6, 1, "cmdoption-runoak-ontology-versions-all", "--no-all"], [0, 6, 1, "cmdoption-runoak-ontology-versions-o", "--output"], [0, 6, 1, "cmdoption-runoak-ontology-versions-o", "-o"], [0, 6, 1, "cmdoption-runoak-ontology-versions-arg-ONTOLOGIES", "ONTOLOGIES"]], "runoak-paths": [[0, 6, 1, "cmdoption-runoak-paths-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-paths-C", "--configure"], [0, 6, 1, "cmdoption-runoak-paths-directed", "--directed"], [0, 6, 1, "cmdoption-runoak-paths-exclude-predicates", "--exclude-predicates"], [0, 6, 1, "cmdoption-runoak-paths-include-predicates", "--include-predicates"], [0, 6, 1, "cmdoption-runoak-paths-narrow", "--narrow"], [0, 6, 1, "cmdoption-runoak-paths-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-paths-directed", "--no-directed"], [0, 6, 1, "cmdoption-runoak-paths-include-predicates", "--no-include-predicates"], [0, 6, 1, "cmdoption-runoak-paths-narrow", "--no-narrow"], [0, 6, 1, "cmdoption-runoak-paths-viz", "--no-viz"], [0, 6, 1, "cmdoption-runoak-paths-o", "--output"], [0, 6, 1, "cmdoption-runoak-paths-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-paths-predicate-weights", "--predicate-weights"], [0, 6, 1, "cmdoption-runoak-paths-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-paths-S", "--stylemap"], [0, 6, 1, "cmdoption-runoak-paths-target", "--target"], [0, 6, 1, "cmdoption-runoak-paths-viz", "--viz"], [0, 6, 1, "cmdoption-runoak-paths-C", "-C"], [0, 6, 1, "cmdoption-runoak-paths-O", "-O"], [0, 6, 1, "cmdoption-runoak-paths-S", "-S"], [0, 6, 1, "cmdoption-runoak-paths-o", "-o"], [0, 6, 1, "cmdoption-runoak-paths-p", "-p"], [0, 6, 1, "cmdoption-runoak-paths-arg-TERMS", "TERMS"]], "runoak-prefixes": [[0, 6, 1, "cmdoption-runoak-prefixes-used-only", "--no-used-only"], [0, 6, 1, "cmdoption-runoak-prefixes-o", "--output"], [0, 6, 1, "cmdoption-runoak-prefixes-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-prefixes-used-only", "--used-only"], [0, 6, 1, "cmdoption-runoak-prefixes-O", "-O"], [0, 6, 1, "cmdoption-runoak-prefixes-o", "-o"], [0, 6, 1, "cmdoption-runoak-prefixes-arg-TERMS", "TERMS"]], "runoak-query": [[0, 6, 1, "cmdoption-runoak-query-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-query-L", "--label-fields"], [0, 6, 1, "cmdoption-runoak-query-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-query-o", "--output"], [0, 6, 1, "cmdoption-runoak-query-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-query-P", "--prefixes"], [0, 6, 1, "cmdoption-runoak-query-q", "--query"], [0, 6, 1, "cmdoption-runoak-query-L", "-L"], [0, 6, 1, "cmdoption-runoak-query-O", "-O"], [0, 6, 1, "cmdoption-runoak-query-P", "-P"], [0, 6, 1, "cmdoption-runoak-query-o", "-o"], [0, 6, 1, "cmdoption-runoak-query-q", "-q"]], "runoak-relationships": [[0, 6, 1, "cmdoption-runoak-relationships-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-relationships-direction", "--direction"], [0, 6, 1, "cmdoption-runoak-relationships-if-absent", "--if-absent"], [0, 6, 1, "cmdoption-runoak-relationships-include-abox", "--include-abox"], [0, 6, 1, "cmdoption-runoak-relationships-include-entailed", "--include-entailed"], [0, 6, 1, "cmdoption-runoak-relationships-include-metadata", "--include-metadata"], [0, 6, 1, "cmdoption-runoak-relationships-include-tbox", "--include-tbox"], [0, 6, 1, "cmdoption-runoak-relationships-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-relationships-include-abox", "--no-include-abox"], [0, 6, 1, "cmdoption-runoak-relationships-include-entailed", "--no-include-entailed"], [0, 6, 1, "cmdoption-runoak-relationships-include-metadata", "--no-include-metadata"], [0, 6, 1, "cmdoption-runoak-relationships-include-tbox", "--no-include-tbox"], [0, 6, 1, "cmdoption-runoak-relationships-o", "--output"], [0, 6, 1, "cmdoption-runoak-relationships-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-relationships-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-relationships-S", "--set-value"], [0, 6, 1, "cmdoption-runoak-relationships-O", "-O"], [0, 6, 1, "cmdoption-runoak-relationships-S", "-S"], [0, 6, 1, "cmdoption-runoak-relationships-o", "-o"], [0, 6, 1, "cmdoption-runoak-relationships-p", "-p"], [0, 6, 1, "cmdoption-runoak-relationships-arg-TERMS", "TERMS"]], "runoak-rollup": [[0, 6, 1, "cmdoption-runoak-rollup-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-rollup-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-rollup-object-group", "--object-group"], [0, 6, 1, "cmdoption-runoak-rollup-o", "--output"], [0, 6, 1, "cmdoption-runoak-rollup-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-rollup-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-rollup-O", "-O"], [0, 6, 1, "cmdoption-runoak-rollup-o", "-o"], [0, 6, 1, "cmdoption-runoak-rollup-p", "-p"], [0, 6, 1, "cmdoption-runoak-rollup-arg-TERMS", "TERMS"]], "runoak-roots": [[0, 6, 1, "cmdoption-runoak-roots-A", "--annotated-roots"], [0, 6, 1, "cmdoption-runoak-roots-P", "--has-prefix"], [0, 6, 1, "cmdoption-runoak-roots-A", "--no-A"], [0, 6, 1, "cmdoption-runoak-roots-A", "--no-annotated-roots"], [0, 6, 1, "cmdoption-runoak-roots-o", "--output"], [0, 6, 1, "cmdoption-runoak-roots-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-roots-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-roots-A", "-A"], [0, 6, 1, "cmdoption-runoak-roots-O", "-O"], [0, 6, 1, "cmdoption-runoak-roots-P", "-P"], [0, 6, 1, "cmdoption-runoak-roots-o", "-o"], [0, 6, 1, "cmdoption-runoak-roots-p", "-p"]], "runoak-search": [[0, 6, 1, "cmdoption-runoak-search-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-search-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-search-o", "--output"], [0, 6, 1, "cmdoption-runoak-search-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-search-O", "-O"], [0, 6, 1, "cmdoption-runoak-search-o", "-o"], [0, 6, 1, "cmdoption-runoak-search-arg-TERMS", "TERMS"]], "runoak-set-apikey": [[0, 6, 1, "cmdoption-runoak-set-apikey-e", "--endpoint"], [0, 6, 1, "cmdoption-runoak-set-apikey-e", "-e"], [0, 6, 1, "cmdoption-runoak-set-apikey-arg-KEYVAL", "KEYVAL"]], "runoak-siblings": [[0, 6, 1, "cmdoption-runoak-siblings-o", "--output"], [0, 6, 1, "cmdoption-runoak-siblings-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-siblings-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-siblings-O", "-O"], [0, 6, 1, "cmdoption-runoak-siblings-o", "-o"], [0, 6, 1, "cmdoption-runoak-siblings-p", "-p"], [0, 6, 1, "cmdoption-runoak-siblings-arg-TERMS", "TERMS"]], "runoak-similarity-pair": [[0, 6, 1, "cmdoption-runoak-similarity-pair-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-similarity-pair-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-similarity-pair-o", "--output"], [0, 6, 1, "cmdoption-runoak-similarity-pair-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-similarity-pair-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-similarity-pair-O", "-O"], [0, 6, 1, "cmdoption-runoak-similarity-pair-o", "-o"], [0, 6, 1, "cmdoption-runoak-similarity-pair-p", "-p"], [0, 6, 1, "cmdoption-runoak-similarity-pair-arg-TERMS", "TERMS"]], "runoak-similarity": [[0, 6, 1, "cmdoption-runoak-similarity-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-similarity-information-content-file", "--information-content-file"], [0, 6, 1, "cmdoption-runoak-similarity-main-score-field", "--main-score-field"], [0, 6, 1, "cmdoption-runoak-similarity-min-ancestor-information-content", "--min-ancestor-information-content"], [0, 6, 1, "cmdoption-runoak-similarity-min-jaccard-similarity", "--min-jaccard-similarity"], [0, 6, 1, "cmdoption-runoak-similarity-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-similarity-o", "--output"], [0, 6, 1, "cmdoption-runoak-similarity-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-similarity-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-similarity-set1-file", "--set1-file"], [0, 6, 1, "cmdoption-runoak-similarity-set2-file", "--set2-file"], [0, 6, 1, "cmdoption-runoak-similarity-O", "-O"], [0, 6, 1, "cmdoption-runoak-similarity-o", "-o"], [0, 6, 1, "cmdoption-runoak-similarity-p", "-p"], [0, 6, 1, "cmdoption-runoak-similarity-arg-TERMS", "TERMS"]], "runoak-singletons": [[0, 6, 1, "cmdoption-runoak-singletons-filter-obsoletes", "--filter-obsoletes"], [0, 6, 1, "cmdoption-runoak-singletons-filter-obsoletes", "--no-filter-obsoletes"], [0, 6, 1, "cmdoption-runoak-singletons-o", "--output"], [0, 6, 1, "cmdoption-runoak-singletons-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-singletons-o", "-o"], [0, 6, 1, "cmdoption-runoak-singletons-p", "-p"]], "runoak-statistics": [[0, 6, 1, "cmdoption-runoak-statistics-X", "--compare-with"], [0, 6, 1, "cmdoption-runoak-statistics-group-by-defined-by", "--group-by-defined-by"], [0, 6, 1, "cmdoption-runoak-statistics-group-by-obo-namespace", "--group-by-obo-namespace"], [0, 6, 1, "cmdoption-runoak-statistics-group-by-prefix", "--group-by-prefix"], [0, 6, 1, "cmdoption-runoak-statistics-group-by-property", "--group-by-property"], [0, 6, 1, "cmdoption-runoak-statistics-P", "--has-prefix"], [0, 6, 1, "cmdoption-runoak-statistics-include-residuals", "--include-residuals"], [0, 6, 1, "cmdoption-runoak-statistics-group-by-defined-by", "--no-group-by-defined-by"], [0, 6, 1, "cmdoption-runoak-statistics-group-by-obo-namespace", "--no-group-by-obo-namespace"], [0, 6, 1, "cmdoption-runoak-statistics-group-by-prefix", "--no-group-by-prefix"], [0, 6, 1, "cmdoption-runoak-statistics-include-residuals", "--no-include-residuals"], [0, 6, 1, "cmdoption-runoak-statistics-o", "--output"], [0, 6, 1, "cmdoption-runoak-statistics-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-statistics-O", "-O"], [0, 6, 1, "cmdoption-runoak-statistics-P", "-P"], [0, 6, 1, "cmdoption-runoak-statistics-X", "-X"], [0, 6, 1, "cmdoption-runoak-statistics-o", "-o"], [0, 6, 1, "cmdoption-runoak-statistics-arg-BRANCHES", "BRANCHES"]], "runoak-subsets": [[0, 6, 1, "cmdoption-runoak-subsets-o", "--output"], [0, 6, 1, "cmdoption-runoak-subsets-o", "-o"]], "runoak-synonymize": [[0, 6, 1, "cmdoption-runoak-synonymize-apply-patch", "--apply-patch"], [0, 6, 1, "cmdoption-runoak-synonymize-apply-patch", "--no-apply-patch"], [0, 6, 1, "cmdoption-runoak-synonymize-o", "--output"], [0, 6, 1, "cmdoption-runoak-synonymize-patch", "--patch"], [0, 6, 1, "cmdoption-runoak-synonymize-R", "--rules-file"], [0, 6, 1, "cmdoption-runoak-synonymize-R", "-R"], [0, 6, 1, "cmdoption-runoak-synonymize-o", "-o"], [0, 6, 1, "cmdoption-runoak-synonymize-arg-TERMS", "TERMS"]], "runoak-taxon-constraints": [[0, 6, 1, "cmdoption-runoak-taxon-constraints-A", "--all"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-direct", "--direct"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-M", "--graph-traversal-method"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-include-redundant", "--include-redundant"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-A", "--no-A"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-A", "--no-all"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-direct", "--no-direct"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-include-redundant", "--no-include-redundant"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-o", "--output"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-A", "-A"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-M", "-M"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-O", "-O"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-o", "-o"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-p", "-p"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-arg-TERMS", "TERMS"]], "runoak-term-categories": [[0, 6, 1, "cmdoption-runoak-term-categories-category-system", "--category-system"], [0, 6, 1, "cmdoption-runoak-term-categories-o", "--output"], [0, 6, 1, "cmdoption-runoak-term-categories-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-term-categories-O", "-O"], [0, 6, 1, "cmdoption-runoak-term-categories-o", "-o"], [0, 6, 1, "cmdoption-runoak-term-categories-arg-TERMS", "TERMS"]], "runoak-term-metadata": [[0, 6, 1, "cmdoption-runoak-term-metadata-additional-metadata", "--additional-metadata"], [0, 6, 1, "cmdoption-runoak-term-metadata-additional-metadata", "--no-additional-metadata"], [0, 6, 1, "cmdoption-runoak-term-metadata-o", "--output"], [0, 6, 1, "cmdoption-runoak-term-metadata-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-term-metadata-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-term-metadata-O", "-O"], [0, 6, 1, "cmdoption-runoak-term-metadata-o", "-o"], [0, 6, 1, "cmdoption-runoak-term-metadata-p", "-p"], [0, 6, 1, "cmdoption-runoak-term-metadata-arg-TERMS", "TERMS"]], "runoak-term-subsets": [[0, 6, 1, "cmdoption-runoak-term-subsets-o", "--output"], [0, 6, 1, "cmdoption-runoak-term-subsets-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-term-subsets-O", "-O"], [0, 6, 1, "cmdoption-runoak-term-subsets-o", "-o"], [0, 6, 1, "cmdoption-runoak-term-subsets-arg-TERMS", "TERMS"]], "runoak-terms": [[0, 6, 1, "cmdoption-runoak-terms-filter-obsoletes", "--filter-obsoletes"], [0, 6, 1, "cmdoption-runoak-terms-filter-obsoletes", "--no-filter-obsoletes"], [0, 6, 1, "cmdoption-runoak-terms-o", "--output"], [0, 6, 1, "cmdoption-runoak-terms-owl-type", "--owl-type"], [0, 6, 1, "cmdoption-runoak-terms-o", "-o"]], "runoak-termset-similarity": [[0, 6, 1, "cmdoption-runoak-termset-similarity-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-termset-similarity-information-content-file", "--information-content-file"], [0, 6, 1, "cmdoption-runoak-termset-similarity-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-termset-similarity-o", "--output"], [0, 6, 1, "cmdoption-runoak-termset-similarity-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-termset-similarity-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-termset-similarity-O", "-O"], [0, 6, 1, "cmdoption-runoak-termset-similarity-o", "-o"], [0, 6, 1, "cmdoption-runoak-termset-similarity-p", "-p"], [0, 6, 1, "cmdoption-runoak-termset-similarity-arg-TERMS", "TERMS"]], "runoak-transform": [[0, 6, 1, "cmdoption-runoak-transform-c", "--config-file"], [0, 6, 1, "cmdoption-runoak-transform-o", "--output"], [0, 6, 1, "cmdoption-runoak-transform-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-transform-t", "--transform"], [0, 6, 1, "cmdoption-runoak-transform-O", "-O"], [0, 6, 1, "cmdoption-runoak-transform-c", "-c"], [0, 6, 1, "cmdoption-runoak-transform-o", "-o"], [0, 6, 1, "cmdoption-runoak-transform-t", "-t"], [0, 6, 1, "cmdoption-runoak-transform-arg-TERMS", "TERMS"]], "runoak-tree": [[0, 6, 1, "cmdoption-runoak-tree-add-mrcas", "--add-mrcas"], [0, 6, 1, "cmdoption-runoak-tree-C", "--configure"], [0, 6, 1, "cmdoption-runoak-tree-D", "--display"], [0, 6, 1, "cmdoption-runoak-tree-down", "--down"], [0, 6, 1, "cmdoption-runoak-tree-gap-fill", "--gap-fill"], [0, 6, 1, "cmdoption-runoak-tree-max-hops", "--max-hops"], [0, 6, 1, "cmdoption-runoak-tree-add-mrcas", "--no-add-mrcas"], [0, 6, 1, "cmdoption-runoak-tree-down", "--no-down"], [0, 6, 1, "cmdoption-runoak-tree-gap-fill", "--no-gap-fill"], [0, 6, 1, "cmdoption-runoak-tree-o", "--output"], [0, 6, 1, "cmdoption-runoak-tree-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-tree-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-tree-root", "--root"], [0, 6, 1, "cmdoption-runoak-tree-skip", "--skip"], [0, 6, 1, "cmdoption-runoak-tree-S", "--stylemap"], [0, 6, 1, "cmdoption-runoak-tree-C", "-C"], [0, 6, 1, "cmdoption-runoak-tree-D", "-D"], [0, 6, 1, "cmdoption-runoak-tree-O", "-O"], [0, 6, 1, "cmdoption-runoak-tree-S", "-S"], [0, 6, 1, "cmdoption-runoak-tree-o", "-o"], [0, 6, 1, "cmdoption-runoak-tree-p", "-p"], [0, 6, 1, "cmdoption-runoak-tree-arg-TERMS", "TERMS"]], "runoak-validate-definitions": [[0, 6, 1, "cmdoption-runoak-validate-definitions-skip-text-annotation", "--no-skip-text-annotation"], [0, 6, 1, "cmdoption-runoak-validate-definitions-o", "--output"], [0, 6, 1, "cmdoption-runoak-validate-definitions-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-validate-definitions-skip-text-annotation", "--skip-text-annotation"], [0, 6, 1, "cmdoption-runoak-validate-definitions-O", "-O"], [0, 6, 1, "cmdoption-runoak-validate-definitions-o", "-o"], [0, 6, 1, "cmdoption-runoak-validate-definitions-arg-TERMS", "TERMS"]], "runoak-validate-mappings": [[0, 6, 1, "cmdoption-runoak-validate-mappings-adapter-mapping", "--adapter-mapping"], [0, 6, 1, "cmdoption-runoak-validate-mappings-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-validate-mappings-C", "--configuration-file"], [0, 6, 1, "cmdoption-runoak-validate-mappings-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-validate-mappings-o", "--output"], [0, 6, 1, "cmdoption-runoak-validate-mappings-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-validate-mappings-C", "-C"], [0, 6, 1, "cmdoption-runoak-validate-mappings-O", "-O"], [0, 6, 1, "cmdoption-runoak-validate-mappings-o", "-o"], [0, 6, 1, "cmdoption-runoak-validate-mappings-arg-TERMS", "TERMS"]], "runoak-validate-multiple": [[0, 6, 1, "cmdoption-runoak-validate-multiple-cutoff", "--cutoff"], [0, 6, 1, "cmdoption-runoak-validate-multiple-o", "--output"], [0, 6, 1, "cmdoption-runoak-validate-multiple-s", "--schema"], [0, 6, 1, "cmdoption-runoak-validate-multiple-o", "-o"], [0, 6, 1, "cmdoption-runoak-validate-multiple-s", "-s"], [0, 6, 1, "cmdoption-runoak-validate-multiple-arg-DBS", "DBS"]], "runoak-validate": [[0, 6, 1, "cmdoption-runoak-validate-cutoff", "--cutoff"], [0, 6, 1, "cmdoption-runoak-validate-skip-ontology-rules", "--no-skip-ontology-rules"], [0, 6, 1, "cmdoption-runoak-validate-skip-structural-validation", "--no-skip-structural-validation"], [0, 6, 1, "cmdoption-runoak-validate-o", "--output"], [0, 6, 1, "cmdoption-runoak-validate-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-validate-R", "--rule"], [0, 6, 1, "cmdoption-runoak-validate-skip-ontology-rules", "--skip-ontology-rules"], [0, 6, 1, "cmdoption-runoak-validate-skip-structural-validation", "--skip-structural-validation"], [0, 6, 1, "cmdoption-runoak-validate-O", "-O"], [0, 6, 1, "cmdoption-runoak-validate-R", "-R"], [0, 6, 1, "cmdoption-runoak-validate-o", "-o"], [0, 6, 1, "cmdoption-runoak-validate-arg-TERMS", "TERMS"]], "runoak-viz": [[0, 6, 1, "cmdoption-runoak-viz-add-mrcas", "--add-mrcas"], [0, 6, 1, "cmdoption-runoak-viz-C", "--configure"], [0, 6, 1, "cmdoption-runoak-viz-down", "--down"], [0, 6, 1, "cmdoption-runoak-viz-gap-fill", "--gap-fill"], [0, 6, 1, "cmdoption-runoak-viz-max-hops", "--max-hops"], [0, 6, 1, "cmdoption-runoak-viz-meta", "--meta"], [0, 6, 1, "cmdoption-runoak-viz-add-mrcas", "--no-add-mrcas"], [0, 6, 1, "cmdoption-runoak-viz-down", "--no-down"], [0, 6, 1, "cmdoption-runoak-viz-gap-fill", "--no-gap-fill"], [0, 6, 1, "cmdoption-runoak-viz-meta", "--no-meta"], [0, 6, 1, "cmdoption-runoak-viz-view", "--no-view"], [0, 6, 1, "cmdoption-runoak-viz-o", "--output"], [0, 6, 1, "cmdoption-runoak-viz-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-viz-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-viz-S", "--stylemap"], [0, 6, 1, "cmdoption-runoak-viz-view", "--view"], [0, 6, 1, "cmdoption-runoak-viz-C", "-C"], [0, 6, 1, "cmdoption-runoak-viz-O", "-O"], [0, 6, 1, "cmdoption-runoak-viz-S", "-S"], [0, 6, 1, "cmdoption-runoak-viz-o", "-o"], [0, 6, 1, "cmdoption-runoak-viz-p", "-p"], [0, 6, 1, "cmdoption-runoak-viz-arg-TERMS", "TERMS"]], "runoak": [[0, 6, 1, "cmdoption-runoak-a", "--add"], [0, 6, 1, "cmdoption-runoak-g", "--associations"], [0, 6, 1, "cmdoption-runoak-G", "--associations-type"], [0, 6, 1, "cmdoption-runoak-autosave", "--autosave"], [0, 6, 1, "cmdoption-runoak-import-depth", "--import-depth"], [0, 6, 1, "cmdoption-runoak-i", "--input"], [0, 6, 1, "cmdoption-runoak-I", "--input-type"], [0, 6, 1, "cmdoption-runoak-merge", "--merge"], [0, 6, 1, "cmdoption-runoak-metamodel-mappings", "--metamodel-mappings"], [0, 6, 1, "cmdoption-runoak-named-prefix-map", "--named-prefix-map"], [0, 6, 1, "cmdoption-runoak-autosave", "--no-autosave"], [0, 6, 1, "cmdoption-runoak-merge", "--no-merge"], [0, 6, 1, "cmdoption-runoak-q", "--no-quiet"], [0, 6, 1, "cmdoption-runoak-stacktrace", "--no-stacktrace"], [0, 6, 1, "cmdoption-runoak-other-languages", "--other-languages"], [0, 6, 1, "cmdoption-runoak-l", "--preferred-language"], [0, 6, 1, "cmdoption-runoak-prefix", "--prefix"], [0, 6, 1, "cmdoption-runoak-q", "--quiet"], [0, 6, 1, "cmdoption-runoak-requests-cache-db", "--requests-cache-db"], [0, 6, 1, "cmdoption-runoak-save-as", "--save-as"], [0, 6, 1, "cmdoption-runoak-stacktrace", "--stacktrace"], [0, 6, 1, "cmdoption-runoak-v", "--verbose"], [0, 6, 1, "cmdoption-runoak-W", "--wrap-adapter"], [0, 6, 1, "cmdoption-runoak-G", "-G"], [0, 6, 1, "cmdoption-runoak-I", "-I"], [0, 6, 1, "cmdoption-runoak-W", "-W"], [0, 6, 1, "cmdoption-runoak-a", "-a"], [0, 6, 1, "cmdoption-runoak-g", "-g"], [0, 6, 1, "cmdoption-runoak-i", "-i"], [0, 6, 1, "cmdoption-runoak-l", "-l"], [0, 6, 1, "cmdoption-runoak-q", "-q"], [0, 6, 1, "cmdoption-runoak-v", "-v"]]}, "objtypes": {"0": "py:class", "1": "py:method", "2": "py:attribute", "3": "py:module", "4": "py:function", "5": "py:property", "6": "std:cmdoption"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "method", "Python method"], "2": ["py", "attribute", "Python attribute"], "3": ["py", "module", "Python module"], "4": ["py", "function", "Python function"], "5": ["py", "property", "Python property"], "6": ["std", "cmdoption", "program option"]}, "titleterms": {"command": [0, 1100, 1129, 1132, 1133, 1136, 1137, 1141, 1143, 1148, 1149, 1151, 1153, 1156, 1158, 1165, 1171, 1176], "line": [0, 1100, 1133, 1136, 1137, 1141, 1143, 1148, 1149, 1151, 1153, 1156, 1158, 1165, 1171, 1176], "gener": [0, 2, 1102, 1113, 1114], "guidelin": [0, 2], "common": 0, "pattern": [0, 2, 1113], "term": [0, 290, 364, 541, 942, 1100, 1129], "list": [0, 234, 1100], "predic": [0, 75, 182, 286, 351, 648, 957, 958, 1077, 1129], "runoak": 0, "alias": [0, 212, 213, 381, 386, 393, 394, 405, 433, 441, 443, 447, 460, 462, 472, 473, 488, 522, 541, 578, 781, 1107], "ancestor": [0, 1104, 1117, 1129, 1135], "annot": [0, 386, 393, 479, 554, 847, 849, 855, 856, 857, 860, 861, 862, 868, 869, 870, 873, 874, 876, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 898, 899, 904, 911, 912, 915, 996, 1001, 1024, 1102, 1108, 1116, 1123, 1129, 1151, 1153, 1158, 1180], "appli": [0, 1136], "obsolet": [0, 1115, 1192], "taxon": [0, 940, 953, 966, 967, 1190], "constraint": [0, 953, 967], "associ": [0, 3, 31, 32, 46, 1108, 1165], "matrix": 0, "axiom": [0, 1, 372, 485, 1115], "cach": [0, 1105], "clear": 0, "l": 0, "definit": [0, 426, 575, 1113, 1123], "descend": 0, "diff": [0, 162, 163], "via": [0, 1123], "map": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1110, 1114, 1123, 1149, 1158, 1171], "disjoint": 0, "dump": 0, "enrich": [0, 118, 125, 1158, 1167], "expand": 0, "subset": [0, 1, 46, 125, 163, 234, 279, 331, 437, 464, 477, 478, 499, 500, 501, 528, 529, 540, 613, 717, 780, 882, 953, 1001, 1067, 1178, 1188], "extract": 0, "fill": 0, "tabl": [0, 1127], "logic": [0, 1113, 1115], "synonym": [0, 289, 321, 362, 363, 467, 662, 1104, 1107], "info": [0, 1002, 1068], "inform": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1118], "content": [0, 202, 1103, 1111, 1118, 1120, 1127, 1128, 1143, 1152, 1164, 1170], "label": [0, 1, 147, 165, 439, 625, 784, 885, 954, 1100, 1116, 1192], "languag": [0, 626, 1107, 1109, 1123], "leaf": 0, "lexmatch": 0, "lint": 0, "migrat": 0, "curi": [0, 1, 6, 95, 135, 204, 252, 297, 375, 490, 678, 745, 818, 923, 971, 1029, 1100, 1110, 1192], "normal": 0, "ontologi": [0, 1, 162, 163, 533, 534, 613, 835, 897, 1100, 1102, 1104, 1105, 1109, 1116, 1124, 1127, 1135, 1136, 1140, 1155, 1166, 1182, 1185, 1188, 1192], "metadata": [0, 534, 613, 1107, 1115, 1124, 1192], "version": [0, 474, 917, 1124], "path": 0, "prefix": [0, 1, 354, 452, 453, 476, 509, 902, 936, 940, 1110], "queri": [0, 1100, 1102, 1110, 1113, 1129], "relationship": [0, 1, 287, 356, 1117, 1131, 1192], "rollup": 0, "root": 0, "search": [0, 717, 735, 1102, 1107, 1129, 1149, 1163, 1176, 1193], "set": [0, 1100], "apikei": 0, "sibl": 0, "similar": [0, 780, 801, 1118, 1177], "pair": 0, "singleton": 0, "statist": [0, 882, 910, 1104, 1129, 1135, 1179], "categori": [0, 161, 228, 557, 707, 997, 1062], "termset": 0, "transform": [0, 291, 367], "tree": [0, 1129], "valid": [0, 476, 509, 936, 940, 1067, 1113, 1123, 1124, 1135, 1181], "multipl": [0, 1124], "viz": 0, "concept": [1, 1109, 1118, 1130, 1131], "element": [1, 276, 328], "import": [1, 611], "within": 1, "uri": [1, 28, 113, 159, 225, 274, 325, 415, 547, 702, 768, 843, 944, 994, 1056, 1110, 1192], "identifi": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1110], "edg": [1, 384, 431, 1116, 1117], "format": [1, 1102, 1104, 1105, 1109, 1146], "statement": 1, "name": [1, 241, 282, 341], "contribut": [2, 1101, 1102], "report": [2, 953, 1049], "issu": [2, 1126], "give": 2, "feedback": 2, "document": [2, 1127, 1148, 1156, 1164], "code": [2, 1100, 1130, 1132, 1149, 1151, 1153, 1154, 1155, 1157, 1158, 1159, 1160, 1161, 1162, 1163], "understand": [2, 1105], "design": [2, 1099, 1100, 1113], "us": [2, 1099, 1100, 1102, 1105, 1107, 1113, 1117, 1123, 1124, 1129, 1165, 1171], "pleas": 2, "make": [2, 1100], "pull": 2, "request": 2, "all": [2, 1102], "alwai": 2, "write": [2, 1126], "test": [2, 322, 365, 1126], "how": [2, 1100, 1101, 1102, 1104, 1105, 1120, 1123, 1124, 1126, 1133], "plugin": [2, 1123, 1126, 1134], "new": [2, 1126, 1130], "subcommand": 2, "notebook": [2, 1139], "add": 2, "adapt": [2, 1123, 1148, 1149, 1150, 1151, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1182], "implement": [2, 1118, 1126, 1140, 1152, 1163], "util": [2, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191], "function": [2, 1182], "datamodel": [2, 125, 202, 331, 336, 437, 717, 735, 882, 953, 1001, 1067, 1134, 1176, 1187, 1193], "releas": [2, 1126], "pypi": [2, 1126, 1129], "class": [3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 36, 37, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 153, 157, 161, 163, 166, 167, 168, 170, 171, 174, 175, 176, 177, 180, 181, 183, 184, 185, 186, 188, 189, 192, 193, 194, 198, 199, 212, 213, 217, 223, 227, 228, 229, 230, 231, 232, 233, 234, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 262, 263, 264, 265, 269, 276, 277, 278, 279, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 327, 328, 329, 330, 331, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 526, 527, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 559, 560, 561, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 579, 580, 582, 583, 584, 585, 586, 587, 588, 589, 591, 592, 593, 594, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 627, 635, 636, 637, 638, 644, 645, 646, 647, 648, 649, 652, 655, 657, 658, 659, 660, 661, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 677, 692, 693, 695, 696, 704, 705, 706, 707, 708, 709, 710, 711, 716, 717, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 761, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 864, 865, 866, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 879, 880, 881, 882, 883, 885, 886, 887, 888, 889, 890, 892, 893, 894, 895, 896, 897, 898, 899, 901, 902, 903, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1055, 1058, 1059, 1060, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1142, 1167], "inherit": [3, 17, 22, 39, 40, 47, 48, 49, 50, 51, 52, 54, 55, 56, 60, 61, 63, 67, 68, 69, 70, 71, 75, 76, 80, 81, 87, 166, 167, 168, 170, 171, 173, 175, 176, 177, 181, 185, 186, 188, 189, 191, 193, 194, 196, 199, 249, 264, 265, 294, 309, 310, 372, 373, 380, 381, 382, 385, 393, 403, 405, 411, 417, 476, 480, 481, 482, 483, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 527, 530, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 588, 589, 590, 591, 592, 593, 595, 596, 597, 598, 599, 600, 601, 603, 604, 608, 609, 610, 614, 615, 616, 625, 626, 627, 628, 629, 631, 632, 633, 634, 635, 641, 643, 644, 645, 646, 647, 649, 650, 651, 652, 653, 654, 656, 658, 659, 660, 661, 662, 664, 665, 666, 668, 670, 672, 673, 674, 761, 765, 766, 772, 777, 778, 781, 782, 783, 794, 798, 799, 800, 804, 808, 809, 811, 824, 827, 828, 838, 840, 842, 847, 848, 849, 855, 858, 859, 860, 861, 867, 868, 869, 870, 873, 877, 878, 883, 886, 890, 892, 893, 894, 896, 898, 899, 903, 905, 908, 909, 911, 915, 916, 936, 939, 940, 942, 988, 1028, 1035, 1040, 1041, 1043, 1047, 1048, 1049, 1050, 1059, 1060], "slot": [3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 140, 148, 153, 157, 161, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 212, 213, 214, 217, 223, 227, 228, 229, 230, 231, 232, 233, 234, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 262, 263, 264, 265, 269, 273, 276, 277, 278, 279, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 327, 328, 329, 330, 331, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 404, 405, 406, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 488, 489, 497, 499, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 677, 685, 692, 693, 694, 695, 696, 698, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 761, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1051, 1055, 1058, 1059, 1060, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097], "usag": [3, 23, 24, 41, 42, 93, 153, 164, 165, 173, 179, 182, 191, 196, 197, 212, 217, 223, 250, 262, 264, 265, 269, 295, 307, 309, 310, 311, 316, 317, 318, 321, 322, 373, 380, 382, 384, 385, 386, 388, 393, 394, 396, 402, 403, 410, 411, 412, 417, 476, 479, 480, 481, 484, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 512, 521, 522, 526, 532, 533, 535, 536, 537, 540, 542, 630, 677, 693, 695, 743, 764, 765, 813, 815, 817, 824, 825, 827, 835, 838, 839, 842, 936, 939, 940, 941, 978, 988, 991, 1028, 1043, 1047, 1050, 1055, 1058, 1060, 1100, 1133, 1143, 1148], "schema": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 232, 233, 235, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 710, 711, 712, 713, 714, 715, 716, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1124], "sourc": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1108], "linkml": [3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 109, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 140, 148, 153, 157, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 212, 213, 214, 217, 223, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 262, 263, 264, 265, 269, 273, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 397, 402, 403, 404, 405, 406, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 495, 497, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 526, 527, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 676, 677, 685, 692, 693, 694, 695, 696, 698, 704, 705, 706, 707, 708, 709, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 761, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 879, 880, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 922, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 993, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1051, 1055, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097], "direct": [3, 4, 17, 20, 21, 22, 23, 24, 92, 93, 94, 122, 153, 157, 212, 213, 217, 223, 249, 250, 262, 263, 264, 265, 269, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 526, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 677, 692, 693, 695, 696, 743, 761, 764, 765, 766, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 936, 939, 940, 941, 942, 978, 988, 989, 990, 991, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1055, 1058, 1059, 1060, 1117], "associationchang": 4, "comment": [4, 6, 19, 28, 37, 60, 77, 84, 95, 107, 113, 135, 151, 159, 204, 213, 220, 225, 228, 252, 268, 274, 297, 315, 325, 352, 375, 382, 386, 389, 399, 405, 415, 422, 424, 431, 434, 441, 452, 460, 490, 507, 531, 547, 560, 563, 575, 596, 603, 625, 665, 678, 691, 702, 737, 745, 760, 768, 785, 818, 825, 834, 843, 889, 901, 923, 935, 944, 948, 956, 965, 971, 984, 994, 1029, 1045, 1056], "type": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 25, 26, 27, 28, 29, 46, 91, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 110, 111, 112, 113, 114, 125, 134, 135, 136, 137, 138, 139, 141, 142, 143, 144, 145, 146, 147, 149, 150, 151, 154, 155, 156, 158, 159, 160, 163, 200, 203, 204, 205, 206, 207, 208, 209, 210, 211, 215, 216, 218, 219, 220, 221, 222, 224, 225, 226, 234, 245, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 266, 267, 268, 270, 271, 272, 274, 275, 279, 292, 293, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 313, 314, 315, 319, 320, 323, 325, 326, 331, 369, 370, 374, 375, 376, 377, 378, 379, 383, 387, 390, 391, 392, 395, 398, 399, 400, 408, 409, 413, 414, 415, 416, 418, 437, 468, 469, 486, 487, 490, 491, 492, 493, 494, 496, 498, 513, 514, 515, 516, 517, 523, 524, 525, 531, 538, 539, 543, 544, 546, 547, 548, 613, 668, 669, 675, 678, 679, 680, 681, 682, 683, 684, 686, 687, 688, 689, 690, 691, 697, 699, 700, 701, 702, 703, 717, 741, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 762, 763, 767, 768, 769, 770, 780, 810, 814, 818, 819, 820, 821, 822, 823, 826, 829, 830, 831, 832, 833, 834, 836, 837, 841, 843, 844, 882, 914, 921, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 937, 938, 943, 944, 945, 953, 970, 971, 972, 973, 974, 975, 976, 977, 979, 980, 981, 982, 983, 984, 985, 986, 987, 992, 994, 995, 1001, 1026, 1027, 1029, 1030, 1031, 1032, 1033, 1034, 1036, 1037, 1038, 1039, 1042, 1044, 1045, 1052, 1053, 1054, 1056, 1057, 1067, 1093, 1095], "boolean": [5, 91, 134, 203, 251, 296, 374, 486, 675, 744, 814, 921, 970, 1027, 1100, 1193], "date": [7, 40, 96, 136, 205, 253, 298, 376, 491, 572, 679, 746, 819, 924, 972, 1030, 1105], "dateordatetim": [8, 97, 137, 206, 254, 299, 377, 492, 680, 747, 820, 925, 973, 1031], "datetim": [9, 98, 138, 207, 255, 300, 378, 493, 681, 748, 821, 926, 974, 1032], "decim": [10, 99, 139, 208, 256, 301, 379, 494, 682, 749, 822, 927, 975, 1033], "doubl": [11, 100, 141, 209, 257, 302, 383, 496, 683, 750, 823, 928, 976, 1034], "float": [12, 101, 143, 210, 258, 303, 387, 498, 684, 751, 826, 929, 977, 1036], "integ": [13, 102, 144, 211, 259, 304, 390, 513, 686, 752, 829, 930, 979, 1037], "jsonpath": [14, 103, 145, 215, 260, 305, 391, 515, 687, 754, 830, 931, 980, 1038], "jsonpoint": [15, 104, 146, 216, 261, 306, 392, 516, 688, 755, 831, 932, 981, 1039], "ncname": [16, 105, 149, 218, 266, 313, 395, 524, 689, 756, 832, 933, 982, 1042], "negatedassoci": 17, "nodeidentifi": [18, 106, 150, 219, 267, 314, 398, 525, 690, 758, 833, 934, 983, 1044], "objectidentifi": [19, 107, 151, 220, 268, 315, 399, 531, 691, 760, 834, 935, 984, 1045], "pairwisecoassoci": 20, "parserconfigur": 21, "positiveornegativeassoci": 22, "propertyvalu": [23, 405], "rollupgroup": 24, "sparqlpath": [25, 110, 155, 221, 270, 319, 408, 538, 699, 762, 836, 937, 986, 1052], "string": [26, 111, 156, 222, 271, 320, 409, 539, 700, 763, 837, 938, 987, 1053], "time": [27, 112, 158, 224, 272, 323, 414, 544, 701, 767, 841, 943, 992, 1054], "uriorcuri": [29, 114, 160, 226, 275, 326, 416, 548, 703, 769, 844, 945, 995, 1057], "aggregator_knowledge_sourc": 30, "applic": [30, 32, 33, 34, 36, 37, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 161, 166, 167, 168, 170, 171, 174, 175, 176, 177, 180, 181, 183, 184, 185, 186, 188, 189, 192, 193, 194, 198, 199, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 419, 420, 421, 422, 423, 424, 425, 426, 427, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 510, 511, 527, 549, 550, 551, 552, 553, 554, 555, 556, 557, 559, 560, 561, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 579, 580, 582, 583, 584, 585, 586, 587, 588, 589, 591, 592, 593, 594, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 627, 635, 636, 637, 638, 644, 645, 646, 647, 648, 649, 652, 655, 657, 658, 659, 660, 661, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 704, 705, 706, 707, 708, 709, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 771, 772, 773, 774, 775, 776, 777, 778, 779, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 864, 865, 866, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 879, 880, 881, 883, 885, 886, 887, 888, 889, 890, 892, 893, 894, 895, 896, 897, 898, 899, 901, 902, 903, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097], "properti": [30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 161, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 510, 511, 518, 519, 520, 527, 535, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1116], "associations_for_subjects_in_common": 33, "closure_delta": 34, "closure_information_content_delta": 35, "closure_pred": 36, "core_tripl": 38, "creation_d": [39, 568], "denormalized_slot": 41, "mixin": [41, 42, 164, 165, 173, 179, 182, 191, 196, 197, 481, 489, 497, 502, 503, 504, 505, 506, 507, 508, 526, 532, 536, 537, 630, 978], "diff_slot": 42, "evidence_typ": 43, "group_object": 44, "include_association_attribut": 45, "oak": [46, 1099, 1100, 1102, 1107, 1108, 1109, 1111, 1113, 1114, 1123, 1127, 1129, 1164, 1192], "data": [46, 234, 1099, 1107, 1108, 1118, 1171], "model": [46, 234, 1008, 1099, 1107, 1108, 1113, 1118, 1123, 1162, 1171], "enumer": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 953, 1001, 1067], "is_creat": 47, "is_delet": 48, "is_gener": 49, "is_migr": 50, "is_speci": 51, "modification_d": 52, "negat": 53, "new_dat": 54, "new_object": 55, "new_pred": 56, "number_subject_unique_to_entity1": 57, "number_subject_unique_to_entity2": 58, "number_subjects_in_common": 59, "object": [60, 179, 638, 1073], "object1": 61, "object1_label": 62, "object2": 63, "object2_label": 64, "object_closur": 65, "object_closure_label": 66, "object_label": [67, 726, 795, 1012], "old_dat": 68, "old_object": 69, "old_object_obsolet": 70, "old_pred": 71, "original_object": 72, "original_pred": 73, "original_subject": 74, "predicate_label": 76, "preserve_negated_associ": 77, "primary_knowledge_sourc": 78, "property_valu": 79, "publication_is_ad": 80, "publication_is_delet": 81, "public": 82, "sub_group": 83, "subject": [84, 197, 965, 1086], "subject_closur": 85, "subject_closure_label": 86, "subject_label": [87, 805, 1019], "subjects_in_common": 88, "summary_group": 89, "supporting_object": 90, "classenrichmentconfigur": 92, "classenrichmentresult": 93, "classenrichmentresultset": 94, "posit": [108, 152, 243, 985], "enum": [109, 140, 148, 214, 273, 324, 397, 404, 406, 495, 676, 685, 694, 698, 922, 993, 1051, 1061], "sortfieldenum": 109, "permiss": [109, 140, 148, 214, 273, 324, 397, 401, 404, 406, 407, 495, 676, 685, 694, 698, 922, 993, 1051, 1061], "valu": [109, 140, 148, 214, 273, 324, 397, 401, 404, 406, 407, 495, 676, 685, 694, 698, 922, 993, 1051, 1061], "ancestor_of_more_informative_result": 115, "background_count": 116, "background_tot": 117, "class_id": 119, "class_label": 120, "descendant_of_more_informative_result": 121, "false_discovery_r": 123, "fold_enrich": 124, "p_valu": 126, "p_value_adjust": 127, "p_value_cutoff": 128, "probabl": 129, "rank": [130, 732], "result": [131, 183, 734, 1050, 1067, 1082, 1098, 1100, 1129], "sample_count": 132, "sample_tot": 133, "diffcategori": 140, "entityrefer": 142, "mappingcardinalityenum": 148, "relationaldiff": 153, "structurediffresultset": 157, "cross": [162, 163, 1114], "is_funct": 164, "left_object_id": 166, "left_object_is_funct": 167, "left_object_label": 168, "left_object_nam": 169, "left_predicate_id": 170, "left_predicate_label": 171, "left_predicate_nam": 172, "left_sid": 173, "left_sourc": 174, "left_subject_id": 175, "left_subject_is_funct": 176, "left_subject_label": 177, "left_subject_nam": 178, "object_mapping_cardin": 180, "object_mapping_pred": 181, "right_intermediate_id": 184, "right_object_id": 185, "right_object_label": 186, "right_object_nam": 187, "right_predicate_id": 188, "right_predicate_label": 189, "right_predicate_nam": 190, "right_sid": 191, "right_sourc": 192, "right_subject_id": 193, "right_subject_label": 194, "right_subject_nam": 195, "side": 196, "subject_mapping_cardin": 198, "subject_mapping_pred": 199, "funowl": [201, 1150, 1182], "itemlist": [212, 236, 238], "itemlistcollect": 213, "itemlistordertyp": 214, "listitem": 217, "thing": [223, 542], "additionaltyp": 227, "descript": [229, 327, 871, 950], "elementid": 230, "id": [231, 436, 476, 509, 608, 779, 881, 936, 940, 952, 999, 1066, 1100], "idtyp": 232, "exampl": [232, 245, 1100, 1102, 1110, 1117, 1126, 1130, 1132, 1135, 1136, 1137, 1140, 1149, 1151, 1153, 1158, 1159, 1182], "item": [234, 235], "itemlistel": 237, "itemmetadatamap": 239, "keyword": 240, "numberofitem": 242, "previousitem": 244, "url": [246, 671, 1096], "wasgeneratedbi": 247, "kgcl": [248, 1136], "activ": [249, 294], "ani": [250, 295, 484, 1102, 1115], "lexicalgroup": [262, 307], "lexicalindex": [263, 308], "lexicaltransform": [264, 309], "lexicaltransformationpipelin": [265, 310], "relationshiptoterm": [269, 318], "transformationtyp": [273, 324, 993], "element_term": [277, 329], "group": [278, 330], "lexic": [279, 280, 333, 1100, 1102, 1186], "index": [279, 280, 281, 333, 334], "lexican": [281, 334], "param": [283, 346], "pipelin": [284, 285, 347, 348], "mappingrul": 311, "mappingrulecollect": 312, "postcondit": [316, 349], "precondit": [317, 350], "rule": [331, 335, 336, 358], "input": [332, 1100, 1159], "mapping_source_one_of": 337, "match": [338, 629], "match_scop": 339, "minimum_confid": 340, "object_match_field_one_of": 342, "object_source_one_of": 343, "onewai": 344, "output": 345, "predicate_id": [352, 1015, 1078], "predicate_id_one_of": 353, "qualifi": 355, "replac": 357, "subject_match_field_one_of": 360, "subject_source_one_of": 361, "the_rul": 366, "transformations_included_in": 368, "weight": 371, "see": [371, 400, 413, 418, 434, 436, 460, 477, 478, 495, 596, 1100], "also": [371, 400, 413, 418, 434, 436, 460, 477, 478, 495, 596], "basicpropertyvalu": [373, 420], "definitionpropertyvalu": 380, "disjointclassexpressionsaxiom": [381, 428], "domainrangeaxiom": [382, 430], "equivalentnodesset": [385, 432], "existentialrestrictionexpress": 386, "graph": [388, 435, 1100, 1102, 1107, 1113, 1117, 1129, 1133, 1143, 1144, 1145, 1146, 1147, 1154, 1175, 1184, 1185], "graphdocu": 389, "logicaldefinitionaxiom": [393, 442], "meta": [394, 443], "node": [396, 446, 1043], "nodetypeenum": 397, "oboidentifierstr": 400, "predsenum": 401, "prefixdeclar": 402, "propertychainaxiom": [403, 454, 649], "propertytypeenum": 404, "scopeenum": 406, "scopesenum": 407, "subsetdefinit": [410, 463], "synonympropertyvalu": 411, "synonymtypedefinit": [412, 466], "synonymtypeidentifierstr": 413, "xrefpropertyvalu": 417, "xrefstr": 418, "allvaluesfromedg": 419, "chainpredicateid": 421, "classexpress": [422, 489], "classid": 423, "definedclassid": 425, "deprec": [427, 578], "domainclassid": 429, "fillerid": 433, "genusid": 434, "obograph": [437, 1132, 1172, 1187], "isexact": 438, "lang": 440, "lbl": 441, "namespac": 444, "nodeid": 445, "obj": 447, "obographs_datamodel": 448, "obographs_linkml_model": 449, "pred": 450, "predicateid": 451, "propertyid": 455, "propertytyp": 456, "rangeclassid": 457, "representativenodeid": 458, "representitivenodeid": 459, "restrict": [460, 537], "scope": 461, "sub": 462, "synonymtyp": 465, "unionequivalentto": 470, "unionequivalenttoexpress": 471, "val": 472, "valtyp": 473, "xref": 475, "agent": [476, 813, 846], "allotropepermittedprofil": 477, "allotroperequiredprofil": 478, "annotationproperti": 480, "annotationpropertymixin": 481, "anonym": 482, "anonymousclassexpress": 483, "curieliter": 487, "definitionconstraintcompon": 495, "express": 497, "gopermittedprofil": 499, "gorecommendedprofil": 500, "gorequiredprofil": 501, "hascategori": 502, "haslifecycl": 503, "hasmap": 504, "hasminimalmetadata": 505, "hasproven": 506, "hassynonym": 507, "hasuserinform": 508, "homosapien": 509, "iedb_alternative_term": 510, "isa_alternative_term": 511, "imag": [512, 609], "irityp": 514, "labeltyp": 517, "ncit_definition_sourc": 518, "ncit_term_sourc": 519, "ncit_term_typ": 520, "namedindividu": 521, "namedobject": 522, "narrativetext": 523, "notobsoleteaspect": 526, "obo_foundry_unique_label": 527, "todo": [527, 549, 552, 553, 561, 568, 576, 580, 582, 585, 595, 603, 615, 616, 649, 652, 654, 655, 659, 666, 693, 771, 957, 1047, 1059], "obipermittedprofil": 528, "obirequiredprofil": 529, "objectproperti": 530, "obsoleteaspect": 532, "propertyexpress": 536, "tidystr": 543, "transitiveproperti": 545, "urlliter": 546, "allvaluesfrom": 549, "alternative_term": 550, "annotatedproperti": 551, "annotatedsourc": 552, "annotatedtarget": 553, "broadmatch": 555, "cardin": 556, "changenot": 558, "closematch": 559, "complementof": 561, "conformsto": 562, "consid": 563, "contributor": 564, "core_properti": 565, "creat": [566, 1126, 1130], "created_bi": 567, "creator": 569, "curator_not": 570, "database_cross_refer": 571, "date_retriev": 573, "defaultlanguag": 574, "definition_sourc": 576, "depicted_bi": 577, "disconnected_from": 579, "disjointwith": 580, "distinctmemb": 581, "domain": 582, "editor_not": 583, "editor_preferred_term": 584, "equivalentclass": 585, "equivalentproperti": 586, "evid": 587, "exactmatch": 588, "example_of_usag": 589, "excluded_axiom": 590, "excluded_from_qc_check": 591, "excluded_subclassof": 592, "excluded_synonym": 593, "external_ontologi": 594, "hasvalu": 595, "has_alternative_id": 596, "has_axiom_label": 597, "has_broad_synonym": 598, "has_curation_statu": 599, "has_exact_synonym": 600, "has_narrow_synonym": 601, "has_obo_namespac": 602, "has_obsolescence_reason": 603, "has_ontology_root_term": 604, "has_rank": 605, "has_related_synonym": 606, "has_synonym_typ": 607, "imported_from": 610, "in_subset": 612, "informative_properti": 614, "intersectionof": 615, "inverseof": 616, "isdefinedbi": 617, "is_a_defining_property_chain_axiom": 618, "is_a_defining_property_chain_axiom_where_second_argument_is_reflex": 619, "is_class_level": 620, "is_cycl": 621, "is_inf": 622, "is_metadata_tag": 623, "is_transit": 624, "licens": 627, "logical_pred": 628, "match_aspect": 630, "maxqualifiedcardin": 631, "member": 632, "mincardin": 633, "minqualifiedcardin": 634, "narrowmatch": 635, "never_in_taxon": 636, "note": [637, 1117, 1156], "oboinowl_id": 639, "oboinowl_ontologi": 640, "obsoletion_related_properti": 641, "omo": [642, 1192], "onclass": 643, "onproperti": 644, "oneof": 645, "ontology_term_request": 646, "page": 647, "provenance_properti": 650, "qualifiedcardin": 651, "rang": 652, "reification_pred": 653, "samea": 654, "seealso": 655, "shortcut_annotation_properti": 656, "shorthand": 657, "should_conform_to": 658, "somevaluesfrom": 659, "subclassof": 661, "temporal_interpret": 663, "term_editor": 664, "term_replaced_bi": 665, "term_tracker_item": 666, "titl": [667, 913], "unionof": 670, "versioniri": 672, "versioninfo": 673, "version_properti": 674, "booleanoper": 676, "complexqueri": 677, "graphfunct": 685, "pathexpress": 692, "searchbaseconfigur": 693, "searchproperti": 694, "searchresult": 695, "searchresultset": 696, "searchterm": 697, "searchtermsyntax": 698, "all_of": 704, "any_of": 705, "atom": 706, "configur": 708, "cursor": 709, "force_case_insensit": 710, "graph_pred": 711, "include_alias": [712, 1000], "include_definit": 713, "include_id": 714, "include_label": 715, "include_obsoletes_in_result": 716, "is_complet": 718, "is_fuzzi": 719, "is_parti": 720, "is_regular_express": 721, "limit": [722, 1004], "matches_full_search_term": 723, "none_of": 724, "object_id": [725, 793, 1011, 1074], "object_match_field": 727, "object_sourc": [728, 796, 1013], "object_source_vers": 729, "path_to": 730, "result_count": 733, "search_term": [736, 737], "snippet": 738, "syntax": [739, 1182, 1193], "travers": [740, 1117, 1185], "semsql": 742, "bestmatch": 743, "itemcount": 753, "negativelogvalu": 757, "nonnegativefloat": 759, "pairwisesimilar": 761, "terminfo": 764, "termpairwisesimilar": 765, "termsetpairwisesimilar": 766, "zerotoon": 770, "ancestor_id": 771, "ancestor_information_cont": 772, "ancestor_label": 773, "ancestor_sourc": 774, "average_scor": 775, "best_scor": 776, "cosine_similar": 777, "dice_similar": 778, "semant": [780, 1177], "information_cont": 781, "intersection_count": 782, "jaccard_similar": 783, "match_sourc": 785, "match_source_label": 786, "match_subsum": 787, "match_subsumer_label": 788, "match_target": 789, "match_target_label": 790, "metric": 791, "object_best_match": 792, "object_information_cont": 794, "object_termset": 797, "overlap_coeffici": 798, "phenodigm_scor": 799, "score": 800, "subject_best_match": 802, "subject_id": [803, 1087], "subject_information_cont": 804, "subject_sourc": [806, 1020], "subject_termset": 807, "subsumed_by_scor": 808, "subsumes_scor": 809, "union_count": 811, "sssom": [812, 1114, 1129], "changetypestatist": 815, "contributorrol": 816, "contributorstatist": 817, "facetstatist": 824, "specif": [824, 827, 838], "facetedcount": 825, "globalstatist": 827, "groupedstatist": 828, "summarystatisticcollect": 838, "summarystatisticscalculationact": 839, "summarystatisticsreport": 840, "ungroupedstatist": 842, "acted_on_behalf_of": 845, "annotation_property_count": 847, "anonymous_class_expression_count": 848, "anonymous_individual_count": 849, "by_categori": 850, "by_ontologi": 851, "by_subset": 852, "by_taxon": 853, "change_summari": 854, "class_count": 855, "class_count_by_categori": 856, "class_count_by_subset": 857, "class_count_excluding_deprec": 858, "class_count_with_definit": 859, "class_count_with_text_definit": 860, "class_count_without_text_definit": 861, "class_statistic_group": 862, "compared_with": 863, "contributor_id": 864, "contributor_nam": 865, "contributor_summari": 866, "count_statist": 867, "datatype_property_count": 868, "deprecated_class_count": 869, "deprecated_object_property_count": 870, "description_logic_profil": 872, "distinct_synonym_count": 873, "edge_count_by_pred": 874, "ended_at_tim": 875, "entailed_edge_count_by_pred": 876, "equivalent_classes_axiom_count": 877, "equivalentclasses_axiom_count": 878, "facet": 879, "filtered_count": 880, "summari": [882, 910, 1179], "individual_count": 883, "individual_statistic_group": 884, "mapping_count": 886, "mapping_statement_count_by_object_sourc": 887, "mapping_statement_count_by_pred": 888, "mapping_statement_count_subject_by_object_sourc": 889, "merged_class_count": 890, "metadata_statistic_group": 891, "named_individual_count": 892, "non_deprecated_class_count": 893, "non_deprecated_object_property_count": 894, "normalization_com": 895, "object_property_count": 896, "ontology_count": 898, "owl_axiom_count": 899, "owl_statistic_group": 900, "partit": 901, "property_count": 903, "property_statistic_group": 904, "rdf_triple_count": 905, "role_count": 906, "started_at_tim": 907, "subclass_of_axiom_count": 908, "subset_count": 909, "synonym_statement_count": 911, "synonym_statement_count_by_pred": 912, "unsatisfiable_class_count": 915, "untyped_entity_count": 916, "version_info": 918, "was_associated_with": 919, "was_generated_bi": 920, "configurationopt": 922, "predicateterm": 936, "subjectterm": 939, "taxonconstraint": 941, "assert": 946, "candid": 947, "contradicted_bi": 949, "evolutionari": 951, "never_in": 955, "only_in": 956, "present_in": 959, "present_in_ancestor_of": 960, "redund": 961, "redundant_with": 962, "redundant_with_only_in": 963, "unsatisfi": 968, "via_term": 969, "hasspan": 978, "textannot": 988, "textannotationconfigur": 989, "textannotationresultset": 990, "textualel": 991, "confid": [998, 1063], "text": [1001, 1023, 1024, 1102, 1107, 1180], "is_longest_match": 1003, "match_str": 1005, "match_typ": 1006, "matches_whole_text": 1007, "object_alias": 1009, "object_categori": 1010, "parent_docu": 1014, "source_text": 1016, "subject_end": 1018, "subject_start": 1021, "subject_text_id": 1022, "token_exclusion_list": 1025, "constraintcompon": 1028, "externalreferencevalidationresult": 1035, "mappingvalidationresult": 1040, "namedresourc": 1041, "repairconfigur": 1046, "repairoper": 1047, "repairreport": 1048, "severityopt": 1051, "typeseveritykeyvalu": 1055, "validationconfigur": 1058, "validationreport": 1059, "validationresult": 1060, "validationresulttyp": 1061, "dry_run": 1064, "http_response_cod": 1065, "instanti": 1069, "max_number_results_per_typ": 1070, "modifi": 1071, "number_of_attempt": 1072, "object_info": 1075, "object_str": 1076, "problem": 1079, "prompt_info": 1080, "repair": 1081, "schema_path": 1083, "sever": 1084, "subject_info": 1088, "success": 1089, "suggested_modif": 1090, "suggested_pred": 1091, "time_check": 1092, "type_severity_map": 1094, "validation_configur": 1097, "validaton": 1098, "faq": [1099, 1100, 1101, 1102, 1103, 1104, 1105], "architectur": [1099, 1140], "what": [1099, 1100, 1102, 1104, 1109, 1126], "i": [1099, 1100, 1101, 1102, 1104, 1105, 1109, 1117, 1126], "an": [1099, 1100, 1104, 1109, 1124, 1126, 1135], "interfac": [1099, 1105, 1126, 1132, 1140, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1176, 1177, 1180, 1181], "iter": [1099, 1141], "why": [1099, 1100, 1102, 1105, 1109], "doe": [1099, 1100, 1102], "them": [1099, 1104], "so": 1099, "much": 1099, "do": [1100, 1101, 1102, 1104, 1105], "get": [1100, 1105, 1129], "help": [1100, 1102], "more": [1100, 1112, 1117, 1126], "want": [1100, 1105, 1109], "pass": 1100, "option": [1100, 1105], "error": [1100, 1105], "when": 1100, "p": 1100, "mean": 1100, "can": [1100, 1101, 1102], "entiti": [1100, 1110, 1115, 1118, 1192], "combin": [1100, 1193], "chain": [1100, 1129], "togeth": [1100, 1141], "unix": 1100, "style": 1100, "symbol": 1100, "visual": [1100, 1129, 1133], "subgraph": 1100, "over": [1100, 1102], "arch": 1100, "philosophi": 1100, "principl": 1100, "The": [1100, 1111, 1113], "isn": 1100, "t": [1100, 1102, 1105], "work": [1100, 1124, 1129, 1133, 1134, 1184, 1188], "wai": 1100, "expect": 1100, "stai": 1101, "involv": 1101, "ar": 1102, "tutori": [1102, 1128], "runnabl": 1102, "am": 1102, "familiar": 1102, "both": 1102, "python": [1102, 1114, 1130, 1135, 1137], "where": [1102, 1117], "should": [1102, 1115, 1117], "start": [1102, 1129], "find": 1102, "confus": 1102, "guid": [1102, 1111, 1120], "me": 1102, "call": [1102, 1141], "instal": [1102, 1123, 1124, 1129, 1130, 1133], "don": [1102, 1105], "know": 1102, "just": 1102, "bio": 1102, "access": [1102, 1104, 1109, 1127], "portal": [1102, 1192], "matport": 1102, "bioport": [1102, 1105, 1129, 1149, 1182], "triplestor": [1102, 1131], "ontobe": [1102, 1129, 1156, 1182], "ubergraph": [1102, 1118, 1129, 1131, 1163], "local": [1102, 1129], "file": [1102, 1105, 1119, 1129, 1135, 1136, 1159], "obo": [1102, 1104, 1105, 1107, 1113, 1124, 1129, 1136, 1143, 1144, 1145, 1146, 1147, 1154, 1159, 1160], "support": [1102, 1108], "owl": [1102, 1104, 1105, 1113, 1134, 1140, 1147, 1173, 1192], "reason": [1102, 1113, 1117], "we": 1104, "need": 1104, "now": 1104, "have": 1104, "chatgpt": 1104, "": 1104, "troubleshoot": 1105, "No": 1105, "messag": 1105, "api": [1105, 1149], "kei": [1105, 1149], "my": 1105, "won": 1105, "pars": 1105, "take": 1105, "too": 1105, "long": 1105, "load": 1105, "sqlite": [1105, 1124, 1135, 1182], "out": 1105, "method": 1105, "glossari": 1106, "case": [1107, 1116], "mine": 1107, "nlp": 1107, "differ": [1107, 1168], "commun": 1107, "approach": [1107, 1118, 1192], "repres": 1107, "represent": 1107, "simpl": [1107, 1160], "core": [1107, 1109], "hpo": 1107, "basic": [1107, 1109, 1129, 1130, 1131, 1137, 1166], "full": 1107, "curat": 1108, "background": [1108, 1118], "select": [1108, 1123], "further": [1108, 1110, 1113, 1114, 1115, 1116, 1118], "read": [1108, 1110, 1113, 1114, 1115, 1116, 1118], "would": 1109, "one": [1109, 1126], "standard": [1109, 1115], "prefixmap": [1110, 1192], "non": 1110, "default": [1110, 1118], "structur": 1110, "learn": 1112, "genu": 1113, "differentia": 1113, "form": 1113, "uberon": [1113, 1114], "nail": 1113, "analyz": 1113, "refer": 1114, "In": 1114, "look": [1115, 1116], "up": [1115, 1116], "convent": 1115, "signatur": 1115, "accompani": 1115, "provid": [1115, 1165, 1171], "addit": 1115, "context": 1115, "human": 1115, "machin": 1115, "merg": 1115, "primari": 1116, "custom": 1116, "multilingu": 1116, "other": [1116, 1129, 1135, 1140], "explor": 1117, "relat": [1117, 1175], "strategi": 1117, "entail": 1117, "yield": 1117, "than": 1117, "which": 1117, "A": 1117, "comput": 1118, "between": [1118, 1192], "jaccard": 1118, "aggreg": [1118, 1148], "measur": 1118, "compar": 1118, "vector": 1118, "base": 1118, "semsimian": 1118, "fhir": [1119, 1145], "convers": 1119, "cli": 1119, "config": 1119, "To": 1120, "larg": 1123, "llm": [1123, 1153], "framework": 1123, "ontogpt": 1123, "curategpt": 1123, "talisman": 1123, "conjunct": 1123, "exist": 1123, "tool": 1123, "suggest": 1123, "altern": [1123, 1124], "mixtral": 1123, "ollama": 1123, "litellm": 1123, "groq": 1123, "step": [1124, 1129], "1": [1124, 1129], "obtain": 1124, "2": [1124, 1130], "oaklib": [1124, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190], "3": [1124, 1131], "individu": 1124, "caveat": 1124, "your": [1124, 1135], "own": [1124, 1135], "thi": [1124, 1133], "analysi": 1124, "discuss": 1126, "tracker": 1126, "project": [1126, 1130], "selector": [1126, 1159, 1182], "kit": 1127, "indic": 1127, "part": [1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136], "from": [1129, 1143], "run": 1129, "librari": [1129, 1164], "introduct": [1129, 1137], "fetch": [1129, 1135], "abbrevi": 1129, "advanc": 1129, "paramet": 1129, "backend": [1129, 1131], "ontoport": 1129, "ol": [1129, 1155, 1182], "next": 1129, "poetri": 1130, "first": 1130, "extend": 1130, "connect": [1131, 1163], "oper": 1131, "4": 1132, "5": 1133, "graphviz": 1133, "obographviz": 1133, "programmat": 1133, "6": 1134, "With": [1134, 1135], "owlinterfac": 1134, "robot": 1134, "7": 1135, "download": 1135, "readi": 1135, "made": 1135, "build": 1135, "docker": 1135, "without": 1135, "rdbmss": 1135, "orm": [1135, 1162], "8": 1136, "chang": 1136, "about": [1136, 1154, 1157, 1159, 1160, 1163, 1192], "sqlite3": 1136, "jupyt": 1139, "partial": 1140, "complet": 1140, "best": 1141, "practic": 1141, "extern": 1141, "servic": [1141, 1155], "weav": 1141, "chunk": 1141, "abstract": 1142, "convert": [1143, 1144, 1145, 1146, 1147], "cx": 1144, "gilda": 1151, "initi": [1154, 1159, 1160, 1162], "lookup": 1155, "owleri": 1157, "pantherdb": 1158, "pronto": [1159, 1182], "sparql": 1161, "sql": 1162, "databas": 1162, "alchemi": 1162, "calcul": 1167, "dumper": 1169, "patcher": 1174, "scheme": 1182, "prontolib": 1182, "obosqlit": 1182, "apikey_manag": 1183, "networkx_bridg": 1184, "networkx": 1184, "relationship_walk": 1185, "lexical_index": 1186, "obograph_util": 1187, "slimmer_util": 1188, "slim": 1188, "table_fil": 1189, "layer": 1192, "rdf": 1192, "challeng": 1192}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "sphinx.ext.todo": 2, "sphinx.ext.intersphinx": 1, "sphinx": 60}, "alltitles": {"Command Line": [[0, "command-line"], [1136, "command-line"], [1141, "command-line"], [1156, "command-line"], [1176, "command-line"]], "General Guidelines": [[0, "general-guidelines"]], "Common Patterns": [[0, "common-patterns"]], "Term Lists": [[0, "term-lists"]], "Predicates": [[0, "predicates"]], "Commands": [[0, "commands"], [1132, "commands"]], "runoak": [[0, "runoak"]], "aliases": [[0, "runoak-aliases"]], "ancestors": [[0, "runoak-ancestors"]], "annotate": [[0, "runoak-annotate"]], "apply": [[0, "runoak-apply"]], "apply-obsolete": [[0, "runoak-apply-obsolete"]], "apply-taxon-constraints": [[0, "runoak-apply-taxon-constraints"]], "associations": [[0, "runoak-associations"]], "associations-matrix": [[0, "runoak-associations-matrix"]], "axioms": [[0, "runoak-axioms"]], "cache-clear": [[0, "runoak-cache-clear"]], "cache-ls": [[0, "runoak-cache-ls"]], "definitions": [[0, "runoak-definitions"]], "descendants": [[0, "runoak-descendants"]], "diff": [[0, "runoak-diff"]], "diff-associations": [[0, "runoak-diff-associations"]], "diff-terms": [[0, "runoak-diff-terms"]], "diff-via-mappings": [[0, "runoak-diff-via-mappings"]], "disjoints": [[0, "runoak-disjoints"]], "dump": [[0, "runoak-dump"]], "enrichment": [[0, "runoak-enrichment"]], "expand-subsets": [[0, "runoak-expand-subsets"]], "extract": [[0, "runoak-extract"]], "fill-table": [[0, "runoak-fill-table"]], "generate-definitions": [[0, "runoak-generate-definitions"]], "generate-disjoints": [[0, "runoak-generate-disjoints"]], "generate-logical-definitions": [[0, "runoak-generate-logical-definitions"]], "generate-synonyms": [[0, "runoak-generate-synonyms"]], "info": [[0, "runoak-info"]], "information-content": [[0, "runoak-information-content"]], "labels": [[0, "runoak-labels"]], "languages": [[0, "runoak-languages"]], "leafs": [[0, "runoak-leafs"]], "lexmatch": [[0, "runoak-lexmatch"]], "lint": [[0, "runoak-lint"]], "logical-definitions": [[0, "runoak-logical-definitions"]], "mappings": [[0, "runoak-mappings"]], "migrate-curies": [[0, "runoak-migrate-curies"]], "normalize": [[0, "runoak-normalize"]], "obsoletes": [[0, "runoak-obsoletes"]], "ontologies": [[0, "runoak-ontologies"]], "ontology-metadata": [[0, "runoak-ontology-metadata"]], "ontology-versions": [[0, "runoak-ontology-versions"]], "paths": [[0, "runoak-paths"]], "prefixes": [[0, "runoak-prefixes"]], "query": [[0, "runoak-query"]], "relationships": [[0, "runoak-relationships"]], "rollup": [[0, "runoak-rollup"]], "roots": [[0, "runoak-roots"]], "search": [[0, "runoak-search"]], "set-apikey": [[0, "runoak-set-apikey"]], "siblings": [[0, "runoak-siblings"]], "similarity": [[0, "runoak-similarity"]], "similarity-pair": [[0, "runoak-similarity-pair"]], "singletons": [[0, "runoak-singletons"]], "statistics": [[0, "runoak-statistics"]], "subsets": [[0, "runoak-subsets"]], "synonymize": [[0, "runoak-synonymize"]], "taxon-constraints": [[0, "runoak-taxon-constraints"], [967, "taxon-constraints"]], "term-categories": [[0, "runoak-term-categories"]], "term-metadata": [[0, "runoak-term-metadata"]], "term-subsets": [[0, "runoak-term-subsets"]], "terms": [[0, "runoak-terms"]], "termset-similarity": [[0, "runoak-termset-similarity"]], "transform": [[0, "runoak-transform"]], "tree": [[0, "runoak-tree"]], "validate": [[0, "runoak-validate"]], "validate-definitions": [[0, "runoak-validate-definitions"]], "validate-mappings": [[0, "runoak-validate-mappings"]], "validate-multiple": [[0, "runoak-validate-multiple"]], "viz": [[0, "runoak-viz"]], "Ontology Concepts": [[1, "ontology-concepts"]], "Ontology": [[1, "ontology"]], "Ontology Element": [[1, "ontology-element"]], "Imports and Ontologies within Ontologies": [[1, "imports-and-ontologies-within-ontologies"]], "URIs and CURIEs and identifiers": [[1, "uris-and-curies-and-identifiers"]], "Prefix Maps": [[1, "prefix-maps"]], "Relationships / Edges": [[1, "relationships-edges"]], "Mappings": [[1, "mappings"], [3, "mappings"], [4, "mappings"], [17, "mappings"], [20, "mappings"], [21, "mappings"], [22, "mappings"], [23, "mappings"], [24, "mappings"], [92, "mappings"], [93, "mappings"], [94, "mappings"], [153, "mappings"], [157, "mappings"], [212, "mappings"], [213, "mappings"], [217, "mappings"], [223, "mappings"], [249, "mappings"], [250, "mappings"], [262, "mappings"], [263, "mappings"], [264, "mappings"], [265, "mappings"], [269, "mappings"], [294, "mappings"], [295, "mappings"], [307, "mappings"], [308, "mappings"], [309, "mappings"], [310, "mappings"], [311, "mappings"], [312, "mappings"], [316, "mappings"], [317, "mappings"], [318, "mappings"], [321, "mappings"], [322, "mappings"], [372, "mappings"], [373, "mappings"], [380, "mappings"], [381, "mappings"], [382, "mappings"], [384, "mappings"], [385, "mappings"], [386, "mappings"], [388, "mappings"], [389, "mappings"], [393, "mappings"], [394, "mappings"], [396, "mappings"], [402, "mappings"], [403, "mappings"], [405, "mappings"], [410, "mappings"], [411, "mappings"], [412, "mappings"], [417, "mappings"], [476, "mappings"], [479, "mappings"], [480, "mappings"], [481, "mappings"], [482, "mappings"], [483, "mappings"], [484, "mappings"], [485, "mappings"], [488, "mappings"], [489, "mappings"], [497, "mappings"], [502, "mappings"], [503, "mappings"], [504, "mappings"], [505, "mappings"], [506, "mappings"], [507, "mappings"], [508, "mappings"], [509, "mappings"], [512, "mappings"], [521, "mappings"], [522, "mappings"], [526, "mappings"], [530, "mappings"], [532, "mappings"], [533, "mappings"], [535, "mappings"], [536, "mappings"], [537, "mappings"], [540, "mappings"], [541, "mappings"], [542, "mappings"], [545, "mappings"], [677, "mappings"], [692, "mappings"], [693, "mappings"], [695, "mappings"], [696, "mappings"], [743, "mappings"], [761, "mappings"], [764, "mappings"], [765, "mappings"], [766, "mappings"], [813, "mappings"], [815, "mappings"], [816, "mappings"], [817, "mappings"], [824, "mappings"], [825, "mappings"], [827, "mappings"], [828, "mappings"], [835, "mappings"], [838, "mappings"], [839, "mappings"], [840, "mappings"], [842, "mappings"], [936, "mappings"], [939, "mappings"], [940, "mappings"], [941, "mappings"], [942, "mappings"], [978, "mappings"], [988, "mappings"], [989, "mappings"], [990, "mappings"], [991, "mappings"], [1028, "mappings"], [1035, "mappings"], [1040, "mappings"], [1041, "mappings"], [1043, "mappings"], [1046, "mappings"], [1047, "mappings"], [1048, "mappings"], [1049, "mappings"], [1050, "mappings"], [1055, "mappings"], [1058, "mappings"], [1059, "mappings"], [1060, "mappings"], [1149, "mappings"]], "Ontology Format": [[1, "ontology-format"]], "Statements and Axioms": [[1, "statements-and-axioms"]], "Subsets": [[1, "subsets"], [46, "subsets"], [125, "subsets"], [163, "subsets"], [234, "subsets"], [279, "subsets"], [331, "subsets"], [437, "subsets"], [613, "subsets"], [717, "subsets"], [780, "subsets"], [882, "subsets"], [953, "subsets"], [1001, "subsets"], [1067, "subsets"]], "Labels/Names": [[1, "labels-names"]], "Contribution Guidelines": [[2, "contribution-guidelines"]], "Reporting issues and giving general feedback": [[2, "reporting-issues-and-giving-general-feedback"]], "Contributing documentation": [[2, "contributing-documentation"]], "Contributing code": [[2, "contributing-code"]], "Understand design patterns used": [[2, "understand-design-patterns-used"]], "Please make a Pull Request for all contributions.": [[2, "please-make-a-pull-request-for-all-contributions"]], "Always write tests": [[2, "always-write-tests"]], "How to contribute a plugin": [[2, "how-to-contribute-a-plugin"]], "How to contribute a new subcommand": [[2, "how-to-contribute-a-new-subcommand"]], "How to contribute to a notebook or add a new notebook": [[2, "how-to-contribute-to-a-notebook-or-add-a-new-notebook"]], "How to contribute a new adapter/implementation": [[2, "how-to-contribute-a-new-adapter-implementation"]], "How to contribute a new utility function": [[2, "how-to-contribute-a-new-utility-function"]], "How to contribute a datamodel": [[2, "how-to-contribute-a-datamodel"]], "Release to PyPI": [[2, "release-to-pypi"], [1126, "release-to-pypi"]], "Class: Association": [[3, "class-association"]], "Inheritance": [[3, "inheritance"], [17, "inheritance"], [22, "inheritance"], [39, "inheritance"], [40, "inheritance"], [47, "inheritance"], [48, "inheritance"], [49, "inheritance"], [50, "inheritance"], [51, "inheritance"], [52, "inheritance"], [54, "inheritance"], [55, "inheritance"], [56, "inheritance"], [60, "inheritance"], [61, "inheritance"], [63, "inheritance"], [67, "inheritance"], [68, "inheritance"], [69, "inheritance"], [70, "inheritance"], [71, "inheritance"], [75, "inheritance"], [76, "inheritance"], [80, "inheritance"], [81, "inheritance"], [87, "inheritance"], [166, "inheritance"], [167, "inheritance"], [168, "inheritance"], [170, "inheritance"], [171, "inheritance"], [173, "inheritance"], [175, "inheritance"], [176, "inheritance"], [177, "inheritance"], [181, "inheritance"], [185, "inheritance"], [186, "inheritance"], [188, "inheritance"], [189, "inheritance"], [191, "inheritance"], [193, "inheritance"], [194, "inheritance"], [196, "inheritance"], [199, "inheritance"], [249, "inheritance"], [264, "inheritance"], [265, "inheritance"], [294, "inheritance"], [309, "inheritance"], [310, "inheritance"], [372, "inheritance"], [373, "inheritance"], [380, "inheritance"], [381, "inheritance"], [382, "inheritance"], [385, "inheritance"], [393, "inheritance"], [403, "inheritance"], [405, "inheritance"], [411, "inheritance"], [417, "inheritance"], [476, "inheritance"], [480, "inheritance"], [481, "inheritance"], [482, "inheritance"], [483, "inheritance"], [488, "inheritance"], [489, "inheritance"], [497, "inheritance"], [502, "inheritance"], [503, "inheritance"], [504, "inheritance"], [505, "inheritance"], [506, "inheritance"], [507, "inheritance"], [508, "inheritance"], [509, "inheritance"], [510, "inheritance"], [511, "inheritance"], [512, "inheritance"], [521, "inheritance"], [522, "inheritance"], [527, "inheritance"], [530, "inheritance"], [533, "inheritance"], [535, "inheritance"], [536, "inheritance"], [537, "inheritance"], [540, "inheritance"], [541, "inheritance"], [542, "inheritance"], [545, "inheritance"], [549, "inheritance"], [550, "inheritance"], [551, "inheritance"], [552, "inheritance"], [553, "inheritance"], [555, "inheritance"], [556, "inheritance"], [557, "inheritance"], [558, "inheritance"], [559, "inheritance"], [560, "inheritance"], [561, "inheritance"], [562, "inheritance"], [563, "inheritance"], [564, "inheritance"], [565, "inheritance"], [566, "inheritance"], [567, "inheritance"], [568, "inheritance"], [569, "inheritance"], [570, "inheritance"], [571, "inheritance"], [572, "inheritance"], [573, "inheritance"], [574, "inheritance"], [575, "inheritance"], [576, "inheritance"], [577, "inheritance"], [578, "inheritance"], [579, "inheritance"], [580, "inheritance"], [581, "inheritance"], [582, "inheritance"], [583, "inheritance"], [584, "inheritance"], [585, "inheritance"], [586, "inheritance"], [588, "inheritance"], [589, "inheritance"], [590, "inheritance"], [591, "inheritance"], [592, "inheritance"], [593, "inheritance"], [595, "inheritance"], [596, "inheritance"], [597, "inheritance"], [598, "inheritance"], [599, "inheritance"], [600, "inheritance"], [601, "inheritance"], [603, "inheritance"], [604, "inheritance"], [608, "inheritance"], [609, "inheritance"], [610, "inheritance"], [614, "inheritance"], [615, "inheritance"], [616, "inheritance"], [625, "inheritance"], [626, "inheritance"], [627, "inheritance"], [628, "inheritance"], [629, "inheritance"], [631, "inheritance"], [632, "inheritance"], [633, "inheritance"], [634, "inheritance"], [635, "inheritance"], [641, "inheritance"], [643, "inheritance"], [644, "inheritance"], [645, "inheritance"], [646, "inheritance"], [647, "inheritance"], [649, "inheritance"], [650, "inheritance"], [651, "inheritance"], [652, "inheritance"], [653, "inheritance"], [654, "inheritance"], [656, "inheritance"], [658, "inheritance"], [659, "inheritance"], [660, "inheritance"], [661, "inheritance"], [662, "inheritance"], [664, "inheritance"], [665, "inheritance"], [666, "inheritance"], [668, "inheritance"], [670, "inheritance"], [672, "inheritance"], [673, "inheritance"], [674, "inheritance"], [761, "inheritance"], [765, "inheritance"], [766, "inheritance"], [772, "inheritance"], [777, "inheritance"], [778, "inheritance"], [781, "inheritance"], [782, "inheritance"], [783, "inheritance"], [794, "inheritance"], [798, "inheritance"], [799, "inheritance"], [800, "inheritance"], [804, "inheritance"], [808, "inheritance"], [809, "inheritance"], [811, "inheritance"], [824, "inheritance"], [827, "inheritance"], [828, "inheritance"], [838, "inheritance"], [840, "inheritance"], [842, "inheritance"], [847, "inheritance"], [848, "inheritance"], [849, "inheritance"], [855, "inheritance"], [858, "inheritance"], [859, "inheritance"], [860, "inheritance"], [861, "inheritance"], [867, "inheritance"], [868, "inheritance"], [869, "inheritance"], [870, "inheritance"], [873, "inheritance"], [877, "inheritance"], [878, "inheritance"], [883, "inheritance"], [886, "inheritance"], [890, "inheritance"], [892, "inheritance"], [893, "inheritance"], [894, "inheritance"], [896, "inheritance"], [898, "inheritance"], [899, "inheritance"], [903, "inheritance"], [905, "inheritance"], [908, "inheritance"], [909, "inheritance"], [911, "inheritance"], [915, "inheritance"], [916, "inheritance"], [936, "inheritance"], [939, "inheritance"], [940, "inheritance"], [942, "inheritance"], [988, "inheritance"], [1028, "inheritance"], [1035, "inheritance"], [1040, "inheritance"], [1041, "inheritance"], [1043, "inheritance"], [1047, "inheritance"], [1048, "inheritance"], [1049, "inheritance"], [1050, "inheritance"], [1059, "inheritance"], [1060, "inheritance"]], "Slots": [[3, "slots"], [4, "slots"], [17, "slots"], [20, "slots"], [21, "slots"], [22, "slots"], [23, "slots"], [24, "slots"], [46, "slots"], [92, "slots"], [93, "slots"], [94, "slots"], [125, "slots"], [140, "slots"], [148, "slots"], [153, "slots"], [157, "slots"], [163, "slots"], [212, "slots"], [213, "slots"], [214, "slots"], [217, "slots"], [223, "slots"], [234, "slots"], [249, "slots"], [250, "slots"], [262, "slots"], [263, "slots"], [264, "slots"], [265, "slots"], [269, "slots"], [273, "slots"], [279, "slots"], [294, "slots"], [295, "slots"], [307, "slots"], [308, "slots"], [309, "slots"], [310, "slots"], [311, "slots"], [312, "slots"], [316, "slots"], [317, "slots"], [318, "slots"], [321, "slots"], [322, "slots"], [324, "slots"], [331, "slots"], [372, "slots"], [373, "slots"], [380, "slots"], [381, "slots"], [382, "slots"], [384, "slots"], [385, "slots"], [386, "slots"], [388, "slots"], [389, "slots"], [393, "slots"], [394, "slots"], [396, "slots"], [402, "slots"], [403, "slots"], [404, "slots"], [405, "slots"], [406, "slots"], [410, "slots"], [411, "slots"], [412, "slots"], [417, "slots"], [437, "slots"], [476, "slots"], [479, "slots"], [480, "slots"], [481, "slots"], [482, "slots"], [483, "slots"], [484, "slots"], [485, "slots"], [488, "slots"], [489, "slots"], [497, "slots"], [502, "slots"], [503, "slots"], [504, "slots"], [505, "slots"], [506, "slots"], [507, "slots"], [508, "slots"], [509, "slots"], [512, "slots"], [521, "slots"], [522, "slots"], [526, "slots"], [530, "slots"], [532, "slots"], [533, "slots"], [535, "slots"], [536, "slots"], [537, "slots"], [540, "slots"], [541, "slots"], [542, "slots"], [545, "slots"], [613, "slots"], [677, "slots"], [685, "slots"], [692, "slots"], [693, "slots"], [694, "slots"], [695, "slots"], [696, "slots"], [698, "slots"], [717, "slots"], [743, "slots"], [761, "slots"], [764, "slots"], [765, "slots"], [766, "slots"], [780, "slots"], [813, "slots"], [815, "slots"], [816, "slots"], [817, "slots"], [824, "slots"], [825, "slots"], [827, "slots"], [828, "slots"], [835, "slots"], [838, "slots"], [839, "slots"], [840, "slots"], [842, "slots"], [882, "slots"], [936, "slots"], [939, "slots"], [940, "slots"], [941, "slots"], [942, "slots"], [953, "slots"], [978, "slots"], [988, "slots"], [989, "slots"], [990, "slots"], [991, "slots"], [1001, "slots"], [1028, "slots"], [1035, "slots"], [1040, "slots"], [1041, "slots"], [1043, "slots"], [1046, "slots"], [1047, "slots"], [1048, "slots"], [1049, "slots"], [1050, "slots"], [1051, "slots"], [1055, "slots"], [1058, "slots"], [1059, "slots"], [1060, "slots"], [1067, "slots"]], "Usages": [[3, "usages"], [23, "usages"], [24, "usages"], [93, "usages"], [153, "usages"], [212, "usages"], [217, "usages"], [223, "usages"], [250, "usages"], [262, "usages"], [264, "usages"], [265, "usages"], [269, "usages"], [295, "usages"], [307, "usages"], [309, "usages"], [310, "usages"], [311, "usages"], [316, "usages"], [317, "usages"], [318, "usages"], [321, "usages"], [322, "usages"], [373, "usages"], [380, "usages"], [382, "usages"], [384, "usages"], [385, "usages"], [386, "usages"], [388, "usages"], [393, "usages"], [394, "usages"], [396, "usages"], [402, "usages"], [403, "usages"], [410, "usages"], [411, "usages"], [412, "usages"], [417, "usages"], [476, "usages"], [479, "usages"], [480, "usages"], [484, "usages"], [488, "usages"], [489, "usages"], [512, "usages"], [521, "usages"], [522, "usages"], [526, "usages"], [532, "usages"], [533, "usages"], [535, "usages"], [536, "usages"], [540, "usages"], [542, "usages"], [677, "usages"], [693, "usages"], [695, "usages"], [743, "usages"], [764, "usages"], [765, "usages"], [813, "usages"], [815, "usages"], [817, "usages"], [824, "usages"], [825, "usages"], [827, "usages"], [835, "usages"], [838, "usages"], [839, "usages"], [842, "usages"], [936, "usages"], [939, "usages"], [940, "usages"], [941, "usages"], [988, "usages"], [991, "usages"], [1028, "usages"], [1043, "usages"], [1047, "usages"], [1050, "usages"], [1055, "usages"], [1058, "usages"], [1060, "usages"]], "Identifier and Mapping Information": [[3, "identifier-and-mapping-information"], [4, "identifier-and-mapping-information"], [5, "identifier-and-mapping-information"], [6, "identifier-and-mapping-information"], [7, "identifier-and-mapping-information"], [8, "identifier-and-mapping-information"], [9, "identifier-and-mapping-information"], [10, "identifier-and-mapping-information"], [11, "identifier-and-mapping-information"], [12, "identifier-and-mapping-information"], [13, "identifier-and-mapping-information"], [14, "identifier-and-mapping-information"], [15, "identifier-and-mapping-information"], [16, "identifier-and-mapping-information"], [17, "identifier-and-mapping-information"], [18, "identifier-and-mapping-information"], [19, "identifier-and-mapping-information"], [20, "identifier-and-mapping-information"], [21, "identifier-and-mapping-information"], [22, "identifier-and-mapping-information"], [23, "identifier-and-mapping-information"], [24, "identifier-and-mapping-information"], [25, "identifier-and-mapping-information"], [26, "identifier-and-mapping-information"], [27, "identifier-and-mapping-information"], [28, "identifier-and-mapping-information"], [29, "identifier-and-mapping-information"], [30, "identifier-and-mapping-information"], [32, "identifier-and-mapping-information"], [33, "identifier-and-mapping-information"], [34, "identifier-and-mapping-information"], [35, "identifier-and-mapping-information"], [36, "identifier-and-mapping-information"], [37, "identifier-and-mapping-information"], [38, "identifier-and-mapping-information"], [39, "identifier-and-mapping-information"], [40, "identifier-and-mapping-information"], [41, "identifier-and-mapping-information"], [42, "identifier-and-mapping-information"], [43, "identifier-and-mapping-information"], [44, "identifier-and-mapping-information"], [45, "identifier-and-mapping-information"], [47, "identifier-and-mapping-information"], [48, "identifier-and-mapping-information"], [49, "identifier-and-mapping-information"], [50, "identifier-and-mapping-information"], [51, "identifier-and-mapping-information"], [52, "identifier-and-mapping-information"], [53, "identifier-and-mapping-information"], [54, "identifier-and-mapping-information"], [55, "identifier-and-mapping-information"], [56, "identifier-and-mapping-information"], [57, "identifier-and-mapping-information"], [58, "identifier-and-mapping-information"], [59, "identifier-and-mapping-information"], [60, "identifier-and-mapping-information"], [61, "identifier-and-mapping-information"], [62, "identifier-and-mapping-information"], [63, "identifier-and-mapping-information"], [64, "identifier-and-mapping-information"], [65, "identifier-and-mapping-information"], [66, "identifier-and-mapping-information"], [67, "identifier-and-mapping-information"], [68, "identifier-and-mapping-information"], [69, "identifier-and-mapping-information"], [70, "identifier-and-mapping-information"], [71, "identifier-and-mapping-information"], [72, "identifier-and-mapping-information"], [73, "identifier-and-mapping-information"], [74, "identifier-and-mapping-information"], [75, "identifier-and-mapping-information"], [76, "identifier-and-mapping-information"], [77, "identifier-and-mapping-information"], [78, "identifier-and-mapping-information"], [79, "identifier-and-mapping-information"], [80, "identifier-and-mapping-information"], [81, "identifier-and-mapping-information"], [82, "identifier-and-mapping-information"], [83, "identifier-and-mapping-information"], [84, "identifier-and-mapping-information"], [85, "identifier-and-mapping-information"], [86, "identifier-and-mapping-information"], [87, "identifier-and-mapping-information"], [88, "identifier-and-mapping-information"], [89, "identifier-and-mapping-information"], [90, "identifier-and-mapping-information"], [91, "identifier-and-mapping-information"], [92, "identifier-and-mapping-information"], [93, "identifier-and-mapping-information"], [94, "identifier-and-mapping-information"], [95, "identifier-and-mapping-information"], [96, "identifier-and-mapping-information"], [97, "identifier-and-mapping-information"], [98, "identifier-and-mapping-information"], [99, "identifier-and-mapping-information"], [100, "identifier-and-mapping-information"], [101, "identifier-and-mapping-information"], [102, "identifier-and-mapping-information"], [103, "identifier-and-mapping-information"], [104, "identifier-and-mapping-information"], [105, "identifier-and-mapping-information"], [106, "identifier-and-mapping-information"], [107, "identifier-and-mapping-information"], [108, "identifier-and-mapping-information"], [109, "identifier-and-mapping-information"], [110, "identifier-and-mapping-information"], [111, "identifier-and-mapping-information"], [112, "identifier-and-mapping-information"], [113, "identifier-and-mapping-information"], [114, "identifier-and-mapping-information"], [115, "identifier-and-mapping-information"], [116, "identifier-and-mapping-information"], [117, "identifier-and-mapping-information"], [119, "identifier-and-mapping-information"], [120, "identifier-and-mapping-information"], [121, "identifier-and-mapping-information"], [122, "identifier-and-mapping-information"], [123, "identifier-and-mapping-information"], [124, "identifier-and-mapping-information"], [126, "identifier-and-mapping-information"], [127, "identifier-and-mapping-information"], [128, "identifier-and-mapping-information"], [129, "identifier-and-mapping-information"], [130, "identifier-and-mapping-information"], [131, "identifier-and-mapping-information"], [132, "identifier-and-mapping-information"], [133, "identifier-and-mapping-information"], [134, "identifier-and-mapping-information"], [135, "identifier-and-mapping-information"], [136, "identifier-and-mapping-information"], [137, "identifier-and-mapping-information"], [138, "identifier-and-mapping-information"], [139, "identifier-and-mapping-information"], [140, "identifier-and-mapping-information"], [141, "identifier-and-mapping-information"], [142, "identifier-and-mapping-information"], [143, "identifier-and-mapping-information"], [144, "identifier-and-mapping-information"], [145, "identifier-and-mapping-information"], [146, "identifier-and-mapping-information"], [147, "identifier-and-mapping-information"], [148, "identifier-and-mapping-information"], [149, "identifier-and-mapping-information"], [150, "identifier-and-mapping-information"], [151, "identifier-and-mapping-information"], [152, "identifier-and-mapping-information"], [153, "identifier-and-mapping-information"], [154, "identifier-and-mapping-information"], [155, "identifier-and-mapping-information"], [156, "identifier-and-mapping-information"], [157, "identifier-and-mapping-information"], [158, "identifier-and-mapping-information"], [159, "identifier-and-mapping-information"], [160, "identifier-and-mapping-information"], [161, "identifier-and-mapping-information"], [164, "identifier-and-mapping-information"], [165, "identifier-and-mapping-information"], [166, "identifier-and-mapping-information"], [167, "identifier-and-mapping-information"], [168, "identifier-and-mapping-information"], [169, "identifier-and-mapping-information"], [170, "identifier-and-mapping-information"], [171, "identifier-and-mapping-information"], [172, "identifier-and-mapping-information"], [173, "identifier-and-mapping-information"], [174, "identifier-and-mapping-information"], [175, "identifier-and-mapping-information"], [176, "identifier-and-mapping-information"], [177, "identifier-and-mapping-information"], [178, "identifier-and-mapping-information"], [179, "identifier-and-mapping-information"], [180, "identifier-and-mapping-information"], [181, "identifier-and-mapping-information"], [182, "identifier-and-mapping-information"], [183, "identifier-and-mapping-information"], [184, "identifier-and-mapping-information"], [185, "identifier-and-mapping-information"], [186, "identifier-and-mapping-information"], [187, "identifier-and-mapping-information"], [188, "identifier-and-mapping-information"], [189, "identifier-and-mapping-information"], [190, "identifier-and-mapping-information"], [191, "identifier-and-mapping-information"], [192, "identifier-and-mapping-information"], [193, "identifier-and-mapping-information"], [194, "identifier-and-mapping-information"], [195, "identifier-and-mapping-information"], [196, "identifier-and-mapping-information"], [197, "identifier-and-mapping-information"], [198, "identifier-and-mapping-information"], [199, "identifier-and-mapping-information"], [203, "identifier-and-mapping-information"], [204, "identifier-and-mapping-information"], [205, "identifier-and-mapping-information"], [206, "identifier-and-mapping-information"], [207, "identifier-and-mapping-information"], [208, "identifier-and-mapping-information"], [209, "identifier-and-mapping-information"], [210, "identifier-and-mapping-information"], [211, "identifier-and-mapping-information"], [212, "identifier-and-mapping-information"], [213, "identifier-and-mapping-information"], [214, "identifier-and-mapping-information"], [215, "identifier-and-mapping-information"], [216, "identifier-and-mapping-information"], [217, "identifier-and-mapping-information"], [218, "identifier-and-mapping-information"], [219, "identifier-and-mapping-information"], [220, "identifier-and-mapping-information"], [221, "identifier-and-mapping-information"], [222, "identifier-and-mapping-information"], [223, "identifier-and-mapping-information"], [224, "identifier-and-mapping-information"], [225, "identifier-and-mapping-information"], [226, "identifier-and-mapping-information"], [227, "identifier-and-mapping-information"], [228, "identifier-and-mapping-information"], [229, "identifier-and-mapping-information"], [230, "identifier-and-mapping-information"], [231, "identifier-and-mapping-information"], [232, "identifier-and-mapping-information"], [233, "identifier-and-mapping-information"], [235, "identifier-and-mapping-information"], [237, "identifier-and-mapping-information"], [238, "identifier-and-mapping-information"], [239, "identifier-and-mapping-information"], [240, "identifier-and-mapping-information"], [241, "identifier-and-mapping-information"], [242, "identifier-and-mapping-information"], [243, "identifier-and-mapping-information"], [244, "identifier-and-mapping-information"], [245, "identifier-and-mapping-information"], [246, "identifier-and-mapping-information"], [247, "identifier-and-mapping-information"], [249, "identifier-and-mapping-information"], [250, "identifier-and-mapping-information"], [251, "identifier-and-mapping-information"], [252, "identifier-and-mapping-information"], [253, "identifier-and-mapping-information"], [254, "identifier-and-mapping-information"], [255, "identifier-and-mapping-information"], [256, "identifier-and-mapping-information"], [257, "identifier-and-mapping-information"], [258, "identifier-and-mapping-information"], [259, "identifier-and-mapping-information"], [260, "identifier-and-mapping-information"], [261, "identifier-and-mapping-information"], [262, "identifier-and-mapping-information"], [263, "identifier-and-mapping-information"], [264, "identifier-and-mapping-information"], [265, "identifier-and-mapping-information"], [266, "identifier-and-mapping-information"], [267, "identifier-and-mapping-information"], [268, "identifier-and-mapping-information"], [269, "identifier-and-mapping-information"], [270, "identifier-and-mapping-information"], [271, "identifier-and-mapping-information"], [272, "identifier-and-mapping-information"], [273, "identifier-and-mapping-information"], [274, "identifier-and-mapping-information"], [275, "identifier-and-mapping-information"], [276, "identifier-and-mapping-information"], [277, "identifier-and-mapping-information"], [278, "identifier-and-mapping-information"], [282, "identifier-and-mapping-information"], [283, "identifier-and-mapping-information"], [284, "identifier-and-mapping-information"], [285, "identifier-and-mapping-information"], [286, "identifier-and-mapping-information"], [287, "identifier-and-mapping-information"], [288, "identifier-and-mapping-information"], [289, "identifier-and-mapping-information"], [290, "identifier-and-mapping-information"], [291, "identifier-and-mapping-information"], [292, "identifier-and-mapping-information"], [294, "identifier-and-mapping-information"], [295, "identifier-and-mapping-information"], [296, "identifier-and-mapping-information"], [297, "identifier-and-mapping-information"], [298, "identifier-and-mapping-information"], [299, "identifier-and-mapping-information"], [300, "identifier-and-mapping-information"], [301, "identifier-and-mapping-information"], [302, "identifier-and-mapping-information"], [303, "identifier-and-mapping-information"], [304, "identifier-and-mapping-information"], [305, "identifier-and-mapping-information"], [306, "identifier-and-mapping-information"], [307, "identifier-and-mapping-information"], [308, "identifier-and-mapping-information"], [309, "identifier-and-mapping-information"], [310, "identifier-and-mapping-information"], [311, "identifier-and-mapping-information"], [312, "identifier-and-mapping-information"], [313, "identifier-and-mapping-information"], [314, "identifier-and-mapping-information"], [315, "identifier-and-mapping-information"], [316, "identifier-and-mapping-information"], [317, "identifier-and-mapping-information"], [318, "identifier-and-mapping-information"], [319, "identifier-and-mapping-information"], [320, "identifier-and-mapping-information"], [321, "identifier-and-mapping-information"], [322, "identifier-and-mapping-information"], [323, "identifier-and-mapping-information"], [324, "identifier-and-mapping-information"], [325, "identifier-and-mapping-information"], [326, "identifier-and-mapping-information"], [327, "identifier-and-mapping-information"], [328, "identifier-and-mapping-information"], [329, "identifier-and-mapping-information"], [330, "identifier-and-mapping-information"], [332, "identifier-and-mapping-information"], [337, "identifier-and-mapping-information"], [338, "identifier-and-mapping-information"], [339, "identifier-and-mapping-information"], [340, "identifier-and-mapping-information"], [341, "identifier-and-mapping-information"], [342, "identifier-and-mapping-information"], [343, "identifier-and-mapping-information"], [344, "identifier-and-mapping-information"], [345, "identifier-and-mapping-information"], [346, "identifier-and-mapping-information"], [347, "identifier-and-mapping-information"], [348, "identifier-and-mapping-information"], [349, "identifier-and-mapping-information"], [350, "identifier-and-mapping-information"], [351, "identifier-and-mapping-information"], [352, "identifier-and-mapping-information"], [353, "identifier-and-mapping-information"], [354, "identifier-and-mapping-information"], [355, "identifier-and-mapping-information"], [356, "identifier-and-mapping-information"], [357, "identifier-and-mapping-information"], [358, "identifier-and-mapping-information"], [359, "identifier-and-mapping-information"], [360, "identifier-and-mapping-information"], [361, "identifier-and-mapping-information"], [362, "identifier-and-mapping-information"], [363, "identifier-and-mapping-information"], [364, "identifier-and-mapping-information"], [365, "identifier-and-mapping-information"], [366, "identifier-and-mapping-information"], [367, "identifier-and-mapping-information"], [368, "identifier-and-mapping-information"], [369, "identifier-and-mapping-information"], [371, "identifier-and-mapping-information"], [372, "identifier-and-mapping-information"], [373, "identifier-and-mapping-information"], [374, "identifier-and-mapping-information"], [375, "identifier-and-mapping-information"], [376, "identifier-and-mapping-information"], [377, "identifier-and-mapping-information"], [378, "identifier-and-mapping-information"], [379, "identifier-and-mapping-information"], [380, "identifier-and-mapping-information"], [381, "identifier-and-mapping-information"], [382, "identifier-and-mapping-information"], [383, "identifier-and-mapping-information"], [384, "identifier-and-mapping-information"], [385, "identifier-and-mapping-information"], [386, "identifier-and-mapping-information"], [387, "identifier-and-mapping-information"], [388, "identifier-and-mapping-information"], [389, "identifier-and-mapping-information"], [390, "identifier-and-mapping-information"], [391, "identifier-and-mapping-information"], [392, "identifier-and-mapping-information"], [393, "identifier-and-mapping-information"], [394, "identifier-and-mapping-information"], [395, "identifier-and-mapping-information"], [396, "identifier-and-mapping-information"], [397, "identifier-and-mapping-information"], [398, "identifier-and-mapping-information"], [399, "identifier-and-mapping-information"], [400, "identifier-and-mapping-information"], [401, "identifier-and-mapping-information"], [402, "identifier-and-mapping-information"], [403, "identifier-and-mapping-information"], [404, "identifier-and-mapping-information"], [405, "identifier-and-mapping-information"], [406, "identifier-and-mapping-information"], [407, "identifier-and-mapping-information"], [408, "identifier-and-mapping-information"], [409, "identifier-and-mapping-information"], [410, "identifier-and-mapping-information"], [411, "identifier-and-mapping-information"], [412, "identifier-and-mapping-information"], [413, "identifier-and-mapping-information"], [414, "identifier-and-mapping-information"], [415, "identifier-and-mapping-information"], [416, "identifier-and-mapping-information"], [417, "identifier-and-mapping-information"], [418, "identifier-and-mapping-information"], [419, "identifier-and-mapping-information"], [420, "identifier-and-mapping-information"], [421, "identifier-and-mapping-information"], [422, "identifier-and-mapping-information"], [423, "identifier-and-mapping-information"], [424, "identifier-and-mapping-information"], [425, "identifier-and-mapping-information"], [426, "identifier-and-mapping-information"], [427, "identifier-and-mapping-information"], [428, "identifier-and-mapping-information"], [429, "identifier-and-mapping-information"], [430, "identifier-and-mapping-information"], [431, "identifier-and-mapping-information"], [432, "identifier-and-mapping-information"], [433, "identifier-and-mapping-information"], [434, "identifier-and-mapping-information"], [435, "identifier-and-mapping-information"], [436, "identifier-and-mapping-information"], [438, "identifier-and-mapping-information"], [439, "identifier-and-mapping-information"], [440, "identifier-and-mapping-information"], [441, "identifier-and-mapping-information"], [442, "identifier-and-mapping-information"], [443, "identifier-and-mapping-information"], [444, "identifier-and-mapping-information"], [445, "identifier-and-mapping-information"], [446, "identifier-and-mapping-information"], [447, "identifier-and-mapping-information"], [450, "identifier-and-mapping-information"], [451, "identifier-and-mapping-information"], [452, "identifier-and-mapping-information"], [453, "identifier-and-mapping-information"], [454, "identifier-and-mapping-information"], [455, "identifier-and-mapping-information"], [456, "identifier-and-mapping-information"], [457, "identifier-and-mapping-information"], [458, "identifier-and-mapping-information"], [459, "identifier-and-mapping-information"], [460, "identifier-and-mapping-information"], [461, "identifier-and-mapping-information"], [462, "identifier-and-mapping-information"], [463, "identifier-and-mapping-information"], [464, "identifier-and-mapping-information"], [465, "identifier-and-mapping-information"], [466, "identifier-and-mapping-information"], [467, "identifier-and-mapping-information"], [468, "identifier-and-mapping-information"], [470, "identifier-and-mapping-information"], [471, "identifier-and-mapping-information"], [472, "identifier-and-mapping-information"], [473, "identifier-and-mapping-information"], [474, "identifier-and-mapping-information"], [475, "identifier-and-mapping-information"], [476, "identifier-and-mapping-information"], [477, "identifier-and-mapping-information"], [478, "identifier-and-mapping-information"], [479, "identifier-and-mapping-information"], [480, "identifier-and-mapping-information"], [481, "identifier-and-mapping-information"], [482, "identifier-and-mapping-information"], [483, "identifier-and-mapping-information"], [484, "identifier-and-mapping-information"], [485, "identifier-and-mapping-information"], [486, "identifier-and-mapping-information"], [487, "identifier-and-mapping-information"], [488, "identifier-and-mapping-information"], [489, "identifier-and-mapping-information"], [490, "identifier-and-mapping-information"], [491, "identifier-and-mapping-information"], [492, "identifier-and-mapping-information"], [493, "identifier-and-mapping-information"], [494, "identifier-and-mapping-information"], [495, "identifier-and-mapping-information"], [496, "identifier-and-mapping-information"], [497, "identifier-and-mapping-information"], [498, "identifier-and-mapping-information"], [499, "identifier-and-mapping-information"], [500, "identifier-and-mapping-information"], [501, "identifier-and-mapping-information"], [502, "identifier-and-mapping-information"], [503, "identifier-and-mapping-information"], [504, "identifier-and-mapping-information"], [505, "identifier-and-mapping-information"], [506, "identifier-and-mapping-information"], [507, "identifier-and-mapping-information"], [508, "identifier-and-mapping-information"], [509, "identifier-and-mapping-information"], [510, "identifier-and-mapping-information"], [511, "identifier-and-mapping-information"], [512, "identifier-and-mapping-information"], [513, "identifier-and-mapping-information"], [514, "identifier-and-mapping-information"], [515, "identifier-and-mapping-information"], [516, "identifier-and-mapping-information"], [517, "identifier-and-mapping-information"], [518, "identifier-and-mapping-information"], [519, "identifier-and-mapping-information"], [520, "identifier-and-mapping-information"], [521, "identifier-and-mapping-information"], [522, "identifier-and-mapping-information"], [523, "identifier-and-mapping-information"], [524, "identifier-and-mapping-information"], [525, "identifier-and-mapping-information"], [526, "identifier-and-mapping-information"], [527, "identifier-and-mapping-information"], [528, "identifier-and-mapping-information"], [529, "identifier-and-mapping-information"], [530, "identifier-and-mapping-information"], [531, "identifier-and-mapping-information"], [532, "identifier-and-mapping-information"], [533, "identifier-and-mapping-information"], [535, "identifier-and-mapping-information"], [536, "identifier-and-mapping-information"], [537, "identifier-and-mapping-information"], [538, "identifier-and-mapping-information"], [539, "identifier-and-mapping-information"], [540, "identifier-and-mapping-information"], [541, "identifier-and-mapping-information"], [542, "identifier-and-mapping-information"], [543, "identifier-and-mapping-information"], [544, "identifier-and-mapping-information"], [545, "identifier-and-mapping-information"], [546, "identifier-and-mapping-information"], [547, "identifier-and-mapping-information"], [548, "identifier-and-mapping-information"], [549, "identifier-and-mapping-information"], [550, "identifier-and-mapping-information"], [551, "identifier-and-mapping-information"], [552, "identifier-and-mapping-information"], [553, "identifier-and-mapping-information"], [554, "identifier-and-mapping-information"], [555, "identifier-and-mapping-information"], [556, "identifier-and-mapping-information"], [557, "identifier-and-mapping-information"], [558, "identifier-and-mapping-information"], [559, "identifier-and-mapping-information"], [560, "identifier-and-mapping-information"], [561, "identifier-and-mapping-information"], [562, "identifier-and-mapping-information"], [563, "identifier-and-mapping-information"], [564, "identifier-and-mapping-information"], [565, "identifier-and-mapping-information"], [566, "identifier-and-mapping-information"], [567, "identifier-and-mapping-information"], [568, "identifier-and-mapping-information"], [569, "identifier-and-mapping-information"], [570, "identifier-and-mapping-information"], [571, "identifier-and-mapping-information"], [572, "identifier-and-mapping-information"], [573, "identifier-and-mapping-information"], [574, "identifier-and-mapping-information"], [575, "identifier-and-mapping-information"], [576, "identifier-and-mapping-information"], [577, "identifier-and-mapping-information"], [578, "identifier-and-mapping-information"], [579, "identifier-and-mapping-information"], [580, "identifier-and-mapping-information"], [581, "identifier-and-mapping-information"], [582, "identifier-and-mapping-information"], [583, "identifier-and-mapping-information"], [584, "identifier-and-mapping-information"], [585, "identifier-and-mapping-information"], [586, "identifier-and-mapping-information"], [587, "identifier-and-mapping-information"], [588, "identifier-and-mapping-information"], [589, "identifier-and-mapping-information"], [590, "identifier-and-mapping-information"], [591, "identifier-and-mapping-information"], [592, "identifier-and-mapping-information"], [593, "identifier-and-mapping-information"], [594, "identifier-and-mapping-information"], [595, "identifier-and-mapping-information"], [596, "identifier-and-mapping-information"], [597, "identifier-and-mapping-information"], [598, "identifier-and-mapping-information"], [599, "identifier-and-mapping-information"], [600, "identifier-and-mapping-information"], [601, "identifier-and-mapping-information"], [602, "identifier-and-mapping-information"], [603, "identifier-and-mapping-information"], [604, "identifier-and-mapping-information"], [605, "identifier-and-mapping-information"], [606, "identifier-and-mapping-information"], [607, "identifier-and-mapping-information"], [608, "identifier-and-mapping-information"], [609, "identifier-and-mapping-information"], [610, "identifier-and-mapping-information"], [611, "identifier-and-mapping-information"], [612, "identifier-and-mapping-information"], [614, "identifier-and-mapping-information"], [615, "identifier-and-mapping-information"], [616, "identifier-and-mapping-information"], [617, "identifier-and-mapping-information"], [618, "identifier-and-mapping-information"], [619, "identifier-and-mapping-information"], [620, "identifier-and-mapping-information"], [621, "identifier-and-mapping-information"], [622, "identifier-and-mapping-information"], [623, "identifier-and-mapping-information"], [624, "identifier-and-mapping-information"], [625, "identifier-and-mapping-information"], [626, "identifier-and-mapping-information"], [627, "identifier-and-mapping-information"], [628, "identifier-and-mapping-information"], [629, "identifier-and-mapping-information"], [630, "identifier-and-mapping-information"], [631, "identifier-and-mapping-information"], [632, "identifier-and-mapping-information"], [633, "identifier-and-mapping-information"], [634, "identifier-and-mapping-information"], [635, "identifier-and-mapping-information"], [636, "identifier-and-mapping-information"], [637, "identifier-and-mapping-information"], [638, "identifier-and-mapping-information"], [639, "identifier-and-mapping-information"], [640, "identifier-and-mapping-information"], [641, "identifier-and-mapping-information"], [643, "identifier-and-mapping-information"], [644, "identifier-and-mapping-information"], [645, "identifier-and-mapping-information"], [646, "identifier-and-mapping-information"], [647, "identifier-and-mapping-information"], [648, "identifier-and-mapping-information"], [649, "identifier-and-mapping-information"], [650, "identifier-and-mapping-information"], [651, "identifier-and-mapping-information"], [652, "identifier-and-mapping-information"], [653, "identifier-and-mapping-information"], [654, "identifier-and-mapping-information"], [655, "identifier-and-mapping-information"], [656, "identifier-and-mapping-information"], [657, "identifier-and-mapping-information"], [658, "identifier-and-mapping-information"], [659, "identifier-and-mapping-information"], [660, "identifier-and-mapping-information"], [661, "identifier-and-mapping-information"], [662, "identifier-and-mapping-information"], [663, "identifier-and-mapping-information"], [664, "identifier-and-mapping-information"], [665, "identifier-and-mapping-information"], [666, "identifier-and-mapping-information"], [667, "identifier-and-mapping-information"], [668, "identifier-and-mapping-information"], [670, "identifier-and-mapping-information"], [671, "identifier-and-mapping-information"], [672, "identifier-and-mapping-information"], [673, "identifier-and-mapping-information"], [674, "identifier-and-mapping-information"], [675, "identifier-and-mapping-information"], [676, "identifier-and-mapping-information"], [677, "identifier-and-mapping-information"], [678, "identifier-and-mapping-information"], [679, "identifier-and-mapping-information"], [680, "identifier-and-mapping-information"], [681, "identifier-and-mapping-information"], [682, "identifier-and-mapping-information"], [683, "identifier-and-mapping-information"], [684, "identifier-and-mapping-information"], [685, "identifier-and-mapping-information"], [686, "identifier-and-mapping-information"], [687, "identifier-and-mapping-information"], [688, "identifier-and-mapping-information"], [689, "identifier-and-mapping-information"], [690, "identifier-and-mapping-information"], [691, "identifier-and-mapping-information"], [692, "identifier-and-mapping-information"], [693, "identifier-and-mapping-information"], [694, "identifier-and-mapping-information"], [695, "identifier-and-mapping-information"], [696, "identifier-and-mapping-information"], [697, "identifier-and-mapping-information"], [698, "identifier-and-mapping-information"], [699, "identifier-and-mapping-information"], [700, "identifier-and-mapping-information"], [701, "identifier-and-mapping-information"], [702, "identifier-and-mapping-information"], [703, "identifier-and-mapping-information"], [704, "identifier-and-mapping-information"], [705, "identifier-and-mapping-information"], [706, "identifier-and-mapping-information"], [707, "identifier-and-mapping-information"], [708, "identifier-and-mapping-information"], [709, "identifier-and-mapping-information"], [710, "identifier-and-mapping-information"], [711, "identifier-and-mapping-information"], [712, "identifier-and-mapping-information"], [713, "identifier-and-mapping-information"], [714, "identifier-and-mapping-information"], [715, "identifier-and-mapping-information"], [716, "identifier-and-mapping-information"], [718, "identifier-and-mapping-information"], [719, "identifier-and-mapping-information"], [720, "identifier-and-mapping-information"], [721, "identifier-and-mapping-information"], [722, "identifier-and-mapping-information"], [723, "identifier-and-mapping-information"], [724, "identifier-and-mapping-information"], [725, "identifier-and-mapping-information"], [726, "identifier-and-mapping-information"], [727, "identifier-and-mapping-information"], [728, "identifier-and-mapping-information"], [729, "identifier-and-mapping-information"], [730, "identifier-and-mapping-information"], [731, "identifier-and-mapping-information"], [732, "identifier-and-mapping-information"], [733, "identifier-and-mapping-information"], [734, "identifier-and-mapping-information"], [736, "identifier-and-mapping-information"], [737, "identifier-and-mapping-information"], [738, "identifier-and-mapping-information"], [739, "identifier-and-mapping-information"], [740, "identifier-and-mapping-information"], [743, "identifier-and-mapping-information"], [744, "identifier-and-mapping-information"], [745, "identifier-and-mapping-information"], [746, "identifier-and-mapping-information"], [747, "identifier-and-mapping-information"], [748, "identifier-and-mapping-information"], [749, "identifier-and-mapping-information"], [750, "identifier-and-mapping-information"], [751, "identifier-and-mapping-information"], [752, "identifier-and-mapping-information"], [753, "identifier-and-mapping-information"], [754, "identifier-and-mapping-information"], [755, "identifier-and-mapping-information"], [756, "identifier-and-mapping-information"], [757, "identifier-and-mapping-information"], [758, "identifier-and-mapping-information"], [759, "identifier-and-mapping-information"], [760, "identifier-and-mapping-information"], [761, "identifier-and-mapping-information"], [762, "identifier-and-mapping-information"], [763, "identifier-and-mapping-information"], [764, "identifier-and-mapping-information"], [765, "identifier-and-mapping-information"], [766, "identifier-and-mapping-information"], [767, "identifier-and-mapping-information"], [768, "identifier-and-mapping-information"], [769, "identifier-and-mapping-information"], [770, "identifier-and-mapping-information"], [771, "identifier-and-mapping-information"], [772, "identifier-and-mapping-information"], [773, "identifier-and-mapping-information"], [774, "identifier-and-mapping-information"], [775, "identifier-and-mapping-information"], [776, "identifier-and-mapping-information"], [777, "identifier-and-mapping-information"], [778, "identifier-and-mapping-information"], [779, "identifier-and-mapping-information"], [781, "identifier-and-mapping-information"], [782, "identifier-and-mapping-information"], [783, "identifier-and-mapping-information"], [784, "identifier-and-mapping-information"], [785, "identifier-and-mapping-information"], [786, "identifier-and-mapping-information"], [787, "identifier-and-mapping-information"], [788, "identifier-and-mapping-information"], [789, "identifier-and-mapping-information"], [790, "identifier-and-mapping-information"], [791, "identifier-and-mapping-information"], [792, "identifier-and-mapping-information"], [793, "identifier-and-mapping-information"], [794, "identifier-and-mapping-information"], [795, "identifier-and-mapping-information"], [796, "identifier-and-mapping-information"], [797, "identifier-and-mapping-information"], [798, "identifier-and-mapping-information"], [799, "identifier-and-mapping-information"], [800, "identifier-and-mapping-information"], [801, "identifier-and-mapping-information"], [802, "identifier-and-mapping-information"], [803, "identifier-and-mapping-information"], [804, "identifier-and-mapping-information"], [805, "identifier-and-mapping-information"], [806, "identifier-and-mapping-information"], [807, "identifier-and-mapping-information"], [808, "identifier-and-mapping-information"], [809, "identifier-and-mapping-information"], [811, "identifier-and-mapping-information"], [813, "identifier-and-mapping-information"], [814, "identifier-and-mapping-information"], [815, "identifier-and-mapping-information"], [816, "identifier-and-mapping-information"], [817, "identifier-and-mapping-information"], [818, "identifier-and-mapping-information"], [819, "identifier-and-mapping-information"], [820, "identifier-and-mapping-information"], [821, "identifier-and-mapping-information"], [822, "identifier-and-mapping-information"], [823, "identifier-and-mapping-information"], [824, "identifier-and-mapping-information"], [825, "identifier-and-mapping-information"], [826, "identifier-and-mapping-information"], [827, "identifier-and-mapping-information"], [828, "identifier-and-mapping-information"], [829, "identifier-and-mapping-information"], [830, "identifier-and-mapping-information"], [831, "identifier-and-mapping-information"], [832, "identifier-and-mapping-information"], [833, "identifier-and-mapping-information"], [834, "identifier-and-mapping-information"], [835, "identifier-and-mapping-information"], [836, "identifier-and-mapping-information"], [837, "identifier-and-mapping-information"], [838, "identifier-and-mapping-information"], [839, "identifier-and-mapping-information"], [840, "identifier-and-mapping-information"], [841, "identifier-and-mapping-information"], [842, "identifier-and-mapping-information"], [843, "identifier-and-mapping-information"], [844, "identifier-and-mapping-information"], [845, "identifier-and-mapping-information"], [846, "identifier-and-mapping-information"], [847, "identifier-and-mapping-information"], [848, "identifier-and-mapping-information"], [849, "identifier-and-mapping-information"], [850, "identifier-and-mapping-information"], [851, "identifier-and-mapping-information"], [852, "identifier-and-mapping-information"], [853, "identifier-and-mapping-information"], [854, "identifier-and-mapping-information"], [855, "identifier-and-mapping-information"], [856, "identifier-and-mapping-information"], [857, "identifier-and-mapping-information"], [858, "identifier-and-mapping-information"], [859, "identifier-and-mapping-information"], [860, "identifier-and-mapping-information"], [861, "identifier-and-mapping-information"], [862, "identifier-and-mapping-information"], [863, "identifier-and-mapping-information"], [864, "identifier-and-mapping-information"], [865, "identifier-and-mapping-information"], [866, "identifier-and-mapping-information"], [867, "identifier-and-mapping-information"], [868, "identifier-and-mapping-information"], [869, "identifier-and-mapping-information"], [870, "identifier-and-mapping-information"], [871, "identifier-and-mapping-information"], [872, "identifier-and-mapping-information"], [873, "identifier-and-mapping-information"], [874, "identifier-and-mapping-information"], [875, "identifier-and-mapping-information"], [876, "identifier-and-mapping-information"], [877, "identifier-and-mapping-information"], [878, "identifier-and-mapping-information"], [879, "identifier-and-mapping-information"], [880, "identifier-and-mapping-information"], [881, "identifier-and-mapping-information"], [883, "identifier-and-mapping-information"], [884, "identifier-and-mapping-information"], [885, "identifier-and-mapping-information"], [886, "identifier-and-mapping-information"], [887, "identifier-and-mapping-information"], [888, "identifier-and-mapping-information"], [889, "identifier-and-mapping-information"], [890, "identifier-and-mapping-information"], [891, "identifier-and-mapping-information"], [892, "identifier-and-mapping-information"], [893, "identifier-and-mapping-information"], [894, "identifier-and-mapping-information"], [895, "identifier-and-mapping-information"], [896, "identifier-and-mapping-information"], [897, "identifier-and-mapping-information"], [898, "identifier-and-mapping-information"], [899, "identifier-and-mapping-information"], [900, "identifier-and-mapping-information"], [901, "identifier-and-mapping-information"], [902, "identifier-and-mapping-information"], [903, "identifier-and-mapping-information"], [904, "identifier-and-mapping-information"], [905, "identifier-and-mapping-information"], [906, "identifier-and-mapping-information"], [907, "identifier-and-mapping-information"], [908, "identifier-and-mapping-information"], [909, "identifier-and-mapping-information"], [911, "identifier-and-mapping-information"], [912, "identifier-and-mapping-information"], [913, "identifier-and-mapping-information"], [915, "identifier-and-mapping-information"], [916, "identifier-and-mapping-information"], [917, "identifier-and-mapping-information"], [918, "identifier-and-mapping-information"], [919, "identifier-and-mapping-information"], [920, "identifier-and-mapping-information"], [921, "identifier-and-mapping-information"], [922, "identifier-and-mapping-information"], [923, "identifier-and-mapping-information"], [924, "identifier-and-mapping-information"], [925, "identifier-and-mapping-information"], [926, "identifier-and-mapping-information"], [927, "identifier-and-mapping-information"], [928, "identifier-and-mapping-information"], [929, "identifier-and-mapping-information"], [930, "identifier-and-mapping-information"], [931, "identifier-and-mapping-information"], [932, "identifier-and-mapping-information"], [933, "identifier-and-mapping-information"], [934, "identifier-and-mapping-information"], [935, "identifier-and-mapping-information"], [936, "identifier-and-mapping-information"], [937, "identifier-and-mapping-information"], [938, "identifier-and-mapping-information"], [939, "identifier-and-mapping-information"], [940, "identifier-and-mapping-information"], [941, "identifier-and-mapping-information"], [942, "identifier-and-mapping-information"], [943, "identifier-and-mapping-information"], [944, "identifier-and-mapping-information"], [945, "identifier-and-mapping-information"], [946, "identifier-and-mapping-information"], [947, "identifier-and-mapping-information"], [948, "identifier-and-mapping-information"], [949, "identifier-and-mapping-information"], [950, "identifier-and-mapping-information"], [951, "identifier-and-mapping-information"], [952, "identifier-and-mapping-information"], [954, "identifier-and-mapping-information"], [955, "identifier-and-mapping-information"], [956, "identifier-and-mapping-information"], [957, "identifier-and-mapping-information"], [958, "identifier-and-mapping-information"], [959, "identifier-and-mapping-information"], [960, "identifier-and-mapping-information"], [961, "identifier-and-mapping-information"], [962, "identifier-and-mapping-information"], [963, "identifier-and-mapping-information"], [964, "identifier-and-mapping-information"], [965, "identifier-and-mapping-information"], [966, "identifier-and-mapping-information"], [968, "identifier-and-mapping-information"], [969, "identifier-and-mapping-information"], [970, "identifier-and-mapping-information"], [971, "identifier-and-mapping-information"], [972, "identifier-and-mapping-information"], [973, "identifier-and-mapping-information"], [974, "identifier-and-mapping-information"], [975, "identifier-and-mapping-information"], [976, "identifier-and-mapping-information"], [977, "identifier-and-mapping-information"], [978, "identifier-and-mapping-information"], [979, "identifier-and-mapping-information"], [980, "identifier-and-mapping-information"], [981, "identifier-and-mapping-information"], [982, "identifier-and-mapping-information"], [983, "identifier-and-mapping-information"], [984, "identifier-and-mapping-information"], [985, "identifier-and-mapping-information"], [986, "identifier-and-mapping-information"], [987, "identifier-and-mapping-information"], [988, "identifier-and-mapping-information"], [989, "identifier-and-mapping-information"], [990, "identifier-and-mapping-information"], [991, "identifier-and-mapping-information"], [992, "identifier-and-mapping-information"], [993, "identifier-and-mapping-information"], [994, "identifier-and-mapping-information"], [995, "identifier-and-mapping-information"], [996, "identifier-and-mapping-information"], [997, "identifier-and-mapping-information"], [998, "identifier-and-mapping-information"], [999, "identifier-and-mapping-information"], [1000, "identifier-and-mapping-information"], [1002, "identifier-and-mapping-information"], [1003, "identifier-and-mapping-information"], [1004, "identifier-and-mapping-information"], [1005, "identifier-and-mapping-information"], [1006, "identifier-and-mapping-information"], [1007, "identifier-and-mapping-information"], [1008, "identifier-and-mapping-information"], [1009, "identifier-and-mapping-information"], [1010, "identifier-and-mapping-information"], [1011, "identifier-and-mapping-information"], [1012, "identifier-and-mapping-information"], [1013, "identifier-and-mapping-information"], [1014, "identifier-and-mapping-information"], [1015, "identifier-and-mapping-information"], [1016, "identifier-and-mapping-information"], [1017, "identifier-and-mapping-information"], [1018, "identifier-and-mapping-information"], [1019, "identifier-and-mapping-information"], [1020, "identifier-and-mapping-information"], [1021, "identifier-and-mapping-information"], [1022, "identifier-and-mapping-information"], [1023, "identifier-and-mapping-information"], [1025, "identifier-and-mapping-information"], [1027, "identifier-and-mapping-information"], [1028, "identifier-and-mapping-information"], [1029, "identifier-and-mapping-information"], [1030, "identifier-and-mapping-information"], [1031, "identifier-and-mapping-information"], [1032, "identifier-and-mapping-information"], [1033, "identifier-and-mapping-information"], [1034, "identifier-and-mapping-information"], [1035, "identifier-and-mapping-information"], [1036, "identifier-and-mapping-information"], [1037, "identifier-and-mapping-information"], [1038, "identifier-and-mapping-information"], [1039, "identifier-and-mapping-information"], [1040, "identifier-and-mapping-information"], [1041, "identifier-and-mapping-information"], [1042, "identifier-and-mapping-information"], [1043, "identifier-and-mapping-information"], [1044, "identifier-and-mapping-information"], [1045, "identifier-and-mapping-information"], [1046, "identifier-and-mapping-information"], [1047, "identifier-and-mapping-information"], [1048, "identifier-and-mapping-information"], [1049, "identifier-and-mapping-information"], [1050, "identifier-and-mapping-information"], [1051, "identifier-and-mapping-information"], [1052, "identifier-and-mapping-information"], [1053, "identifier-and-mapping-information"], [1054, "identifier-and-mapping-information"], [1055, "identifier-and-mapping-information"], [1056, "identifier-and-mapping-information"], [1057, "identifier-and-mapping-information"], [1058, "identifier-and-mapping-information"], [1059, "identifier-and-mapping-information"], [1060, "identifier-and-mapping-information"], [1061, "identifier-and-mapping-information"], [1062, "identifier-and-mapping-information"], [1063, "identifier-and-mapping-information"], [1064, "identifier-and-mapping-information"], [1065, "identifier-and-mapping-information"], [1066, "identifier-and-mapping-information"], [1068, "identifier-and-mapping-information"], [1069, "identifier-and-mapping-information"], [1070, "identifier-and-mapping-information"], [1071, "identifier-and-mapping-information"], [1072, "identifier-and-mapping-information"], [1073, "identifier-and-mapping-information"], [1074, "identifier-and-mapping-information"], [1075, "identifier-and-mapping-information"], [1076, "identifier-and-mapping-information"], [1077, "identifier-and-mapping-information"], [1078, "identifier-and-mapping-information"], [1079, "identifier-and-mapping-information"], [1080, "identifier-and-mapping-information"], [1081, "identifier-and-mapping-information"], [1082, "identifier-and-mapping-information"], [1083, "identifier-and-mapping-information"], [1084, "identifier-and-mapping-information"], [1085, "identifier-and-mapping-information"], [1086, "identifier-and-mapping-information"], [1087, "identifier-and-mapping-information"], [1088, "identifier-and-mapping-information"], [1089, "identifier-and-mapping-information"], [1090, "identifier-and-mapping-information"], [1091, "identifier-and-mapping-information"], [1092, "identifier-and-mapping-information"], [1093, "identifier-and-mapping-information"], [1094, "identifier-and-mapping-information"], [1096, "identifier-and-mapping-information"], [1097, "identifier-and-mapping-information"]], "Schema Source": [[3, "schema-source"], [4, "schema-source"], [5, "schema-source"], [6, "schema-source"], [7, "schema-source"], [8, "schema-source"], [9, "schema-source"], [10, "schema-source"], [11, "schema-source"], [12, "schema-source"], [13, "schema-source"], [14, "schema-source"], [15, "schema-source"], [16, "schema-source"], [17, "schema-source"], [18, "schema-source"], [19, "schema-source"], [20, "schema-source"], [21, "schema-source"], [22, "schema-source"], [23, "schema-source"], [24, "schema-source"], [25, "schema-source"], [26, "schema-source"], [27, "schema-source"], [28, "schema-source"], [29, "schema-source"], [30, "schema-source"], [32, "schema-source"], [33, "schema-source"], [34, "schema-source"], [35, "schema-source"], [36, "schema-source"], [37, "schema-source"], [38, "schema-source"], [39, "schema-source"], [40, "schema-source"], [41, "schema-source"], [42, "schema-source"], [43, "schema-source"], [44, "schema-source"], [45, "schema-source"], [47, "schema-source"], [48, "schema-source"], [49, "schema-source"], [50, "schema-source"], [51, "schema-source"], [52, "schema-source"], [53, "schema-source"], [54, "schema-source"], [55, "schema-source"], [56, "schema-source"], [57, "schema-source"], [58, "schema-source"], [59, "schema-source"], [60, "schema-source"], [61, "schema-source"], [62, "schema-source"], [63, "schema-source"], [64, "schema-source"], [65, "schema-source"], [66, "schema-source"], [67, "schema-source"], [68, "schema-source"], [69, "schema-source"], [70, "schema-source"], [71, "schema-source"], [72, "schema-source"], [73, "schema-source"], [74, "schema-source"], [75, "schema-source"], [76, "schema-source"], [77, "schema-source"], [78, "schema-source"], [79, "schema-source"], [80, "schema-source"], [81, "schema-source"], [82, "schema-source"], [83, "schema-source"], [84, "schema-source"], [85, "schema-source"], [86, "schema-source"], [87, "schema-source"], [88, "schema-source"], [89, "schema-source"], [90, "schema-source"], [91, "schema-source"], [92, "schema-source"], [93, "schema-source"], [94, "schema-source"], [95, "schema-source"], [96, "schema-source"], [97, "schema-source"], [98, "schema-source"], [99, "schema-source"], [100, "schema-source"], [101, "schema-source"], [102, "schema-source"], [103, "schema-source"], [104, "schema-source"], [105, "schema-source"], [106, "schema-source"], [107, "schema-source"], [108, "schema-source"], [109, "schema-source"], [110, "schema-source"], [111, "schema-source"], [112, "schema-source"], [113, "schema-source"], [114, "schema-source"], [115, "schema-source"], [116, "schema-source"], [117, "schema-source"], [119, "schema-source"], [120, "schema-source"], [121, "schema-source"], [122, "schema-source"], [123, "schema-source"], [124, "schema-source"], [126, "schema-source"], [127, "schema-source"], [128, "schema-source"], [129, "schema-source"], [130, "schema-source"], [131, "schema-source"], [132, "schema-source"], [133, "schema-source"], [134, "schema-source"], [135, "schema-source"], [136, "schema-source"], [137, "schema-source"], [138, "schema-source"], [139, "schema-source"], [140, "schema-source"], [141, "schema-source"], [142, "schema-source"], [143, "schema-source"], [144, "schema-source"], [145, "schema-source"], [146, "schema-source"], [147, "schema-source"], [148, "schema-source"], [149, "schema-source"], [150, "schema-source"], [151, "schema-source"], [152, "schema-source"], [153, "schema-source"], [154, "schema-source"], [155, "schema-source"], [156, "schema-source"], [157, "schema-source"], [158, "schema-source"], [159, "schema-source"], [160, "schema-source"], [161, "schema-source"], [164, "schema-source"], [165, "schema-source"], [166, "schema-source"], [167, "schema-source"], [168, "schema-source"], [170, "schema-source"], [171, "schema-source"], [173, "schema-source"], [174, "schema-source"], [175, "schema-source"], [176, "schema-source"], [177, "schema-source"], [179, "schema-source"], [180, "schema-source"], [181, "schema-source"], [182, "schema-source"], [183, "schema-source"], [184, "schema-source"], [185, "schema-source"], [186, "schema-source"], [188, "schema-source"], [189, "schema-source"], [191, "schema-source"], [192, "schema-source"], [193, "schema-source"], [194, "schema-source"], [196, "schema-source"], [197, "schema-source"], [198, "schema-source"], [199, "schema-source"], [203, "schema-source"], [204, "schema-source"], [205, "schema-source"], [206, "schema-source"], [207, "schema-source"], [208, "schema-source"], [209, "schema-source"], [210, "schema-source"], [211, "schema-source"], [212, "schema-source"], [213, "schema-source"], [214, "schema-source"], [215, "schema-source"], [216, "schema-source"], [217, "schema-source"], [218, "schema-source"], [219, "schema-source"], [220, "schema-source"], [221, "schema-source"], [222, "schema-source"], [223, "schema-source"], [224, "schema-source"], [225, "schema-source"], [226, "schema-source"], [227, "schema-source"], [228, "schema-source"], [230, "schema-source"], [232, "schema-source"], [233, "schema-source"], [235, "schema-source"], [237, "schema-source"], [238, "schema-source"], [239, "schema-source"], [240, "schema-source"], [242, "schema-source"], [243, "schema-source"], [244, "schema-source"], [245, "schema-source"], [246, "schema-source"], [247, "schema-source"], [249, "schema-source"], [250, "schema-source"], [251, "schema-source"], [252, "schema-source"], [253, "schema-source"], [254, "schema-source"], [255, "schema-source"], [256, "schema-source"], [257, "schema-source"], [258, "schema-source"], [259, "schema-source"], [260, "schema-source"], [261, "schema-source"], [262, "schema-source"], [263, "schema-source"], [264, "schema-source"], [265, "schema-source"], [266, "schema-source"], [267, "schema-source"], [268, "schema-source"], [269, "schema-source"], [270, "schema-source"], [271, "schema-source"], [272, "schema-source"], [273, "schema-source"], [274, "schema-source"], [275, "schema-source"], [276, "schema-source"], [277, "schema-source"], [278, "schema-source"], [282, "schema-source"], [283, "schema-source"], [284, "schema-source"], [285, "schema-source"], [286, "schema-source"], [287, "schema-source"], [288, "schema-source"], [289, "schema-source"], [290, "schema-source"], [291, "schema-source"], [292, "schema-source"], [294, "schema-source"], [295, "schema-source"], [296, "schema-source"], [297, "schema-source"], [298, "schema-source"], [299, "schema-source"], [300, "schema-source"], [301, "schema-source"], [302, "schema-source"], [303, "schema-source"], [304, "schema-source"], [305, "schema-source"], [306, "schema-source"], [307, "schema-source"], [308, "schema-source"], [309, "schema-source"], [310, "schema-source"], [311, "schema-source"], [312, "schema-source"], [313, "schema-source"], [314, "schema-source"], [315, "schema-source"], [316, "schema-source"], [317, "schema-source"], [318, "schema-source"], [319, "schema-source"], [320, "schema-source"], [321, "schema-source"], [322, "schema-source"], [323, "schema-source"], [324, "schema-source"], [325, "schema-source"], [326, "schema-source"], [327, "schema-source"], [328, "schema-source"], [329, "schema-source"], [330, "schema-source"], [332, "schema-source"], [337, "schema-source"], [338, "schema-source"], [339, "schema-source"], [340, "schema-source"], [341, "schema-source"], [342, "schema-source"], [343, "schema-source"], [344, "schema-source"], [345, "schema-source"], [346, "schema-source"], [347, "schema-source"], [348, "schema-source"], [349, "schema-source"], [350, "schema-source"], [351, "schema-source"], [352, "schema-source"], [353, "schema-source"], [355, "schema-source"], [356, "schema-source"], [357, "schema-source"], [358, "schema-source"], [359, "schema-source"], [360, "schema-source"], [361, "schema-source"], [362, "schema-source"], [363, "schema-source"], [364, "schema-source"], [365, "schema-source"], [366, "schema-source"], [367, "schema-source"], [368, "schema-source"], [369, "schema-source"], [371, "schema-source"], [372, "schema-source"], [373, "schema-source"], [374, "schema-source"], [375, "schema-source"], [376, "schema-source"], [377, "schema-source"], [378, "schema-source"], [379, "schema-source"], [380, "schema-source"], [381, "schema-source"], [382, "schema-source"], [383, "schema-source"], [384, "schema-source"], [385, "schema-source"], [386, "schema-source"], [387, "schema-source"], [388, "schema-source"], [389, "schema-source"], [390, "schema-source"], [391, "schema-source"], [392, "schema-source"], [393, "schema-source"], [394, "schema-source"], [395, "schema-source"], [396, "schema-source"], [397, "schema-source"], [398, "schema-source"], [399, "schema-source"], [400, "schema-source"], [401, "schema-source"], [402, "schema-source"], [403, "schema-source"], [404, "schema-source"], [405, "schema-source"], [406, "schema-source"], [407, "schema-source"], [408, "schema-source"], [409, "schema-source"], [410, "schema-source"], [411, "schema-source"], [412, "schema-source"], [413, "schema-source"], [414, "schema-source"], [415, "schema-source"], [416, "schema-source"], [417, "schema-source"], [418, "schema-source"], [419, "schema-source"], [420, "schema-source"], [421, "schema-source"], [422, "schema-source"], [423, "schema-source"], [424, "schema-source"], [425, "schema-source"], [426, "schema-source"], [427, "schema-source"], [428, "schema-source"], [429, "schema-source"], [430, "schema-source"], [431, "schema-source"], [432, "schema-source"], [433, "schema-source"], [434, "schema-source"], [435, "schema-source"], [436, "schema-source"], [438, "schema-source"], [440, "schema-source"], [441, "schema-source"], [442, "schema-source"], [443, "schema-source"], [444, "schema-source"], [445, "schema-source"], [446, "schema-source"], [447, "schema-source"], [450, "schema-source"], [451, "schema-source"], [452, "schema-source"], [453, "schema-source"], [454, "schema-source"], [455, "schema-source"], [456, "schema-source"], [457, "schema-source"], [458, "schema-source"], [459, "schema-source"], [460, "schema-source"], [461, "schema-source"], [462, "schema-source"], [463, "schema-source"], [464, "schema-source"], [465, "schema-source"], [466, "schema-source"], [467, "schema-source"], [468, "schema-source"], [470, "schema-source"], [471, "schema-source"], [472, "schema-source"], [473, "schema-source"], [474, "schema-source"], [475, "schema-source"], [476, "schema-source"], [477, "schema-source"], [478, "schema-source"], [479, "schema-source"], [480, "schema-source"], [481, "schema-source"], [482, "schema-source"], [483, "schema-source"], [484, "schema-source"], [485, "schema-source"], [486, "schema-source"], [487, "schema-source"], [488, "schema-source"], [489, "schema-source"], [490, "schema-source"], [491, "schema-source"], [492, "schema-source"], [493, "schema-source"], [494, "schema-source"], [495, "schema-source"], [496, "schema-source"], [497, "schema-source"], [498, "schema-source"], [499, "schema-source"], [500, "schema-source"], [501, "schema-source"], [502, "schema-source"], [503, "schema-source"], [504, "schema-source"], [505, "schema-source"], [506, "schema-source"], [507, "schema-source"], [508, "schema-source"], [509, "schema-source"], [510, "schema-source"], [511, "schema-source"], [512, "schema-source"], [513, "schema-source"], [514, "schema-source"], [515, "schema-source"], [516, "schema-source"], [517, "schema-source"], [518, "schema-source"], [519, "schema-source"], [520, "schema-source"], [521, "schema-source"], [522, "schema-source"], [523, "schema-source"], [524, "schema-source"], [525, "schema-source"], [526, "schema-source"], [527, "schema-source"], [528, "schema-source"], [529, "schema-source"], [530, "schema-source"], [531, "schema-source"], [532, "schema-source"], [533, "schema-source"], [535, "schema-source"], [536, "schema-source"], [537, "schema-source"], [538, "schema-source"], [539, "schema-source"], [540, "schema-source"], [541, "schema-source"], [542, "schema-source"], [543, "schema-source"], [544, "schema-source"], [545, "schema-source"], [546, "schema-source"], [547, "schema-source"], [548, "schema-source"], [549, "schema-source"], [550, "schema-source"], [551, "schema-source"], [552, "schema-source"], [553, "schema-source"], [554, "schema-source"], [555, "schema-source"], [556, "schema-source"], [557, "schema-source"], [558, "schema-source"], [559, "schema-source"], [560, "schema-source"], [561, "schema-source"], [562, "schema-source"], [563, "schema-source"], [564, "schema-source"], [565, "schema-source"], [566, "schema-source"], [567, "schema-source"], [568, "schema-source"], [569, "schema-source"], [570, "schema-source"], [571, "schema-source"], [572, "schema-source"], [573, "schema-source"], [574, "schema-source"], [575, "schema-source"], [576, "schema-source"], [577, "schema-source"], [578, "schema-source"], [579, "schema-source"], [580, "schema-source"], [581, "schema-source"], [582, "schema-source"], [583, "schema-source"], [584, "schema-source"], [585, "schema-source"], [586, "schema-source"], [587, "schema-source"], [588, "schema-source"], [589, "schema-source"], [590, "schema-source"], [591, "schema-source"], [592, "schema-source"], [593, "schema-source"], [594, "schema-source"], [595, "schema-source"], [596, "schema-source"], [597, "schema-source"], [598, "schema-source"], [599, "schema-source"], [600, "schema-source"], [601, "schema-source"], [602, "schema-source"], [603, "schema-source"], [604, "schema-source"], [605, "schema-source"], [606, "schema-source"], [607, "schema-source"], [608, "schema-source"], [609, "schema-source"], [610, "schema-source"], [611, "schema-source"], [612, "schema-source"], [614, "schema-source"], [615, "schema-source"], [616, "schema-source"], [617, "schema-source"], [618, "schema-source"], [619, "schema-source"], [620, "schema-source"], [621, "schema-source"], [622, "schema-source"], [623, "schema-source"], [624, "schema-source"], [625, "schema-source"], [626, "schema-source"], [627, "schema-source"], [628, "schema-source"], [629, "schema-source"], [630, "schema-source"], [631, "schema-source"], [632, "schema-source"], [633, "schema-source"], [634, "schema-source"], [635, "schema-source"], [636, "schema-source"], [637, "schema-source"], [638, "schema-source"], [639, "schema-source"], [640, "schema-source"], [641, "schema-source"], [643, "schema-source"], [644, "schema-source"], [645, "schema-source"], [646, "schema-source"], [647, "schema-source"], [648, "schema-source"], [649, "schema-source"], [650, "schema-source"], [651, "schema-source"], [652, "schema-source"], [653, "schema-source"], [654, "schema-source"], [655, "schema-source"], [656, "schema-source"], [657, "schema-source"], [658, "schema-source"], [659, "schema-source"], [660, "schema-source"], [661, "schema-source"], [662, "schema-source"], [663, "schema-source"], [664, "schema-source"], [665, "schema-source"], [666, "schema-source"], [667, "schema-source"], [668, "schema-source"], [670, "schema-source"], [671, "schema-source"], [672, "schema-source"], [673, "schema-source"], [674, "schema-source"], [675, "schema-source"], [676, "schema-source"], [677, "schema-source"], [678, "schema-source"], [679, "schema-source"], [680, "schema-source"], [681, "schema-source"], [682, "schema-source"], [683, "schema-source"], [684, "schema-source"], [685, "schema-source"], [686, "schema-source"], [687, "schema-source"], [688, "schema-source"], [689, "schema-source"], [690, "schema-source"], [691, "schema-source"], [692, "schema-source"], [693, "schema-source"], [694, "schema-source"], [695, "schema-source"], [696, "schema-source"], [697, "schema-source"], [698, "schema-source"], [699, "schema-source"], [700, "schema-source"], [701, "schema-source"], [702, "schema-source"], [703, "schema-source"], [704, "schema-source"], [705, "schema-source"], [706, "schema-source"], [707, "schema-source"], [708, "schema-source"], [710, "schema-source"], [711, "schema-source"], [712, "schema-source"], [713, "schema-source"], [714, "schema-source"], [715, "schema-source"], [716, "schema-source"], [718, "schema-source"], [719, "schema-source"], [720, "schema-source"], [721, "schema-source"], [722, "schema-source"], [723, "schema-source"], [724, "schema-source"], [725, "schema-source"], [726, "schema-source"], [727, "schema-source"], [728, "schema-source"], [729, "schema-source"], [730, "schema-source"], [731, "schema-source"], [732, "schema-source"], [733, "schema-source"], [734, "schema-source"], [736, "schema-source"], [737, "schema-source"], [738, "schema-source"], [739, "schema-source"], [740, "schema-source"], [743, "schema-source"], [744, "schema-source"], [745, "schema-source"], [746, "schema-source"], [747, "schema-source"], [748, "schema-source"], [749, "schema-source"], [750, "schema-source"], [751, "schema-source"], [752, "schema-source"], [753, "schema-source"], [754, "schema-source"], [755, "schema-source"], [756, "schema-source"], [757, "schema-source"], [758, "schema-source"], [759, "schema-source"], [760, "schema-source"], [761, "schema-source"], [762, "schema-source"], [763, "schema-source"], [764, "schema-source"], [765, "schema-source"], [766, "schema-source"], [767, "schema-source"], [768, "schema-source"], [769, "schema-source"], [770, "schema-source"], [771, "schema-source"], [772, "schema-source"], [773, "schema-source"], [774, "schema-source"], [775, "schema-source"], [776, "schema-source"], [777, "schema-source"], [778, "schema-source"], [779, "schema-source"], [781, "schema-source"], [782, "schema-source"], [783, "schema-source"], [784, "schema-source"], [785, "schema-source"], [786, "schema-source"], [787, "schema-source"], [788, "schema-source"], [789, "schema-source"], [790, "schema-source"], [791, "schema-source"], [792, "schema-source"], [793, "schema-source"], [794, "schema-source"], [795, "schema-source"], [796, "schema-source"], [797, "schema-source"], [798, "schema-source"], [799, "schema-source"], [800, "schema-source"], [801, "schema-source"], [802, "schema-source"], [803, "schema-source"], [804, "schema-source"], [805, "schema-source"], [806, "schema-source"], [807, "schema-source"], [808, "schema-source"], [809, "schema-source"], [811, "schema-source"], [813, "schema-source"], [814, "schema-source"], [815, "schema-source"], [816, "schema-source"], [817, "schema-source"], [818, "schema-source"], [819, "schema-source"], [820, "schema-source"], [821, "schema-source"], [822, "schema-source"], [823, "schema-source"], [824, "schema-source"], [825, "schema-source"], [826, "schema-source"], [827, "schema-source"], [828, "schema-source"], [829, "schema-source"], [830, "schema-source"], [831, "schema-source"], [832, "schema-source"], [833, "schema-source"], [834, "schema-source"], [835, "schema-source"], [836, "schema-source"], [837, "schema-source"], [838, "schema-source"], [839, "schema-source"], [840, "schema-source"], [841, "schema-source"], [842, "schema-source"], [843, "schema-source"], [844, "schema-source"], [845, "schema-source"], [846, "schema-source"], [847, "schema-source"], [848, "schema-source"], [849, "schema-source"], [850, "schema-source"], [851, "schema-source"], [852, "schema-source"], [853, "schema-source"], [854, "schema-source"], [855, "schema-source"], [856, "schema-source"], [857, "schema-source"], [858, "schema-source"], [859, "schema-source"], [860, "schema-source"], [861, "schema-source"], [862, "schema-source"], [863, "schema-source"], [864, "schema-source"], [865, "schema-source"], [866, "schema-source"], [867, "schema-source"], [868, "schema-source"], [869, "schema-source"], [870, "schema-source"], [871, "schema-source"], [872, "schema-source"], [873, "schema-source"], [874, "schema-source"], [875, "schema-source"], [876, "schema-source"], [877, "schema-source"], [878, "schema-source"], [883, "schema-source"], [884, "schema-source"], [885, "schema-source"], [886, "schema-source"], [887, "schema-source"], [888, "schema-source"], [889, "schema-source"], [890, "schema-source"], [891, "schema-source"], [892, "schema-source"], [893, "schema-source"], [894, "schema-source"], [895, "schema-source"], [896, "schema-source"], [897, "schema-source"], [898, "schema-source"], [899, "schema-source"], [900, "schema-source"], [901, "schema-source"], [902, "schema-source"], [903, "schema-source"], [904, "schema-source"], [905, "schema-source"], [906, "schema-source"], [907, "schema-source"], [908, "schema-source"], [909, "schema-source"], [911, "schema-source"], [912, "schema-source"], [913, "schema-source"], [915, "schema-source"], [916, "schema-source"], [917, "schema-source"], [918, "schema-source"], [919, "schema-source"], [920, "schema-source"], [921, "schema-source"], [922, "schema-source"], [923, "schema-source"], [924, "schema-source"], [925, "schema-source"], [926, "schema-source"], [927, "schema-source"], [928, "schema-source"], [929, "schema-source"], [930, "schema-source"], [931, "schema-source"], [932, "schema-source"], [933, "schema-source"], [934, "schema-source"], [935, "schema-source"], [936, "schema-source"], [937, "schema-source"], [938, "schema-source"], [939, "schema-source"], [940, "schema-source"], [941, "schema-source"], [942, "schema-source"], [943, "schema-source"], [944, "schema-source"], [945, "schema-source"], [946, "schema-source"], [947, "schema-source"], [948, "schema-source"], [949, "schema-source"], [950, "schema-source"], [951, "schema-source"], [952, "schema-source"], [954, "schema-source"], [955, "schema-source"], [956, "schema-source"], [957, "schema-source"], [958, "schema-source"], [959, "schema-source"], [960, "schema-source"], [961, "schema-source"], [962, "schema-source"], [963, "schema-source"], [964, "schema-source"], [965, "schema-source"], [966, "schema-source"], [968, "schema-source"], [969, "schema-source"], [970, "schema-source"], [971, "schema-source"], [972, "schema-source"], [973, "schema-source"], [974, "schema-source"], [975, "schema-source"], [976, "schema-source"], [977, "schema-source"], [978, "schema-source"], [979, "schema-source"], [980, "schema-source"], [981, "schema-source"], [982, "schema-source"], [983, "schema-source"], [984, "schema-source"], [985, "schema-source"], [986, "schema-source"], [987, "schema-source"], [988, "schema-source"], [989, "schema-source"], [990, "schema-source"], [991, "schema-source"], [992, "schema-source"], [993, "schema-source"], [994, "schema-source"], [995, "schema-source"], [996, "schema-source"], [997, "schema-source"], [998, "schema-source"], [999, "schema-source"], [1000, "schema-source"], [1002, "schema-source"], [1003, "schema-source"], [1004, "schema-source"], [1005, "schema-source"], [1006, "schema-source"], [1008, "schema-source"], [1009, "schema-source"], [1010, "schema-source"], [1011, "schema-source"], [1012, "schema-source"], [1013, "schema-source"], [1014, "schema-source"], [1015, "schema-source"], [1016, "schema-source"], [1017, "schema-source"], [1018, "schema-source"], [1019, "schema-source"], [1020, "schema-source"], [1021, "schema-source"], [1022, "schema-source"], [1023, "schema-source"], [1025, "schema-source"], [1027, "schema-source"], [1028, "schema-source"], [1029, "schema-source"], [1030, "schema-source"], [1031, "schema-source"], [1032, "schema-source"], [1033, "schema-source"], [1034, "schema-source"], [1035, "schema-source"], [1036, "schema-source"], [1037, "schema-source"], [1038, "schema-source"], [1039, "schema-source"], [1040, "schema-source"], [1041, "schema-source"], [1042, "schema-source"], [1043, "schema-source"], [1044, "schema-source"], [1045, "schema-source"], [1046, "schema-source"], [1047, "schema-source"], [1048, "schema-source"], [1049, "schema-source"], [1050, "schema-source"], [1051, "schema-source"], [1052, "schema-source"], [1053, "schema-source"], [1054, "schema-source"], [1055, "schema-source"], [1056, "schema-source"], [1057, "schema-source"], [1058, "schema-source"], [1059, "schema-source"], [1060, "schema-source"], [1061, "schema-source"], [1062, "schema-source"], [1063, "schema-source"], [1064, "schema-source"], [1065, "schema-source"], [1066, "schema-source"], [1068, "schema-source"], [1069, "schema-source"], [1070, "schema-source"], [1071, "schema-source"], [1072, "schema-source"], [1073, "schema-source"], [1074, "schema-source"], [1075, "schema-source"], [1076, "schema-source"], [1077, "schema-source"], [1078, "schema-source"], [1079, "schema-source"], [1080, "schema-source"], [1081, "schema-source"], [1082, "schema-source"], [1083, "schema-source"], [1084, "schema-source"], [1085, "schema-source"], [1086, "schema-source"], [1087, "schema-source"], [1088, "schema-source"], [1089, "schema-source"], [1090, "schema-source"], [1091, "schema-source"], [1092, "schema-source"], [1093, "schema-source"], [1094, "schema-source"], [1096, "schema-source"], [1097, "schema-source"]], "LinkML Source": [[3, "linkml-source"], [4, "linkml-source"], [17, "linkml-source"], [20, "linkml-source"], [21, "linkml-source"], [22, "linkml-source"], [23, "linkml-source"], [24, "linkml-source"], [30, "linkml-source"], [32, "linkml-source"], [33, "linkml-source"], [34, "linkml-source"], [35, "linkml-source"], [36, "linkml-source"], [37, "linkml-source"], [38, "linkml-source"], [39, "linkml-source"], [40, "linkml-source"], [41, "linkml-source"], [42, "linkml-source"], [43, "linkml-source"], [44, "linkml-source"], [45, "linkml-source"], [47, "linkml-source"], [48, "linkml-source"], [49, "linkml-source"], [50, "linkml-source"], [51, "linkml-source"], [52, "linkml-source"], [53, "linkml-source"], [54, "linkml-source"], [55, "linkml-source"], [56, "linkml-source"], [57, "linkml-source"], [58, "linkml-source"], [59, "linkml-source"], [60, "linkml-source"], [61, "linkml-source"], [62, "linkml-source"], [63, "linkml-source"], [64, "linkml-source"], [65, "linkml-source"], [66, "linkml-source"], [67, "linkml-source"], [68, "linkml-source"], [69, "linkml-source"], [70, "linkml-source"], [71, "linkml-source"], [72, "linkml-source"], [73, "linkml-source"], [74, "linkml-source"], [75, "linkml-source"], [76, "linkml-source"], [77, "linkml-source"], [78, "linkml-source"], [79, "linkml-source"], [80, "linkml-source"], [81, "linkml-source"], [82, "linkml-source"], [83, "linkml-source"], [84, "linkml-source"], [85, "linkml-source"], [86, "linkml-source"], [87, "linkml-source"], [88, "linkml-source"], [89, "linkml-source"], [90, "linkml-source"], [92, "linkml-source"], [93, "linkml-source"], [94, "linkml-source"], [109, "linkml-source"], [115, "linkml-source"], [116, "linkml-source"], [117, "linkml-source"], [119, "linkml-source"], [120, "linkml-source"], [121, "linkml-source"], [122, "linkml-source"], [123, "linkml-source"], [124, "linkml-source"], [126, "linkml-source"], [127, "linkml-source"], [128, "linkml-source"], [129, "linkml-source"], [130, "linkml-source"], [131, "linkml-source"], [132, "linkml-source"], [133, "linkml-source"], [140, "linkml-source"], [148, "linkml-source"], [153, "linkml-source"], [157, "linkml-source"], [161, "linkml-source"], [164, "linkml-source"], [165, "linkml-source"], [166, "linkml-source"], [167, "linkml-source"], [168, "linkml-source"], [170, "linkml-source"], [171, "linkml-source"], [173, "linkml-source"], [174, "linkml-source"], [175, "linkml-source"], [176, "linkml-source"], [177, "linkml-source"], [179, "linkml-source"], [180, "linkml-source"], [181, "linkml-source"], [182, "linkml-source"], [183, "linkml-source"], [184, "linkml-source"], [185, "linkml-source"], [186, "linkml-source"], [188, "linkml-source"], [189, "linkml-source"], [191, "linkml-source"], [192, "linkml-source"], [193, "linkml-source"], [194, "linkml-source"], [196, "linkml-source"], [197, "linkml-source"], [198, "linkml-source"], [199, "linkml-source"], [212, "linkml-source"], [213, "linkml-source"], [214, "linkml-source"], [217, "linkml-source"], [223, "linkml-source"], [227, "linkml-source"], [228, "linkml-source"], [229, "linkml-source"], [230, "linkml-source"], [231, "linkml-source"], [232, "linkml-source"], [233, "linkml-source"], [235, "linkml-source"], [237, "linkml-source"], [238, "linkml-source"], [239, "linkml-source"], [240, "linkml-source"], [241, "linkml-source"], [242, "linkml-source"], [243, "linkml-source"], [244, "linkml-source"], [245, "linkml-source"], [246, "linkml-source"], [247, "linkml-source"], [249, "linkml-source"], [250, "linkml-source"], [262, "linkml-source"], [263, "linkml-source"], [264, "linkml-source"], [265, "linkml-source"], [269, "linkml-source"], [273, "linkml-source"], [276, "linkml-source"], [277, "linkml-source"], [278, "linkml-source"], [282, "linkml-source"], [283, "linkml-source"], [284, "linkml-source"], [285, "linkml-source"], [286, "linkml-source"], [287, "linkml-source"], [288, "linkml-source"], [289, "linkml-source"], [290, "linkml-source"], [291, "linkml-source"], [292, "linkml-source"], [294, "linkml-source"], [295, "linkml-source"], [307, "linkml-source"], [308, "linkml-source"], [309, "linkml-source"], [310, "linkml-source"], [311, "linkml-source"], [312, "linkml-source"], [316, "linkml-source"], [317, "linkml-source"], [318, "linkml-source"], [321, "linkml-source"], [322, "linkml-source"], [324, "linkml-source"], [327, "linkml-source"], [328, "linkml-source"], [329, "linkml-source"], [330, "linkml-source"], [332, "linkml-source"], [337, "linkml-source"], [338, "linkml-source"], [339, "linkml-source"], [340, "linkml-source"], [341, "linkml-source"], [342, "linkml-source"], [343, "linkml-source"], [344, "linkml-source"], [345, "linkml-source"], [346, "linkml-source"], [347, "linkml-source"], [348, "linkml-source"], [349, "linkml-source"], [350, "linkml-source"], [351, "linkml-source"], [352, "linkml-source"], [353, "linkml-source"], [354, "linkml-source"], [355, "linkml-source"], [356, "linkml-source"], [357, "linkml-source"], [358, "linkml-source"], [359, "linkml-source"], [360, "linkml-source"], [361, "linkml-source"], [362, "linkml-source"], [363, "linkml-source"], [364, "linkml-source"], [365, "linkml-source"], [366, "linkml-source"], [367, "linkml-source"], [368, "linkml-source"], [369, "linkml-source"], [371, "linkml-source"], [372, "linkml-source"], [373, "linkml-source"], [380, "linkml-source"], [381, "linkml-source"], [382, "linkml-source"], [384, "linkml-source"], [385, "linkml-source"], [386, "linkml-source"], [388, "linkml-source"], [389, "linkml-source"], [393, "linkml-source"], [394, "linkml-source"], [396, "linkml-source"], [397, "linkml-source"], [402, "linkml-source"], [403, "linkml-source"], [404, "linkml-source"], [405, "linkml-source"], [406, "linkml-source"], [410, "linkml-source"], [411, "linkml-source"], [412, "linkml-source"], [417, "linkml-source"], [419, "linkml-source"], [420, "linkml-source"], [421, "linkml-source"], [422, "linkml-source"], [423, "linkml-source"], [424, "linkml-source"], [425, "linkml-source"], [426, "linkml-source"], [427, "linkml-source"], [428, "linkml-source"], [429, "linkml-source"], [430, "linkml-source"], [431, "linkml-source"], [432, "linkml-source"], [433, "linkml-source"], [434, "linkml-source"], [435, "linkml-source"], [436, "linkml-source"], [438, "linkml-source"], [440, "linkml-source"], [441, "linkml-source"], [442, "linkml-source"], [443, "linkml-source"], [444, "linkml-source"], [445, "linkml-source"], [446, "linkml-source"], [447, "linkml-source"], [450, "linkml-source"], [451, "linkml-source"], [452, "linkml-source"], [453, "linkml-source"], [454, "linkml-source"], [455, "linkml-source"], [456, "linkml-source"], [457, "linkml-source"], [458, "linkml-source"], [460, "linkml-source"], [462, "linkml-source"], [463, "linkml-source"], [464, "linkml-source"], [465, "linkml-source"], [466, "linkml-source"], [467, "linkml-source"], [468, "linkml-source"], [470, "linkml-source"], [471, "linkml-source"], [472, "linkml-source"], [473, "linkml-source"], [474, "linkml-source"], [475, "linkml-source"], [476, "linkml-source"], [479, "linkml-source"], [480, "linkml-source"], [481, "linkml-source"], [482, "linkml-source"], [483, "linkml-source"], [484, "linkml-source"], [485, "linkml-source"], [488, "linkml-source"], [489, "linkml-source"], [495, "linkml-source"], [497, "linkml-source"], [502, "linkml-source"], [503, "linkml-source"], [504, "linkml-source"], [505, "linkml-source"], [506, "linkml-source"], [507, "linkml-source"], [508, "linkml-source"], [509, "linkml-source"], [510, "linkml-source"], [511, "linkml-source"], [512, "linkml-source"], [518, "linkml-source"], [519, "linkml-source"], [520, "linkml-source"], [521, "linkml-source"], [522, "linkml-source"], [526, "linkml-source"], [527, "linkml-source"], [530, "linkml-source"], [532, "linkml-source"], [533, "linkml-source"], [535, "linkml-source"], [536, "linkml-source"], [537, "linkml-source"], [540, "linkml-source"], [541, "linkml-source"], [542, "linkml-source"], [545, "linkml-source"], [549, "linkml-source"], [550, "linkml-source"], [551, "linkml-source"], [552, "linkml-source"], [553, "linkml-source"], [554, "linkml-source"], [555, "linkml-source"], [556, "linkml-source"], [557, "linkml-source"], [558, "linkml-source"], [559, "linkml-source"], [560, "linkml-source"], [561, "linkml-source"], [562, "linkml-source"], [563, "linkml-source"], [564, "linkml-source"], [565, "linkml-source"], [566, "linkml-source"], [567, "linkml-source"], [568, "linkml-source"], [569, "linkml-source"], [570, "linkml-source"], [571, "linkml-source"], [572, "linkml-source"], [573, "linkml-source"], [574, "linkml-source"], [575, "linkml-source"], [576, "linkml-source"], [577, "linkml-source"], [578, "linkml-source"], [579, "linkml-source"], [580, "linkml-source"], [581, "linkml-source"], [582, "linkml-source"], [583, "linkml-source"], [584, "linkml-source"], [585, "linkml-source"], [586, "linkml-source"], [587, "linkml-source"], [588, "linkml-source"], [589, "linkml-source"], [590, "linkml-source"], [591, "linkml-source"], [592, "linkml-source"], [593, "linkml-source"], [594, "linkml-source"], [595, "linkml-source"], [596, "linkml-source"], [597, "linkml-source"], [598, "linkml-source"], [599, "linkml-source"], [600, "linkml-source"], [601, "linkml-source"], [602, "linkml-source"], [603, "linkml-source"], [604, "linkml-source"], [605, "linkml-source"], [606, "linkml-source"], [607, "linkml-source"], [608, "linkml-source"], [609, "linkml-source"], [610, "linkml-source"], [611, "linkml-source"], [612, "linkml-source"], [614, "linkml-source"], [615, "linkml-source"], [616, "linkml-source"], [617, "linkml-source"], [618, "linkml-source"], [619, "linkml-source"], [620, "linkml-source"], [621, "linkml-source"], [622, "linkml-source"], [623, "linkml-source"], [624, "linkml-source"], [625, "linkml-source"], [626, "linkml-source"], [627, "linkml-source"], [628, "linkml-source"], [629, "linkml-source"], [630, "linkml-source"], [631, "linkml-source"], [632, "linkml-source"], [633, "linkml-source"], [634, "linkml-source"], [635, "linkml-source"], [636, "linkml-source"], [637, "linkml-source"], [638, "linkml-source"], [639, "linkml-source"], [640, "linkml-source"], [641, "linkml-source"], [643, "linkml-source"], [644, "linkml-source"], [645, "linkml-source"], [646, "linkml-source"], [647, "linkml-source"], [648, "linkml-source"], [649, "linkml-source"], [650, "linkml-source"], [651, "linkml-source"], [652, "linkml-source"], [653, "linkml-source"], [654, "linkml-source"], [655, "linkml-source"], [656, "linkml-source"], [657, "linkml-source"], [658, "linkml-source"], [659, "linkml-source"], [660, "linkml-source"], [661, "linkml-source"], [662, "linkml-source"], [663, "linkml-source"], [664, "linkml-source"], [665, "linkml-source"], [666, "linkml-source"], [667, "linkml-source"], [668, "linkml-source"], [670, "linkml-source"], [671, "linkml-source"], [672, "linkml-source"], [673, "linkml-source"], [674, "linkml-source"], [676, "linkml-source"], [677, "linkml-source"], [685, "linkml-source"], [692, "linkml-source"], [693, "linkml-source"], [694, "linkml-source"], [695, "linkml-source"], [696, "linkml-source"], [698, "linkml-source"], [704, "linkml-source"], [705, "linkml-source"], [706, "linkml-source"], [707, "linkml-source"], [708, "linkml-source"], [709, "linkml-source"], [710, "linkml-source"], [711, "linkml-source"], [716, "linkml-source"], [718, "linkml-source"], [719, "linkml-source"], [720, "linkml-source"], [722, "linkml-source"], [723, "linkml-source"], [724, "linkml-source"], [725, "linkml-source"], [726, "linkml-source"], [727, "linkml-source"], [728, "linkml-source"], [729, "linkml-source"], [730, "linkml-source"], [731, "linkml-source"], [732, "linkml-source"], [733, "linkml-source"], [734, "linkml-source"], [736, "linkml-source"], [737, "linkml-source"], [738, "linkml-source"], [739, "linkml-source"], [740, "linkml-source"], [743, "linkml-source"], [761, "linkml-source"], [764, "linkml-source"], [765, "linkml-source"], [766, "linkml-source"], [771, "linkml-source"], [772, "linkml-source"], [773, "linkml-source"], [774, "linkml-source"], [775, "linkml-source"], [776, "linkml-source"], [777, "linkml-source"], [778, "linkml-source"], [779, "linkml-source"], [781, "linkml-source"], [782, "linkml-source"], [783, "linkml-source"], [784, "linkml-source"], [785, "linkml-source"], [786, "linkml-source"], [787, "linkml-source"], [788, "linkml-source"], [789, "linkml-source"], [790, "linkml-source"], [791, "linkml-source"], [792, "linkml-source"], [793, "linkml-source"], [794, "linkml-source"], [795, "linkml-source"], [796, "linkml-source"], [797, "linkml-source"], [798, "linkml-source"], [799, "linkml-source"], [800, "linkml-source"], [801, "linkml-source"], [802, "linkml-source"], [803, "linkml-source"], [804, "linkml-source"], [805, "linkml-source"], [806, "linkml-source"], [807, "linkml-source"], [808, "linkml-source"], [809, "linkml-source"], [811, "linkml-source"], [813, "linkml-source"], [815, "linkml-source"], [816, "linkml-source"], [817, "linkml-source"], [825, "linkml-source"], [828, "linkml-source"], [835, "linkml-source"], [839, "linkml-source"], [840, "linkml-source"], [842, "linkml-source"], [845, "linkml-source"], [846, "linkml-source"], [847, "linkml-source"], [848, "linkml-source"], [849, "linkml-source"], [854, "linkml-source"], [855, "linkml-source"], [856, "linkml-source"], [857, "linkml-source"], [860, "linkml-source"], [861, "linkml-source"], [862, "linkml-source"], [863, "linkml-source"], [864, "linkml-source"], [865, "linkml-source"], [866, "linkml-source"], [867, "linkml-source"], [868, "linkml-source"], [869, "linkml-source"], [870, "linkml-source"], [871, "linkml-source"], [872, "linkml-source"], [873, "linkml-source"], [874, "linkml-source"], [875, "linkml-source"], [876, "linkml-source"], [877, "linkml-source"], [879, "linkml-source"], [880, "linkml-source"], [881, "linkml-source"], [883, "linkml-source"], [884, "linkml-source"], [885, "linkml-source"], [886, "linkml-source"], [887, "linkml-source"], [888, "linkml-source"], [889, "linkml-source"], [890, "linkml-source"], [891, "linkml-source"], [892, "linkml-source"], [893, "linkml-source"], [894, "linkml-source"], [895, "linkml-source"], [896, "linkml-source"], [897, "linkml-source"], [898, "linkml-source"], [899, "linkml-source"], [900, "linkml-source"], [901, "linkml-source"], [902, "linkml-source"], [903, "linkml-source"], [904, "linkml-source"], [905, "linkml-source"], [906, "linkml-source"], [907, "linkml-source"], [908, "linkml-source"], [909, "linkml-source"], [911, "linkml-source"], [912, "linkml-source"], [913, "linkml-source"], [915, "linkml-source"], [916, "linkml-source"], [917, "linkml-source"], [918, "linkml-source"], [919, "linkml-source"], [920, "linkml-source"], [922, "linkml-source"], [936, "linkml-source"], [939, "linkml-source"], [940, "linkml-source"], [941, "linkml-source"], [942, "linkml-source"], [946, "linkml-source"], [947, "linkml-source"], [948, "linkml-source"], [949, "linkml-source"], [950, "linkml-source"], [951, "linkml-source"], [952, "linkml-source"], [954, "linkml-source"], [955, "linkml-source"], [956, "linkml-source"], [957, "linkml-source"], [958, "linkml-source"], [959, "linkml-source"], [960, "linkml-source"], [961, "linkml-source"], [962, "linkml-source"], [963, "linkml-source"], [964, "linkml-source"], [965, "linkml-source"], [966, "linkml-source"], [968, "linkml-source"], [969, "linkml-source"], [978, "linkml-source"], [988, "linkml-source"], [989, "linkml-source"], [990, "linkml-source"], [991, "linkml-source"], [993, "linkml-source"], [996, "linkml-source"], [997, "linkml-source"], [998, "linkml-source"], [999, "linkml-source"], [1000, "linkml-source"], [1002, "linkml-source"], [1003, "linkml-source"], [1004, "linkml-source"], [1005, "linkml-source"], [1006, "linkml-source"], [1007, "linkml-source"], [1008, "linkml-source"], [1009, "linkml-source"], [1010, "linkml-source"], [1011, "linkml-source"], [1012, "linkml-source"], [1013, "linkml-source"], [1014, "linkml-source"], [1015, "linkml-source"], [1016, "linkml-source"], [1017, "linkml-source"], [1018, "linkml-source"], [1019, "linkml-source"], [1020, "linkml-source"], [1021, "linkml-source"], [1022, "linkml-source"], [1023, "linkml-source"], [1025, "linkml-source"], [1028, "linkml-source"], [1035, "linkml-source"], [1040, "linkml-source"], [1041, "linkml-source"], [1043, "linkml-source"], [1046, "linkml-source"], [1047, "linkml-source"], [1048, "linkml-source"], [1049, "linkml-source"], [1050, "linkml-source"], [1051, "linkml-source"], [1055, "linkml-source"], [1058, "linkml-source"], [1059, "linkml-source"], [1060, "linkml-source"], [1061, "linkml-source"], [1062, "linkml-source"], [1063, "linkml-source"], [1064, "linkml-source"], [1065, "linkml-source"], [1066, "linkml-source"], [1068, "linkml-source"], [1069, "linkml-source"], [1070, "linkml-source"], [1071, "linkml-source"], [1072, "linkml-source"], [1073, "linkml-source"], [1074, "linkml-source"], [1075, "linkml-source"], [1076, "linkml-source"], [1077, "linkml-source"], [1078, "linkml-source"], [1079, "linkml-source"], [1080, "linkml-source"], [1081, "linkml-source"], [1082, "linkml-source"], [1083, "linkml-source"], [1084, "linkml-source"], [1085, "linkml-source"], [1086, "linkml-source"], [1087, "linkml-source"], [1088, "linkml-source"], [1089, "linkml-source"], [1090, "linkml-source"], [1091, "linkml-source"], [1092, "linkml-source"], [1093, "linkml-source"], [1094, "linkml-source"], [1096, "linkml-source"], [1097, "linkml-source"]], "Direct": [[3, "direct"], [4, "direct"], [17, "direct"], [20, "direct"], [21, "direct"], [22, "direct"], [23, "direct"], [24, "direct"], [92, "direct"], [93, "direct"], [94, "direct"], [153, "direct"], [157, "direct"], [212, "direct"], [213, "direct"], [217, "direct"], [223, "direct"], [249, "direct"], [250, "direct"], [262, "direct"], [263, "direct"], [264, "direct"], [265, "direct"], [269, "direct"], [294, "direct"], [295, "direct"], [307, "direct"], [308, "direct"], [309, "direct"], [310, "direct"], [311, "direct"], [312, "direct"], [316, "direct"], [317, "direct"], [318, "direct"], [321, "direct"], [322, "direct"], [372, "direct"], [373, "direct"], [380, "direct"], [381, "direct"], [382, "direct"], [384, "direct"], [385, "direct"], [386, "direct"], [388, "direct"], [389, "direct"], [393, "direct"], [394, "direct"], [396, "direct"], [402, "direct"], [403, "direct"], [405, "direct"], [410, "direct"], [411, "direct"], [412, "direct"], [417, "direct"], [476, "direct"], [479, "direct"], [480, "direct"], [481, "direct"], [482, "direct"], [483, "direct"], [484, "direct"], [485, "direct"], [488, "direct"], [489, "direct"], [497, "direct"], [502, "direct"], [503, "direct"], [504, "direct"], [505, "direct"], [506, "direct"], [507, "direct"], [508, "direct"], [509, "direct"], [512, "direct"], [521, "direct"], [522, "direct"], [526, "direct"], [530, "direct"], [532, "direct"], [533, "direct"], [535, "direct"], [536, "direct"], [537, "direct"], [540, "direct"], [541, "direct"], [542, "direct"], [545, "direct"], [677, "direct"], [692, "direct"], [693, "direct"], [695, "direct"], [696, "direct"], [743, "direct"], [761, "direct"], [764, "direct"], [765, "direct"], [766, "direct"], [813, "direct"], [815, "direct"], [816, "direct"], [817, "direct"], [824, "direct"], [825, "direct"], [827, "direct"], [828, "direct"], [835, "direct"], [838, "direct"], [839, "direct"], [840, "direct"], [842, "direct"], [936, "direct"], [939, "direct"], [940, "direct"], [941, "direct"], [942, "direct"], [978, "direct"], [988, "direct"], [989, "direct"], [990, "direct"], [991, "direct"], [1028, "direct"], [1035, "direct"], [1040, "direct"], [1041, "direct"], [1043, "direct"], [1046, "direct"], [1047, "direct"], [1048, "direct"], [1049, "direct"], [1050, "direct"], [1055, "direct"], [1058, "direct"], [1059, "direct"], [1060, "direct"]], "Class: AssociationChange": [[4, "class-associationchange"]], "Comments": [[4, "comments"], [6, "comments"], [19, "comments"], [28, "comments"], [60, "comments"], [77, "comments"], [84, "comments"], [95, "comments"], [107, "comments"], [113, "comments"], [135, "comments"], [151, "comments"], [159, "comments"], [204, "comments"], [213, "comments"], [220, "comments"], [225, "comments"], [228, "comments"], [252, "comments"], [268, "comments"], [274, "comments"], [297, "comments"], [315, "comments"], [325, "comments"], [352, "comments"], [375, "comments"], [382, "comments"], [386, "comments"], [389, "comments"], [399, "comments"], [405, "comments"], [415, "comments"], [422, "comments"], [424, "comments"], [431, "comments"], [434, "comments"], [441, "comments"], [452, "comments"], [460, "comments"], [490, "comments"], [507, "comments"], [531, "comments"], [547, "comments"], [560, "comments"], [563, "comments"], [575, "comments"], [596, "comments"], [603, "comments"], [625, "comments"], [665, "comments"], [678, "comments"], [691, "comments"], [702, "comments"], [737, "comments"], [745, "comments"], [760, "comments"], [768, "comments"], [785, "comments"], [818, "comments"], [825, "comments"], [834, "comments"], [843, "comments"], [889, "comments"], [901, "comments"], [923, "comments"], [935, "comments"], [944, "comments"], [956, "comments"], [965, "comments"], [971, "comments"], [984, "comments"], [994, "comments"], [1029, "comments"], [1045, "comments"], [1056, "comments"]], "Type: Boolean": [[5, "type-boolean"], [91, "type-boolean"], [134, "type-boolean"], [203, "type-boolean"], [251, "type-boolean"], [296, "type-boolean"], [374, "type-boolean"], [486, "type-boolean"], [675, "type-boolean"], [744, "type-boolean"], [814, "type-boolean"], [921, "type-boolean"], [970, "type-boolean"], [1027, "type-boolean"]], "Type: Curie": [[6, "type-curie"], [95, "type-curie"], [135, "type-curie"], [204, "type-curie"], [252, "type-curie"], [297, "type-curie"], [375, "type-curie"], [490, "type-curie"], [678, "type-curie"], [745, "type-curie"], [818, "type-curie"], [923, "type-curie"], [971, "type-curie"], [1029, "type-curie"]], "Type: Date": [[7, "type-date"], [96, "type-date"], [136, "type-date"], [205, "type-date"], [253, "type-date"], [298, "type-date"], [376, "type-date"], [491, "type-date"], [679, "type-date"], [746, "type-date"], [819, "type-date"], [924, "type-date"], [972, "type-date"], [1030, "type-date"]], "Type: DateOrDatetime": [[8, "type-dateordatetime"], [97, "type-dateordatetime"], [137, "type-dateordatetime"], [206, "type-dateordatetime"], [254, "type-dateordatetime"], [299, "type-dateordatetime"], [377, "type-dateordatetime"], [492, "type-dateordatetime"], [680, "type-dateordatetime"], [747, "type-dateordatetime"], [820, "type-dateordatetime"], [925, "type-dateordatetime"], [973, "type-dateordatetime"], [1031, "type-dateordatetime"]], "Type: Datetime": [[9, "type-datetime"], [98, "type-datetime"], [138, "type-datetime"], [207, "type-datetime"], [255, "type-datetime"], [300, "type-datetime"], [378, "type-datetime"], [493, "type-datetime"], [681, "type-datetime"], [748, "type-datetime"], [821, "type-datetime"], [926, "type-datetime"], [974, "type-datetime"], [1032, "type-datetime"]], "Type: Decimal": [[10, "type-decimal"], [99, "type-decimal"], [139, "type-decimal"], [208, "type-decimal"], [256, "type-decimal"], [301, "type-decimal"], [379, "type-decimal"], [494, "type-decimal"], [682, "type-decimal"], [749, "type-decimal"], [822, "type-decimal"], [927, "type-decimal"], [975, "type-decimal"], [1033, "type-decimal"]], "Type: Double": [[11, "type-double"], [100, "type-double"], [141, "type-double"], [209, "type-double"], [257, "type-double"], [302, "type-double"], [383, "type-double"], [496, "type-double"], [683, "type-double"], [750, "type-double"], [823, "type-double"], [928, "type-double"], [976, "type-double"], [1034, "type-double"]], "Type: Float": [[12, "type-float"], [101, "type-float"], [143, "type-float"], [210, "type-float"], [258, "type-float"], [303, "type-float"], [387, "type-float"], [498, "type-float"], [684, "type-float"], [751, "type-float"], [826, "type-float"], [929, "type-float"], [977, "type-float"], [1036, "type-float"]], "Type: Integer": [[13, "type-integer"], [102, "type-integer"], [144, "type-integer"], [211, "type-integer"], [259, "type-integer"], [304, "type-integer"], [390, "type-integer"], [513, "type-integer"], [686, "type-integer"], [752, "type-integer"], [829, "type-integer"], [930, "type-integer"], [979, "type-integer"], [1037, "type-integer"]], "Type: Jsonpath": [[14, "type-jsonpath"], [103, "type-jsonpath"], [145, "type-jsonpath"], [215, "type-jsonpath"], [260, "type-jsonpath"], [305, "type-jsonpath"], [391, "type-jsonpath"], [515, "type-jsonpath"], [687, "type-jsonpath"], [754, "type-jsonpath"], [830, "type-jsonpath"], [931, "type-jsonpath"], [980, "type-jsonpath"], [1038, "type-jsonpath"]], "Type: Jsonpointer": [[15, "type-jsonpointer"], [104, "type-jsonpointer"], [146, "type-jsonpointer"], [216, "type-jsonpointer"], [261, "type-jsonpointer"], [306, "type-jsonpointer"], [392, "type-jsonpointer"], [516, "type-jsonpointer"], [688, "type-jsonpointer"], [755, "type-jsonpointer"], [831, "type-jsonpointer"], [932, "type-jsonpointer"], [981, "type-jsonpointer"], [1039, "type-jsonpointer"]], "Type: Ncname": [[16, "type-ncname"], [105, "type-ncname"], [149, "type-ncname"], [218, "type-ncname"], [266, "type-ncname"], [313, "type-ncname"], [395, "type-ncname"], [524, "type-ncname"], [689, "type-ncname"], [756, "type-ncname"], [832, "type-ncname"], [933, "type-ncname"], [982, "type-ncname"], [1042, "type-ncname"]], "Class: NegatedAssociation": [[17, "class-negatedassociation"]], "Type: Nodeidentifier": [[18, "type-nodeidentifier"], [106, "type-nodeidentifier"], [150, "type-nodeidentifier"], [219, "type-nodeidentifier"], [267, "type-nodeidentifier"], [314, "type-nodeidentifier"], [398, "type-nodeidentifier"], [525, "type-nodeidentifier"], [690, "type-nodeidentifier"], [758, "type-nodeidentifier"], [833, "type-nodeidentifier"], [934, "type-nodeidentifier"], [983, "type-nodeidentifier"], [1044, "type-nodeidentifier"]], "Type: Objectidentifier": [[19, "type-objectidentifier"], [107, "type-objectidentifier"], [151, "type-objectidentifier"], [220, "type-objectidentifier"], [268, "type-objectidentifier"], [315, "type-objectidentifier"], [399, "type-objectidentifier"], [531, "type-objectidentifier"], [691, "type-objectidentifier"], [760, "type-objectidentifier"], [834, "type-objectidentifier"], [935, "type-objectidentifier"], [984, "type-objectidentifier"], [1045, "type-objectidentifier"]], "Class: PairwiseCoAssociation": [[20, "class-pairwisecoassociation"]], "Class: ParserConfiguration": [[21, "class-parserconfiguration"]], "Class: PositiveOrNegativeAssociation": [[22, "class-positiveornegativeassociation"]], "Class: PropertyValue": [[23, "class-propertyvalue"], [405, "class-propertyvalue"]], "Class: RollupGroup": [[24, "class-rollupgroup"]], "Type: Sparqlpath": [[25, "type-sparqlpath"], [110, "type-sparqlpath"], [155, "type-sparqlpath"], [221, "type-sparqlpath"], [270, "type-sparqlpath"], [319, "type-sparqlpath"], [408, "type-sparqlpath"], [538, "type-sparqlpath"], [699, "type-sparqlpath"], [762, "type-sparqlpath"], [836, "type-sparqlpath"], [937, "type-sparqlpath"], [986, "type-sparqlpath"], [1052, "type-sparqlpath"]], "Type: String": [[26, "type-string"], [111, "type-string"], [156, "type-string"], [222, "type-string"], [271, "type-string"], [320, "type-string"], [409, "type-string"], [539, "type-string"], [700, "type-string"], [763, "type-string"], [837, "type-string"], [938, "type-string"], [987, "type-string"], [1053, "type-string"]], "Type: Time": [[27, "type-time"], [112, "type-time"], [158, "type-time"], [224, "type-time"], [272, "type-time"], [323, "type-time"], [414, "type-time"], [544, "type-time"], [701, "type-time"], [767, "type-time"], [841, "type-time"], [943, "type-time"], [992, "type-time"], [1054, "type-time"]], "Type: Uri": [[28, "type-uri"], [113, "type-uri"], [159, "type-uri"], [225, "type-uri"], [274, "type-uri"], [325, "type-uri"], [415, "type-uri"], [547, "type-uri"], [702, "type-uri"], [768, "type-uri"], [843, "type-uri"], [944, "type-uri"], [994, "type-uri"], [1056, "type-uri"]], "Type: Uriorcurie": [[29, "type-uriorcurie"], [114, "type-uriorcurie"], [160, "type-uriorcurie"], [226, "type-uriorcurie"], [275, "type-uriorcurie"], [326, "type-uriorcurie"], [416, "type-uriorcurie"], [548, "type-uriorcurie"], [703, "type-uriorcurie"], [769, "type-uriorcurie"], [844, "type-uriorcurie"], [945, "type-uriorcurie"], [995, "type-uriorcurie"], [1057, "type-uriorcurie"]], "Slot: aggregator_knowledge_source": [[30, "slot-aggregator-knowledge-source"]], "Applicable Classes": [[30, "applicable-classes"], [32, "applicable-classes"], [33, "applicable-classes"], [34, "applicable-classes"], [36, "applicable-classes"], [37, "applicable-classes"], [43, "applicable-classes"], [44, "applicable-classes"], [45, "applicable-classes"], [47, "applicable-classes"], [48, "applicable-classes"], [49, "applicable-classes"], [50, "applicable-classes"], [51, "applicable-classes"], [53, "applicable-classes"], [54, "applicable-classes"], [55, "applicable-classes"], [56, "applicable-classes"], [57, "applicable-classes"], [58, "applicable-classes"], [59, "applicable-classes"], [60, "applicable-classes"], [61, "applicable-classes"], [62, "applicable-classes"], [63, "applicable-classes"], [64, "applicable-classes"], [65, "applicable-classes"], [66, "applicable-classes"], [67, "applicable-classes"], [68, "applicable-classes"], [69, "applicable-classes"], [70, "applicable-classes"], [71, "applicable-classes"], [75, "applicable-classes"], [76, "applicable-classes"], [77, "applicable-classes"], [78, "applicable-classes"], [79, "applicable-classes"], [80, "applicable-classes"], [81, "applicable-classes"], [82, "applicable-classes"], [83, "applicable-classes"], [84, "applicable-classes"], [85, "applicable-classes"], [86, "applicable-classes"], [87, "applicable-classes"], [88, "applicable-classes"], [89, "applicable-classes"], [90, "applicable-classes"], [115, "applicable-classes"], [116, "applicable-classes"], [117, "applicable-classes"], [119, "applicable-classes"], [120, "applicable-classes"], [121, "applicable-classes"], [122, "applicable-classes"], [123, "applicable-classes"], [124, "applicable-classes"], [126, "applicable-classes"], [127, "applicable-classes"], [128, "applicable-classes"], [129, "applicable-classes"], [130, "applicable-classes"], [131, "applicable-classes"], [132, "applicable-classes"], [133, "applicable-classes"], [161, "applicable-classes"], [166, "applicable-classes"], [167, "applicable-classes"], [168, "applicable-classes"], [170, "applicable-classes"], [171, "applicable-classes"], [174, "applicable-classes"], [175, "applicable-classes"], [176, "applicable-classes"], [177, "applicable-classes"], [180, "applicable-classes"], [181, "applicable-classes"], [183, "applicable-classes"], [184, "applicable-classes"], [185, "applicable-classes"], [186, "applicable-classes"], [188, "applicable-classes"], [189, "applicable-classes"], [192, "applicable-classes"], [193, "applicable-classes"], [194, "applicable-classes"], [198, "applicable-classes"], [199, "applicable-classes"], [227, "applicable-classes"], [228, "applicable-classes"], [229, "applicable-classes"], [230, "applicable-classes"], [231, "applicable-classes"], [232, "applicable-classes"], [233, "applicable-classes"], [235, "applicable-classes"], [237, "applicable-classes"], [238, "applicable-classes"], [239, "applicable-classes"], [240, "applicable-classes"], [241, "applicable-classes"], [242, "applicable-classes"], [243, "applicable-classes"], [244, "applicable-classes"], [245, "applicable-classes"], [246, "applicable-classes"], [247, "applicable-classes"], [276, "applicable-classes"], [277, "applicable-classes"], [278, "applicable-classes"], [282, "applicable-classes"], [283, "applicable-classes"], [284, "applicable-classes"], [285, "applicable-classes"], [286, "applicable-classes"], [287, "applicable-classes"], [288, "applicable-classes"], [289, "applicable-classes"], [290, "applicable-classes"], [291, "applicable-classes"], [292, "applicable-classes"], [327, "applicable-classes"], [328, "applicable-classes"], [329, "applicable-classes"], [330, "applicable-classes"], [332, "applicable-classes"], [337, "applicable-classes"], [338, "applicable-classes"], [339, "applicable-classes"], [340, "applicable-classes"], [341, "applicable-classes"], [342, "applicable-classes"], [343, "applicable-classes"], [344, "applicable-classes"], [345, "applicable-classes"], [346, "applicable-classes"], [347, "applicable-classes"], [348, "applicable-classes"], [349, "applicable-classes"], [350, "applicable-classes"], [351, "applicable-classes"], [352, "applicable-classes"], [353, "applicable-classes"], [354, "applicable-classes"], [355, "applicable-classes"], [356, "applicable-classes"], [357, "applicable-classes"], [358, "applicable-classes"], [359, "applicable-classes"], [360, "applicable-classes"], [361, "applicable-classes"], [362, "applicable-classes"], [363, "applicable-classes"], [364, "applicable-classes"], [365, "applicable-classes"], [366, "applicable-classes"], [367, "applicable-classes"], [368, "applicable-classes"], [369, "applicable-classes"], [371, "applicable-classes"], [419, "applicable-classes"], [420, "applicable-classes"], [421, "applicable-classes"], [422, "applicable-classes"], [423, "applicable-classes"], [424, "applicable-classes"], [425, "applicable-classes"], [426, "applicable-classes"], [427, "applicable-classes"], [429, "applicable-classes"], [430, "applicable-classes"], [431, "applicable-classes"], [432, "applicable-classes"], [433, "applicable-classes"], [434, "applicable-classes"], [435, "applicable-classes"], [436, "applicable-classes"], [438, "applicable-classes"], [440, "applicable-classes"], [441, "applicable-classes"], [442, "applicable-classes"], [443, "applicable-classes"], [444, "applicable-classes"], [445, "applicable-classes"], [446, "applicable-classes"], [447, "applicable-classes"], [450, "applicable-classes"], [451, "applicable-classes"], [452, "applicable-classes"], [453, "applicable-classes"], [454, "applicable-classes"], [455, "applicable-classes"], [456, "applicable-classes"], [457, "applicable-classes"], [458, "applicable-classes"], [460, "applicable-classes"], [462, "applicable-classes"], [463, "applicable-classes"], [464, "applicable-classes"], [465, "applicable-classes"], [466, "applicable-classes"], [467, "applicable-classes"], [468, "applicable-classes"], [470, "applicable-classes"], [471, "applicable-classes"], [472, "applicable-classes"], [473, "applicable-classes"], [474, "applicable-classes"], [475, "applicable-classes"], [510, "applicable-classes"], [511, "applicable-classes"], [527, "applicable-classes"], [549, "applicable-classes"], [550, "applicable-classes"], [551, "applicable-classes"], [552, "applicable-classes"], [553, "applicable-classes"], [554, "applicable-classes"], [555, "applicable-classes"], [556, "applicable-classes"], [557, "applicable-classes"], [559, "applicable-classes"], [560, "applicable-classes"], [561, "applicable-classes"], [562, "applicable-classes"], [563, "applicable-classes"], [564, "applicable-classes"], [566, "applicable-classes"], [567, "applicable-classes"], [568, "applicable-classes"], [569, "applicable-classes"], [570, "applicable-classes"], [571, "applicable-classes"], [572, "applicable-classes"], [573, "applicable-classes"], [575, "applicable-classes"], [576, "applicable-classes"], [577, "applicable-classes"], [578, "applicable-classes"], [579, "applicable-classes"], [580, "applicable-classes"], [582, "applicable-classes"], [583, "applicable-classes"], [584, "applicable-classes"], [585, "applicable-classes"], [586, "applicable-classes"], [587, "applicable-classes"], [588, "applicable-classes"], [589, "applicable-classes"], [591, "applicable-classes"], [592, "applicable-classes"], [593, "applicable-classes"], [594, "applicable-classes"], [596, "applicable-classes"], [597, "applicable-classes"], [598, "applicable-classes"], [599, "applicable-classes"], [600, "applicable-classes"], [601, "applicable-classes"], [602, "applicable-classes"], [603, "applicable-classes"], [604, "applicable-classes"], [605, "applicable-classes"], [606, "applicable-classes"], [607, "applicable-classes"], [608, "applicable-classes"], [609, "applicable-classes"], [610, "applicable-classes"], [611, "applicable-classes"], [612, "applicable-classes"], [615, "applicable-classes"], [616, "applicable-classes"], [617, "applicable-classes"], [618, "applicable-classes"], [619, "applicable-classes"], [620, "applicable-classes"], [621, "applicable-classes"], [622, "applicable-classes"], [623, "applicable-classes"], [624, "applicable-classes"], [625, "applicable-classes"], [627, "applicable-classes"], [635, "applicable-classes"], [636, "applicable-classes"], [637, "applicable-classes"], [638, "applicable-classes"], [644, "applicable-classes"], [645, "applicable-classes"], [646, "applicable-classes"], [647, "applicable-classes"], [648, "applicable-classes"], [649, "applicable-classes"], [652, "applicable-classes"], [655, "applicable-classes"], [657, "applicable-classes"], [658, "applicable-classes"], [659, "applicable-classes"], [660, "applicable-classes"], [661, "applicable-classes"], [663, "applicable-classes"], [664, "applicable-classes"], [665, "applicable-classes"], [666, "applicable-classes"], [667, "applicable-classes"], [668, "applicable-classes"], [670, "applicable-classes"], [671, "applicable-classes"], [672, "applicable-classes"], [673, "applicable-classes"], [704, "applicable-classes"], [705, "applicable-classes"], [706, "applicable-classes"], [707, "applicable-classes"], [708, "applicable-classes"], [709, "applicable-classes"], [710, "applicable-classes"], [711, "applicable-classes"], [716, "applicable-classes"], [718, "applicable-classes"], [719, "applicable-classes"], [720, "applicable-classes"], [722, "applicable-classes"], [723, "applicable-classes"], [724, "applicable-classes"], [725, "applicable-classes"], [726, "applicable-classes"], [727, "applicable-classes"], [728, "applicable-classes"], [729, "applicable-classes"], [730, "applicable-classes"], [731, "applicable-classes"], [732, "applicable-classes"], [733, "applicable-classes"], [734, "applicable-classes"], [736, "applicable-classes"], [737, "applicable-classes"], [738, "applicable-classes"], [739, "applicable-classes"], [740, "applicable-classes"], [771, "applicable-classes"], [772, "applicable-classes"], [773, "applicable-classes"], [774, "applicable-classes"], [775, "applicable-classes"], [776, "applicable-classes"], [777, "applicable-classes"], [778, "applicable-classes"], [779, "applicable-classes"], [783, "applicable-classes"], [784, "applicable-classes"], [785, "applicable-classes"], [786, "applicable-classes"], [787, "applicable-classes"], [788, "applicable-classes"], [789, "applicable-classes"], [790, "applicable-classes"], [791, "applicable-classes"], [792, "applicable-classes"], [793, "applicable-classes"], [794, "applicable-classes"], [795, "applicable-classes"], [796, "applicable-classes"], [797, "applicable-classes"], [799, "applicable-classes"], [800, "applicable-classes"], [801, "applicable-classes"], [802, "applicable-classes"], [803, "applicable-classes"], [804, "applicable-classes"], [805, "applicable-classes"], [806, "applicable-classes"], [807, "applicable-classes"], [845, "applicable-classes"], [846, "applicable-classes"], [847, "applicable-classes"], [848, "applicable-classes"], [849, "applicable-classes"], [854, "applicable-classes"], [855, "applicable-classes"], [856, "applicable-classes"], [857, "applicable-classes"], [860, "applicable-classes"], [861, "applicable-classes"], [863, "applicable-classes"], [864, "applicable-classes"], [865, "applicable-classes"], [866, "applicable-classes"], [868, "applicable-classes"], [869, "applicable-classes"], [870, "applicable-classes"], [871, "applicable-classes"], [872, "applicable-classes"], [873, "applicable-classes"], [874, "applicable-classes"], [875, "applicable-classes"], [876, "applicable-classes"], [877, "applicable-classes"], [879, "applicable-classes"], [880, "applicable-classes"], [881, "applicable-classes"], [883, "applicable-classes"], [885, "applicable-classes"], [886, "applicable-classes"], [887, "applicable-classes"], [888, "applicable-classes"], [889, "applicable-classes"], [890, "applicable-classes"], [892, "applicable-classes"], [893, "applicable-classes"], [894, "applicable-classes"], [895, "applicable-classes"], [896, "applicable-classes"], [897, "applicable-classes"], [898, "applicable-classes"], [899, "applicable-classes"], [901, "applicable-classes"], [902, "applicable-classes"], [903, "applicable-classes"], [905, "applicable-classes"], [906, "applicable-classes"], [907, "applicable-classes"], [908, "applicable-classes"], [909, "applicable-classes"], [911, "applicable-classes"], [912, "applicable-classes"], [913, "applicable-classes"], [915, "applicable-classes"], [916, "applicable-classes"], [917, "applicable-classes"], [918, "applicable-classes"], [919, "applicable-classes"], [920, "applicable-classes"], [946, "applicable-classes"], [947, "applicable-classes"], [948, "applicable-classes"], [949, "applicable-classes"], [950, "applicable-classes"], [951, "applicable-classes"], [952, "applicable-classes"], [954, "applicable-classes"], [955, "applicable-classes"], [956, "applicable-classes"], [957, "applicable-classes"], [958, "applicable-classes"], [959, "applicable-classes"], [960, "applicable-classes"], [961, "applicable-classes"], [962, "applicable-classes"], [963, "applicable-classes"], [964, "applicable-classes"], [965, "applicable-classes"], [966, "applicable-classes"], [968, "applicable-classes"], [969, "applicable-classes"], [996, "applicable-classes"], [997, "applicable-classes"], [998, "applicable-classes"], [999, "applicable-classes"], [1000, "applicable-classes"], [1002, "applicable-classes"], [1003, "applicable-classes"], [1004, "applicable-classes"], [1005, "applicable-classes"], [1006, "applicable-classes"], [1007, "applicable-classes"], [1008, "applicable-classes"], [1009, "applicable-classes"], [1010, "applicable-classes"], [1011, "applicable-classes"], [1012, "applicable-classes"], [1013, "applicable-classes"], [1014, "applicable-classes"], [1015, "applicable-classes"], [1016, "applicable-classes"], [1017, "applicable-classes"], [1018, "applicable-classes"], [1019, "applicable-classes"], [1020, "applicable-classes"], [1021, "applicable-classes"], [1022, "applicable-classes"], [1023, "applicable-classes"], [1025, "applicable-classes"], [1062, "applicable-classes"], [1063, "applicable-classes"], [1064, "applicable-classes"], [1065, "applicable-classes"], [1066, "applicable-classes"], [1068, "applicable-classes"], [1069, "applicable-classes"], [1070, "applicable-classes"], [1071, "applicable-classes"], [1072, "applicable-classes"], [1073, "applicable-classes"], [1074, "applicable-classes"], [1075, "applicable-classes"], [1076, "applicable-classes"], [1077, "applicable-classes"], [1078, "applicable-classes"], [1079, "applicable-classes"], [1080, "applicable-classes"], [1081, "applicable-classes"], [1082, "applicable-classes"], [1083, "applicable-classes"], [1084, "applicable-classes"], [1085, "applicable-classes"], [1086, "applicable-classes"], [1087, "applicable-classes"], [1088, "applicable-classes"], [1089, "applicable-classes"], [1090, "applicable-classes"], [1091, "applicable-classes"], [1092, "applicable-classes"], [1093, "applicable-classes"], [1094, "applicable-classes"], [1096, "applicable-classes"], [1097, "applicable-classes"]], "Properties": [[30, "properties"], [32, "properties"], [33, "properties"], [34, "properties"], [35, "properties"], [36, "properties"], [37, "properties"], [38, "properties"], [39, "properties"], [40, "properties"], [41, "properties"], [42, "properties"], [43, "properties"], [44, "properties"], [45, "properties"], [47, "properties"], [48, "properties"], [49, "properties"], [50, "properties"], [51, "properties"], [52, "properties"], [53, "properties"], [54, "properties"], [55, "properties"], [56, "properties"], [57, "properties"], [58, "properties"], [59, "properties"], [60, "properties"], [61, "properties"], [62, "properties"], [63, "properties"], [64, "properties"], [65, "properties"], [66, "properties"], [67, "properties"], [68, "properties"], [69, "properties"], [70, "properties"], [71, "properties"], [72, "properties"], [73, "properties"], [74, "properties"], [75, "properties"], [76, "properties"], [77, "properties"], [78, "properties"], [79, "properties"], [80, "properties"], [81, "properties"], [82, "properties"], [83, "properties"], [84, "properties"], [85, "properties"], [86, "properties"], [87, "properties"], [88, "properties"], [89, "properties"], [90, "properties"], [115, "properties"], [116, "properties"], [117, "properties"], [119, "properties"], [120, "properties"], [121, "properties"], [122, "properties"], [123, "properties"], [124, "properties"], [126, "properties"], [127, "properties"], [128, "properties"], [129, "properties"], [130, "properties"], [131, "properties"], [132, "properties"], [133, "properties"], [161, "properties"], [164, "properties"], [165, "properties"], [166, "properties"], [167, "properties"], [168, "properties"], [169, "properties"], [170, "properties"], [171, "properties"], [172, "properties"], [173, "properties"], [174, "properties"], [175, "properties"], [176, "properties"], [177, "properties"], [178, "properties"], [179, "properties"], [180, "properties"], [181, "properties"], [182, "properties"], [183, "properties"], [184, "properties"], [185, "properties"], [186, "properties"], [187, "properties"], [188, "properties"], [189, "properties"], [190, "properties"], [191, "properties"], [192, "properties"], [193, "properties"], [194, "properties"], [195, "properties"], [196, "properties"], [197, "properties"], [198, "properties"], [199, "properties"], [227, "properties"], [228, "properties"], [229, "properties"], [230, "properties"], [231, "properties"], [232, "properties"], [233, "properties"], [235, "properties"], [237, "properties"], [238, "properties"], [239, "properties"], [240, "properties"], [241, "properties"], [242, "properties"], [243, "properties"], [244, "properties"], [245, "properties"], [246, "properties"], [247, "properties"], [276, "properties"], [277, "properties"], [278, "properties"], [282, "properties"], [283, "properties"], [284, "properties"], [285, "properties"], [286, "properties"], [287, "properties"], [288, "properties"], [289, "properties"], [290, "properties"], [291, "properties"], [292, "properties"], [327, "properties"], [328, "properties"], [329, "properties"], [330, "properties"], [332, "properties"], [337, "properties"], [338, "properties"], [339, "properties"], [340, "properties"], [341, "properties"], [342, "properties"], [343, "properties"], [344, "properties"], [345, "properties"], [346, "properties"], [347, "properties"], [348, "properties"], [349, "properties"], [350, "properties"], [351, "properties"], [352, "properties"], [353, "properties"], [354, "properties"], [355, "properties"], [356, "properties"], [357, "properties"], [358, "properties"], [359, "properties"], [360, "properties"], [361, "properties"], [362, "properties"], [363, "properties"], [364, "properties"], [365, "properties"], [366, "properties"], [367, "properties"], [368, "properties"], [369, "properties"], [371, "properties"], [419, "properties"], [420, "properties"], [421, "properties"], [422, "properties"], [423, "properties"], [424, "properties"], [425, "properties"], [426, "properties"], [427, "properties"], [428, "properties"], [429, "properties"], [430, "properties"], [431, "properties"], [432, "properties"], [433, "properties"], [434, "properties"], [435, "properties"], [436, "properties"], [438, "properties"], [439, "properties"], [440, "properties"], [441, "properties"], [442, "properties"], [443, "properties"], [444, "properties"], [445, "properties"], [446, "properties"], [447, "properties"], [450, "properties"], [451, "properties"], [452, "properties"], [453, "properties"], [454, "properties"], [455, "properties"], [456, "properties"], [457, "properties"], [458, "properties"], [459, "properties"], [460, "properties"], [461, "properties"], [462, "properties"], [463, "properties"], [464, "properties"], [465, "properties"], [466, "properties"], [467, "properties"], [468, "properties"], [470, "properties"], [471, "properties"], [472, "properties"], [473, "properties"], [474, "properties"], [475, "properties"], [510, "properties"], [511, "properties"], [518, "properties"], [519, "properties"], [520, "properties"], [527, "properties"], [549, "properties"], [550, "properties"], [551, "properties"], [552, "properties"], [553, "properties"], [554, "properties"], [555, "properties"], [556, "properties"], [557, "properties"], [558, "properties"], [559, "properties"], [560, "properties"], [561, "properties"], [562, "properties"], [563, "properties"], [564, "properties"], [565, "properties"], [566, "properties"], [567, "properties"], [568, "properties"], [569, "properties"], [570, "properties"], [571, "properties"], [572, "properties"], [573, "properties"], [574, "properties"], [575, "properties"], [576, "properties"], [577, "properties"], [578, "properties"], [579, "properties"], [580, "properties"], [581, "properties"], [582, "properties"], [583, "properties"], [584, "properties"], [585, "properties"], [586, "properties"], [587, "properties"], [588, "properties"], [589, "properties"], [590, "properties"], [591, "properties"], [592, "properties"], [593, "properties"], [594, "properties"], [595, "properties"], [596, "properties"], [597, "properties"], [598, "properties"], [599, "properties"], [600, "properties"], [601, "properties"], [602, "properties"], [603, "properties"], [604, "properties"], [605, "properties"], [606, "properties"], [607, "properties"], [608, "properties"], [609, "properties"], [610, "properties"], [611, "properties"], [612, "properties"], [614, "properties"], [615, "properties"], [616, "properties"], [617, "properties"], [618, "properties"], [619, "properties"], [620, "properties"], [621, "properties"], [622, "properties"], [623, "properties"], [624, "properties"], [625, "properties"], [626, "properties"], [627, "properties"], [628, "properties"], [629, "properties"], [630, "properties"], [631, "properties"], [632, "properties"], [633, "properties"], [634, "properties"], [635, "properties"], [636, "properties"], [637, "properties"], [638, "properties"], [639, "properties"], [640, "properties"], [641, "properties"], [643, "properties"], [644, "properties"], [645, "properties"], [646, "properties"], [647, "properties"], [648, "properties"], [649, "properties"], [650, "properties"], [651, "properties"], [652, "properties"], [653, "properties"], [654, "properties"], [655, "properties"], [656, "properties"], [657, "properties"], [658, "properties"], [659, "properties"], [660, "properties"], [661, "properties"], [662, "properties"], [663, "properties"], [664, "properties"], [665, "properties"], [666, "properties"], [667, "properties"], [668, "properties"], [670, "properties"], [671, "properties"], [672, "properties"], [673, "properties"], [674, "properties"], [704, "properties"], [705, "properties"], [706, "properties"], [707, "properties"], [708, "properties"], [709, "properties"], [710, "properties"], [711, "properties"], [712, "properties"], [713, "properties"], [714, "properties"], [715, "properties"], [716, "properties"], [718, "properties"], [719, "properties"], [720, "properties"], [721, "properties"], [722, "properties"], [723, "properties"], [724, "properties"], [725, "properties"], [726, "properties"], [727, "properties"], [728, "properties"], [729, "properties"], [730, "properties"], [731, "properties"], [732, "properties"], [733, "properties"], [734, "properties"], [736, "properties"], [737, "properties"], [738, "properties"], [739, "properties"], [740, "properties"], [771, "properties"], [772, "properties"], [773, "properties"], [774, "properties"], [775, "properties"], [776, "properties"], [777, "properties"], [778, "properties"], [779, "properties"], [781, "properties"], [782, "properties"], [783, "properties"], [784, "properties"], [785, "properties"], [786, "properties"], [787, "properties"], [788, "properties"], [789, "properties"], [790, "properties"], [791, "properties"], [792, "properties"], [793, "properties"], [794, "properties"], [795, "properties"], [796, "properties"], [797, "properties"], [798, "properties"], [799, "properties"], [800, "properties"], [801, "properties"], [802, "properties"], [803, "properties"], [804, "properties"], [805, "properties"], [806, "properties"], [807, "properties"], [808, "properties"], [809, "properties"], [811, "properties"], [845, "properties"], [846, "properties"], [847, "properties"], [848, "properties"], [849, "properties"], [850, "properties"], [851, "properties"], [852, "properties"], [853, "properties"], [854, "properties"], [855, "properties"], [856, "properties"], [857, "properties"], [858, "properties"], [859, "properties"], [860, "properties"], [861, "properties"], [862, "properties"], [863, "properties"], [864, "properties"], [865, "properties"], [866, "properties"], [867, "properties"], [868, "properties"], [869, "properties"], [870, "properties"], [871, "properties"], [872, "properties"], [873, "properties"], [874, "properties"], [875, "properties"], [876, "properties"], [877, "properties"], [878, "properties"], [879, "properties"], [880, "properties"], [881, "properties"], [883, "properties"], [884, "properties"], [885, "properties"], [886, "properties"], [887, "properties"], [888, "properties"], [889, "properties"], [890, "properties"], [891, "properties"], [892, "properties"], [893, "properties"], [894, "properties"], [895, "properties"], [896, "properties"], [897, "properties"], [898, "properties"], [899, "properties"], [900, "properties"], [901, "properties"], [902, "properties"], [903, "properties"], [904, "properties"], [905, "properties"], [906, "properties"], [907, "properties"], [908, "properties"], [909, "properties"], [911, "properties"], [912, "properties"], [913, "properties"], [915, "properties"], [916, "properties"], [917, "properties"], [918, "properties"], [919, "properties"], [920, "properties"], [946, "properties"], [947, "properties"], [948, "properties"], [949, "properties"], [950, "properties"], [951, "properties"], [952, "properties"], [954, "properties"], [955, "properties"], [956, "properties"], [957, "properties"], [958, "properties"], [959, "properties"], [960, "properties"], [961, "properties"], [962, "properties"], [963, "properties"], [964, "properties"], [965, "properties"], [966, "properties"], [968, "properties"], [969, "properties"], [996, "properties"], [997, "properties"], [998, "properties"], [999, "properties"], [1000, "properties"], [1002, "properties"], [1003, "properties"], [1004, "properties"], [1005, "properties"], [1006, "properties"], [1007, "properties"], [1008, "properties"], [1009, "properties"], [1010, "properties"], [1011, "properties"], [1012, "properties"], [1013, "properties"], [1014, "properties"], [1015, "properties"], [1016, "properties"], [1017, "properties"], [1018, "properties"], [1019, "properties"], [1020, "properties"], [1021, "properties"], [1022, "properties"], [1023, "properties"], [1025, "properties"], [1062, "properties"], [1063, "properties"], [1064, "properties"], [1065, "properties"], [1066, "properties"], [1068, "properties"], [1069, "properties"], [1070, "properties"], [1071, "properties"], [1072, "properties"], [1073, "properties"], [1074, "properties"], [1075, "properties"], [1076, "properties"], [1077, "properties"], [1078, "properties"], [1079, "properties"], [1080, "properties"], [1081, "properties"], [1082, "properties"], [1083, "properties"], [1084, "properties"], [1085, "properties"], [1086, "properties"], [1087, "properties"], [1088, "properties"], [1089, "properties"], [1090, "properties"], [1091, "properties"], [1092, "properties"], [1093, "properties"], [1094, "properties"], [1096, "properties"], [1097, "properties"]], "association": [[31, "association"]], "Slot: associations": [[32, "slot-associations"]], "Slot: associations_for_subjects_in_common": [[33, "slot-associations-for-subjects-in-common"]], "Slot: closure_delta": [[34, "slot-closure-delta"]], "Slot: closure_information_content_delta": [[35, "slot-closure-information-content-delta"]], "Slot: closure_predicates": [[36, "slot-closure-predicates"]], "Slot: comments": [[37, "slot-comments"], [424, "slot-comments"], [948, "slot-comments"]], "Slot: core_triple": [[38, "slot-core-triple"]], "Slot: creation_date": [[39, "slot-creation-date"], [568, "slot-creation-date"]], "Slot: date": [[40, "slot-date"], [572, "slot-date"]], "Slot: denormalized_slot": [[41, "slot-denormalized-slot"]], "Mixin Usage": [[41, "mixin-usage"], [42, "mixin-usage"], [164, "mixin-usage"], [165, "mixin-usage"], [173, "mixin-usage"], [179, "mixin-usage"], [182, "mixin-usage"], [191, "mixin-usage"], [196, "mixin-usage"], [197, "mixin-usage"], [481, "mixin-usage"], [489, "mixin-usage"], [497, "mixin-usage"], [502, "mixin-usage"], [503, "mixin-usage"], [504, "mixin-usage"], [505, "mixin-usage"], [506, "mixin-usage"], [507, "mixin-usage"], [508, "mixin-usage"], [526, "mixin-usage"], [532, "mixin-usage"], [536, "mixin-usage"], [537, "mixin-usage"], [630, "mixin-usage"], [978, "mixin-usage"]], "Slot: diff_slot": [[42, "slot-diff-slot"]], "Slot: evidence_type": [[43, "slot-evidence-type"]], "Slot: group_object": [[44, "slot-group-object"]], "Slot: include_association_attributes": [[45, "slot-include-association-attributes"]], "OAK Association Data Model": [[46, "oak-association-data-model"]], "Classes": [[46, "classes"], [125, "classes"], [163, "classes"], [234, "classes"], [279, "classes"], [331, "classes"], [437, "classes"], [613, "classes"], [717, "classes"], [780, "classes"], [882, "classes"], [953, "classes"], [1001, "classes"], [1067, "classes"]], "Enumerations": [[46, "enumerations"], [125, "enumerations"], [163, "enumerations"], [234, "enumerations"], [279, "enumerations"], [331, "enumerations"], [437, "enumerations"], [613, "enumerations"], [717, "enumerations"], [780, "enumerations"], [882, "enumerations"], [953, "enumerations"], [1001, "enumerations"], [1067, "enumerations"]], "Types": [[46, "types"], [125, "types"], [163, "types"], [234, "types"], [279, "types"], [331, "types"], [437, "types"], [613, "types"], [717, "types"], [780, "types"], [882, "types"], [953, "types"], [1001, "types"], [1067, "types"]], "Slot: is_creation": [[47, "slot-is-creation"]], "Slot: is_deletion": [[48, "slot-is-deletion"]], "Slot: is_generalization": [[49, "slot-is-generalization"]], "Slot: is_migration": [[50, "slot-is-migration"]], "Slot: is_specialization": [[51, "slot-is-specialization"]], "Slot: modification_date": [[52, "slot-modification-date"]], "Slot: negated": [[53, "slot-negated"]], "Slot: new_date": [[54, "slot-new-date"]], "Slot: new_object": [[55, "slot-new-object"]], "Slot: new_predicate": [[56, "slot-new-predicate"]], "Slot: number_subject_unique_to_entity1": [[57, "slot-number-subject-unique-to-entity1"]], "Slot: number_subject_unique_to_entity2": [[58, "slot-number-subject-unique-to-entity2"]], "Slot: number_subjects_in_common": [[59, "slot-number-subjects-in-common"]], "Slot: object": [[60, "slot-object"], [179, "slot-object"], [638, "slot-object"], [1073, "slot-object"]], "Slot: object1": [[61, "slot-object1"]], "Slot: object1_label": [[62, "slot-object1-label"]], "Slot: object2": [[63, "slot-object2"]], "Slot: object2_label": [[64, "slot-object2-label"]], "Slot: object_closure": [[65, "slot-object-closure"]], "Slot: object_closure_label": [[66, "slot-object-closure-label"]], "Slot: object_label": [[67, "slot-object-label"], [726, "slot-object-label"], [795, "slot-object-label"], [1012, "slot-object-label"]], "Slot: old_date": [[68, "slot-old-date"]], "Slot: old_object": [[69, "slot-old-object"]], "Slot: old_object_obsolete": [[70, "slot-old-object-obsolete"]], "Slot: old_predicate": [[71, "slot-old-predicate"]], "Slot: original_object": [[72, "slot-original-object"]], "Slot: original_predicate": [[73, "slot-original-predicate"]], "Slot: original_subject": [[74, "slot-original-subject"]], "Slot: predicate": [[75, "slot-predicate"], [182, "slot-predicate"], [286, "slot-predicate"], [351, "slot-predicate"], [648, "slot-predicate"], [957, "slot-predicate"], [1077, "slot-predicate"]], "Slot: predicate_label": [[76, "slot-predicate-label"]], "Slot: preserve_negated_associations": [[77, "slot-preserve-negated-associations"]], "Slot: primary_knowledge_source": [[78, "slot-primary-knowledge-source"]], "Slot: property_values": [[79, "slot-property-values"]], "Slot: publication_is_added": [[80, "slot-publication-is-added"]], "Slot: publication_is_deleted": [[81, "slot-publication-is-deleted"]], "Slot: publications": [[82, "slot-publications"]], "Slot: sub_groups": [[83, "slot-sub-groups"]], "Slot: subject": [[84, "slot-subject"], [197, "slot-subject"], [965, "slot-subject"], [1086, "slot-subject"]], "Slot: subject_closure": [[85, "slot-subject-closure"]], "Slot: subject_closure_label": [[86, "slot-subject-closure-label"]], "Slot: subject_label": [[87, "slot-subject-label"], [805, "slot-subject-label"], [1019, "slot-subject-label"]], "Slot: subjects_in_common": [[88, "slot-subjects-in-common"]], "Slot: summary_group": [[89, "slot-summary-group"]], "Slot: supporting_objects": [[90, "slot-supporting-objects"]], "Class: ClassEnrichmentConfiguration": [[92, "class-classenrichmentconfiguration"]], "Class: ClassEnrichmentResult": [[93, "class-classenrichmentresult"]], "Class: ClassEnrichmentResultSet": [[94, "class-classenrichmentresultset"]], "Type: Position": [[108, "type-position"], [985, "type-position"]], "Enum: SortFieldEnum": [[109, "enum-sortfieldenum"]], "Permissible Values": [[109, "permissible-values"], [140, "permissible-values"], [148, "permissible-values"], [214, "permissible-values"], [273, "permissible-values"], [324, "permissible-values"], [397, "permissible-values"], [401, "permissible-values"], [404, "permissible-values"], [406, "permissible-values"], [407, "permissible-values"], [495, "permissible-values"], [676, "permissible-values"], [685, "permissible-values"], [694, "permissible-values"], [698, "permissible-values"], [922, "permissible-values"], [993, "permissible-values"], [1051, "permissible-values"], [1061, "permissible-values"]], "Slot: ancestor_of_more_informative_result": [[115, "slot-ancestor-of-more-informative-result"]], "Slot: background_count": [[116, "slot-background-count"]], "Slot: background_total": [[117, "slot-background-total"]], "class-enrichment": [[118, "class-enrichment"]], "Slot: class_id": [[119, "slot-class-id"]], "Slot: class_label": [[120, "slot-class-label"]], "Slot: descendant_of_more_informative_result": [[121, "slot-descendant-of-more-informative-result"]], "Slot: direction": [[122, "slot-direction"]], "Slot: false_discovery_rate": [[123, "slot-false-discovery-rate"]], "Slot: fold_enrichment": [[124, "slot-fold-enrichment"]], "Class Enrichment Datamodel": [[125, "class-enrichment-datamodel"]], "Slot: p_value": [[126, "slot-p-value"]], "Slot: p_value_adjusted": [[127, "slot-p-value-adjusted"]], "Slot: p_value_cutoff": [[128, "slot-p-value-cutoff"]], "Slot: probability": [[129, "slot-probability"]], "Slot: rank": [[130, "slot-rank"], [732, "slot-rank"]], "Slot: results": [[131, "slot-results"], [183, "slot-results"], [734, "slot-results"], [1082, "slot-results"]], "Slot: sample_count": [[132, "slot-sample-count"]], "Slot: sample_total": [[133, "slot-sample-total"]], "Enum: DiffCategory": [[140, "enum-diffcategory"]], "Type: EntityReference": [[142, "type-entityreference"]], "Type: Label": [[147, "type-label"]], "Enum: MappingCardinalityEnum": [[148, "enum-mappingcardinalityenum"]], "Position": [[152, "position"]], "Class: RelationalDiff": [[153, "class-relationaldiff"]], "Type: Source": [[154, "type-source"]], "Class: StructureDiffResultSet": [[157, "class-structurediffresultset"]], "Slot: category": [[161, "slot-category"], [557, "slot-category"], [1062, "slot-category"]], "cross-ontology-diff": [[162, "cross-ontology-diff"]], "Cross-Ontology Diff": [[163, "cross-ontology-diff"]], "Slot: is_functional": [[164, "slot-is-functional"]], "Slot: label": [[165, "slot-label"], [439, "slot-label"], [625, "slot-label"], [784, "slot-label"], [885, "slot-label"], [954, "slot-label"]], "Slot: left_object_id": [[166, "slot-left-object-id"]], "Slot: left_object_is_functional": [[167, "slot-left-object-is-functional"]], "Slot: left_object_label": [[168, "slot-left-object-label"]], "Slot: left_object_name": [[169, "slot-left-object-name"]], "Slot: left_predicate_id": [[170, "slot-left-predicate-id"]], "Slot: left_predicate_label": [[171, "slot-left-predicate-label"]], "Slot: left_predicate_name": [[172, "slot-left-predicate-name"]], "Slot: left_side": [[173, "slot-left-side"]], "Slot: left_source": [[174, "slot-left-source"]], "Slot: left_subject_id": [[175, "slot-left-subject-id"]], "Slot: left_subject_is_functional": [[176, "slot-left-subject-is-functional"]], "Slot: left_subject_label": [[177, "slot-left-subject-label"]], "Slot: left_subject_name": [[178, "slot-left-subject-name"]], "Slot: object_mapping_cardinality": [[180, "slot-object-mapping-cardinality"]], "Slot: object_mapping_predicate": [[181, "slot-object-mapping-predicate"]], "Slot: right_intermediate_ids": [[184, "slot-right-intermediate-ids"]], "Slot: right_object_id": [[185, "slot-right-object-id"]], "Slot: right_object_label": [[186, "slot-right-object-label"]], "Slot: right_object_name": [[187, "slot-right-object-name"]], "Slot: right_predicate_ids": [[188, "slot-right-predicate-ids"]], "Slot: right_predicate_labels": [[189, "slot-right-predicate-labels"]], "Slot: right_predicate_names": [[190, "slot-right-predicate-names"]], "Slot: right_side": [[191, "slot-right-side"]], "Slot: right_source": [[192, "slot-right-source"]], "Slot: right_subject_id": [[193, "slot-right-subject-id"]], "Slot: right_subject_label": [[194, "slot-right-subject-label"]], "Slot: right_subject_name": [[195, "slot-right-subject-name"]], "Slot: side": [[196, "slot-side"]], "Slot: subject_mapping_cardinality": [[198, "slot-subject-mapping-cardinality"]], "Slot: subject_mapping_predicate": [[199, "slot-subject-mapping-predicate"]], "types": [[200, "types"], [293, "types"], [370, "types"], [469, "types"], [669, "types"], [741, "types"], [810, "types"], [914, "types"], [1026, "types"], [1095, "types"]], "FunOwl": [[201, "funowl"]], "Datamodels": [[202, "datamodels"], [1176, "datamodels"]], "Contents:": [[202, null], [1103, null], [1111, null], [1120, null], [1127, null], [1128, null], [1143, null], [1152, null], [1164, null], [1170, null]], "Class: ItemList": [[212, "class-itemlist"]], "Aliases": [[212, "aliases"], [213, "aliases"], [381, "aliases"], [386, "aliases"], [393, "aliases"], [394, "aliases"], [405, "aliases"], [433, "aliases"], [441, "aliases"], [443, "aliases"], [447, "aliases"], [460, "aliases"], [462, "aliases"], [472, "aliases"], [473, "aliases"], [488, "aliases"], [522, "aliases"], [541, "aliases"], [578, "aliases"], [781, "aliases"]], "Class: ItemListCollection": [[213, "class-itemlistcollection"]], "Enum: ItemListOrderType": [[214, "enum-itemlistordertype"]], "Class: ListItem": [[217, "class-listitem"]], "Class: Thing": [[223, "class-thing"], [542, "class-thing"]], "Slot: additionalType": [[227, "slot-additionaltype"]], "Slot: categories": [[228, "slot-categories"], [707, "slot-categories"], [997, "slot-categories"]], "Slot: description": [[229, "slot-description"], [327, "slot-description"], [871, "slot-description"], [950, "slot-description"]], "Slot: elementId": [[230, "slot-elementid"]], "Slot: id": [[231, "slot-id"], [436, "slot-id"], [608, "slot-id"], [779, "slot-id"], [881, "slot-id"], [952, "slot-id"], [999, "slot-id"], [1066, "slot-id"]], "Slot: idType": [[232, "slot-idtype"]], "Examples": [[232, "examples"], [245, "examples"], [1159, "examples"], [1182, "examples"]], "Slot: identifiers": [[233, "slot-identifiers"]], "Item List Data Model": [[234, "item-list-data-model"]], "Slot: item": [[235, "slot-item"]], "itemList": [[236, "itemlist"]], "Slot: itemListElements": [[237, "slot-itemlistelements"]], "Slot: itemLists": [[238, "slot-itemlists"]], "Slot: itemMetadataMap": [[239, "slot-itemmetadatamap"]], "Slot: keywords": [[240, "slot-keywords"]], "Slot: name": [[241, "slot-name"], [282, "slot-name"], [341, "slot-name"]], "Slot: numberOfItems": [[242, "slot-numberofitems"]], "Slot: position": [[243, "slot-position"]], "Slot: previousItem": [[244, "slot-previousitem"]], "Slot: type": [[245, "slot-type"], [292, "slot-type"], [369, "slot-type"], [468, "slot-type"], [668, "slot-type"], [1093, "slot-type"]], "Slot: url": [[246, "slot-url"], [671, "slot-url"], [1096, "slot-url"]], "Slot: wasGeneratedBy": [[247, "slot-wasgeneratedby"]], "KGCL": [[248, "kgcl"]], "Class: Activity": [[249, "class-activity"], [294, "class-activity"]], "Class: Any": [[250, "class-any"], [295, "class-any"], [484, "class-any"]], "Class: LexicalGrouping": [[262, "class-lexicalgrouping"], [307, "class-lexicalgrouping"]], "Class: LexicalIndex": [[263, "class-lexicalindex"], [308, "class-lexicalindex"]], "Class: LexicalTransformation": [[264, "class-lexicaltransformation"], [309, "class-lexicaltransformation"]], "Class: LexicalTransformationPipeline": [[265, "class-lexicaltransformationpipeline"], [310, "class-lexicaltransformationpipeline"]], "Class: RelationshipToTerm": [[269, "class-relationshiptoterm"], [318, "class-relationshiptoterm"]], "Enum: TransformationType": [[273, "enum-transformationtype"], [324, "enum-transformationtype"], [993, "enum-transformationtype"]], "Slot: element": [[276, "slot-element"], [328, "slot-element"]], "Slot: element_term": [[277, "slot-element-term"], [329, "slot-element-term"]], "Slot: groupings": [[278, "slot-groupings"], [330, "slot-groupings"]], "Lexical Index": [[279, "lexical-index"]], "lexical-index": [[280, "lexical-index"], [333, "lexical-index"]], "lexican-index": [[281, "lexican-index"], [334, "lexican-index"]], "Slot: params": [[283, "slot-params"], [346, "slot-params"]], "Slot: pipeline": [[284, "slot-pipeline"], [347, "slot-pipeline"]], "Slot: pipelines": [[285, "slot-pipelines"], [348, "slot-pipelines"]], "Slot: relationships": [[287, "slot-relationships"], [356, "slot-relationships"]], "Slot: source": [[288, "slot-source"], [359, "slot-source"], [660, "slot-source"], [1085, "slot-source"]], "Slot: synonymized": [[289, "slot-synonymized"], [362, "slot-synonymized"]], "Slot: term": [[290, "slot-term"], [364, "slot-term"]], "Slot: transformations": [[291, "slot-transformations"], [367, "slot-transformations"]], "Class: MappingRule": [[311, "class-mappingrule"]], "Class: MappingRuleCollection": [[312, "class-mappingrulecollection"]], "Class: Postcondition": [[316, "class-postcondition"]], "Class: Precondition": [[317, "class-precondition"]], "Class: Synonymizer": [[321, "class-synonymizer"]], "Class: Test": [[322, "class-test"]], "Mapping Rules Datamodel": [[331, "mapping-rules-datamodel"]], "Slot: input": [[332, "slot-input"]], "mapping-rules": [[335, "mapping-rules"]], "mapping-rules-datamodel": [[336, "mapping-rules-datamodel"]], "Slot: mapping_source_one_of": [[337, "slot-mapping-source-one-of"]], "Slot: match": [[338, "slot-match"], [629, "slot-match"]], "Slot: match_scope": [[339, "slot-match-scope"]], "Slot: minimum_confidence": [[340, "slot-minimum-confidence"]], "Slot: object_match_field_one_of": [[342, "slot-object-match-field-one-of"]], "Slot: object_source_one_of": [[343, "slot-object-source-one-of"]], "Slot: oneway": [[344, "slot-oneway"]], "Slot: output": [[345, "slot-output"]], "Slot: postconditions": [[349, "slot-postconditions"]], "Slot: preconditions": [[350, "slot-preconditions"]], "Slot: predicate_id": [[352, "slot-predicate-id"], [1015, "slot-predicate-id"], [1078, "slot-predicate-id"]], "Slot: predicate_id_one_of": [[353, "slot-predicate-id-one-of"]], "Slot: prefix": [[354, "slot-prefix"], [452, "slot-prefix"], [902, "slot-prefix"]], "Slot: qualifier": [[355, "slot-qualifier"]], "Slot: replacement": [[357, "slot-replacement"]], "Slot: rules": [[358, "slot-rules"]], "Slot: subject_match_field_one_of": [[360, "slot-subject-match-field-one-of"]], "Slot: subject_source_one_of": [[361, "slot-subject-source-one-of"]], "Slot: synonymizer": [[363, "slot-synonymizer"]], "Slot: tests": [[365, "slot-tests"]], "Slot: the_rule": [[366, "slot-the-rule"]], "Slot: transformations_included_in": [[368, "slot-transformations-included-in"]], "Slot: weight": [[371, "slot-weight"]], "See Also": [[371, "see-also"], [400, "see-also"], [413, "see-also"], [418, "see-also"], [434, "see-also"], [436, "see-also"], [460, "see-also"], [477, "see-also"], [478, "see-also"], [495, "see-also"], [596, "see-also"]], "Class: Axiom": [[372, "class-axiom"], [485, "class-axiom"]], "Class: BasicPropertyValue": [[373, "class-basicpropertyvalue"]], "Class: DefinitionPropertyValue": [[380, "class-definitionpropertyvalue"]], "Class: DisjointClassExpressionsAxiom": [[381, "class-disjointclassexpressionsaxiom"]], "Class: DomainRangeAxiom": [[382, "class-domainrangeaxiom"]], "Class: Edge": [[384, "class-edge"]], "Class: EquivalentNodesSet": [[385, "class-equivalentnodesset"]], "Class: ExistentialRestrictionExpression": [[386, "class-existentialrestrictionexpression"]], "Annotations": [[386, "annotations"], [393, "annotations"], [847, "annotations"], [849, "annotations"], [855, "annotations"], [856, "annotations"], [857, "annotations"], [860, "annotations"], [861, "annotations"], [862, "annotations"], [868, "annotations"], [869, "annotations"], [870, "annotations"], [873, "annotations"], [874, "annotations"], [876, "annotations"], [883, "annotations"], [886, "annotations"], [887, "annotations"], [888, "annotations"], [889, "annotations"], [890, "annotations"], [892, "annotations"], [893, "annotations"], [894, "annotations"], [896, "annotations"], [898, "annotations"], [899, "annotations"], [904, "annotations"], [911, "annotations"], [912, "annotations"], [915, "annotations"]], "Class: Graph": [[388, "class-graph"]], "Class: GraphDocument": [[389, "class-graphdocument"]], "Class: LogicalDefinitionAxiom": [[393, "class-logicaldefinitionaxiom"]], "Class: Meta": [[394, "class-meta"]], "Class: Node": [[396, "class-node"], [1043, "class-node"]], "Enum: NodeTypeEnum": [[397, "enum-nodetypeenum"]], "Type: OboIdentifierString": [[400, "type-oboidentifierstring"]], "PredsEnum": [[401, "predsenum"]], "Class: PrefixDeclaration": [[402, "class-prefixdeclaration"]], "Class: PropertyChainAxiom": [[403, "class-propertychainaxiom"]], "Enum: PropertyTypeEnum": [[404, "enum-propertytypeenum"]], "Enum: ScopeEnum": [[406, "enum-scopeenum"]], "ScopesEnum": [[407, "scopesenum"]], "Class: SubsetDefinition": [[410, "class-subsetdefinition"]], "Class: SynonymPropertyValue": [[411, "class-synonympropertyvalue"]], "Class: SynonymTypeDefinition": [[412, "class-synonymtypedefinition"]], "Type: SynonymTypeIdentifierString": [[413, "type-synonymtypeidentifierstring"]], "Class: XrefPropertyValue": [[417, "class-xrefpropertyvalue"]], "Type: XrefString": [[418, "type-xrefstring"]], "Slot: allValuesFromEdges": [[419, "slot-allvaluesfromedges"]], "Slot: basicPropertyValues": [[420, "slot-basicpropertyvalues"]], "Slot: chainPredicateIds": [[421, "slot-chainpredicateids"]], "Slot: classExpressions": [[422, "slot-classexpressions"]], "Slot: classIds": [[423, "slot-classids"]], "Slot: definedClassId": [[425, "slot-definedclassid"]], "Slot: definition": [[426, "slot-definition"], [575, "slot-definition"]], "Slot: deprecated": [[427, "slot-deprecated"], [578, "slot-deprecated"]], "Slot: disjointClassExpressionsAxioms": [[428, "slot-disjointclassexpressionsaxioms"]], "Slot: domainClassIds": [[429, "slot-domainclassids"]], "Slot: domainRangeAxioms": [[430, "slot-domainrangeaxioms"]], "Slot: edges": [[431, "slot-edges"]], "Slot: equivalentNodesSets": [[432, "slot-equivalentnodessets"]], "Slot: fillerId": [[433, "slot-fillerid"]], "Slot: genusIds": [[434, "slot-genusids"]], "Slot: graphs": [[435, "slot-graphs"]], "Obographs Datamodel": [[437, "obographs-datamodel"]], "Slot: isExact": [[438, "slot-isexact"]], "Slot: lang": [[440, "slot-lang"]], "Slot: lbl": [[441, "slot-lbl"]], "Slot: logicalDefinitionAxioms": [[442, "slot-logicaldefinitionaxioms"]], "Slot: meta": [[443, "slot-meta"]], "Slot: namespace": [[444, "slot-namespace"]], "Slot: nodeIds": [[445, "slot-nodeids"]], "Slot: nodes": [[446, "slot-nodes"]], "Slot: obj": [[447, "slot-obj"]], "obographs_datamodel": [[448, "obographs-datamodel"]], "obographs_linkml_model": [[449, "obographs-linkml-model"]], "Slot: pred": [[450, "slot-pred"]], "Slot: predicateId": [[451, "slot-predicateid"]], "Slot: prefixes": [[453, "slot-prefixes"]], "Slot: propertyChainAxioms": [[454, "slot-propertychainaxioms"]], "Slot: propertyId": [[455, "slot-propertyid"]], "Slot: propertyType": [[456, "slot-propertytype"]], "Slot: rangeClassIds": [[457, "slot-rangeclassids"]], "Slot: representativeNodeId": [[458, "slot-representativenodeid"]], "Slot: representitiveNodeId": [[459, "slot-representitivenodeid"]], "Slot: restrictions": [[460, "slot-restrictions"]], "Slot: scope": [[461, "slot-scope"]], "Slot: sub": [[462, "slot-sub"]], "Slot: subsetDefinitions": [[463, "slot-subsetdefinitions"]], "Slot: subsets": [[464, "slot-subsets"]], "Slot: synonymType": [[465, "slot-synonymtype"]], "Slot: synonymTypeDefinitions": [[466, "slot-synonymtypedefinitions"]], "Slot: synonyms": [[467, "slot-synonyms"]], "Slot: unionEquivalentTo": [[470, "slot-unionequivalentto"]], "Slot: unionEquivalentToExpression": [[471, "slot-unionequivalenttoexpression"]], "Slot: val": [[472, "slot-val"]], "Slot: valType": [[473, "slot-valtype"]], "Slot: version": [[474, "slot-version"], [917, "slot-version"]], "Slot: xrefs": [[475, "slot-xrefs"]], "Class: Agent": [[476, "class-agent"], [813, "class-agent"]], "Valid ID Prefixes": [[476, "valid-id-prefixes"], [509, "valid-id-prefixes"], [936, "valid-id-prefixes"], [940, "valid-id-prefixes"]], "Subset: AllotropePermittedProfile": [[477, "subset-allotropepermittedprofile"]], "Slots in subset": [[477, "slots-in-subset"], [478, "slots-in-subset"], [499, "slots-in-subset"], [501, "slots-in-subset"], [528, "slots-in-subset"], [529, "slots-in-subset"]], "Subset: AllotropeRequiredProfile": [[478, "subset-allotroperequiredprofile"]], "Class: Annotation": [[479, "class-annotation"]], "Class: AnnotationProperty": [[480, "class-annotationproperty"]], "Class: AnnotationPropertyMixin": [[481, "class-annotationpropertymixin"]], "Class: Anonymous": [[482, "class-anonymous"]], "Class: AnonymousClassExpression": [[483, "class-anonymousclassexpression"]], "Type: CURIELiteral": [[487, "type-curieliteral"]], "Class: Class": [[488, "class-class"]], "Class: ClassExpression": [[489, "class-classexpression"]], "Enum: DefinitionConstraintComponent": [[495, "enum-definitionconstraintcomponent"]], "Class: Expression": [[497, "class-expression"]], "Subset: GoPermittedProfile": [[499, "subset-gopermittedprofile"]], "Subset: GoRecommendedProfile": [[500, "subset-gorecommendedprofile"]], "Subset: GoRequiredProfile": [[501, "subset-gorequiredprofile"]], "Class: HasCategory": [[502, "class-hascategory"]], "Class: HasLifeCycle": [[503, "class-haslifecycle"]], "Class: HasMappings": [[504, "class-hasmappings"]], "Class: HasMinimalMetadata": [[505, "class-hasminimalmetadata"]], "Class: HasProvenance": [[506, "class-hasprovenance"]], "Class: HasSynonyms": [[507, "class-hassynonyms"]], "Class: HasUserInformation": [[508, "class-hasuserinformation"]], "Class: HomoSapiens": [[509, "class-homosapiens"]], "Slot: IEDB_alternative_term": [[510, "slot-iedb-alternative-term"]], "Slot: ISA_alternative_term": [[511, "slot-isa-alternative-term"]], "Class: Image": [[512, "class-image"]], "Type: IriType": [[514, "type-iritype"]], "Type: LabelType": [[517, "type-labeltype"]], "Slot: NCIT_definition_source": [[518, "slot-ncit-definition-source"]], "Slot: NCIT_term_source": [[519, "slot-ncit-term-source"]], "Slot: NCIT_term_type": [[520, "slot-ncit-term-type"]], "Class: NamedIndividual": [[521, "class-namedindividual"]], "Class: NamedObject": [[522, "class-namedobject"]], "Type: NarrativeText": [[523, "type-narrativetext"]], "Class: NotObsoleteAspect": [[526, "class-notobsoleteaspect"]], "Slot: OBO_foundry_unique_label": [[527, "slot-obo-foundry-unique-label"]], "TODOs": [[527, "todos"], [549, "todos"], [552, "todos"], [553, "todos"], [561, "todos"], [568, "todos"], [576, "todos"], [580, "todos"], [582, "todos"], [585, "todos"], [595, "todos"], [603, "todos"], [615, "todos"], [616, "todos"], [649, "todos"], [652, "todos"], [654, "todos"], [655, "todos"], [659, "todos"], [666, "todos"], [693, "todos"], [771, "todos"], [957, "todos"], [1047, "todos"], [1059, "todos"]], "Subset: ObiPermittedProfile": [[528, "subset-obipermittedprofile"]], "Subset: ObiRequiredProfile": [[529, "subset-obirequiredprofile"]], "Class: ObjectProperty": [[530, "class-objectproperty"]], "Class: ObsoleteAspect": [[532, "class-obsoleteaspect"]], "Class: Ontology": [[533, "class-ontology"], [835, "class-ontology"]], "Ontology-Metadata": [[534, "ontology-metadata"]], "Class: Property": [[535, "class-property"]], "Class: PropertyExpression": [[536, "class-propertyexpression"]], "Class: Restriction": [[537, "class-restriction"]], "Class: Subset": [[540, "class-subset"]], "Class: Term": [[541, "class-term"], [942, "class-term"]], "Type: TidyString": [[543, "type-tidystring"]], "Class: TransitiveProperty": [[545, "class-transitiveproperty"]], "Type: URLLiteral": [[546, "type-urlliteral"]], "Slot: allValuesFrom": [[549, "slot-allvaluesfrom"]], "Slot: alternative_term": [[550, "slot-alternative-term"]], "Slot: annotatedProperty": [[551, "slot-annotatedproperty"]], "Slot: annotatedSource": [[552, "slot-annotatedsource"]], "Slot: annotatedTarget": [[553, "slot-annotatedtarget"]], "Slot: annotations": [[554, "slot-annotations"], [996, "slot-annotations"]], "Slot: broadMatch": [[555, "slot-broadmatch"]], "Slot: cardinality": [[556, "slot-cardinality"]], "Slot: changeNote": [[558, "slot-changenote"]], "Slot: closeMatch": [[559, "slot-closematch"]], "Slot: comment": [[560, "slot-comment"]], "Slot: complementOf": [[561, "slot-complementof"]], "Slot: conformsTo": [[562, "slot-conformsto"]], "Slot: consider": [[563, "slot-consider"]], "Slot: contributor": [[564, "slot-contributor"]], "Slot: core_property": [[565, "slot-core-property"]], "Slot: created": [[566, "slot-created"]], "Slot: created_by": [[567, "slot-created-by"]], "Slot: creator": [[569, "slot-creator"]], "Slot: curator_note": [[570, "slot-curator-note"]], "Slot: database_cross_reference": [[571, "slot-database-cross-reference"]], "Slot: date_retrieved": [[573, "slot-date-retrieved"]], "Slot: defaultLanguage": [[574, "slot-defaultlanguage"]], "Slot: definition_source": [[576, "slot-definition-source"]], "Slot: depicted_by": [[577, "slot-depicted-by"]], "Slot: disconnected_from": [[579, "slot-disconnected-from"]], "Slot: disjointWith": [[580, "slot-disjointwith"]], "Slot: distinctMembers": [[581, "slot-distinctmembers"]], "Slot: domain": [[582, "slot-domain"]], "Slot: editor_note": [[583, "slot-editor-note"]], "Slot: editor_preferred_term": [[584, "slot-editor-preferred-term"]], "Slot: equivalentClass": [[585, "slot-equivalentclass"]], "Slot: equivalentProperty": [[586, "slot-equivalentproperty"]], "Slot: evidence": [[587, "slot-evidence"]], "Slot: exactMatch": [[588, "slot-exactmatch"]], "Slot: example_of_usage": [[589, "slot-example-of-usage"]], "Slot: excluded_axiom": [[590, "slot-excluded-axiom"]], "Slot: excluded_from_QC_check": [[591, "slot-excluded-from-qc-check"]], "Slot: excluded_subClassOf": [[592, "slot-excluded-subclassof"]], "Slot: excluded_synonym": [[593, "slot-excluded-synonym"]], "Slot: external_ontology": [[594, "slot-external-ontology"]], "Slot: hasValue": [[595, "slot-hasvalue"]], "Slot: has_alternative_id": [[596, "slot-has-alternative-id"]], "Slot: has_axiom_label": [[597, "slot-has-axiom-label"]], "Slot: has_broad_synonym": [[598, "slot-has-broad-synonym"]], "Slot: has_curation_status": [[599, "slot-has-curation-status"]], "Slot: has_exact_synonym": [[600, "slot-has-exact-synonym"]], "Slot: has_narrow_synonym": [[601, "slot-has-narrow-synonym"]], "Slot: has_obo_namespace": [[602, "slot-has-obo-namespace"]], "Slot: has_obsolescence_reason": [[603, "slot-has-obsolescence-reason"]], "Slot: has_ontology_root_term": [[604, "slot-has-ontology-root-term"]], "Slot: has_rank": [[605, "slot-has-rank"]], "Slot: has_related_synonym": [[606, "slot-has-related-synonym"]], "Slot: has_synonym_type": [[607, "slot-has-synonym-type"]], "Slot: image": [[609, "slot-image"]], "Slot: imported_from": [[610, "slot-imported-from"]], "Slot: imports": [[611, "slot-imports"]], "Slot: in_subset": [[612, "slot-in-subset"]], "Ontology Metadata Ontology Schema": [[613, "ontology-metadata-ontology-schema"]], "Slot: informative_property": [[614, "slot-informative-property"]], "Slot: intersectionOf": [[615, "slot-intersectionof"]], "Slot: inverseOf": [[616, "slot-inverseof"]], "Slot: isDefinedBy": [[617, "slot-isdefinedby"]], "Slot: is_a_defining_property_chain_axiom": [[618, "slot-is-a-defining-property-chain-axiom"]], "Slot: is_a_defining_property_chain_axiom_where_second_argument_is_reflexive": [[619, "slot-is-a-defining-property-chain-axiom-where-second-argument-is-reflexive"]], "Slot: is_class_level": [[620, "slot-is-class-level"]], "Slot: is_cyclic": [[621, "slot-is-cyclic"]], "Slot: is_inferred": [[622, "slot-is-inferred"]], "Slot: is_metadata_tag": [[623, "slot-is-metadata-tag"]], "Slot: is_transitive": [[624, "slot-is-transitive"]], "Slot: language": [[626, "slot-language"]], "Slot: license": [[627, "slot-license"]], "Slot: logical_predicate": [[628, "slot-logical-predicate"]], "Slot: match_aspect": [[630, "slot-match-aspect"]], "Slot: maxQualifiedCardinality": [[631, "slot-maxqualifiedcardinality"]], "Slot: members": [[632, "slot-members"]], "Slot: minCardinality": [[633, "slot-mincardinality"]], "Slot: minQualifiedCardinality": [[634, "slot-minqualifiedcardinality"]], "Slot: narrowMatch": [[635, "slot-narrowmatch"]], "Slot: never_in_taxon": [[636, "slot-never-in-taxon"]], "Slot: notes": [[637, "slot-notes"]], "Slot: oboInOwl_id": [[639, "slot-oboinowl-id"]], "Slot: oboInOwl_ontology": [[640, "slot-oboinowl-ontology"]], "Slot: obsoletion_related_property": [[641, "slot-obsoletion-related-property"]], "omo-schema": [[642, "omo-schema"]], "Slot: onClass": [[643, "slot-onclass"]], "Slot: onProperty": [[644, "slot-onproperty"]], "Slot: oneOf": [[645, "slot-oneof"]], "Slot: ontology_term_requester": [[646, "slot-ontology-term-requester"]], "Slot: page": [[647, "slot-page"]], "Slot: propertyChainAxiom": [[649, "slot-propertychainaxiom"]], "Slot: provenance_property": [[650, "slot-provenance-property"]], "Slot: qualifiedCardinality": [[651, "slot-qualifiedcardinality"]], "Slot: range": [[652, "slot-range"]], "Slot: reification_predicate": [[653, "slot-reification-predicate"]], "Slot: sameAs": [[654, "slot-sameas"]], "Slot: seeAlso": [[655, "slot-seealso"]], "Slot: shortcut_annotation_property": [[656, "slot-shortcut-annotation-property"]], "Slot: shorthand": [[657, "slot-shorthand"]], "Slot: should_conform_to": [[658, "slot-should-conform-to"]], "Slot: someValuesFrom": [[659, "slot-somevaluesfrom"]], "Slot: subClassOf": [[661, "slot-subclassof"]], "Slot: synonym": [[662, "slot-synonym"]], "Slot: temporal_interpretation": [[663, "slot-temporal-interpretation"]], "Slot: term_editor": [[664, "slot-term-editor"]], "Slot: term_replaced_by": [[665, "slot-term-replaced-by"]], "Slot: term_tracker_item": [[666, "slot-term-tracker-item"]], "Slot: title": [[667, "slot-title"], [913, "slot-title"]], "Slot: unionOf": [[670, "slot-unionof"]], "Slot: versionIRI": [[672, "slot-versioniri"]], "Slot: versionInfo": [[673, "slot-versioninfo"]], "Slot: version_property": [[674, "slot-version-property"]], "Enum: BooleanOperator": [[676, "enum-booleanoperator"]], "Class: ComplexQuery": [[677, "class-complexquery"]], "Enum: GraphFunction": [[685, "enum-graphfunction"]], "Class: PathExpression": [[692, "class-pathexpression"]], "Class: SearchBaseConfiguration": [[693, "class-searchbaseconfiguration"]], "Enum: SearchProperty": [[694, "enum-searchproperty"]], "Class: SearchResult": [[695, "class-searchresult"]], "Class: SearchResultSet": [[696, "class-searchresultset"]], "Type: SearchTerm": [[697, "type-searchterm"]], "Enum: SearchTermSyntax": [[698, "enum-searchtermsyntax"]], "Slot: all_of": [[704, "slot-all-of"]], "Slot: any_of": [[705, "slot-any-of"]], "Slot: atom": [[706, "slot-atom"]], "Slot: configuration": [[708, "slot-configuration"]], "Slot: cursor": [[709, "slot-cursor"]], "Slot: force_case_insensitive": [[710, "slot-force-case-insensitive"]], "Slot: graph_predicates": [[711, "slot-graph-predicates"]], "Slot: include_aliases": [[712, "slot-include-aliases"], [1000, "slot-include-aliases"]], "Slot: include_definition": [[713, "slot-include-definition"]], "Slot: include_id": [[714, "slot-include-id"]], "Slot: include_label": [[715, "slot-include-label"]], "Slot: include_obsoletes_in_results": [[716, "slot-include-obsoletes-in-results"]], "search datamodel": [[717, "search-datamodel"]], "Slot: is_complete": [[718, "slot-is-complete"]], "Slot: is_fuzzy": [[719, "slot-is-fuzzy"]], "Slot: is_partial": [[720, "slot-is-partial"]], "Slot: is_regular_expression": [[721, "slot-is-regular-expression"]], "Slot: limit": [[722, "slot-limit"], [1004, "slot-limit"]], "Slot: matches_full_search_term": [[723, "slot-matches-full-search-term"]], "Slot: none_of": [[724, "slot-none-of"]], "Slot: object_id": [[725, "slot-object-id"], [793, "slot-object-id"], [1011, "slot-object-id"], [1074, "slot-object-id"]], "Slot: object_match_field": [[727, "slot-object-match-field"]], "Slot: object_source": [[728, "slot-object-source"], [796, "slot-object-source"], [1013, "slot-object-source"]], "Slot: object_source_version": [[729, "slot-object-source-version"]], "Slot: path_to": [[730, "slot-path-to"]], "Slot: properties": [[731, "slot-properties"]], "Slot: result_count": [[733, "slot-result-count"]], "search-datamodel": [[735, "search-datamodel"]], "Slot: search_term": [[736, "slot-search-term"]], "Slot: search_terms": [[737, "slot-search-terms"]], "Slot: snippet": [[738, "slot-snippet"]], "Slot: syntax": [[739, "slot-syntax"]], "Slot: traversal": [[740, "slot-traversal"]], "SemSQL": [[742, "semsql"]], "Class: BestMatch": [[743, "class-bestmatch"]], "Type: ItemCount": [[753, "type-itemcount"]], "Type: NegativeLogValue": [[757, "type-negativelogvalue"]], "Type: NonNegativeFloat": [[759, "type-nonnegativefloat"]], "Class: PairwiseSimilarity": [[761, "class-pairwisesimilarity"]], "Class: TermInfo": [[764, "class-terminfo"]], "Class: TermPairwiseSimilarity": [[765, "class-termpairwisesimilarity"]], "Class: TermSetPairwiseSimilarity": [[766, "class-termsetpairwisesimilarity"]], "Type: ZeroToOne": [[770, "type-zerotoone"]], "Slot: ancestor_id": [[771, "slot-ancestor-id"]], "Slot: ancestor_information_content": [[772, "slot-ancestor-information-content"]], "Slot: ancestor_label": [[773, "slot-ancestor-label"]], "Slot: ancestor_source": [[774, "slot-ancestor-source"]], "Slot: average_score": [[775, "slot-average-score"]], "Slot: best_score": [[776, "slot-best-score"]], "Slot: cosine_similarity": [[777, "slot-cosine-similarity"]], "Slot: dice_similarity": [[778, "slot-dice-similarity"]], "Semantic Similarity": [[780, "semantic-similarity"]], "Slot: information_content": [[781, "slot-information-content"]], "Slot: intersection_count": [[782, "slot-intersection-count"]], "Slot: jaccard_similarity": [[783, "slot-jaccard-similarity"]], "Slot: match_source": [[785, "slot-match-source"]], "Slot: match_source_label": [[786, "slot-match-source-label"]], "Slot: match_subsumer": [[787, "slot-match-subsumer"]], "Slot: match_subsumer_label": [[788, "slot-match-subsumer-label"]], "Slot: match_target": [[789, "slot-match-target"]], "Slot: match_target_label": [[790, "slot-match-target-label"]], "Slot: metric": [[791, "slot-metric"]], "Slot: object_best_matches": [[792, "slot-object-best-matches"]], "Slot: object_information_content": [[794, "slot-object-information-content"]], "Slot: object_termset": [[797, "slot-object-termset"]], "Slot: overlap_coefficient": [[798, "slot-overlap-coefficient"]], "Slot: phenodigm_score": [[799, "slot-phenodigm-score"]], "Slot: score": [[800, "slot-score"]], "Slot: similarity": [[801, "slot-similarity"]], "Slot: subject_best_matches": [[802, "slot-subject-best-matches"]], "Slot: subject_id": [[803, "slot-subject-id"], [1087, "slot-subject-id"]], "Slot: subject_information_content": [[804, "slot-subject-information-content"]], "Slot: subject_source": [[806, "slot-subject-source"], [1020, "slot-subject-source"]], "Slot: subject_termset": [[807, "slot-subject-termset"]], "Slot: subsumed_by_score": [[808, "slot-subsumed-by-score"]], "Slot: subsumes_score": [[809, "slot-subsumes-score"]], "Slot: union_count": [[811, "slot-union-count"]], "SSSOM": [[812, "sssom"], [1114, "sssom"]], "Class: ChangeTypeStatistic": [[815, "class-changetypestatistic"]], "Class: ContributorRole": [[816, "class-contributorrole"]], "Class: ContributorStatistics": [[817, "class-contributorstatistics"]], "Class: FacetStatistics": [[824, "class-facetstatistics"]], "LinkML Specification": [[824, "linkml-specification"], [827, "linkml-specification"], [838, "linkml-specification"]], "Class: FacetedCount": [[825, "class-facetedcount"]], "Class: GlobalStatistics": [[827, "class-globalstatistics"]], "Class: GroupedStatistics": [[828, "class-groupedstatistics"]], "Class: SummaryStatisticCollection": [[838, "class-summarystatisticcollection"]], "Class: SummaryStatisticsCalculationActivity": [[839, "class-summarystatisticscalculationactivity"]], "Class: SummaryStatisticsReport": [[840, "class-summarystatisticsreport"]], "Class: UngroupedStatistics": [[842, "class-ungroupedstatistics"]], "Slot: acted_on_behalf_of": [[845, "slot-acted-on-behalf-of"]], "Slot: agents": [[846, "slot-agents"]], "Slot: annotation_property_count": [[847, "slot-annotation-property-count"]], "Slot: anonymous_class_expression_count": [[848, "slot-anonymous-class-expression-count"]], "Slot: anonymous_individual_count": [[849, "slot-anonymous-individual-count"]], "Slot: by_category": [[850, "slot-by-category"]], "Slot: by_ontology": [[851, "slot-by-ontology"]], "Slot: by_subset": [[852, "slot-by-subset"]], "Slot: by_taxon": [[853, "slot-by-taxon"]], "Slot: change_summary": [[854, "slot-change-summary"]], "Slot: class_count": [[855, "slot-class-count"]], "Slot: class_count_by_category": [[856, "slot-class-count-by-category"]], "Slot: class_count_by_subset": [[857, "slot-class-count-by-subset"]], "Slot: class_count_excluding_deprecated": [[858, "slot-class-count-excluding-deprecated"]], "Slot: class_count_with_definitions": [[859, "slot-class-count-with-definitions"]], "Slot: class_count_with_text_definitions": [[860, "slot-class-count-with-text-definitions"]], "Slot: class_count_without_text_definitions": [[861, "slot-class-count-without-text-definitions"]], "Slot: class_statistic_group": [[862, "slot-class-statistic-group"]], "Slot: compared_with": [[863, "slot-compared-with"]], "Slot: contributor_id": [[864, "slot-contributor-id"]], "Slot: contributor_name": [[865, "slot-contributor-name"]], "Slot: contributor_summary": [[866, "slot-contributor-summary"]], "Slot: count_statistic": [[867, "slot-count-statistic"]], "Slot: datatype_property_count": [[868, "slot-datatype-property-count"]], "Slot: deprecated_class_count": [[869, "slot-deprecated-class-count"]], "Slot: deprecated_object_property_count": [[870, "slot-deprecated-object-property-count"]], "Slot: description_logic_profile": [[872, "slot-description-logic-profile"]], "Slot: distinct_synonym_count": [[873, "slot-distinct-synonym-count"]], "Slot: edge_count_by_predicate": [[874, "slot-edge-count-by-predicate"]], "Slot: ended_at_time": [[875, "slot-ended-at-time"]], "Slot: entailed_edge_count_by_predicate": [[876, "slot-entailed-edge-count-by-predicate"]], "Slot: equivalent_classes_axiom_count": [[877, "slot-equivalent-classes-axiom-count"]], "Slot: equivalentclasses_axiom_count": [[878, "slot-equivalentclasses-axiom-count"]], "Slot: facet": [[879, "slot-facet"]], "Slot: filtered_count": [[880, "slot-filtered-count"]], "Summary Statistics Datamodel": [[882, "summary-statistics-datamodel"]], "Slot: individual_count": [[883, "slot-individual-count"]], "Slot: individual_statistic_group": [[884, "slot-individual-statistic-group"]], "Slot: mapping_count": [[886, "slot-mapping-count"]], "Slot: mapping_statement_count_by_object_source": [[887, "slot-mapping-statement-count-by-object-source"]], "Slot: mapping_statement_count_by_predicate": [[888, "slot-mapping-statement-count-by-predicate"]], "Slot: mapping_statement_count_subject_by_object_source": [[889, "slot-mapping-statement-count-subject-by-object-source"]], "Slot: merged_class_count": [[890, "slot-merged-class-count"]], "Slot: metadata_statistic_group": [[891, "slot-metadata-statistic-group"]], "Slot: named_individual_count": [[892, "slot-named-individual-count"]], "Slot: non_deprecated_class_count": [[893, "slot-non-deprecated-class-count"]], "Slot: non_deprecated_object_property_count": [[894, "slot-non-deprecated-object-property-count"]], "Slot: normalization_comments": [[895, "slot-normalization-comments"]], "Slot: object_property_count": [[896, "slot-object-property-count"]], "Slot: ontologies": [[897, "slot-ontologies"]], "Slot: ontology_count": [[898, "slot-ontology-count"]], "Slot: owl_axiom_count": [[899, "slot-owl-axiom-count"]], "Slot: owl_statistic_group": [[900, "slot-owl-statistic-group"]], "Slot: partitions": [[901, "slot-partitions"]], "Slot: property_count": [[903, "slot-property-count"]], "Slot: property_statistic_group": [[904, "slot-property-statistic-group"]], "Slot: rdf_triple_count": [[905, "slot-rdf-triple-count"]], "Slot: role_counts": [[906, "slot-role-counts"]], "Slot: started_at_time": [[907, "slot-started-at-time"]], "Slot: subclass_of_axiom_count": [[908, "slot-subclass-of-axiom-count"]], "Slot: subset_count": [[909, "slot-subset-count"]], "summary-statistics": [[910, "summary-statistics"]], "Slot: synonym_statement_count": [[911, "slot-synonym-statement-count"]], "Slot: synonym_statement_count_by_predicate": [[912, "slot-synonym-statement-count-by-predicate"]], "Slot: unsatisfiable_class_count": [[915, "slot-unsatisfiable-class-count"]], "Slot: untyped_entity_count": [[916, "slot-untyped-entity-count"]], "Slot: version_info": [[918, "slot-version-info"]], "Slot: was_associated_with": [[919, "slot-was-associated-with"]], "Slot: was_generated_by": [[920, "slot-was-generated-by"]], "Enum: ConfigurationOption": [[922, "enum-configurationoption"]], "Class: PredicateTerm": [[936, "class-predicateterm"]], "Class: SubjectTerm": [[939, "class-subjectterm"]], "Class: Taxon": [[940, "class-taxon"]], "Class: TaxonConstraint": [[941, "class-taxonconstraint"]], "Slot: asserted": [[946, "slot-asserted"]], "Slot: candidate": [[947, "slot-candidate"]], "Slot: contradicted_by": [[949, "slot-contradicted-by"]], "Slot: evolutionary": [[951, "slot-evolutionary"]], "Taxon Constraints Reporting Datamodel": [[953, "taxon-constraints-reporting-datamodel"]], "Slot: never_in": [[955, "slot-never-in"]], "Slot: only_in": [[956, "slot-only-in"]], "Slot: predicates": [[958, "slot-predicates"]], "Slot: present_in": [[959, "slot-present-in"]], "Slot: present_in_ancestor_of": [[960, "slot-present-in-ancestor-of"]], "Slot: redundant": [[961, "slot-redundant"]], "Slot: redundant_with": [[962, "slot-redundant-with"]], "Slot: redundant_with_only_in": [[963, "slot-redundant-with-only-in"]], "Slot: sources": [[964, "slot-sources"], [1017, "slot-sources"]], "Slot: taxon": [[966, "slot-taxon"]], "Slot: unsatisfiable": [[968, "slot-unsatisfiable"]], "Slot: via_terms": [[969, "slot-via-terms"]], "Class: HasSpan": [[978, "class-hasspan"]], "Class: TextAnnotation": [[988, "class-textannotation"]], "Class: TextAnnotationConfiguration": [[989, "class-textannotationconfiguration"]], "Class: TextAnnotationResultSet": [[990, "class-textannotationresultset"]], "Class: TextualElement": [[991, "class-textualelement"]], "Slot: confidence": [[998, "slot-confidence"], [1063, "slot-confidence"]], "Text Annotator Datamodel": [[1001, "text-annotator-datamodel"]], "Slot: info": [[1002, "slot-info"], [1068, "slot-info"]], "Slot: is_longest_match": [[1003, "slot-is-longest-match"]], "Slot: match_string": [[1005, "slot-match-string"]], "Slot: match_type": [[1006, "slot-match-type"]], "Slot: matches_whole_text": [[1007, "slot-matches-whole-text"]], "Slot: model": [[1008, "slot-model"]], "Slot: object_aliases": [[1009, "slot-object-aliases"]], "Slot: object_categories": [[1010, "slot-object-categories"]], "Slot: parent_document": [[1014, "slot-parent-document"]], "Slot: source_text": [[1016, "slot-source-text"]], "Slot: subject_end": [[1018, "slot-subject-end"]], "Slot: subject_start": [[1021, "slot-subject-start"]], "Slot: subject_text_id": [[1022, "slot-subject-text-id"]], "Slot: text": [[1023, "slot-text"]], "text-annotator": [[1024, "text-annotator"]], "Slot: token_exclusion_list": [[1025, "slot-token-exclusion-list"]], "Class: ConstraintComponent": [[1028, "class-constraintcomponent"]], "Class: ExternalReferenceValidationResult": [[1035, "class-externalreferencevalidationresult"]], "Class: MappingValidationResult": [[1040, "class-mappingvalidationresult"]], "Class: NamedResource": [[1041, "class-namedresource"]], "Class: RepairConfiguration": [[1046, "class-repairconfiguration"]], "Class: RepairOperation": [[1047, "class-repairoperation"]], "Class: RepairReport": [[1048, "class-repairreport"]], "Class: Report": [[1049, "class-report"]], "Class: Result": [[1050, "class-result"]], "Enum: SeverityOptions": [[1051, "enum-severityoptions"]], "Class: TypeSeverityKeyValue": [[1055, "class-typeseveritykeyvalue"]], "Class: ValidationConfiguration": [[1058, "class-validationconfiguration"]], "Class: ValidationReport": [[1059, "class-validationreport"]], "Class: ValidationResult": [[1060, "class-validationresult"]], "Enum: ValidationResultType": [[1061, "enum-validationresulttype"]], "Slot: dry_run": [[1064, "slot-dry-run"]], "Slot: http_response_code": [[1065, "slot-http-response-code"]], "Validation Results Datamodel": [[1067, "validation-results-datamodel"]], "Slot: instantiates": [[1069, "slot-instantiates"]], "Slot: max_number_results_per_type": [[1070, "slot-max-number-results-per-type"]], "Slot: modified": [[1071, "slot-modified"]], "Slot: number_of_attempts": [[1072, "slot-number-of-attempts"]], "Slot: object_info": [[1075, "slot-object-info"]], "Slot: object_str": [[1076, "slot-object-str"]], "Slot: problem": [[1079, "slot-problem"]], "Slot: prompt_info": [[1080, "slot-prompt-info"]], "Slot: repairs": [[1081, "slot-repairs"]], "Slot: schema_path": [[1083, "slot-schema-path"]], "Slot: severity": [[1084, "slot-severity"]], "Slot: subject_info": [[1088, "slot-subject-info"]], "Slot: successful": [[1089, "slot-successful"]], "Slot: suggested_modifications": [[1090, "slot-suggested-modifications"]], "Slot: suggested_predicate": [[1091, "slot-suggested-predicate"]], "Slot: time_checked": [[1092, "slot-time-checked"]], "Slot: type_severity_map": [[1094, "slot-type-severity-map"]], "Slot: validation_configuration": [[1097, "slot-validation-configuration"]], "validaton-results": [[1098, "validaton-results"]], "FAQ: Architecture and Design": [[1099, "faq-architecture-and-design"]], "What is an interface?": [[1099, "what-is-an-interface"]], "What is a Data Model?": [[1099, "what-is-a-data-model"]], "What is an iterator and why does OAK use them so much?": [[1099, "what-is-an-iterator-and-why-does-oak-use-them-so-much"]], "FAQ: Command Line": [[1100, "faq-command-line"]], "How do I see a list of commands?": [[1100, "how-do-i-see-a-list-of-commands"]], "How do I get help on a command?": [[1100, "how-do-i-get-help-on-a-command"]], "How do I get more examples of command line usage?": [[1100, "how-do-i-get-more-examples-of-command-line-usage"]], "I want to query an ontology, what do I pass for the --input option?": [[1100, "i-want-to-query-an-ontology-what-do-i-pass-for-the-input-option"]], "Why do I get a \u201cno such option\u201d error when I pass the \u201c\u2013input\u201d option?": [[1100, "why-do-i-get-a-no-such-option-error-when-i-pass-the-input-option"]], "What do the codes \u201ci\u201d and \u201cp\u201d mean?": [[1100, "what-do-the-codes-i-and-p-mean"]], "Can I pass a list of IDs (CURIEs) as input to a command?": [[1100, "can-i-pass-a-list-of-ids-curies-as-input-to-a-command"]], "Can I pass entity labels as command inputs?": [[1100, "can-i-pass-entity-labels-as-command-inputs"]], "Can I pass lexical queries as command inputs?": [[1100, "can-i-pass-lexical-queries-as-command-inputs"]], "Can I pass the results of graph queries as command inputs?": [[1100, "can-i-pass-the-results-of-graph-queries-as-command-inputs"]], "Can I make boolean combinations of query terms?": [[1100, "can-i-make-boolean-combinations-of-query-terms"]], "Can I chain commands together, unix-style?": [[1100, "can-i-chain-commands-together-unix-style"]], "What does the symbol @ mean in a query term list": [[1100, "what-does-the-symbol-mean-in-a-query-term-list"]], "Can I use the command line to visualize a subgraph?": [[1100, "can-i-use-the-command-line-to-visualize-a-subgraph"]], "Is there an over-arching philosophy or set of design principles to the OAK command line?": [[1100, "is-there-an-over-arching-philosophy-or-set-of-design-principles-to-the-oak-command-line"]], "The command isn\u2019t working the way I expected - how do I get help?": [[1100, "the-command-isn-t-working-the-way-i-expected-how-do-i-get-help"]], "FAQ: Contributing": [[1101, "faq-contributing"]], "How can I contribute?": [[1101, "how-can-i-contribute"]], "How do I stay involved?": [[1101, "how-do-i-stay-involved"]], "FAQ: General": [[1102, "faq-general"]], "What is OAK?": [[1102, "what-is-oak"]], "Are there any tutorials for OAK?": [[1102, "are-there-any-tutorials-for-oak"]], "Are there runnable examples of how to use OAK?": [[1102, "are-there-runnable-examples-of-how-to-use-oak"]], "I am familiar with both Python and Ontologies. Where should I start?": [[1102, "i-am-familiar-with-both-python-and-ontologies-where-should-i-start"]], "I find ontologies confusing. Is there a general guide to help me?": [[1102, "i-find-ontologies-confusing-is-there-a-general-guide-to-help-me"]], "Why is it called OAK?": [[1102, "why-is-it-called-oak"]], "How do I install OAK?": [[1102, "how-do-i-install-oak"]], "Can I use OAK if I don\u2019t know Python?": [[1102, "can-i-use-oak-if-i-don-t-know-python"]], "Can I contribute to OAK?": [[1102, "can-i-contribute-to-oak"]], "Is OAK just for bio-ontologies?": [[1102, "is-oak-just-for-bio-ontologies"]], "Can OAK access ontologies in ontology portals such as MatPortal or BioPortal?": [[1102, "can-oak-access-ontologies-in-ontology-portals-such-as-matportal-or-bioportal"]], "Can OAK access ontologies in triplestores such as OntoBee or Ubergraph?": [[1102, "can-oak-access-ontologies-in-triplestores-such-as-ontobee-or-ubergraph"]], "Can OAK access local files?": [[1102, "can-oak-access-local-files"]], "Can OAK access OBO Format files?": [[1102, "can-oak-access-obo-format-files"]], "Does OAK support all of OWL?": [[1102, "does-oak-support-all-of-owl"]], "Does OAK support reasoning?": [[1102, "does-oak-support-reasoning"]], "Can I use OAK to do graph queries over ontologies?": [[1102, "can-i-use-oak-to-do-graph-queries-over-ontologies"]], "Can I use OAK to do lexical search?": [[1102, "can-i-use-oak-to-do-lexical-search"]], "Can I use OAK as a text annotator?": [[1102, "can-i-use-oak-as-a-text-annotator"]], "FAQ": [[1103, "faq"]], "FAQ: Ontologies": [[1104, "faq-ontologies"]], "What is an ontology?": [[1104, "what-is-an-ontology"]], "Do we need ontologies now we have ChatGPT?": [[1104, "do-we-need-ontologies-now-we-have-chatgpt"]], "What is OWL?": [[1104, "what-is-owl"]], "What is OBO Format?": [[1104, "what-is-obo-format"]], "What is OBO": [[1104, "what-is-obo"]], "What\u2019s a synonym and how do I access them?": [[1104, "what-s-a-synonym-and-how-do-i-access-them"]], "Ancestor statistics": [[1104, "id2"], [1129, "id2"], [1135, "id1"]], "FAQ: Troubleshooting": [[1105, "faq-troubleshooting"]], "Why do I get a \u201cError: No such option: -i\u201d message": [[1105, "why-do-i-get-a-error-no-such-option-i-message"]], "How do I get a BioPortal API key?": [[1105, "how-do-i-get-a-bioportal-api-key"]], "My OBO Format file won\u2019t parse": [[1105, "my-obo-format-file-won-t-parse"]], "My OWL file takes too long to load": [[1105, "my-owl-file-takes-too-long-to-load"]], "My cached SQLite ontology is out of date": [[1105, "my-cached-sqlite-ontology-is-out-of-date"]], "I don\u2019t understand the interface/method I want to use": [[1105, "i-don-t-understand-the-interface-method-i-want-to-use"]], "Glossary": [[1106, "glossary"]], "Aliases and Synonyms": [[1107, "aliases-and-synonyms"]], "Use Cases": [[1107, "use-cases"]], "Search": [[1107, "search"], [1129, "search"], [1149, "search"], [1163, "search"]], "Text mining and NLP": [[1107, "text-mining-and-nlp"]], "Different aliases for different communities": [[1107, "different-aliases-for-different-communities"]], "Different Languages": [[1107, "different-languages"]], "Different approaches to representing synonym metadata": [[1107, "different-approaches-to-representing-synonym-metadata"]], "Representation of synonyms in OAK": [[1107, "representation-of-synonyms-in-oak"]], "Simple Core Model": [[1107, "simple-core-model"]], "HPO basic aliases": [[1107, "id1"]], "Obo Graph Data Model": [[1107, "obo-graph-data-model"]], "HPO full aliases": [[1107, "id2"]], "Associations and Curated Annotations": [[1108, "associations-and-curated-annotations"]], "Background": [[1108, "background"], [1118, "background"]], "Association support in OAK": [[1108, "association-support-in-oak"]], "Data Model": [[1108, "data-model"], [1118, "data-model"], [1171, "data-model"]], "Selecting association sources": [[1108, "selecting-association-sources"]], "Further reading": [[1108, "further-reading"], [1110, "further-reading"], [1113, "further-reading"], [1114, "further-reading"], [1116, "further-reading"], [1118, "further-reading"]], "OAK Basics": [[1109, "oak-basics"]], "What is an ontology and why would I want to access one?": [[1109, "what-is-an-ontology-and-why-would-i-want-to-access-one"]], "Ontology languages, standards, and formats": [[1109, "ontology-languages-standards-and-formats"]], "Core OAK concepts": [[1109, "core-oak-concepts"]], "Identifying entities: CURIEs and URIs": [[1110, "curies-and-uris"]], "Prefix maps": [[1110, "prefix-maps"]], "Querying prefixmaps": [[1110, "querying-prefixmaps"]], "Example prefixes": [[1110, "id1"]], "Non-default prefixmaps": [[1110, "non-default-prefixmaps"]], "Structure of identifiers": [[1110, "structure-of-identifiers"]], "The OAK Guide": [[1111, "the-oak-guide"]], "Learning More": [[1112, "learning-more"]], "Logical Definitions": [[1113, "logical-definitions"]], "Logical Definitions in OWL": [[1113, "logical-definitions-in-owl"]], "Genus-differentia form logical definitions": [[1113, "genus-differentia-form-logical-definitions"]], "The Obo Graphs Model": [[1113, "the-obo-graphs-model"]], "Querying for logical definitions in OAK": [[1113, "querying-for-logical-definitions-in-oak"]], "uberon nail logical definitions": [[1113, "id2"]], "Reasoning using logical definitions": [[1113, "reasoning-using-logical-definitions"]], "Logical definitions and design patterns": [[1113, "logical-definitions-and-design-patterns"]], "Generating logical definitions": [[1113, "generating-logical-definitions"]], "Analyzing logical definitions": [[1113, "analyzing-logical-definitions"]], "Validating logical definitions": [[1113, "validating-logical-definitions"]], "Mappings and Cross-References": [[1114, "mappings-and-cross-references"]], "Mappings in OAK": [[1114, "mappings-in-oak"]], "uberon sssom mappings": [[1114, "id1"]], "In Python": [[1114, "in-python"]], "Generating Mappings": [[1114, "generating-mappings"]], "Obsoletion": [[1115, "obsoletion"]], "Looking up obsoleted entities": [[1115, "looking-up-obsoleted-entities"]], "Conventions and standards": [[1115, "conventions-and-standards"]], "obsolete entities should not be in the signature of any logical axiom": [[1115, "obsolete-entities-should-not-be-in-the-signature-of-any-logical-axiom"]], "obsolete entities should be accompanied by metadata that provides additional context for humans and machines": [[1115, "obsolete-entities-should-be-accompanied-by-metadata-that-provides-additional-context-for-humans-and-machines"]], "Merged entities": [[1115, "merged-entities"]], "Further Reading": [[1115, "further-reading"]], "Primary Labels": [[1116, "primary-labels"]], "Looking up labels": [[1116, "looking-up-labels"]], "Custom label annotation properties": [[1116, "custom-label-annotation-properties"]], "Multilingual ontologies": [[1116, "multilingual-ontologies"]], "Other edge cases": [[1116, "other-edge-cases"]], "Relationships and Graphs": [[1117, "relationships-and-graphs"]], "Exploring relationships": [[1117, "exploring-relationships"]], "Graph Traversal and Relation Graph Reasoning": [[1117, "graph-traversal-and-relation-graph-reasoning"]], "Graph Traversal Strategies": [[1117, "graph-traversal-strategies"]], "Examples of where entailment yields more": [[1117, "examples-of-where-entailment-yields-more"]], "Examples of where graph traversal yields more ancestors than entailment": [[1117, "examples-of-where-graph-traversal-yields-more-ancestors-than-entailment"]], "Which strategy should I use?": [[1117, "which-strategy-should-i-use"]], "A note on entailed direct edges": [[1117, "a-note-on-entailed-direct-edges"]], "Computing Similarity between Entities": [[1118, "computing-similarity-between-entities"]], "Concepts": [[1118, "concepts"]], "Jaccard Similarity": [[1118, "jaccard-similarity"]], "Information Content": [[1118, "information-content"]], "Aggregate measures for comparing entities": [[1118, "aggregate-measures-for-comparing-entities"]], "Vector-based approaches": [[1118, "vector-based-approaches"]], "Implementations": [[1118, "implementations"], [1140, "implementations"], [1152, "implementations"]], "Default Implementation": [[1118, "default-implementation"]], "Ubergraph": [[1118, "ubergraph"], [1131, "ubergraph"]], "Semsimian": [[1118, "semsimian"]], "FHIR Conversions": [[1119, "fhir-conversions"]], "CLI": [[1119, "cli"]], "Config file": [[1119, "config-file"]], "How-To Guides": [[1120, "how-to-guides"]], "How to use Large Language Models (LLMs) with OAK": [[1123, "how-to-use-large-language-models-llms-with-oak"]], "LLM frameworks that use OAK": [[1123, "llm-frameworks-that-use-oak"]], "OntoGPT": [[1123, "ontogpt"]], "CurateGPT": [[1123, "curategpt"]], "Talisman": [[1123, "talisman"]], "Using OAK in conjunction with existing LLM tools": [[1123, "using-oak-in-conjunction-with-existing-llm-tools"]], "OAK LLM Adapter": [[1123, "oak-llm-adapter"]], "Annotation": [[1123, "annotation"], [1151, "annotation"], [1153, "annotation"], [1158, "annotation"]], "Suggesting Definitions": [[1123, "suggesting-definitions"]], "Validating Mappings": [[1123, "validating-mappings"]], "Selecting alternative models": [[1123, "selecting-alternative-models"]], "Installing LLM plugins": [[1123, "installing-llm-plugins"]], "Mixtral via Ollama and LiteLLM": [[1123, "mixtral-via-ollama-and-litellm"]], "Mixtral via groq and LiteLLM": [[1123, "mixtral-via-groq-and-litellm"]], "How to Validate an OBO ontology using Obo Metadata Ontology schema": [[1124, "how-to-validate-an-obo-ontology-using-obo-metadata-ontology-schema"]], "Steps": [[1124, "steps"]], "Step 1: Obtain the sqlite version of the ontology": [[1124, "step-1-obtain-the-sqlite-version-of-the-ontology"]], "Step 2: Install oaklib": [[1124, "step-2-install-oaklib"]], "Step 3: Validate an individual ontology": [[1124, "step-3-validate-an-individual-ontology"]], "Step 3 (alternative): Validate multiple ontologies": [[1124, "step-3-alternative-validate-multiple-ontologies"]], "Caveats": [[1124, "caveats"]], "Using your own schema": [[1124, "using-your-own-schema"]], "How this works": [[1124, "how-this-works"], [1133, "how-this-works"]], "Analysis": [[1124, "analysis"]], "How to write a plugin": [[1126, "how-to-write-a-plugin"]], "What is a plugin?": [[1126, "what-is-a-plugin"]], "An example plugin": [[1126, "an-example-plugin"]], "Creating a plugin": [[1126, "creating-a-plugin"]], "Discuss on the issue tracker": [[1126, "discuss-on-the-issue-tracker"]], "Create a new project": [[1126, "create-a-new-project"], [1130, "create-a-new-project"]], "Implement one or more interfaces": [[1126, "implement-one-or-more-interfaces"]], "Implement a selector": [[1126, "implement-a-selector"]], "Write tests": [[1126, "write-tests"]], "Ontology Access Kit (OAK) Documentation": [[1127, "ontology-access-kit-oak-documentation"]], "Indices and tables": [[1127, "indices-and-tables"]], "Tutorial": [[1128, "tutorial"]], "Part 1: Getting Started": [[1129, "part-1-getting-started"]], "Installation": [[1129, "installation"]], "Install from PyPI": [[1129, "install-from-pypi"]], "Run the OAK command": [[1129, "run-the-oak-command"]], "Basics": [[1129, "basics"]], "Query the OBO Library": [[1129, "query-the-obo-library"]], "Working with local files": [[1129, "working-with-local-files"]], "Introduction to graphs and trees": [[1129, "introduction-to-graphs-and-trees"]], "Fetching ancestors": [[1129, "fetching-ancestors"]], "Predicate Abbreviations": [[1129, "predicate-abbreviations"]], "Ancestor Statistics": [[1129, "ancestor-statistics"]], "Oak Trees": [[1129, "oak-trees"]], "Advanced Search": [[1129, "advanced-search"]], "Using search terms as parameters": [[1129, "using-search-terms-as-parameters"]], "Chaining Commands": [[1129, "chaining-commands"]], "Visualization": [[1129, "visualization"]], "Using other backends": [[1129, "using-other-backends"]], "Using Ubergraph": [[1129, "using-ubergraph"]], "Using Ontobee": [[1129, "using-ontobee"]], "Using BioPortal and OntoPortal": [[1129, "using-bioportal-and-ontoportal"]], "Annotate results": [[1129, "id3"]], "Using OLS": [[1129, "using-ols"]], "OLS SSSOM": [[1129, "id4"]], "Next steps": [[1129, "next-steps"]], "Part 2: Basic Python": [[1130, "part-2-basic-python"]], "Install Poetry": [[1130, "install-poetry"]], "Basic Concepts": [[1130, "basic-concepts"]], "Code the first example": [[1130, "code-the-first-example"]], "Extending the example": [[1130, "extending-the-example"]], "Part 3: Triplestore Backends": [[1131, "part-3-triplestore-backends"]], "Triplestore Concepts": [[1131, "triplestore-concepts"]], "Connecting": [[1131, "connecting"], [1163, "connecting"]], "Basic Operations": [[1131, "basic-operations"]], "Relationships": [[1131, "relationships"]], "Part 4: OboGraphs": [[1132, "part-4-obographs"]], "OboGraphs": [[1132, "obographs"]], "OboGraph Interface": [[1132, "obograph-interface"], [1172, "obograph-interface"]], "Code examples": [[1132, "code-examples"]], "Part 5: Graph Visualization": [[1133, "part-5-graph-visualization"]], "Install Graphviz": [[1133, "install-graphviz"]], "Install OBOGraphViz": [[1133, "install-obographviz"]], "Command Line Usage": [[1133, "command-line-usage"], [1143, "command-line-usage"], [1148, "command-line-usage"]], "Programmatic usage": [[1133, "programmatic-usage"]], "Part 6: Working With OWL": [[1134, "part-6-working-with-owl"]], "OWL Datamodel": [[1134, "owl-datamodel"]], "OwlInterface": [[1134, "owlinterface"]], "ROBOT Plugin": [[1134, "robot-plugin"]], "Part 7: SQLite files": [[1135, "part-7-sqlite-files"]], "Download a SQLite file": [[1135, "download-a-sqlite-file"]], "Example": [[1135, "example"]], "Fetching ready-made SQLite files": [[1135, "fetching-ready-made-sqlite-files"]], "Building your own SQLite files": [[1135, "building-your-own-sqlite-files"]], "With docker": [[1135, "with-docker"]], "Without docker": [[1135, "without-docker"]], "Validating an ontology": [[1135, "validating-an-ontology"]], "Other RDBMSs": [[1135, "other-rdbmss"]], "Python ORM": [[1135, "python-orm"]], "Part 8: Applying Changes to Ontologies": [[1136, "part-8-applying-changes-to-ontologies"]], "About KGCL": [[1136, "about-kgcl"]], "Example: Sqlite3": [[1136, "example-sqlite3"]], "Example: OBO Files": [[1136, "example-obo-files"]], "Introduction": [[1137, "introduction"]], "Basic Python Example": [[1137, "basic-python-example"]], "Basic Command Line Example": [[1137, "basic-command-line-example"]], "Jupyter Notebooks": [[1139, "jupyter-notebooks"]], "Architecture": [[1140, "architecture"]], "Ontology Interfaces": [[1140, "ontology-interfaces"]], "Other Interfaces": [[1140, "other-interfaces"]], "Example: OWL Ontology Interface": [[1140, "example-owl-ontology-interface"]], "Partial and Complete Implementation": [[1140, "partial-and-complete-implementation"]], "Best Practice": [[1141, "best-practice"]], "External Services": [[1141, "external-services"]], "Iterators": [[1141, "iterators"]], "Weaving calls together": [[1141, "weaving-calls-together"]], "Chunking": [[1141, "chunking"]], "Abstract Class": [[1142, "abstract-class"]], "Converters": [[1143, "converters"]], "Converting from Obo Graphs": [[1143, "converting-from-obo-graphs"]], "OBO Graph to CX Converter": [[1144, "obo-graph-to-cx-converter"]], "OBO Graph to FHIR Converter": [[1145, "obo-graph-to-fhir-converter"]], "OBO Graph to OBO Format Converter": [[1146, "obo-graph-to-obo-format-converter"]], "OBO Graph to OWL Converter": [[1147, "obo-graph-to-owl-converter"]], "Aggregator Adapter": [[1148, "aggregator-adapter"]], "Documentation": [[1148, "documentation"], [1156, "documentation"]], "Bioportal Adapter": [[1149, "bioportal-adapter"]], "API Keys": [[1149, "api-keys"]], "Command Line Examples": [[1149, "command-line-examples"], [1151, "command-line-examples"], [1153, "command-line-examples"], [1158, "command-line-examples"]], "Code": [[1149, "code"], [1151, "code"], [1153, "code"], [1154, "code"], [1155, "code"], [1157, "code"], [1158, "code"], [1159, "code"], [1160, "code"], [1161, "code"], [1162, "code"], [1163, "code"]], "FunOwl Adapter": [[1150, "funowl-adapter"]], "Gilda Adapter": [[1151, "gilda-adapter"]], "LLM Adapter": [[1153, "llm-adapter"]], "OBO Graph Adapter": [[1154, "obo-graph-adapter"]], "About": [[1154, "about"], [1157, "about"], [1159, "about"], [1160, "about"], [1163, "about"]], "Initialization": [[1154, "initialization"], [1159, "initialization"], [1160, "initialization"], [1162, "initialization"]], "Ontology Lookup Service (OLS) Adapter": [[1155, "ontology-lookup-service-ols-adapter"]], "Ontobee Adapter": [[1156, "ontobee-adapter"]], "Notes": [[1156, "notes"]], "Owlery Adapter": [[1157, "owlery-adapter"]], "PantherDB Adapter": [[1158, "pantherdb-adapter"]], "Enrichment": [[1158, "enrichment"]], "Mapping": [[1158, "mapping"]], "Pronto / OBO Files Adapter": [[1159, "pronto-obo-files-adapter"]], "Input Selector": [[1159, "input-selector"]], "Simple OBO Adapter": [[1160, "simple-obo-adapter"]], "Sparql Adapter": [[1161, "sparql-adapter"]], "SQL Database Adapter": [[1162, "sql-database-adapter"]], "SQL Alchemy ORM Model": [[1162, "sql-alchemy-orm-model"]], "Ubergraph Adapter": [[1163, "ubergraph-adapter"]], "Interfaces Implemented": [[1163, "interfaces-implemented"]], "OAK Library Documentation": [[1164, "oak-library-documentation"]], "Association Provider Interface": [[1165, "association-provider-interface"]], "Command Line Use": [[1165, "command-line-use"], [1171, "command-line-use"]], "Basic Ontology Interface": [[1166, "basic-ontology-interface"]], "Class Enrichment Calculation Interface": [[1167, "class-enrichment-calculation-interface"]], "Differ Interface": [[1168, "differ-interface"]], "Dumper Interface": [[1169, "dumper-interface"]], "Interfaces": [[1170, "interfaces"]], "Mapping Provider Interface": [[1171, "mapping-provider-interface"]], "OWL Interface": [[1173, "owl-interface"]], "Patcher Interface": [[1174, "patcher-interface"]], "Relation Graph": [[1175, "relation-graph"]], "Search Interface": [[1176, "search-interface"]], "Semantic Similarity Interface": [[1177, "semantic-similarity-interface"]], "Subsetting": [[1178, "subsetting"]], "Summary Statistics": [[1179, "summary-statistics"]], "Text Annotator Interface": [[1180, "text-annotator-interface"]], "Validator Interface": [[1181, "validator-interface"]], "Ontology Adapter Selectors": [[1182, "ontology-adapter-selectors"]], "Syntax": [[1182, "syntax"]], "Schemes": [[1182, "schemes"]], "pronto": [[1182, "pronto"]], "prontolib": [[1182, "prontolib"]], "sqlite": [[1182, "sqlite"]], "obosqlite": [[1182, "obosqlite"]], "ontobee": [[1182, "ontobee"]], "ols": [[1182, "ols"]], "bioportal": [[1182, "bioportal"]], "funowl": [[1182, "funowl"]], "Functions": [[1182, "functions"]], "oaklib.utilities.apikey_manager": [[1183, "module-oaklib.utilities.apikey_manager"]], "oaklib.utilities.graph.networkx_bridge": [[1184, "module-oaklib.utilities.graph.networkx_bridge"]], "Utilities for working with networkx": [[1184, "utilities-for-working-with-networkx"]], "oaklib.utilities.graph.relationship_walker": [[1185, "module-oaklib.utilities.graph.relationship_walker"]], "Utilities for traversing Ontology Graphs": [[1185, "utilities-for-traversing-ontology-graphs"]], "oaklib.utilities.lexical.lexical_indexer": [[1186, "module-oaklib.utilities.lexical.lexical_indexer"]], "Lexical Utilities": [[1186, "lexical-utilities"]], "oaklib.utilities.obograph_utils": [[1187, "module-oaklib.utilities.obograph_utils"]], "Utilities for the OBOGraph Datamodel": [[1187, "utilities-for-the-obograph-datamodel"]], "oaklib.utilities.subsets.slimmer_utils": [[1188, "module-oaklib.utilities.subsets.slimmer_utils"]], "Utilities for working with ontology subsets (slims)": [[1188, "utilities-for-working-with-ontology-subsets-slims"]], "oaklib.utilities.table_filler": [[1189, "module-oaklib.utilities.table_filler"]], "oaklib.utilities.taxon": [[1190, "module-oaklib.utilities.taxon"]], "Utilities": [[1191, "utilities"]], "Layering on RDF/OWL": [[1192, "layering-on-rdf-owl"]], "CURIEs, URIs, and prefixmaps": [[1192, "curies-uris-and-prefixmaps"]], "Relationships between entities": [[1192, "relationships-between-entities"]], "Metadata about entities": [[1192, "metadata-about-entities"]], "Challenges": [[1192, "challenges"]], "OMO": [[1192, "omo"]], "Ontology portals": [[1192, "ontology-portals"]], "OAK Approach": [[1192, "oak-approach"]], "Labels": [[1192, "labels"]], "Obsoletion and obsoletion metadata": [[1192, "obsoletion-and-obsoletion-metadata"]], "Search Syntax": [[1193, "search-syntax"]], "Boolean Combinations": [[1193, "boolean-combinations"]], "Search Datamodel": [[1193, "search-datamodel"]]}, "indexentries": {"--about": [[0, "cmdoption-runoak-axioms-about"]], "--adapter-mapping": [[0, "cmdoption-runoak-validate-mappings-adapter-mapping"]], "--add": [[0, "cmdoption-runoak-a"]], "--add-closure-fields": [[0, "cmdoption-runoak-associations-add-closure-fields"]], "--add-labels": [[0, "cmdoption-runoak-lexmatch-add-labels"]], "--add-mrcas": [[0, "cmdoption-runoak-tree-add-mrcas"], [0, "cmdoption-runoak-viz-add-mrcas"]], "--additional-metadata": [[0, "cmdoption-runoak-definitions-additional-metadata"], [0, "cmdoption-runoak-term-metadata-additional-metadata"]], "--all": [[0, "cmdoption-runoak-ontology-metadata-all"], [0, "cmdoption-runoak-ontology-versions-all"], [0, "cmdoption-runoak-taxon-constraints-A"]], "--all-languages": [[0, "cmdoption-runoak-labels-all-languages"]], "--allow-missing": [[0, "cmdoption-runoak-fill-table-allow-missing"]], "--analyze": [[0, "cmdoption-runoak-generate-logical-definitions-analyze"]], "--annotated-roots": [[0, "cmdoption-runoak-roots-A"]], "--apply-patch": [[0, "cmdoption-runoak-generate-definitions-apply-patch"], [0, "cmdoption-runoak-generate-synonyms-apply-patch"], [0, "cmdoption-runoak-synonymize-apply-patch"]], "--association-predicates": [[0, "cmdoption-runoak-associations-association-predicates"], [0, "cmdoption-runoak-associations-matrix-association-predicates"], [0, "cmdoption-runoak-enrichment-association-predicates"]], "--associations": [[0, "cmdoption-runoak-diff-associations-g"], [0, "cmdoption-runoak-g"]], "--associations-type": [[0, "cmdoption-runoak-G"]], "--autolabel": [[0, "cmdoption-runoak-associations-autolabel"], [0, "cmdoption-runoak-associations-matrix-autolabel"], [0, "cmdoption-runoak-definitions-autolabel"], [0, "cmdoption-runoak-diff-associations-autolabel"], [0, "cmdoption-runoak-diff-via-mappings-autolabel"], [0, "cmdoption-runoak-disjoints-autolabel"], [0, "cmdoption-runoak-enrichment-autolabel"], [0, "cmdoption-runoak-fill-table-autolabel"], [0, "cmdoption-runoak-generate-disjoints-autolabel"], [0, "cmdoption-runoak-generate-logical-definitions-autolabel"], [0, "cmdoption-runoak-logical-definitions-autolabel"], [0, "cmdoption-runoak-mappings-autolabel"], [0, "cmdoption-runoak-normalize-autolabel"], [0, "cmdoption-runoak-paths-autolabel"], [0, "cmdoption-runoak-query-autolabel"], [0, "cmdoption-runoak-relationships-autolabel"], [0, "cmdoption-runoak-rollup-autolabel"], [0, "cmdoption-runoak-search-autolabel"], [0, "cmdoption-runoak-similarity-autolabel"], [0, "cmdoption-runoak-similarity-pair-autolabel"], [0, "cmdoption-runoak-termset-similarity-autolabel"], [0, "cmdoption-runoak-validate-mappings-autolabel"]], "--autosave": [[0, "cmdoption-runoak-autosave"]], "--axiom-type": [[0, "cmdoption-runoak-axioms-axiom-type"]], "--background-file": [[0, "cmdoption-runoak-enrichment-B"]], "--bidirectional": [[0, "cmdoption-runoak-diff-via-mappings-bidirectional"]], "--category-system": [[0, "cmdoption-runoak-term-categories-category-system"]], "--change-type": [[0, "cmdoption-runoak-diff-change-type"]], "--changes-format": [[0, "cmdoption-runoak-apply-changes-format"]], "--changes-input": [[0, "cmdoption-runoak-apply-changes-input"]], "--changes-output": [[0, "cmdoption-runoak-apply-changes-output"]], "--comment": [[0, "cmdoption-runoak-fill-table-comment"]], "--compare-with": [[0, "cmdoption-runoak-statistics-X"]], "--config-file": [[0, "cmdoption-runoak-dump-c"], [0, "cmdoption-runoak-transform-c"]], "--configuration-file": [[0, "cmdoption-runoak-annotate-C"], [0, "cmdoption-runoak-validate-mappings-C"]], "--configure": [[0, "cmdoption-runoak-paths-C"], [0, "cmdoption-runoak-tree-C"], [0, "cmdoption-runoak-viz-C"]], "--contributor": [[0, "cmdoption-runoak-apply-contributor"]], "--cutoff": [[0, "cmdoption-runoak-enrichment-cutoff"], [0, "cmdoption-runoak-validate-cutoff"], [0, "cmdoption-runoak-validate-multiple-cutoff"]], "--dangling": [[0, "cmdoption-runoak-extract-dangling"]], "--days-old": [[0, "cmdoption-runoak-cache-clear-days-old"]], "--delimiter": [[0, "cmdoption-runoak-fill-table-delimiter"]], "--direct": [[0, "cmdoption-runoak-taxon-constraints-direct"]], "--directed": [[0, "cmdoption-runoak-paths-directed"]], "--direction": [[0, "cmdoption-runoak-relationships-direction"]], "--display": [[0, "cmdoption-runoak-definitions-D"], [0, "cmdoption-runoak-descendants-D"], [0, "cmdoption-runoak-info-D"], [0, "cmdoption-runoak-labels-D"], [0, "cmdoption-runoak-tree-D"]], "--down": [[0, "cmdoption-runoak-tree-down"], [0, "cmdoption-runoak-viz-down"]], "--dry-run": [[0, "cmdoption-runoak-apply-dry-run"], [0, "cmdoption-runoak-lint-dry-run"]], "--endpoint": [[0, "cmdoption-runoak-set-apikey-e"]], "--enforce-canonical-ordering": [[0, "cmdoption-runoak-dump-enforce-canonical-ordering"]], "--ensure-strict-prefixes": [[0, "cmdoption-runoak-lexmatch-ensure-strict-prefixes"]], "--evolution-file": [[0, "cmdoption-runoak-apply-taxon-constraints-E"]], "--exclude-existing": [[0, "cmdoption-runoak-generate-disjoints-exclude-existing"]], "--exclude-predicates": [[0, "cmdoption-runoak-paths-exclude-predicates"]], "--exclude-tokens": [[0, "cmdoption-runoak-annotate-x"]], "--expand": [[0, "cmdoption-runoak-apply-expand"], [0, "cmdoption-runoak-apply-obsolete-expand"]], "--fill": [[0, "cmdoption-runoak-generate-logical-definitions-fill"]], "--filter-category-identical": [[0, "cmdoption-runoak-diff-via-mappings-filter-category-identical"]], "--filter-obsoletes": [[0, "cmdoption-runoak-leafs-filter-obsoletes"], [0, "cmdoption-runoak-singletons-filter-obsoletes"], [0, "cmdoption-runoak-terms-filter-obsoletes"]], "--filter-redundant": [[0, "cmdoption-runoak-enrichment-filter-redundant"]], "--gap-fill": [[0, "cmdoption-runoak-tree-gap-fill"], [0, "cmdoption-runoak-viz-gap-fill"]], "--graph-traversal-method": [[0, "cmdoption-runoak-ancestors-M"], [0, "cmdoption-runoak-apply-taxon-constraints-M"], [0, "cmdoption-runoak-descendants-M"], [0, "cmdoption-runoak-taxon-constraints-M"]], "--group-by": [[0, "cmdoption-runoak-diff-associations-group-by"]], "--group-by-defined-by": [[0, "cmdoption-runoak-diff-group-by-defined-by"], [0, "cmdoption-runoak-statistics-group-by-defined-by"]], "--group-by-obo-namespace": [[0, "cmdoption-runoak-diff-group-by-obo-namespace"], [0, "cmdoption-runoak-statistics-group-by-obo-namespace"]], "--group-by-prefix": [[0, "cmdoption-runoak-diff-group-by-prefix"], [0, "cmdoption-runoak-statistics-group-by-prefix"]], "--group-by-property": [[0, "cmdoption-runoak-diff-group-by-property"], [0, "cmdoption-runoak-statistics-group-by-property"]], "--has-prefix": [[0, "cmdoption-runoak-roots-P"], [0, "cmdoption-runoak-statistics-P"]], "--if-absent": [[0, "cmdoption-runoak-associations-if-absent"], [0, "cmdoption-runoak-definitions-if-absent"], [0, "cmdoption-runoak-labels-if-absent"], [0, "cmdoption-runoak-logical-definitions-if-absent"], [0, "cmdoption-runoak-relationships-if-absent"]], "--ignore-invalid-changes": [[0, "cmdoption-runoak-apply-ignore-invalid-changes"], [0, "cmdoption-runoak-apply-obsolete-ignore-invalid-changes"]], "--import-depth": [[0, "cmdoption-runoak-import-depth"]], "--include-abox": [[0, "cmdoption-runoak-relationships-include-abox"]], "--include-aliases": [[0, "cmdoption-runoak-annotate-include-aliases"]], "--include-entailed": [[0, "cmdoption-runoak-relationships-include-entailed"]], "--include-identity-mappings": [[0, "cmdoption-runoak-diff-via-mappings-include-identity-mappings"]], "--include-merged": [[0, "cmdoption-runoak-obsoletes-include-merged"]], "--include-metadata": [[0, "cmdoption-runoak-extract-include-metadata"], [0, "cmdoption-runoak-relationships-include-metadata"]], "--include-predicates": [[0, "cmdoption-runoak-paths-include-predicates"]], "--include-redundant": [[0, "cmdoption-runoak-taxon-constraints-include-redundant"]], "--include-residuals": [[0, "cmdoption-runoak-statistics-include-residuals"]], "--include-tbox": [[0, "cmdoption-runoak-relationships-include-tbox"]], "--information-content-file": [[0, "cmdoption-runoak-similarity-information-content-file"], [0, "cmdoption-runoak-termset-similarity-information-content-file"]], "--input": [[0, "cmdoption-runoak-i"]], "--input-type": [[0, "cmdoption-runoak-I"]], "--intra": [[0, "cmdoption-runoak-diff-via-mappings-intra"]], "--label-fields": [[0, "cmdoption-runoak-query-L"]], "--lexical-index-file": [[0, "cmdoption-runoak-annotate-L"], [0, "cmdoption-runoak-lexmatch-L"]], "--main-score-field": [[0, "cmdoption-runoak-similarity-main-score-field"]], "--mapper": [[0, "cmdoption-runoak-mappings-mapper"]], "--mapping-input": [[0, "cmdoption-runoak-diff-via-mappings-mapping-input"]], "--maps-to-source": [[0, "cmdoption-runoak-mappings-M"], [0, "cmdoption-runoak-normalize-M"]], "--match-column": [[0, "cmdoption-runoak-annotate-A"]], "--matches-whole-text": [[0, "cmdoption-runoak-annotate-W"]], "--matrix-axes": [[0, "cmdoption-runoak-logical-definitions-matrix-axes"]], "--max-hops": [[0, "cmdoption-runoak-tree-max-hops"], [0, "cmdoption-runoak-viz-max-hops"]], "--merge": [[0, "cmdoption-runoak-merge"]], "--meta": [[0, "cmdoption-runoak-viz-meta"]], "--metamodel-mappings": [[0, "cmdoption-runoak-metamodel-mappings"]], "--min-ancestor-information-content": [[0, "cmdoption-runoak-similarity-min-ancestor-information-content"]], "--min-descendants": [[0, "cmdoption-runoak-generate-disjoints-M"]], "--min-jaccard-similarity": [[0, "cmdoption-runoak-similarity-min-jaccard-similarity"]], "--missing-value-token": [[0, "cmdoption-runoak-fill-table-missing-value-token"]], "--model": [[0, "cmdoption-runoak-annotate-m"]], "--named-classes-only": [[0, "cmdoption-runoak-disjoints-named-classes-only"]], "--named-prefix-map": [[0, "cmdoption-runoak-named-prefix-map"]], "--narrow": [[0, "cmdoption-runoak-paths-narrow"]], "--new-date": [[0, "cmdoption-runoak-diff-associations-new-date"]], "--no-a": [[0, "cmdoption-runoak-roots-A"], [0, "cmdoption-runoak-taxon-constraints-A"]], "--no-w": [[0, "cmdoption-runoak-annotate-W"]], "--no-add-closure-fields": [[0, "cmdoption-runoak-associations-add-closure-fields"]], "--no-add-labels": [[0, "cmdoption-runoak-lexmatch-add-labels"]], "--no-add-mrcas": [[0, "cmdoption-runoak-tree-add-mrcas"], [0, "cmdoption-runoak-viz-add-mrcas"]], "--no-additional-metadata": [[0, "cmdoption-runoak-definitions-additional-metadata"], [0, "cmdoption-runoak-term-metadata-additional-metadata"]], "--no-all": [[0, "cmdoption-runoak-ontology-metadata-all"], [0, "cmdoption-runoak-ontology-versions-all"], [0, "cmdoption-runoak-taxon-constraints-A"]], "--no-all-languages": [[0, "cmdoption-runoak-labels-all-languages"]], "--no-allow-missing": [[0, "cmdoption-runoak-fill-table-allow-missing"]], "--no-analyze": [[0, "cmdoption-runoak-generate-logical-definitions-analyze"]], "--no-annotated-roots": [[0, "cmdoption-runoak-roots-A"]], "--no-apply-patch": [[0, "cmdoption-runoak-generate-definitions-apply-patch"], [0, "cmdoption-runoak-generate-synonyms-apply-patch"], [0, "cmdoption-runoak-synonymize-apply-patch"]], "--no-autolabel": [[0, "cmdoption-runoak-associations-autolabel"], [0, "cmdoption-runoak-associations-matrix-autolabel"], [0, "cmdoption-runoak-definitions-autolabel"], [0, "cmdoption-runoak-diff-associations-autolabel"], [0, "cmdoption-runoak-diff-via-mappings-autolabel"], [0, "cmdoption-runoak-disjoints-autolabel"], [0, "cmdoption-runoak-enrichment-autolabel"], [0, "cmdoption-runoak-fill-table-autolabel"], [0, "cmdoption-runoak-generate-disjoints-autolabel"], [0, "cmdoption-runoak-generate-logical-definitions-autolabel"], [0, "cmdoption-runoak-logical-definitions-autolabel"], [0, "cmdoption-runoak-mappings-autolabel"], [0, "cmdoption-runoak-normalize-autolabel"], [0, "cmdoption-runoak-paths-autolabel"], [0, "cmdoption-runoak-query-autolabel"], [0, "cmdoption-runoak-relationships-autolabel"], [0, "cmdoption-runoak-rollup-autolabel"], [0, "cmdoption-runoak-search-autolabel"], [0, "cmdoption-runoak-similarity-autolabel"], [0, "cmdoption-runoak-similarity-pair-autolabel"], [0, "cmdoption-runoak-termset-similarity-autolabel"], [0, "cmdoption-runoak-validate-mappings-autolabel"]], "--no-autosave": [[0, "cmdoption-runoak-autosave"]], "--no-bidirectional": [[0, "cmdoption-runoak-diff-via-mappings-bidirectional"]], "--no-dangling": [[0, "cmdoption-runoak-extract-dangling"]], "--no-direct": [[0, "cmdoption-runoak-taxon-constraints-direct"]], "--no-directed": [[0, "cmdoption-runoak-paths-directed"]], "--no-down": [[0, "cmdoption-runoak-tree-down"], [0, "cmdoption-runoak-viz-down"]], "--no-dry-run": [[0, "cmdoption-runoak-apply-dry-run"], [0, "cmdoption-runoak-lint-dry-run"]], "--no-enforce-canonical-ordering": [[0, "cmdoption-runoak-dump-enforce-canonical-ordering"]], "--no-ensure-strict-prefixes": [[0, "cmdoption-runoak-lexmatch-ensure-strict-prefixes"]], "--no-exclude-existing": [[0, "cmdoption-runoak-generate-disjoints-exclude-existing"]], "--no-expand": [[0, "cmdoption-runoak-apply-expand"], [0, "cmdoption-runoak-apply-obsolete-expand"]], "--no-fill": [[0, "cmdoption-runoak-generate-logical-definitions-fill"]], "--no-filter-category-identical": [[0, "cmdoption-runoak-diff-via-mappings-filter-category-identical"]], "--no-filter-obsoletes": [[0, "cmdoption-runoak-leafs-filter-obsoletes"], [0, "cmdoption-runoak-singletons-filter-obsoletes"], [0, "cmdoption-runoak-terms-filter-obsoletes"]], "--no-filter-redundant": [[0, "cmdoption-runoak-enrichment-filter-redundant"]], "--no-gap-fill": [[0, "cmdoption-runoak-tree-gap-fill"], [0, "cmdoption-runoak-viz-gap-fill"]], "--no-group-by-defined-by": [[0, "cmdoption-runoak-diff-group-by-defined-by"], [0, "cmdoption-runoak-statistics-group-by-defined-by"]], "--no-group-by-obo-namespace": [[0, "cmdoption-runoak-diff-group-by-obo-namespace"], [0, "cmdoption-runoak-statistics-group-by-obo-namespace"]], "--no-group-by-prefix": [[0, "cmdoption-runoak-diff-group-by-prefix"], [0, "cmdoption-runoak-statistics-group-by-prefix"]], "--no-ignore-invalid-changes": [[0, "cmdoption-runoak-apply-ignore-invalid-changes"], [0, "cmdoption-runoak-apply-obsolete-ignore-invalid-changes"]], "--no-include-abox": [[0, "cmdoption-runoak-relationships-include-abox"]], "--no-include-aliases": [[0, "cmdoption-runoak-annotate-include-aliases"]], "--no-include-entailed": [[0, "cmdoption-runoak-relationships-include-entailed"]], "--no-include-identity-mappings": [[0, "cmdoption-runoak-diff-via-mappings-include-identity-mappings"]], "--no-include-merged": [[0, "cmdoption-runoak-obsoletes-include-merged"]], "--no-include-metadata": [[0, "cmdoption-runoak-extract-include-metadata"], [0, "cmdoption-runoak-relationships-include-metadata"]], "--no-include-predicates": [[0, "cmdoption-runoak-paths-include-predicates"]], "--no-include-redundant": [[0, "cmdoption-runoak-taxon-constraints-include-redundant"]], "--no-include-residuals": [[0, "cmdoption-runoak-statistics-include-residuals"]], "--no-include-tbox": [[0, "cmdoption-runoak-relationships-include-tbox"]], "--no-intra": [[0, "cmdoption-runoak-diff-via-mappings-intra"]], "--no-matches-whole-text": [[0, "cmdoption-runoak-annotate-W"]], "--no-merge": [[0, "cmdoption-runoak-merge"]], "--no-meta": [[0, "cmdoption-runoak-viz-meta"]], "--no-named-classes-only": [[0, "cmdoption-runoak-disjoints-named-classes-only"]], "--no-narrow": [[0, "cmdoption-runoak-paths-narrow"]], "--no-obo-model": [[0, "cmdoption-runoak-aliases-obo-model"]], "--no-ontology-only": [[0, "cmdoption-runoak-enrichment-ontology-only"]], "--no-overwrite": [[0, "cmdoption-runoak-apply-overwrite"]], "--no-parse": [[0, "cmdoption-runoak-generate-logical-definitions-parse"]], "--no-pivot-languages": [[0, "cmdoption-runoak-labels-pivot-languages"]], "--no-quiet": [[0, "cmdoption-runoak-q"]], "--no-recreate": [[0, "cmdoption-runoak-lexmatch-recreate"]], "--no-replace": [[0, "cmdoption-runoak-migrate-curies-replace"]], "--no-show-extract": [[0, "cmdoption-runoak-generate-logical-definitions-show-extract"]], "--no-show-migration-relationships": [[0, "cmdoption-runoak-obsoletes-show-migration-relationships"]], "--no-simple": [[0, "cmdoption-runoak-diff-simple"]], "--no-skip-ontology-rules": [[0, "cmdoption-runoak-validate-skip-ontology-rules"]], "--no-skip-structural-validation": [[0, "cmdoption-runoak-validate-skip-structural-validation"]], "--no-skip-text-annotation": [[0, "cmdoption-runoak-validate-definitions-skip-text-annotation"]], "--no-stacktrace": [[0, "cmdoption-runoak-stacktrace"]], "--no-statistics": [[0, "cmdoption-runoak-ancestors-statistics"], [0, "cmdoption-runoak-diff-statistics"]], "--no-unmelt": [[0, "cmdoption-runoak-generate-logical-definitions-unmelt"], [0, "cmdoption-runoak-logical-definitions-unmelt"]], "--no-use-associations": [[0, "cmdoption-runoak-information-content-use-associations"]], "--no-used-only": [[0, "cmdoption-runoak-prefixes-used-only"]], "--no-view": [[0, "cmdoption-runoak-viz-view"]], "--no-viz": [[0, "cmdoption-runoak-paths-viz"]], "--object-group": [[0, "cmdoption-runoak-rollup-object-group"]], "--obo-model": [[0, "cmdoption-runoak-aliases-obo-model"]], "--old-date": [[0, "cmdoption-runoak-diff-associations-old-date"]], "--ontology-only": [[0, "cmdoption-runoak-enrichment-ontology-only"]], "--other-associations": [[0, "cmdoption-runoak-diff-associations-X"]], "--other-input": [[0, "cmdoption-runoak-diff-via-mappings-X"]], "--other-input-type": [[0, "cmdoption-runoak-diff-via-mappings-other-input-type"]], "--other-languages": [[0, "cmdoption-runoak-other-languages"]], "--other-ontology": [[0, "cmdoption-runoak-diff-X"], [0, "cmdoption-runoak-diff-terms-other-ontology"]], "--output": [[0, "cmdoption-runoak-aliases-o"], [0, "cmdoption-runoak-ancestors-o"], [0, "cmdoption-runoak-annotate-o"], [0, "cmdoption-runoak-apply-o"], [0, "cmdoption-runoak-apply-obsolete-o"], [0, "cmdoption-runoak-apply-taxon-constraints-o"], [0, "cmdoption-runoak-associations-0"], [0, "cmdoption-runoak-associations-matrix-0"], [0, "cmdoption-runoak-associations-matrix-o"], [0, "cmdoption-runoak-associations-o"], [0, "cmdoption-runoak-axioms-o"], [0, "cmdoption-runoak-definitions-o"], [0, "cmdoption-runoak-descendants-o"], [0, "cmdoption-runoak-diff-associations-0"], [0, "cmdoption-runoak-diff-associations-o"], [0, "cmdoption-runoak-diff-o"], [0, "cmdoption-runoak-diff-terms-o"], [0, "cmdoption-runoak-diff-via-mappings-o"], [0, "cmdoption-runoak-disjoints-o"], [0, "cmdoption-runoak-dump-o"], [0, "cmdoption-runoak-enrichment-0"], [0, "cmdoption-runoak-enrichment-o"], [0, "cmdoption-runoak-expand-subsets-o"], [0, "cmdoption-runoak-extract-o"], [0, "cmdoption-runoak-fill-table-o"], [0, "cmdoption-runoak-generate-definitions-o"], [0, "cmdoption-runoak-generate-disjoints-o"], [0, "cmdoption-runoak-generate-logical-definitions-o"], [0, "cmdoption-runoak-generate-synonyms-o"], [0, "cmdoption-runoak-info-o"], [0, "cmdoption-runoak-information-content-o"], [0, "cmdoption-runoak-labels-o"], [0, "cmdoption-runoak-leafs-o"], [0, "cmdoption-runoak-lexmatch-o"], [0, "cmdoption-runoak-lint-o"], [0, "cmdoption-runoak-logical-definitions-o"], [0, "cmdoption-runoak-mappings-o"], [0, "cmdoption-runoak-migrate-curies-o"], [0, "cmdoption-runoak-normalize-o"], [0, "cmdoption-runoak-obsoletes-o"], [0, "cmdoption-runoak-ontologies-o"], [0, "cmdoption-runoak-ontology-metadata-o"], [0, "cmdoption-runoak-ontology-versions-o"], [0, "cmdoption-runoak-paths-o"], [0, "cmdoption-runoak-prefixes-o"], [0, "cmdoption-runoak-query-o"], [0, "cmdoption-runoak-relationships-o"], [0, "cmdoption-runoak-rollup-o"], [0, "cmdoption-runoak-roots-o"], [0, "cmdoption-runoak-search-o"], [0, "cmdoption-runoak-siblings-o"], [0, "cmdoption-runoak-similarity-o"], [0, "cmdoption-runoak-similarity-pair-o"], [0, "cmdoption-runoak-singletons-o"], [0, "cmdoption-runoak-statistics-o"], [0, "cmdoption-runoak-subsets-o"], [0, "cmdoption-runoak-synonymize-o"], [0, "cmdoption-runoak-taxon-constraints-o"], [0, "cmdoption-runoak-term-categories-o"], [0, "cmdoption-runoak-term-metadata-o"], [0, "cmdoption-runoak-term-subsets-o"], [0, "cmdoption-runoak-terms-o"], [0, "cmdoption-runoak-termset-similarity-o"], [0, "cmdoption-runoak-transform-o"], [0, "cmdoption-runoak-tree-o"], [0, "cmdoption-runoak-validate-definitions-o"], [0, "cmdoption-runoak-validate-mappings-o"], [0, "cmdoption-runoak-validate-multiple-o"], [0, "cmdoption-runoak-validate-o"], [0, "cmdoption-runoak-viz-o"]], "--output-type": [[0, "cmdoption-runoak-aliases-O"], [0, "cmdoption-runoak-ancestors-O"], [0, "cmdoption-runoak-annotate-O"], [0, "cmdoption-runoak-apply-O"], [0, "cmdoption-runoak-apply-obsolete-O"], [0, "cmdoption-runoak-associations-O"], [0, "cmdoption-runoak-associations-matrix-O"], [0, "cmdoption-runoak-axioms-O"], [0, "cmdoption-runoak-definitions-O"], [0, "cmdoption-runoak-descendants-O"], [0, "cmdoption-runoak-diff-O"], [0, "cmdoption-runoak-diff-associations-O"], [0, "cmdoption-runoak-diff-via-mappings-O"], [0, "cmdoption-runoak-disjoints-O"], [0, "cmdoption-runoak-dump-O"], [0, "cmdoption-runoak-enrichment-O"], [0, "cmdoption-runoak-extract-O"], [0, "cmdoption-runoak-generate-definitions-O"], [0, "cmdoption-runoak-generate-disjoints-O"], [0, "cmdoption-runoak-generate-logical-definitions-O"], [0, "cmdoption-runoak-generate-synonyms-O"], [0, "cmdoption-runoak-info-O"], [0, "cmdoption-runoak-information-content-O"], [0, "cmdoption-runoak-labels-O"], [0, "cmdoption-runoak-lint-O"], [0, "cmdoption-runoak-logical-definitions-O"], [0, "cmdoption-runoak-mappings-O"], [0, "cmdoption-runoak-migrate-curies-O"], [0, "cmdoption-runoak-normalize-O"], [0, "cmdoption-runoak-obsoletes-O"], [0, "cmdoption-runoak-ontology-metadata-O"], [0, "cmdoption-runoak-paths-O"], [0, "cmdoption-runoak-prefixes-O"], [0, "cmdoption-runoak-query-O"], [0, "cmdoption-runoak-relationships-O"], [0, "cmdoption-runoak-rollup-O"], [0, "cmdoption-runoak-roots-O"], [0, "cmdoption-runoak-search-O"], [0, "cmdoption-runoak-siblings-O"], [0, "cmdoption-runoak-similarity-O"], [0, "cmdoption-runoak-similarity-pair-O"], [0, "cmdoption-runoak-statistics-O"], [0, "cmdoption-runoak-taxon-constraints-O"], [0, "cmdoption-runoak-term-categories-O"], [0, "cmdoption-runoak-term-metadata-O"], [0, "cmdoption-runoak-term-subsets-O"], [0, "cmdoption-runoak-termset-similarity-O"], [0, "cmdoption-runoak-transform-O"], [0, "cmdoption-runoak-tree-O"], [0, "cmdoption-runoak-validate-O"], [0, "cmdoption-runoak-validate-definitions-O"], [0, "cmdoption-runoak-validate-mappings-O"], [0, "cmdoption-runoak-viz-O"]], "--overwrite": [[0, "cmdoption-runoak-apply-overwrite"]], "--owl-type": [[0, "cmdoption-runoak-terms-owl-type"]], "--parse": [[0, "cmdoption-runoak-generate-logical-definitions-parse"]], "--patch": [[0, "cmdoption-runoak-generate-definitions-patch"], [0, "cmdoption-runoak-generate-synonyms-patch"], [0, "cmdoption-runoak-synonymize-patch"]], "--patch-format": [[0, "cmdoption-runoak-generate-definitions-patch-format"], [0, "cmdoption-runoak-generate-synonyms-patch-format"]], "--patterns-file": [[0, "cmdoption-runoak-generate-logical-definitions-P"]], "--pivot-languages": [[0, "cmdoption-runoak-labels-pivot-languages"]], "--predicate-weights": [[0, "cmdoption-runoak-paths-predicate-weights"]], "--predicates": [[0, "cmdoption-runoak-ancestors-p"], [0, "cmdoption-runoak-apply-taxon-constraints-p"], [0, "cmdoption-runoak-associations-matrix-p"], [0, "cmdoption-runoak-associations-p"], [0, "cmdoption-runoak-descendants-p"], [0, "cmdoption-runoak-diff-associations-p"], [0, "cmdoption-runoak-diff-via-mappings-p"], [0, "cmdoption-runoak-disjoints-p"], [0, "cmdoption-runoak-enrichment-p"], [0, "cmdoption-runoak-expand-subsets-p"], [0, "cmdoption-runoak-extract-p"], [0, "cmdoption-runoak-generate-disjoints-p"], [0, "cmdoption-runoak-information-content-p"], [0, "cmdoption-runoak-leafs-p"], [0, "cmdoption-runoak-logical-definitions-p"], [0, "cmdoption-runoak-paths-p"], [0, "cmdoption-runoak-relationships-p"], [0, "cmdoption-runoak-rollup-p"], [0, "cmdoption-runoak-roots-p"], [0, "cmdoption-runoak-siblings-p"], [0, "cmdoption-runoak-similarity-p"], [0, "cmdoption-runoak-similarity-pair-p"], [0, "cmdoption-runoak-singletons-p"], [0, "cmdoption-runoak-taxon-constraints-p"], [0, "cmdoption-runoak-term-metadata-p"], [0, "cmdoption-runoak-termset-similarity-p"], [0, "cmdoption-runoak-tree-p"], [0, "cmdoption-runoak-viz-p"]], "--preferred-language": [[0, "cmdoption-runoak-l"]], "--prefix": [[0, "cmdoption-runoak-prefix"]], "--prefixes": [[0, "cmdoption-runoak-query-P"]], "--query": [[0, "cmdoption-runoak-query-q"]], "--quiet": [[0, "cmdoption-runoak-q"]], "--recreate": [[0, "cmdoption-runoak-lexmatch-recreate"]], "--references": [[0, "cmdoption-runoak-axioms-references"]], "--relation": [[0, "cmdoption-runoak-fill-table-relation"]], "--relation-file": [[0, "cmdoption-runoak-fill-table-relation-file"]], "--replace": [[0, "cmdoption-runoak-migrate-curies-replace"]], "--report-format": [[0, "cmdoption-runoak-lint-report-format"]], "--requests-cache-db": [[0, "cmdoption-runoak-requests-cache-db"]], "--root": [[0, "cmdoption-runoak-tree-root"]], "--rule": [[0, "cmdoption-runoak-validate-R"]], "--rules-file": [[0, "cmdoption-runoak-annotate-R"], [0, "cmdoption-runoak-generate-synonyms-R"], [0, "cmdoption-runoak-lexmatch-R"], [0, "cmdoption-runoak-synonymize-R"]], "--sample-file": [[0, "cmdoption-runoak-enrichment-U"]], "--save-as": [[0, "cmdoption-runoak-save-as"]], "--schema": [[0, "cmdoption-runoak-fill-table-schema"], [0, "cmdoption-runoak-validate-multiple-s"]], "--set-value": [[0, "cmdoption-runoak-associations-S"], [0, "cmdoption-runoak-definitions-S"], [0, "cmdoption-runoak-labels-S"], [0, "cmdoption-runoak-logical-definitions-S"], [0, "cmdoption-runoak-relationships-S"]], "--set1-file": [[0, "cmdoption-runoak-similarity-set1-file"]], "--set2-file": [[0, "cmdoption-runoak-similarity-set2-file"]], "--show-extract": [[0, "cmdoption-runoak-generate-logical-definitions-show-extract"]], "--show-migration-relationships": [[0, "cmdoption-runoak-obsoletes-show-migration-relationships"]], "--simple": [[0, "cmdoption-runoak-diff-simple"]], "--skip": [[0, "cmdoption-runoak-tree-skip"]], "--skip-ontology-rules": [[0, "cmdoption-runoak-validate-skip-ontology-rules"]], "--skip-structural-validation": [[0, "cmdoption-runoak-validate-skip-structural-validation"]], "--skip-text-annotation": [[0, "cmdoption-runoak-validate-definitions-skip-text-annotation"]], "--source": [[0, "cmdoption-runoak-diff-via-mappings-S"]], "--stacktrace": [[0, "cmdoption-runoak-stacktrace"]], "--statistics": [[0, "cmdoption-runoak-ancestors-statistics"], [0, "cmdoption-runoak-diff-statistics"]], "--style-hints": [[0, "cmdoption-runoak-generate-definitions-style-hints"]], "--stylemap": [[0, "cmdoption-runoak-paths-S"], [0, "cmdoption-runoak-tree-S"], [0, "cmdoption-runoak-viz-S"]], "--target": [[0, "cmdoption-runoak-paths-target"]], "--terms-role": [[0, "cmdoption-runoak-associations-Q"], [0, "cmdoption-runoak-associations-matrix-Q"]], "--text-file": [[0, "cmdoption-runoak-annotate-text-file"]], "--transform": [[0, "cmdoption-runoak-transform-t"]], "--unmelt": [[0, "cmdoption-runoak-generate-logical-definitions-unmelt"], [0, "cmdoption-runoak-logical-definitions-unmelt"]], "--use-associations": [[0, "cmdoption-runoak-information-content-use-associations"]], "--used-only": [[0, "cmdoption-runoak-prefixes-used-only"]], "--verbose": [[0, "cmdoption-runoak-v"]], "--view": [[0, "cmdoption-runoak-viz-view"]], "--viz": [[0, "cmdoption-runoak-paths-viz"]], "--wrap-adapter": [[0, "cmdoption-runoak-W"]], "-a": [[0, "cmdoption-runoak-annotate-A"], [0, "cmdoption-runoak-roots-A"], [0, "cmdoption-runoak-taxon-constraints-A"], [0, "cmdoption-runoak-a"]], "-b": [[0, "cmdoption-runoak-enrichment-B"]], "-c": [[0, "cmdoption-runoak-annotate-C"], [0, "cmdoption-runoak-paths-C"], [0, "cmdoption-runoak-tree-C"], [0, "cmdoption-runoak-validate-mappings-C"], [0, "cmdoption-runoak-viz-C"], [0, "cmdoption-runoak-dump-c"], [0, "cmdoption-runoak-transform-c"]], "-d": [[0, "cmdoption-runoak-definitions-D"], [0, "cmdoption-runoak-descendants-D"], [0, "cmdoption-runoak-info-D"], [0, "cmdoption-runoak-labels-D"], [0, "cmdoption-runoak-tree-D"]], "-e": [[0, "cmdoption-runoak-apply-taxon-constraints-E"], [0, "cmdoption-runoak-set-apikey-e"]], "-g": [[0, "cmdoption-runoak-G"], [0, "cmdoption-runoak-diff-associations-g"], [0, "cmdoption-runoak-g"]], "-i": [[0, "cmdoption-runoak-I"], [0, "cmdoption-runoak-i"]], "-l": [[0, "cmdoption-runoak-annotate-L"], [0, "cmdoption-runoak-lexmatch-L"], [0, "cmdoption-runoak-query-L"], [0, "cmdoption-runoak-l"]], "-m": [[0, "cmdoption-runoak-ancestors-M"], [0, "cmdoption-runoak-apply-taxon-constraints-M"], [0, "cmdoption-runoak-descendants-M"], [0, "cmdoption-runoak-generate-disjoints-M"], [0, "cmdoption-runoak-mappings-M"], [0, "cmdoption-runoak-normalize-M"], [0, "cmdoption-runoak-taxon-constraints-M"], [0, "cmdoption-runoak-annotate-m"]], "-o": [[0, "cmdoption-runoak-aliases-O"], [0, "cmdoption-runoak-ancestors-O"], [0, "cmdoption-runoak-annotate-O"], [0, "cmdoption-runoak-apply-O"], [0, "cmdoption-runoak-apply-obsolete-O"], [0, "cmdoption-runoak-associations-O"], [0, "cmdoption-runoak-associations-matrix-O"], [0, "cmdoption-runoak-axioms-O"], [0, "cmdoption-runoak-definitions-O"], [0, "cmdoption-runoak-descendants-O"], [0, "cmdoption-runoak-diff-O"], [0, "cmdoption-runoak-diff-associations-O"], [0, "cmdoption-runoak-diff-via-mappings-O"], [0, "cmdoption-runoak-disjoints-O"], [0, "cmdoption-runoak-dump-O"], [0, "cmdoption-runoak-enrichment-O"], [0, "cmdoption-runoak-extract-O"], [0, "cmdoption-runoak-generate-definitions-O"], [0, "cmdoption-runoak-generate-disjoints-O"], [0, "cmdoption-runoak-generate-logical-definitions-O"], [0, "cmdoption-runoak-generate-synonyms-O"], [0, "cmdoption-runoak-info-O"], [0, "cmdoption-runoak-information-content-O"], [0, "cmdoption-runoak-labels-O"], [0, "cmdoption-runoak-lint-O"], [0, "cmdoption-runoak-logical-definitions-O"], [0, "cmdoption-runoak-mappings-O"], [0, "cmdoption-runoak-migrate-curies-O"], [0, "cmdoption-runoak-normalize-O"], [0, "cmdoption-runoak-obsoletes-O"], [0, "cmdoption-runoak-ontology-metadata-O"], [0, "cmdoption-runoak-paths-O"], [0, "cmdoption-runoak-prefixes-O"], [0, "cmdoption-runoak-query-O"], [0, "cmdoption-runoak-relationships-O"], [0, "cmdoption-runoak-rollup-O"], [0, "cmdoption-runoak-roots-O"], [0, "cmdoption-runoak-search-O"], [0, "cmdoption-runoak-siblings-O"], [0, "cmdoption-runoak-similarity-O"], [0, "cmdoption-runoak-similarity-pair-O"], [0, "cmdoption-runoak-statistics-O"], [0, "cmdoption-runoak-taxon-constraints-O"], [0, "cmdoption-runoak-term-categories-O"], [0, "cmdoption-runoak-term-metadata-O"], [0, "cmdoption-runoak-term-subsets-O"], [0, "cmdoption-runoak-termset-similarity-O"], [0, "cmdoption-runoak-transform-O"], [0, "cmdoption-runoak-tree-O"], [0, "cmdoption-runoak-validate-O"], [0, "cmdoption-runoak-validate-definitions-O"], [0, "cmdoption-runoak-validate-mappings-O"], [0, "cmdoption-runoak-viz-O"], [0, "cmdoption-runoak-aliases-o"], [0, "cmdoption-runoak-ancestors-o"], [0, "cmdoption-runoak-annotate-o"], [0, "cmdoption-runoak-apply-o"], [0, "cmdoption-runoak-apply-obsolete-o"], [0, "cmdoption-runoak-apply-taxon-constraints-o"], [0, "cmdoption-runoak-associations-0"], [0, "cmdoption-runoak-associations-matrix-0"], [0, "cmdoption-runoak-associations-matrix-o"], [0, "cmdoption-runoak-associations-o"], [0, "cmdoption-runoak-axioms-o"], [0, "cmdoption-runoak-definitions-o"], [0, "cmdoption-runoak-descendants-o"], [0, "cmdoption-runoak-diff-associations-0"], [0, "cmdoption-runoak-diff-associations-o"], [0, "cmdoption-runoak-diff-o"], [0, "cmdoption-runoak-diff-terms-o"], [0, "cmdoption-runoak-diff-via-mappings-o"], [0, "cmdoption-runoak-disjoints-o"], [0, "cmdoption-runoak-dump-o"], [0, "cmdoption-runoak-enrichment-0"], [0, "cmdoption-runoak-enrichment-o"], [0, "cmdoption-runoak-expand-subsets-o"], [0, "cmdoption-runoak-extract-o"], [0, "cmdoption-runoak-fill-table-o"], [0, "cmdoption-runoak-generate-definitions-o"], [0, "cmdoption-runoak-generate-disjoints-o"], [0, "cmdoption-runoak-generate-logical-definitions-o"], [0, "cmdoption-runoak-generate-synonyms-o"], [0, "cmdoption-runoak-info-o"], [0, "cmdoption-runoak-information-content-o"], [0, "cmdoption-runoak-labels-o"], [0, "cmdoption-runoak-leafs-o"], [0, "cmdoption-runoak-lexmatch-o"], [0, "cmdoption-runoak-lint-o"], [0, "cmdoption-runoak-logical-definitions-o"], [0, "cmdoption-runoak-mappings-o"], [0, "cmdoption-runoak-migrate-curies-o"], [0, "cmdoption-runoak-normalize-o"], [0, "cmdoption-runoak-obsoletes-o"], [0, "cmdoption-runoak-ontologies-o"], [0, "cmdoption-runoak-ontology-metadata-o"], [0, "cmdoption-runoak-ontology-versions-o"], [0, "cmdoption-runoak-paths-o"], [0, "cmdoption-runoak-prefixes-o"], [0, "cmdoption-runoak-query-o"], [0, "cmdoption-runoak-relationships-o"], [0, "cmdoption-runoak-rollup-o"], [0, "cmdoption-runoak-roots-o"], [0, "cmdoption-runoak-search-o"], [0, "cmdoption-runoak-siblings-o"], [0, "cmdoption-runoak-similarity-o"], [0, "cmdoption-runoak-similarity-pair-o"], [0, "cmdoption-runoak-singletons-o"], [0, "cmdoption-runoak-statistics-o"], [0, "cmdoption-runoak-subsets-o"], [0, "cmdoption-runoak-synonymize-o"], [0, "cmdoption-runoak-taxon-constraints-o"], [0, "cmdoption-runoak-term-categories-o"], [0, "cmdoption-runoak-term-metadata-o"], [0, "cmdoption-runoak-term-subsets-o"], [0, "cmdoption-runoak-terms-o"], [0, "cmdoption-runoak-termset-similarity-o"], [0, "cmdoption-runoak-transform-o"], [0, "cmdoption-runoak-tree-o"], [0, "cmdoption-runoak-validate-definitions-o"], [0, "cmdoption-runoak-validate-mappings-o"], [0, "cmdoption-runoak-validate-multiple-o"], [0, "cmdoption-runoak-validate-o"], [0, "cmdoption-runoak-viz-o"]], "-p": [[0, "cmdoption-runoak-generate-logical-definitions-P"], [0, "cmdoption-runoak-query-P"], [0, "cmdoption-runoak-roots-P"], [0, "cmdoption-runoak-statistics-P"], [0, "cmdoption-runoak-ancestors-p"], [0, "cmdoption-runoak-apply-taxon-constraints-p"], [0, "cmdoption-runoak-associations-matrix-p"], [0, "cmdoption-runoak-associations-p"], [0, "cmdoption-runoak-descendants-p"], [0, "cmdoption-runoak-diff-associations-p"], [0, "cmdoption-runoak-diff-via-mappings-p"], [0, "cmdoption-runoak-disjoints-p"], [0, "cmdoption-runoak-enrichment-p"], [0, "cmdoption-runoak-expand-subsets-p"], [0, "cmdoption-runoak-extract-p"], [0, "cmdoption-runoak-generate-disjoints-p"], [0, "cmdoption-runoak-information-content-p"], [0, "cmdoption-runoak-leafs-p"], [0, "cmdoption-runoak-logical-definitions-p"], [0, "cmdoption-runoak-paths-p"], [0, "cmdoption-runoak-relationships-p"], [0, "cmdoption-runoak-rollup-p"], [0, "cmdoption-runoak-roots-p"], [0, "cmdoption-runoak-siblings-p"], [0, "cmdoption-runoak-similarity-p"], [0, "cmdoption-runoak-similarity-pair-p"], [0, "cmdoption-runoak-singletons-p"], [0, "cmdoption-runoak-taxon-constraints-p"], [0, "cmdoption-runoak-term-metadata-p"], [0, "cmdoption-runoak-termset-similarity-p"], [0, "cmdoption-runoak-tree-p"], [0, "cmdoption-runoak-viz-p"]], "-q": [[0, "cmdoption-runoak-associations-Q"], [0, "cmdoption-runoak-associations-matrix-Q"], [0, "cmdoption-runoak-q"], [0, "cmdoption-runoak-query-q"]], "-r": [[0, "cmdoption-runoak-annotate-R"], [0, "cmdoption-runoak-generate-synonyms-R"], [0, "cmdoption-runoak-lexmatch-R"], [0, "cmdoption-runoak-synonymize-R"], [0, "cmdoption-runoak-validate-R"]], "-s": [[0, "cmdoption-runoak-associations-S"], [0, "cmdoption-runoak-definitions-S"], [0, "cmdoption-runoak-diff-via-mappings-S"], [0, "cmdoption-runoak-labels-S"], [0, "cmdoption-runoak-logical-definitions-S"], [0, "cmdoption-runoak-paths-S"], [0, "cmdoption-runoak-relationships-S"], [0, "cmdoption-runoak-tree-S"], [0, "cmdoption-runoak-viz-S"], [0, "cmdoption-runoak-validate-multiple-s"]], "-u": [[0, "cmdoption-runoak-enrichment-U"]], "-w": [[0, "cmdoption-runoak-W"], [0, "cmdoption-runoak-annotate-W"]], "-x": [[0, "cmdoption-runoak-diff-X"], [0, "cmdoption-runoak-diff-associations-X"], [0, "cmdoption-runoak-diff-via-mappings-X"], [0, "cmdoption-runoak-statistics-X"], [0, "cmdoption-runoak-annotate-x"]], "-t": [[0, "cmdoption-runoak-transform-t"]], "-v": [[0, "cmdoption-runoak-v"]], "branches": [[0, "cmdoption-runoak-statistics-arg-BRANCHES"]], "commands": [[0, "cmdoption-runoak-apply-arg-COMMANDS"]], "constraints": [[0, "cmdoption-runoak-apply-taxon-constraints-arg-CONSTRAINTS"]], "curie_pairs": [[0, "cmdoption-runoak-migrate-curies-arg-CURIE_PAIRS"]], "dbs": [[0, "cmdoption-runoak-validate-multiple-arg-DBS"]], "keyval": [[0, "cmdoption-runoak-set-apikey-arg-KEYVAL"]], "ontologies": [[0, "cmdoption-runoak-ontology-metadata-arg-ONTOLOGIES"], [0, "cmdoption-runoak-ontology-versions-arg-ONTOLOGIES"]], "subsets": [[0, "cmdoption-runoak-expand-subsets-arg-SUBSETS"]], "table_file": [[0, "cmdoption-runoak-fill-table-arg-TABLE_FILE"]], "terms": [[0, "cmdoption-runoak-aliases-arg-TERMS"], [0, "cmdoption-runoak-ancestors-arg-TERMS"], [0, "cmdoption-runoak-apply-obsolete-arg-TERMS"], [0, "cmdoption-runoak-associations-arg-TERMS"], [0, "cmdoption-runoak-associations-matrix-arg-TERMS"], [0, "cmdoption-runoak-axioms-arg-TERMS"], [0, "cmdoption-runoak-definitions-arg-TERMS"], [0, "cmdoption-runoak-descendants-arg-TERMS"], [0, "cmdoption-runoak-diff-terms-arg-TERMS"], [0, "cmdoption-runoak-diff-via-mappings-arg-TERMS"], [0, "cmdoption-runoak-disjoints-arg-TERMS"], [0, "cmdoption-runoak-dump-arg-TERMS"], [0, "cmdoption-runoak-enrichment-arg-TERMS"], [0, "cmdoption-runoak-extract-arg-TERMS"], [0, "cmdoption-runoak-generate-definitions-arg-TERMS"], [0, "cmdoption-runoak-generate-disjoints-arg-TERMS"], [0, "cmdoption-runoak-generate-logical-definitions-arg-TERMS"], [0, "cmdoption-runoak-generate-synonyms-arg-TERMS"], [0, "cmdoption-runoak-info-arg-TERMS"], [0, "cmdoption-runoak-information-content-arg-TERMS"], [0, "cmdoption-runoak-labels-arg-TERMS"], [0, "cmdoption-runoak-lexmatch-arg-TERMS"], [0, "cmdoption-runoak-logical-definitions-arg-TERMS"], [0, "cmdoption-runoak-mappings-arg-TERMS"], [0, "cmdoption-runoak-normalize-arg-TERMS"], [0, "cmdoption-runoak-obsoletes-arg-TERMS"], [0, "cmdoption-runoak-paths-arg-TERMS"], [0, "cmdoption-runoak-prefixes-arg-TERMS"], [0, "cmdoption-runoak-relationships-arg-TERMS"], [0, "cmdoption-runoak-rollup-arg-TERMS"], [0, "cmdoption-runoak-search-arg-TERMS"], [0, "cmdoption-runoak-siblings-arg-TERMS"], [0, "cmdoption-runoak-similarity-arg-TERMS"], [0, "cmdoption-runoak-similarity-pair-arg-TERMS"], [0, "cmdoption-runoak-synonymize-arg-TERMS"], [0, "cmdoption-runoak-taxon-constraints-arg-TERMS"], [0, "cmdoption-runoak-term-categories-arg-TERMS"], [0, "cmdoption-runoak-term-metadata-arg-TERMS"], [0, "cmdoption-runoak-term-subsets-arg-TERMS"], [0, "cmdoption-runoak-termset-similarity-arg-TERMS"], [0, "cmdoption-runoak-transform-arg-TERMS"], [0, "cmdoption-runoak-tree-arg-TERMS"], [0, "cmdoption-runoak-validate-arg-TERMS"], [0, "cmdoption-runoak-validate-definitions-arg-TERMS"], [0, "cmdoption-runoak-validate-mappings-arg-TERMS"], [0, "cmdoption-runoak-viz-arg-TERMS"]], "words": [[0, "cmdoption-runoak-annotate-arg-WORDS"]], "runoak command line option": [[0, "cmdoption-runoak-G"], [0, "cmdoption-runoak-I"], [0, "cmdoption-runoak-W"], [0, "cmdoption-runoak-a"], [0, "cmdoption-runoak-autosave"], [0, "cmdoption-runoak-g"], [0, "cmdoption-runoak-i"], [0, "cmdoption-runoak-import-depth"], [0, "cmdoption-runoak-l"], [0, "cmdoption-runoak-merge"], [0, "cmdoption-runoak-metamodel-mappings"], [0, "cmdoption-runoak-named-prefix-map"], [0, "cmdoption-runoak-other-languages"], [0, "cmdoption-runoak-prefix"], [0, "cmdoption-runoak-q"], [0, "cmdoption-runoak-requests-cache-db"], [0, "cmdoption-runoak-save-as"], [0, "cmdoption-runoak-stacktrace"], [0, "cmdoption-runoak-v"]], "runoak-aliases command line option": [[0, "cmdoption-runoak-aliases-O"], [0, "cmdoption-runoak-aliases-arg-TERMS"], [0, "cmdoption-runoak-aliases-o"], [0, "cmdoption-runoak-aliases-obo-model"]], "runoak-ancestors command line option": [[0, "cmdoption-runoak-ancestors-M"], [0, "cmdoption-runoak-ancestors-O"], [0, "cmdoption-runoak-ancestors-arg-TERMS"], [0, "cmdoption-runoak-ancestors-o"], [0, "cmdoption-runoak-ancestors-p"], [0, "cmdoption-runoak-ancestors-statistics"]], "runoak-annotate command line option": [[0, "cmdoption-runoak-annotate-A"], [0, "cmdoption-runoak-annotate-C"], [0, "cmdoption-runoak-annotate-L"], [0, "cmdoption-runoak-annotate-O"], [0, "cmdoption-runoak-annotate-R"], [0, "cmdoption-runoak-annotate-W"], [0, "cmdoption-runoak-annotate-arg-WORDS"], [0, "cmdoption-runoak-annotate-include-aliases"], [0, "cmdoption-runoak-annotate-m"], [0, "cmdoption-runoak-annotate-o"], [0, "cmdoption-runoak-annotate-text-file"], [0, "cmdoption-runoak-annotate-x"]], "runoak-apply command line option": [[0, "cmdoption-runoak-apply-O"], [0, "cmdoption-runoak-apply-arg-COMMANDS"], [0, "cmdoption-runoak-apply-changes-format"], [0, "cmdoption-runoak-apply-changes-input"], [0, "cmdoption-runoak-apply-changes-output"], [0, "cmdoption-runoak-apply-contributor"], [0, "cmdoption-runoak-apply-dry-run"], [0, "cmdoption-runoak-apply-expand"], [0, "cmdoption-runoak-apply-ignore-invalid-changes"], [0, "cmdoption-runoak-apply-o"], [0, "cmdoption-runoak-apply-overwrite"]], "runoak-apply-obsolete command line option": [[0, "cmdoption-runoak-apply-obsolete-O"], [0, "cmdoption-runoak-apply-obsolete-arg-TERMS"], [0, "cmdoption-runoak-apply-obsolete-expand"], [0, "cmdoption-runoak-apply-obsolete-ignore-invalid-changes"], [0, "cmdoption-runoak-apply-obsolete-o"]], "runoak-apply-taxon-constraints command line option": [[0, "cmdoption-runoak-apply-taxon-constraints-E"], [0, "cmdoption-runoak-apply-taxon-constraints-M"], [0, "cmdoption-runoak-apply-taxon-constraints-arg-CONSTRAINTS"], [0, "cmdoption-runoak-apply-taxon-constraints-o"], [0, "cmdoption-runoak-apply-taxon-constraints-p"]], "runoak-associations command line option": [[0, "cmdoption-runoak-associations-0"], [0, "cmdoption-runoak-associations-O"], [0, "cmdoption-runoak-associations-Q"], [0, "cmdoption-runoak-associations-S"], [0, "cmdoption-runoak-associations-add-closure-fields"], [0, "cmdoption-runoak-associations-arg-TERMS"], [0, "cmdoption-runoak-associations-association-predicates"], [0, "cmdoption-runoak-associations-autolabel"], [0, "cmdoption-runoak-associations-if-absent"], [0, "cmdoption-runoak-associations-o"], [0, "cmdoption-runoak-associations-p"]], "runoak-associations-matrix command line option": [[0, "cmdoption-runoak-associations-matrix-0"], [0, "cmdoption-runoak-associations-matrix-O"], [0, "cmdoption-runoak-associations-matrix-Q"], [0, "cmdoption-runoak-associations-matrix-arg-TERMS"], [0, "cmdoption-runoak-associations-matrix-association-predicates"], [0, "cmdoption-runoak-associations-matrix-autolabel"], [0, "cmdoption-runoak-associations-matrix-o"], [0, "cmdoption-runoak-associations-matrix-p"]], "runoak-axioms command line option": [[0, "cmdoption-runoak-axioms-O"], [0, "cmdoption-runoak-axioms-about"], [0, "cmdoption-runoak-axioms-arg-TERMS"], [0, "cmdoption-runoak-axioms-axiom-type"], [0, "cmdoption-runoak-axioms-o"], [0, "cmdoption-runoak-axioms-references"]], "runoak-cache-clear command line option": [[0, "cmdoption-runoak-cache-clear-days-old"]], "runoak-definitions command line option": [[0, "cmdoption-runoak-definitions-D"], [0, "cmdoption-runoak-definitions-O"], [0, "cmdoption-runoak-definitions-S"], [0, "cmdoption-runoak-definitions-additional-metadata"], [0, "cmdoption-runoak-definitions-arg-TERMS"], [0, "cmdoption-runoak-definitions-autolabel"], [0, "cmdoption-runoak-definitions-if-absent"], [0, "cmdoption-runoak-definitions-o"]], "runoak-descendants command line option": [[0, "cmdoption-runoak-descendants-D"], [0, "cmdoption-runoak-descendants-M"], [0, "cmdoption-runoak-descendants-O"], [0, "cmdoption-runoak-descendants-arg-TERMS"], [0, "cmdoption-runoak-descendants-o"], [0, "cmdoption-runoak-descendants-p"]], "runoak-diff command line option": [[0, "cmdoption-runoak-diff-O"], [0, "cmdoption-runoak-diff-X"], [0, "cmdoption-runoak-diff-change-type"], [0, "cmdoption-runoak-diff-group-by-defined-by"], [0, "cmdoption-runoak-diff-group-by-obo-namespace"], [0, "cmdoption-runoak-diff-group-by-prefix"], [0, "cmdoption-runoak-diff-group-by-property"], [0, "cmdoption-runoak-diff-o"], [0, "cmdoption-runoak-diff-simple"], [0, "cmdoption-runoak-diff-statistics"]], "runoak-diff-associations command line option": [[0, "cmdoption-runoak-diff-associations-0"], [0, "cmdoption-runoak-diff-associations-O"], [0, "cmdoption-runoak-diff-associations-X"], [0, "cmdoption-runoak-diff-associations-autolabel"], [0, "cmdoption-runoak-diff-associations-g"], [0, "cmdoption-runoak-diff-associations-group-by"], [0, "cmdoption-runoak-diff-associations-new-date"], [0, "cmdoption-runoak-diff-associations-o"], [0, "cmdoption-runoak-diff-associations-old-date"], [0, "cmdoption-runoak-diff-associations-p"]], "runoak-diff-terms command line option": [[0, "cmdoption-runoak-diff-terms-arg-TERMS"], [0, "cmdoption-runoak-diff-terms-o"], [0, "cmdoption-runoak-diff-terms-other-ontology"]], "runoak-diff-via-mappings command line option": [[0, "cmdoption-runoak-diff-via-mappings-O"], [0, "cmdoption-runoak-diff-via-mappings-S"], [0, "cmdoption-runoak-diff-via-mappings-X"], [0, "cmdoption-runoak-diff-via-mappings-arg-TERMS"], [0, "cmdoption-runoak-diff-via-mappings-autolabel"], [0, "cmdoption-runoak-diff-via-mappings-bidirectional"], [0, "cmdoption-runoak-diff-via-mappings-filter-category-identical"], [0, "cmdoption-runoak-diff-via-mappings-include-identity-mappings"], [0, "cmdoption-runoak-diff-via-mappings-intra"], [0, "cmdoption-runoak-diff-via-mappings-mapping-input"], [0, "cmdoption-runoak-diff-via-mappings-o"], [0, "cmdoption-runoak-diff-via-mappings-other-input-type"], [0, "cmdoption-runoak-diff-via-mappings-p"]], "runoak-disjoints command line option": [[0, "cmdoption-runoak-disjoints-O"], [0, "cmdoption-runoak-disjoints-arg-TERMS"], [0, "cmdoption-runoak-disjoints-autolabel"], [0, "cmdoption-runoak-disjoints-named-classes-only"], [0, "cmdoption-runoak-disjoints-o"], [0, "cmdoption-runoak-disjoints-p"]], "runoak-dump command line option": [[0, "cmdoption-runoak-dump-O"], [0, "cmdoption-runoak-dump-arg-TERMS"], [0, "cmdoption-runoak-dump-c"], [0, "cmdoption-runoak-dump-enforce-canonical-ordering"], [0, "cmdoption-runoak-dump-o"]], "runoak-enrichment command line option": [[0, "cmdoption-runoak-enrichment-0"], [0, "cmdoption-runoak-enrichment-B"], [0, "cmdoption-runoak-enrichment-O"], [0, "cmdoption-runoak-enrichment-U"], [0, "cmdoption-runoak-enrichment-arg-TERMS"], [0, "cmdoption-runoak-enrichment-association-predicates"], [0, "cmdoption-runoak-enrichment-autolabel"], [0, "cmdoption-runoak-enrichment-cutoff"], [0, "cmdoption-runoak-enrichment-filter-redundant"], [0, "cmdoption-runoak-enrichment-o"], [0, "cmdoption-runoak-enrichment-ontology-only"], [0, "cmdoption-runoak-enrichment-p"]], "runoak-expand-subsets command line option": [[0, "cmdoption-runoak-expand-subsets-arg-SUBSETS"], [0, "cmdoption-runoak-expand-subsets-o"], [0, "cmdoption-runoak-expand-subsets-p"]], "runoak-extract command line option": [[0, "cmdoption-runoak-extract-O"], [0, "cmdoption-runoak-extract-arg-TERMS"], [0, "cmdoption-runoak-extract-dangling"], [0, "cmdoption-runoak-extract-include-metadata"], [0, "cmdoption-runoak-extract-o"], [0, "cmdoption-runoak-extract-p"]], "runoak-fill-table command line option": [[0, "cmdoption-runoak-fill-table-allow-missing"], [0, "cmdoption-runoak-fill-table-arg-TABLE_FILE"], [0, "cmdoption-runoak-fill-table-autolabel"], [0, "cmdoption-runoak-fill-table-comment"], [0, "cmdoption-runoak-fill-table-delimiter"], [0, "cmdoption-runoak-fill-table-missing-value-token"], [0, "cmdoption-runoak-fill-table-o"], [0, "cmdoption-runoak-fill-table-relation"], [0, "cmdoption-runoak-fill-table-relation-file"], [0, "cmdoption-runoak-fill-table-schema"]], "runoak-generate-definitions command line option": [[0, "cmdoption-runoak-generate-definitions-O"], [0, "cmdoption-runoak-generate-definitions-apply-patch"], [0, "cmdoption-runoak-generate-definitions-arg-TERMS"], [0, "cmdoption-runoak-generate-definitions-o"], [0, "cmdoption-runoak-generate-definitions-patch"], [0, "cmdoption-runoak-generate-definitions-patch-format"], [0, "cmdoption-runoak-generate-definitions-style-hints"]], "runoak-generate-disjoints command line option": [[0, "cmdoption-runoak-generate-disjoints-M"], [0, "cmdoption-runoak-generate-disjoints-O"], [0, "cmdoption-runoak-generate-disjoints-arg-TERMS"], [0, "cmdoption-runoak-generate-disjoints-autolabel"], [0, "cmdoption-runoak-generate-disjoints-exclude-existing"], [0, "cmdoption-runoak-generate-disjoints-o"], [0, "cmdoption-runoak-generate-disjoints-p"]], "runoak-generate-logical-definitions command line option": [[0, "cmdoption-runoak-generate-logical-definitions-O"], [0, "cmdoption-runoak-generate-logical-definitions-P"], [0, "cmdoption-runoak-generate-logical-definitions-analyze"], [0, "cmdoption-runoak-generate-logical-definitions-arg-TERMS"], [0, "cmdoption-runoak-generate-logical-definitions-autolabel"], [0, "cmdoption-runoak-generate-logical-definitions-fill"], [0, "cmdoption-runoak-generate-logical-definitions-o"], [0, "cmdoption-runoak-generate-logical-definitions-parse"], [0, "cmdoption-runoak-generate-logical-definitions-show-extract"], [0, "cmdoption-runoak-generate-logical-definitions-unmelt"]], "runoak-generate-synonyms command line option": [[0, "cmdoption-runoak-generate-synonyms-O"], [0, "cmdoption-runoak-generate-synonyms-R"], [0, "cmdoption-runoak-generate-synonyms-apply-patch"], [0, "cmdoption-runoak-generate-synonyms-arg-TERMS"], [0, "cmdoption-runoak-generate-synonyms-o"], [0, "cmdoption-runoak-generate-synonyms-patch"], [0, "cmdoption-runoak-generate-synonyms-patch-format"]], "runoak-info command line option": [[0, "cmdoption-runoak-info-D"], [0, "cmdoption-runoak-info-O"], [0, "cmdoption-runoak-info-arg-TERMS"], [0, "cmdoption-runoak-info-o"]], "runoak-information-content command line option": [[0, "cmdoption-runoak-information-content-O"], [0, "cmdoption-runoak-information-content-arg-TERMS"], [0, "cmdoption-runoak-information-content-o"], [0, "cmdoption-runoak-information-content-p"], [0, "cmdoption-runoak-information-content-use-associations"]], "runoak-labels command line option": [[0, "cmdoption-runoak-labels-D"], [0, "cmdoption-runoak-labels-O"], [0, "cmdoption-runoak-labels-S"], [0, "cmdoption-runoak-labels-all-languages"], [0, "cmdoption-runoak-labels-arg-TERMS"], [0, "cmdoption-runoak-labels-if-absent"], [0, "cmdoption-runoak-labels-o"], [0, "cmdoption-runoak-labels-pivot-languages"]], "runoak-leafs command line option": [[0, "cmdoption-runoak-leafs-filter-obsoletes"], [0, "cmdoption-runoak-leafs-o"], [0, "cmdoption-runoak-leafs-p"]], "runoak-lexmatch command line option": [[0, "cmdoption-runoak-lexmatch-L"], [0, "cmdoption-runoak-lexmatch-R"], [0, "cmdoption-runoak-lexmatch-add-labels"], [0, "cmdoption-runoak-lexmatch-arg-TERMS"], [0, "cmdoption-runoak-lexmatch-ensure-strict-prefixes"], [0, "cmdoption-runoak-lexmatch-o"], [0, "cmdoption-runoak-lexmatch-recreate"]], "runoak-lint command line option": [[0, "cmdoption-runoak-lint-O"], [0, "cmdoption-runoak-lint-dry-run"], [0, "cmdoption-runoak-lint-o"], [0, "cmdoption-runoak-lint-report-format"]], "runoak-logical-definitions command line option": [[0, "cmdoption-runoak-logical-definitions-O"], [0, "cmdoption-runoak-logical-definitions-S"], [0, "cmdoption-runoak-logical-definitions-arg-TERMS"], [0, "cmdoption-runoak-logical-definitions-autolabel"], [0, "cmdoption-runoak-logical-definitions-if-absent"], [0, "cmdoption-runoak-logical-definitions-matrix-axes"], [0, "cmdoption-runoak-logical-definitions-o"], [0, "cmdoption-runoak-logical-definitions-p"], [0, "cmdoption-runoak-logical-definitions-unmelt"]], "runoak-mappings command line option": [[0, "cmdoption-runoak-mappings-M"], [0, "cmdoption-runoak-mappings-O"], [0, "cmdoption-runoak-mappings-arg-TERMS"], [0, "cmdoption-runoak-mappings-autolabel"], [0, "cmdoption-runoak-mappings-mapper"], [0, "cmdoption-runoak-mappings-o"]], "runoak-migrate-curies command line option": [[0, "cmdoption-runoak-migrate-curies-O"], [0, "cmdoption-runoak-migrate-curies-arg-CURIE_PAIRS"], [0, "cmdoption-runoak-migrate-curies-o"], [0, "cmdoption-runoak-migrate-curies-replace"]], "runoak-normalize command line option": [[0, "cmdoption-runoak-normalize-M"], [0, "cmdoption-runoak-normalize-O"], [0, "cmdoption-runoak-normalize-arg-TERMS"], [0, "cmdoption-runoak-normalize-autolabel"], [0, "cmdoption-runoak-normalize-o"]], "runoak-obsoletes command line option": [[0, "cmdoption-runoak-obsoletes-O"], [0, "cmdoption-runoak-obsoletes-arg-TERMS"], [0, "cmdoption-runoak-obsoletes-include-merged"], [0, "cmdoption-runoak-obsoletes-o"], [0, "cmdoption-runoak-obsoletes-show-migration-relationships"]], "runoak-ontologies command line option": [[0, "cmdoption-runoak-ontologies-o"]], "runoak-ontology-metadata command line option": [[0, "cmdoption-runoak-ontology-metadata-O"], [0, "cmdoption-runoak-ontology-metadata-all"], [0, "cmdoption-runoak-ontology-metadata-arg-ONTOLOGIES"], [0, "cmdoption-runoak-ontology-metadata-o"]], "runoak-ontology-versions command line option": [[0, "cmdoption-runoak-ontology-versions-all"], [0, "cmdoption-runoak-ontology-versions-arg-ONTOLOGIES"], [0, "cmdoption-runoak-ontology-versions-o"]], "runoak-paths command line option": [[0, "cmdoption-runoak-paths-C"], [0, "cmdoption-runoak-paths-O"], [0, "cmdoption-runoak-paths-S"], [0, "cmdoption-runoak-paths-arg-TERMS"], [0, "cmdoption-runoak-paths-autolabel"], [0, "cmdoption-runoak-paths-directed"], [0, "cmdoption-runoak-paths-exclude-predicates"], [0, "cmdoption-runoak-paths-include-predicates"], [0, "cmdoption-runoak-paths-narrow"], [0, "cmdoption-runoak-paths-o"], [0, "cmdoption-runoak-paths-p"], [0, "cmdoption-runoak-paths-predicate-weights"], [0, "cmdoption-runoak-paths-target"], [0, "cmdoption-runoak-paths-viz"]], "runoak-prefixes command line option": [[0, "cmdoption-runoak-prefixes-O"], [0, "cmdoption-runoak-prefixes-arg-TERMS"], [0, "cmdoption-runoak-prefixes-o"], [0, "cmdoption-runoak-prefixes-used-only"]], "runoak-query command line option": [[0, "cmdoption-runoak-query-L"], [0, "cmdoption-runoak-query-O"], [0, "cmdoption-runoak-query-P"], [0, "cmdoption-runoak-query-autolabel"], [0, "cmdoption-runoak-query-o"], [0, "cmdoption-runoak-query-q"]], "runoak-relationships command line option": [[0, "cmdoption-runoak-relationships-O"], [0, "cmdoption-runoak-relationships-S"], [0, "cmdoption-runoak-relationships-arg-TERMS"], [0, "cmdoption-runoak-relationships-autolabel"], [0, "cmdoption-runoak-relationships-direction"], [0, "cmdoption-runoak-relationships-if-absent"], [0, "cmdoption-runoak-relationships-include-abox"], [0, "cmdoption-runoak-relationships-include-entailed"], [0, "cmdoption-runoak-relationships-include-metadata"], [0, "cmdoption-runoak-relationships-include-tbox"], [0, "cmdoption-runoak-relationships-o"], [0, "cmdoption-runoak-relationships-p"]], "runoak-rollup command line option": [[0, "cmdoption-runoak-rollup-O"], [0, "cmdoption-runoak-rollup-arg-TERMS"], [0, "cmdoption-runoak-rollup-autolabel"], [0, "cmdoption-runoak-rollup-o"], [0, "cmdoption-runoak-rollup-object-group"], [0, "cmdoption-runoak-rollup-p"]], "runoak-roots command line option": [[0, "cmdoption-runoak-roots-A"], [0, "cmdoption-runoak-roots-O"], [0, "cmdoption-runoak-roots-P"], [0, "cmdoption-runoak-roots-o"], [0, "cmdoption-runoak-roots-p"]], "runoak-search command line option": [[0, "cmdoption-runoak-search-O"], [0, "cmdoption-runoak-search-arg-TERMS"], [0, "cmdoption-runoak-search-autolabel"], [0, "cmdoption-runoak-search-o"]], "runoak-set-apikey command line option": [[0, "cmdoption-runoak-set-apikey-arg-KEYVAL"], [0, "cmdoption-runoak-set-apikey-e"]], "runoak-siblings command line option": [[0, "cmdoption-runoak-siblings-O"], [0, "cmdoption-runoak-siblings-arg-TERMS"], [0, "cmdoption-runoak-siblings-o"], [0, "cmdoption-runoak-siblings-p"]], "runoak-similarity command line option": [[0, "cmdoption-runoak-similarity-O"], [0, "cmdoption-runoak-similarity-arg-TERMS"], [0, "cmdoption-runoak-similarity-autolabel"], [0, "cmdoption-runoak-similarity-information-content-file"], [0, "cmdoption-runoak-similarity-main-score-field"], [0, "cmdoption-runoak-similarity-min-ancestor-information-content"], [0, "cmdoption-runoak-similarity-min-jaccard-similarity"], [0, "cmdoption-runoak-similarity-o"], [0, "cmdoption-runoak-similarity-p"], [0, "cmdoption-runoak-similarity-set1-file"], [0, "cmdoption-runoak-similarity-set2-file"]], "runoak-similarity-pair command line option": [[0, "cmdoption-runoak-similarity-pair-O"], [0, "cmdoption-runoak-similarity-pair-arg-TERMS"], [0, "cmdoption-runoak-similarity-pair-autolabel"], [0, "cmdoption-runoak-similarity-pair-o"], [0, "cmdoption-runoak-similarity-pair-p"]], "runoak-singletons command line option": [[0, "cmdoption-runoak-singletons-filter-obsoletes"], [0, "cmdoption-runoak-singletons-o"], [0, "cmdoption-runoak-singletons-p"]], "runoak-statistics command line option": [[0, "cmdoption-runoak-statistics-O"], [0, "cmdoption-runoak-statistics-P"], [0, "cmdoption-runoak-statistics-X"], [0, "cmdoption-runoak-statistics-arg-BRANCHES"], [0, "cmdoption-runoak-statistics-group-by-defined-by"], [0, "cmdoption-runoak-statistics-group-by-obo-namespace"], [0, "cmdoption-runoak-statistics-group-by-prefix"], [0, "cmdoption-runoak-statistics-group-by-property"], [0, "cmdoption-runoak-statistics-include-residuals"], [0, "cmdoption-runoak-statistics-o"]], "runoak-subsets command line option": [[0, "cmdoption-runoak-subsets-o"]], "runoak-synonymize command line option": [[0, "cmdoption-runoak-synonymize-R"], [0, "cmdoption-runoak-synonymize-apply-patch"], [0, "cmdoption-runoak-synonymize-arg-TERMS"], [0, "cmdoption-runoak-synonymize-o"], [0, "cmdoption-runoak-synonymize-patch"]], "runoak-taxon-constraints command line option": [[0, "cmdoption-runoak-taxon-constraints-A"], [0, "cmdoption-runoak-taxon-constraints-M"], [0, "cmdoption-runoak-taxon-constraints-O"], [0, "cmdoption-runoak-taxon-constraints-arg-TERMS"], [0, "cmdoption-runoak-taxon-constraints-direct"], [0, "cmdoption-runoak-taxon-constraints-include-redundant"], [0, "cmdoption-runoak-taxon-constraints-o"], [0, "cmdoption-runoak-taxon-constraints-p"]], "runoak-term-categories command line option": [[0, "cmdoption-runoak-term-categories-O"], [0, "cmdoption-runoak-term-categories-arg-TERMS"], [0, "cmdoption-runoak-term-categories-category-system"], [0, "cmdoption-runoak-term-categories-o"]], "runoak-term-metadata command line option": [[0, "cmdoption-runoak-term-metadata-O"], [0, "cmdoption-runoak-term-metadata-additional-metadata"], [0, "cmdoption-runoak-term-metadata-arg-TERMS"], [0, "cmdoption-runoak-term-metadata-o"], [0, "cmdoption-runoak-term-metadata-p"]], "runoak-term-subsets command line option": [[0, "cmdoption-runoak-term-subsets-O"], [0, "cmdoption-runoak-term-subsets-arg-TERMS"], [0, "cmdoption-runoak-term-subsets-o"]], "runoak-terms command line option": [[0, "cmdoption-runoak-terms-filter-obsoletes"], [0, "cmdoption-runoak-terms-o"], [0, "cmdoption-runoak-terms-owl-type"]], "runoak-termset-similarity command line option": [[0, "cmdoption-runoak-termset-similarity-O"], [0, "cmdoption-runoak-termset-similarity-arg-TERMS"], [0, "cmdoption-runoak-termset-similarity-autolabel"], [0, "cmdoption-runoak-termset-similarity-information-content-file"], [0, "cmdoption-runoak-termset-similarity-o"], [0, "cmdoption-runoak-termset-similarity-p"]], "runoak-transform command line option": [[0, "cmdoption-runoak-transform-O"], [0, "cmdoption-runoak-transform-arg-TERMS"], [0, "cmdoption-runoak-transform-c"], [0, "cmdoption-runoak-transform-o"], [0, "cmdoption-runoak-transform-t"]], "runoak-tree command line option": [[0, "cmdoption-runoak-tree-C"], [0, "cmdoption-runoak-tree-D"], [0, "cmdoption-runoak-tree-O"], [0, "cmdoption-runoak-tree-S"], [0, "cmdoption-runoak-tree-add-mrcas"], [0, "cmdoption-runoak-tree-arg-TERMS"], [0, "cmdoption-runoak-tree-down"], [0, "cmdoption-runoak-tree-gap-fill"], [0, "cmdoption-runoak-tree-max-hops"], [0, "cmdoption-runoak-tree-o"], [0, "cmdoption-runoak-tree-p"], [0, "cmdoption-runoak-tree-root"], [0, "cmdoption-runoak-tree-skip"]], "runoak-validate command line option": [[0, "cmdoption-runoak-validate-O"], [0, "cmdoption-runoak-validate-R"], [0, "cmdoption-runoak-validate-arg-TERMS"], [0, "cmdoption-runoak-validate-cutoff"], [0, "cmdoption-runoak-validate-o"], [0, "cmdoption-runoak-validate-skip-ontology-rules"], [0, "cmdoption-runoak-validate-skip-structural-validation"]], "runoak-validate-definitions command line option": [[0, "cmdoption-runoak-validate-definitions-O"], [0, "cmdoption-runoak-validate-definitions-arg-TERMS"], [0, "cmdoption-runoak-validate-definitions-o"], [0, "cmdoption-runoak-validate-definitions-skip-text-annotation"]], "runoak-validate-mappings command line option": [[0, "cmdoption-runoak-validate-mappings-C"], [0, "cmdoption-runoak-validate-mappings-O"], [0, "cmdoption-runoak-validate-mappings-adapter-mapping"], [0, "cmdoption-runoak-validate-mappings-arg-TERMS"], [0, "cmdoption-runoak-validate-mappings-autolabel"], [0, "cmdoption-runoak-validate-mappings-o"]], "runoak-validate-multiple command line option": [[0, "cmdoption-runoak-validate-multiple-arg-DBS"], [0, "cmdoption-runoak-validate-multiple-cutoff"], [0, "cmdoption-runoak-validate-multiple-o"], [0, "cmdoption-runoak-validate-multiple-s"]], "runoak-viz command line option": [[0, "cmdoption-runoak-viz-C"], [0, "cmdoption-runoak-viz-O"], [0, "cmdoption-runoak-viz-S"], [0, "cmdoption-runoak-viz-add-mrcas"], [0, "cmdoption-runoak-viz-arg-TERMS"], [0, "cmdoption-runoak-viz-down"], [0, "cmdoption-runoak-viz-gap-fill"], [0, "cmdoption-runoak-viz-max-hops"], [0, "cmdoption-runoak-viz-meta"], [0, "cmdoption-runoak-viz-o"], [0, "cmdoption-runoak-viz-p"], [0, "cmdoption-runoak-viz-view"]], "ancestor": [[1106, "term-Ancestor"]], "annotation": [[1106, "term-Annotation"]], "annotationproperty": [[1106, "term-AnnotationProperty"]], "asserted": [[1106, "term-Asserted"]], "association": [[1106, "term-Association"]], "bioportal": [[1106, "term-Bioportal"]], "curie": [[1106, "term-CURIE"]], "category": [[1106, "term-Category"]], "class": [[1106, "term-Class"]], "closure": [[1106, "term-Closure"]], "concept": [[1106, "term-Concept"]], "datamodel": [[1106, "term-Datamodel"]], "datatypeproperty": [[1106, "term-DatatypeProperty"]], "descendant": [[1106, "term-Descendant"]], "diff": [[1106, "term-Diff"]], "edge": [[1106, "term-Edge"]], "entailed": [[1106, "term-Entailed"]], "funowl": [[1106, "term-FunOWL"]], "functional syntax": [[1106, "term-Functional-Syntax"]], "graph": [[1106, "term-Graph"]], "graph traversal": [[1106, "term-Graph-Traversal"]], "is_a:": [[1106, "term-IS_A"]], "identifier": [[1106, "term-Identifier"]], "implementation": [[1106, "term-Implementation"]], "information content": [[1106, "term-Information-Content"]], "input selector": [[1106, "term-Input-Selector"]], "interface": [[1106, "term-Interface"]], "iterator": [[1106, "term-Iterator"]], "kgcl": [[1106, "term-KGCL"]], "label": [[1106, "term-Label"]], "logical definition": [[1106, "term-Logical-Definition"]], "mapping": [[1106, "term-Mapping"]], "name": [[1106, "term-Name"]], "named individual": [[1106, "term-Named-Individual"]], "node": [[1106, "term-Node"]], "obo format": [[1106, "term-OBO-Format"]], "obo graphs": [[1106, "term-OBO-Graphs"]], "ols": [[1106, "term-OLS"]], "owl": [[1106, "term-OWL"]], "owl annotation": [[1106, "term-OWL-Annotation"]], "object": [[1106, "term-Object"]], "object closure": [[1106, "term-Object-Closure"]], "objectproperty": [[1106, "term-ObjectProperty"]], "ontogpt": [[1106, "term-OntoGPT"]], "ontoportal": [[1106, "term-OntoPortal"]], "ontobee": [[1106, "term-Ontobee"]], "ontology": [[1106, "term-Ontology"]], "ontology element": [[1106, "term-Ontology-Element"]], "ontology format": [[1106, "term-Ontology-Format"]], "ontology graph projection": [[1106, "term-Ontology-Graph-Projection"]], "part of": [[1106, "term-Part-Of"]], "patch": [[1106, "term-Patch"]], "predicate": [[1106, "term-Predicate"]], "pronto": [[1106, "term-Pronto"]], "property": [[1106, "term-Property"]], "rdf": [[1106, "term-RDF"]], "reasoner": [[1106, "term-Reasoner"]], "reasoning": [[1106, "term-Reasoning"]], "reflexive": [[1106, "term-Reflexive"]], "relation graph": [[1106, "term-Relation-Graph"]], "relationship": [[1106, "term-Relationship"]], "relationship type": [[1106, "term-Relationship-Type"]], "sparql": [[1106, "term-SPARQL"]], "sql": [[1106, "term-SQL"]], "sssom": [[1106, "term-SSSOM"]], "semantic sql": [[1106, "term-Semantic-SQL"]], "semantic similarity": [[1106, "term-Semantic-Similarity"]], "subject": [[1106, "term-Subject"]], "subject closure": [[1106, "term-Subject-Closure"]], "subset": [[1106, "term-Subset"]], "tautology": [[1106, "term-Tautology"]], "term": [[1106, "term-Term"]], "text annotation": [[1106, "term-Text-Annotation"]], "triple": [[1106, "term-Triple"]], "triplestore": [[1106, "term-Triplestore"]], "uri": [[1106, "term-URI"]], "ubergraph": [[1106, "term-Ubergraph"]], "datamodelconverter (class in oaklib.converters.data_model_converter)": [[1142, "oaklib.converters.data_model_converter.DataModelConverter"]], "convert() (oaklib.converters.data_model_converter.datamodelconverter method)": [[1142, "oaklib.converters.data_model_converter.DataModelConverter.convert"]], "curie_converter (oaklib.converters.data_model_converter.datamodelconverter attribute)": [[1142, "oaklib.converters.data_model_converter.DataModelConverter.curie_converter"]], "dump() (oaklib.converters.data_model_converter.datamodelconverter method)": [[1142, "oaklib.converters.data_model_converter.DataModelConverter.dump"]], "enforce_canonical_ordering (oaklib.converters.data_model_converter.datamodelconverter attribute)": [[1142, "oaklib.converters.data_model_converter.DataModelConverter.enforce_canonical_ordering"]], "labeler (oaklib.converters.data_model_converter.datamodelconverter attribute)": [[1142, "oaklib.converters.data_model_converter.DataModelConverter.labeler"]], "obographtocxconverter (class in oaklib.converters.obo_graph_to_cx_converter)": [[1144, "oaklib.converters.obo_graph_to_cx_converter.OboGraphToCXConverter"]], "convert() (oaklib.converters.obo_graph_to_cx_converter.obographtocxconverter method)": [[1144, "oaklib.converters.obo_graph_to_cx_converter.OboGraphToCXConverter.convert"]], "dump() (oaklib.converters.obo_graph_to_cx_converter.obographtocxconverter method)": [[1144, "oaklib.converters.obo_graph_to_cx_converter.OboGraphToCXConverter.dump"]], "obographtofhirconverter (class in oaklib.converters.obo_graph_to_fhir_converter)": [[1145, "oaklib.converters.obo_graph_to_fhir_converter.OboGraphToFHIRConverter"]], "code() (oaklib.converters.obo_graph_to_fhir_converter.obographtofhirconverter method)": [[1145, "oaklib.converters.obo_graph_to_fhir_converter.OboGraphToFHIRConverter.code"]], "convert() (oaklib.converters.obo_graph_to_fhir_converter.obographtofhirconverter method)": [[1145, "oaklib.converters.obo_graph_to_fhir_converter.OboGraphToFHIRConverter.convert"]], "dump() (oaklib.converters.obo_graph_to_fhir_converter.obographtofhirconverter method)": [[1145, "oaklib.converters.obo_graph_to_fhir_converter.OboGraphToFHIRConverter.dump"]], "obographtooboformatconverter (class in oaklib.converters.obo_graph_to_obo_format_converter)": [[1146, "oaklib.converters.obo_graph_to_obo_format_converter.OboGraphToOboFormatConverter"]], "as_bytes_io() (oaklib.converters.obo_graph_to_obo_format_converter.obographtooboformatconverter method)": [[1146, "oaklib.converters.obo_graph_to_obo_format_converter.OboGraphToOboFormatConverter.as_bytes_io"]], "convert() (oaklib.converters.obo_graph_to_obo_format_converter.obographtooboformatconverter method)": [[1146, "oaklib.converters.obo_graph_to_obo_format_converter.OboGraphToOboFormatConverter.convert"]], "dump() (oaklib.converters.obo_graph_to_obo_format_converter.obographtooboformatconverter method)": [[1146, "oaklib.converters.obo_graph_to_obo_format_converter.OboGraphToOboFormatConverter.dump"]], "dumps() (oaklib.converters.obo_graph_to_obo_format_converter.obographtooboformatconverter method)": [[1146, "oaklib.converters.obo_graph_to_obo_format_converter.OboGraphToOboFormatConverter.dumps"]], "aggregatorimplementation (class in oaklib.implementations.aggregator.aggregator_implementation)": [[1148, "oaklib.implementations.aggregator.aggregator_implementation.AggregatorImplementation"]], "funowlimplementation (class in oaklib.implementations.funowl.funowl_implementation)": [[1150, "oaklib.implementations.funowl.funowl_implementation.FunOwlImplementation"]], "gildaimplementation (class in oaklib.implementations.gilda)": [[1151, "oaklib.implementations.gilda.GildaImplementation"]], "obographimplementation (class in oaklib.implementations.obograph.obograph_implementation)": [[1154, "oaklib.implementations.obograph.obograph_implementation.OboGraphImplementation"]], "olsimplementation (class in oaklib.implementations.ols.ols_implementation)": [[1155, "oaklib.implementations.ols.ols_implementation.OlsImplementation"]], "ontobeeimplementation (class in oaklib.implementations.ontobee.ontobee_implementation)": [[1156, "oaklib.implementations.ontobee.ontobee_implementation.OntobeeImplementation"]], "owleryimplementation (class in oaklib.implementations.owlery.owlery_implementation)": [[1157, "oaklib.implementations.owlery.owlery_implementation.OwleryImplementation"]], "pantherdbimplementation (class in oaklib.implementations.pantherdb.pantherdb_implementation)": [[1158, "oaklib.implementations.pantherdb.pantherdb_implementation.PantherDBImplementation"]], "prontoimplementation (class in oaklib.implementations.pronto.pronto_implementation)": [[1159, "oaklib.implementations.pronto.pronto_implementation.ProntoImplementation"]], "simpleoboimplementation (class in oaklib.implementations.simpleobo.simple_obo_implementation)": [[1160, "oaklib.implementations.simpleobo.simple_obo_implementation.SimpleOboImplementation"]], "sparqlimplementation (class in oaklib.implementations.sparql.sparql_implementation)": [[1161, "oaklib.implementations.sparql.sparql_implementation.SparqlImplementation"]], "edge (class in semsql.sqla.semsql)": [[1162, "semsql.sqla.semsql.Edge"]], "entailededge (class in semsql.sqla.semsql)": [[1162, "semsql.sqla.semsql.EntailedEdge"]], "sqlimplementation (class in oaklib.implementations.sqldb.sql_implementation)": [[1162, "oaklib.implementations.sqldb.sql_implementation.SqlImplementation"]], "statements (class in semsql.sqla.semsql)": [[1162, "semsql.sqla.semsql.Statements"]], "create() (oaklib.implementations.sqldb.sql_implementation.sqlimplementation class method)": [[1162, "oaklib.implementations.sqldb.sql_implementation.SqlImplementation.create"]], "relationgraphenum (class in oaklib.implementations.ubergraph.ubergraph_implementation)": [[1163, "oaklib.implementations.ubergraph.ubergraph_implementation.RelationGraphEnum"]], "ubergraphimplementation (class in oaklib.implementations.ubergraph.ubergraph_implementation)": [[1163, "oaklib.implementations.ubergraph.ubergraph_implementation.UbergraphImplementation"]], "associationproviderinterface (class in oaklib.interfaces.association_provider_interface)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface"]], "add_associations() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.add_associations"]], "association_pairwise_coassociations() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.association_pairwise_coassociations"]], "association_subject_counts() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.association_subject_counts"]], "associations() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.associations"]], "associations_subject_search() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.associations_subject_search"]], "associations_subjects() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.associations_subjects"]], "map_associations() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.map_associations"]], "normalize_association() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.normalize_association"]], "normalize_associations() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.normalize_associations"]], "basicontologyinterface (class in oaklib.interfaces.basic_ontology_interface)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface"]], "add_missing_property_values() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.add_missing_property_values"]], "alias_map_by_curie() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.alias_map_by_curie"]], "aliases_by_curie() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.aliases_by_curie"]], "all_entity_curies() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.all_entity_curies"]], "all_obsolete_curies() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.all_obsolete_curies"]], "all_ontology_curies() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.all_ontology_curies"]], "all_relationships() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.all_relationships"]], "all_subset_curies() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.all_subset_curies"]], "auto_relax_axioms (oaklib.interfaces.basic_ontology_interface.basicontologyinterface attribute)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.auto_relax_axioms"]], "autosave (oaklib.interfaces.basic_ontology_interface.basicontologyinterface attribute)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.autosave"]], "cache_lookups (oaklib.interfaces.basic_ontology_interface.basicontologyinterface attribute)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.cache_lookups"]], "clone() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.clone"]], "comments() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.comments"]], "converter (oaklib.interfaces.basic_ontology_interface.basicontologyinterface property)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.converter"]], "create_entity() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.create_entity"]], "curie_to_uri() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.curie_to_uri"]], "curies_by_label() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.curies_by_label"]], "curies_by_subset() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.curies_by_subset"]], "dangling() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.dangling"]], "default_language (oaklib.interfaces.basic_ontology_interface.basicontologyinterface property)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.default_language"]], "defined_by() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.defined_by"]], "defined_bys() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.defined_bys"]], "definition() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.definition"]], "definitions() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.definitions"]], "delete_entity() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.delete_entity"]], "edge_index (oaklib.interfaces.basic_ontology_interface.basicontologyinterface property)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.edge_index"]], "entailed_edge_index (oaklib.interfaces.basic_ontology_interface.basicontologyinterface property)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.entailed_edge_index"]], "entities() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.entities"]], "entities_metadata_statements() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.entities_metadata_statements"]], "entity_alias_map() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.entity_alias_map"]], "entity_aliases() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.entity_aliases"]], "entity_metadata_map() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.entity_metadata_map"]], "exclude_owl_top_and_bottom (oaklib.interfaces.basic_ontology_interface.basicontologyinterface attribute)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.exclude_owl_top_and_bottom"]], "get_curies_by_label() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.get_curies_by_label"]], "get_definition_by_curie() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.get_definition_by_curie"]], "get_label_by_curie() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.get_label_by_curie"]], "get_labels_for_curies() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.get_labels_for_curies"]], "get_prefix_map() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.get_prefix_map"]], "hierarchical_parents() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.hierarchical_parents"]], "incoming_relationship_map() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.incoming_relationship_map"]], "incoming_relationships() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.incoming_relationships"]], "label() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.label"]], "labels() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.labels"]], "languages() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.languages"]], "leafs() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.leafs"]], "multilingual (oaklib.interfaces.basic_ontology_interface.basicontologyinterface property)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.multilingual"]], "multilingual_labels() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.multilingual_labels"]], "obsoletes() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.obsoletes"]], "obsoletes_migration_relationships() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.obsoletes_migration_relationships"]], "ontologies() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.ontologies"]], "ontology_curies() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.ontology_curies"]], "ontology_metadata_map() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.ontology_metadata_map"]], "ontology_metamodel_mapper (oaklib.interfaces.basic_ontology_interface.basicontologyinterface attribute)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.ontology_metamodel_mapper"]], "ontology_versions() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.ontology_versions"]], "outgoing_relationship_map() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.outgoing_relationship_map"]], "outgoing_relationships() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.outgoing_relationships"]], "owl_type() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.owl_type"]], "owl_types() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.owl_types"]], "precompute_lookups() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.precompute_lookups"]], "prefix_map() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.prefix_map"]], "query() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.query"]], "relationships() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.relationships"]], "relationships_metadata() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.relationships_metadata"]], "roots() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.roots"]], "save() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.save"]], "set_label() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.set_label"]], "set_metamodel_mappings() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.set_metamodel_mappings"]], "simple_mappings() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.simple_mappings"]], "simple_mappings_by_curie() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.simple_mappings_by_curie"]], "singletons() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.singletons"]], "strict (oaklib.interfaces.basic_ontology_interface.basicontologyinterface attribute)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.strict"]], "subset_curies() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.subset_curies"]], "subset_members() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.subset_members"]], "subsets() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.subsets"]], "terms_categories() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.terms_categories"]], "terms_subsets() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.terms_subsets"]], "uri_to_curie() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.uri_to_curie"]], "classenrichmentcalculationinterface (class in oaklib.interfaces.class_enrichment_calculation_interface)": [[1167, "oaklib.interfaces.class_enrichment_calculation_interface.ClassEnrichmentCalculationInterface"]], "create_self_associations() (oaklib.interfaces.class_enrichment_calculation_interface.classenrichmentcalculationinterface method)": [[1167, "oaklib.interfaces.class_enrichment_calculation_interface.ClassEnrichmentCalculationInterface.create_self_associations"]], "enriched_classes() (oaklib.interfaces.class_enrichment_calculation_interface.classenrichmentcalculationinterface method)": [[1167, "oaklib.interfaces.class_enrichment_calculation_interface.ClassEnrichmentCalculationInterface.enriched_classes"]], "differinterface (class in oaklib.interfaces.differ_interface)": [[1168, "oaklib.interfaces.differ_interface.DifferInterface"]], "autosave (oaklib.interfaces.differ_interface.differinterface attribute)": [[1168, "oaklib.interfaces.differ_interface.DifferInterface.autosave"]], "compare_ontology_term_lists() (oaklib.interfaces.differ_interface.differinterface method)": [[1168, "oaklib.interfaces.differ_interface.DifferInterface.compare_ontology_term_lists"]], "diff() (oaklib.interfaces.differ_interface.differinterface method)": [[1168, "oaklib.interfaces.differ_interface.DifferInterface.diff"]], "diff_summary() (oaklib.interfaces.differ_interface.differinterface method)": [[1168, "oaklib.interfaces.differ_interface.DifferInterface.diff_summary"]], "exclude_owl_top_and_bottom (oaklib.interfaces.differ_interface.differinterface attribute)": [[1168, "oaklib.interfaces.differ_interface.DifferInterface.exclude_owl_top_and_bottom"]], "dumperinterface (class in oaklib.interfaces.dumper_interface)": [[1169, "oaklib.interfaces.dumper_interface.DumperInterface"]], "autosave (oaklib.interfaces.dumper_interface.dumperinterface attribute)": [[1169, "oaklib.interfaces.dumper_interface.DumperInterface.autosave"]], "dump() (oaklib.interfaces.dumper_interface.dumperinterface method)": [[1169, "oaklib.interfaces.dumper_interface.DumperInterface.dump"]], "exclude_owl_top_and_bottom (oaklib.interfaces.dumper_interface.dumperinterface attribute)": [[1169, "oaklib.interfaces.dumper_interface.DumperInterface.exclude_owl_top_and_bottom"]], "mappingproviderinterface (class in oaklib.interfaces.mapping_provider_interface)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface"]], "all_sssom_mappings() (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface method)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.all_sssom_mappings"]], "autosave (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface attribute)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.autosave"]], "create_normalization_map() (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface method)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.create_normalization_map"]], "exclude_owl_top_and_bottom (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface attribute)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.exclude_owl_top_and_bottom"]], "get_sssom_mappings_by_curie() (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface method)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.get_sssom_mappings_by_curie"]], "get_transitive_mappings_by_curie() (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface method)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.get_transitive_mappings_by_curie"]], "normalize() (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface method)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.normalize"]], "normalize_prefix() (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface method)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.normalize_prefix"]], "sssom_mappings() (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface method)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.sssom_mappings"]], "sssom_mappings_by_source() (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface method)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.sssom_mappings_by_source"]], "obographinterface (class in oaklib.interfaces.obograph_interface)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface"]], "traversalconfiguration (class in oaklib.interfaces.obograph_interface)": [[1172, "oaklib.interfaces.obograph_interface.TraversalConfiguration"]], "add_metadata() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.add_metadata"]], "ancestor_graph() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.ancestor_graph"]], "ancestors() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.ancestors"]], "as_obograph() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.as_obograph"]], "descendant_count() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.descendant_count"]], "descendant_graph() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.descendant_graph"]], "descendants() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.descendants"]], "disable_transitive_query_cache() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.disable_transitive_query_cache"]], "disjoint_class_expressions_axioms() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.disjoint_class_expressions_axioms"]], "edges() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.edges"]], "enable_transitive_query_cache() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.enable_transitive_query_cache"]], "extract_graph() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.extract_graph"]], "load_graph() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.load_graph"]], "logical_definitions() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.logical_definitions"]], "node() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.node"]], "nodes() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.nodes"]], "paths() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.paths"]], "relationships_to_graph() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.relationships_to_graph"]], "subgraph_from_traversal() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.subgraph_from_traversal"]], "synonym_map_for_curies() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.synonym_map_for_curies"]], "walk_up_relationship_graph() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.walk_up_relationship_graph"]], "owlinterface (class in oaklib.interfaces.owl_interface)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface"]], "annotation_assertion_axioms() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.annotation_assertion_axioms"]], "axiom_is_about() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.axiom_is_about"]], "axiom_references() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.axiom_references"]], "disjoint_pairs() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.disjoint_pairs"]], "equivalence_axioms() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.equivalence_axioms"]], "is_disjoint() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.is_disjoint"]], "is_satisfiable() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.is_satisfiable"]], "property_characteristics() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.property_characteristics"]], "reasoner_configurations() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.reasoner_configurations"]], "simple_subproperty_of_chains() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.simple_subproperty_of_chains"]], "subclass_axioms() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.subclass_axioms"]], "transitive_object_properties() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.transitive_object_properties"]], "patcherinterface (class in oaklib.interfaces.patcher_interface)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface"]], "apply_patch() (oaklib.interfaces.patcher_interface.patcherinterface method)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface.apply_patch"]], "auto_add_contributor_using (oaklib.interfaces.patcher_interface.patcherinterface attribute)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface.auto_add_contributor_using"]], "expand_change() (oaklib.interfaces.patcher_interface.patcherinterface method)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface.expand_change"]], "expand_changes() (oaklib.interfaces.patcher_interface.patcherinterface method)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface.expand_changes"]], "ignore_invalid_changes (oaklib.interfaces.patcher_interface.patcherinterface attribute)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface.ignore_invalid_changes"]], "migrate_curies() (oaklib.interfaces.patcher_interface.patcherinterface method)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface.migrate_curies"]], "reverse_changes() (oaklib.interfaces.patcher_interface.patcherinterface method)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface.reverse_changes"]], "save() (oaklib.interfaces.patcher_interface.patcherinterface method)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface.save"]], "undo() (oaklib.interfaces.patcher_interface.patcherinterface method)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface.undo"]], "relationgraphinterface (class in oaklib.interfaces.relation_graph_interface)": [[1175, "oaklib.interfaces.relation_graph_interface.RelationGraphInterface"]], "autosave (oaklib.interfaces.relation_graph_interface.relationgraphinterface attribute)": [[1175, "oaklib.interfaces.relation_graph_interface.RelationGraphInterface.autosave"]], "entailed_incoming_relationships() (oaklib.interfaces.relation_graph_interface.relationgraphinterface method)": [[1175, "oaklib.interfaces.relation_graph_interface.RelationGraphInterface.entailed_incoming_relationships"]], "entailed_outgoing_relationships() (oaklib.interfaces.relation_graph_interface.relationgraphinterface method)": [[1175, "oaklib.interfaces.relation_graph_interface.RelationGraphInterface.entailed_outgoing_relationships"]], "entailed_relationships_between() (oaklib.interfaces.relation_graph_interface.relationgraphinterface method)": [[1175, "oaklib.interfaces.relation_graph_interface.RelationGraphInterface.entailed_relationships_between"]], "exclude_owl_top_and_bottom (oaklib.interfaces.relation_graph_interface.relationgraphinterface attribute)": [[1175, "oaklib.interfaces.relation_graph_interface.RelationGraphInterface.exclude_owl_top_and_bottom"]], "searchconfiguration (class in oaklib.interfaces.search_interface)": [[1176, "oaklib.interfaces.search_interface.SearchConfiguration"]], "searchinterface (class in oaklib.interfaces.search_interface)": [[1176, "oaklib.interfaces.search_interface.SearchInterface"]], "autosave (oaklib.interfaces.search_interface.searchinterface attribute)": [[1176, "oaklib.interfaces.search_interface.SearchInterface.autosave"]], "basic_search() (oaklib.interfaces.search_interface.searchinterface method)": [[1176, "oaklib.interfaces.search_interface.SearchInterface.basic_search"]], "exclude_owl_top_and_bottom (oaklib.interfaces.search_interface.searchinterface attribute)": [[1176, "oaklib.interfaces.search_interface.SearchInterface.exclude_owl_top_and_bottom"]], "multiterm_search() (oaklib.interfaces.search_interface.searchinterface method)": [[1176, "oaklib.interfaces.search_interface.SearchInterface.multiterm_search"]], "semanticsimilarityinterface (class in oaklib.interfaces.semsim_interface)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface"]], "all_by_all_pairwise_similarity() (oaklib.interfaces.semsim_interface.semanticsimilarityinterface method)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface.all_by_all_pairwise_similarity"]], "cached_information_content_map (oaklib.interfaces.semsim_interface.semanticsimilarityinterface attribute)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface.cached_information_content_map"]], "common_ancestors() (oaklib.interfaces.semsim_interface.semanticsimilarityinterface method)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface.common_ancestors"]], "get_information_content() (oaklib.interfaces.semsim_interface.semanticsimilarityinterface method)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface.get_information_content"]], "information_content_scores() (oaklib.interfaces.semsim_interface.semanticsimilarityinterface method)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface.information_content_scores"]], "most_recent_common_ancestors() (oaklib.interfaces.semsim_interface.semanticsimilarityinterface method)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface.most_recent_common_ancestors"]], "multiset_most_recent_common_ancestors() (oaklib.interfaces.semsim_interface.semanticsimilarityinterface method)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface.multiset_most_recent_common_ancestors"]], "pairwise_similarity() (oaklib.interfaces.semsim_interface.semanticsimilarityinterface method)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface.pairwise_similarity"]], "setwise_most_recent_common_ancestors() (oaklib.interfaces.semsim_interface.semanticsimilarityinterface method)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface.setwise_most_recent_common_ancestors"]], "subsetterinterface (class in oaklib.interfaces.subsetter_interface)": [[1178, "oaklib.interfaces.subsetter_interface.SubsetterInterface"]], "autosave (oaklib.interfaces.subsetter_interface.subsetterinterface attribute)": [[1178, "oaklib.interfaces.subsetter_interface.SubsetterInterface.autosave"]], "exclude_owl_top_and_bottom (oaklib.interfaces.subsetter_interface.subsetterinterface attribute)": [[1178, "oaklib.interfaces.subsetter_interface.SubsetterInterface.exclude_owl_top_and_bottom"]], "extract_subset_ontology() (oaklib.interfaces.subsetter_interface.subsetterinterface method)": [[1178, "oaklib.interfaces.subsetter_interface.SubsetterInterface.extract_subset_ontology"]], "gap_fill_relationships() (oaklib.interfaces.subsetter_interface.subsetterinterface method)": [[1178, "oaklib.interfaces.subsetter_interface.SubsetterInterface.gap_fill_relationships"]], "summarystatisticsinterface (class in oaklib.interfaces.summary_statistics_interface)": [[1179, "oaklib.interfaces.summary_statistics_interface.SummaryStatisticsInterface"]], "branch_summary_statistics() (oaklib.interfaces.summary_statistics_interface.summarystatisticsinterface method)": [[1179, "oaklib.interfaces.summary_statistics_interface.SummaryStatisticsInterface.branch_summary_statistics"]], "global_summary_statistics() (oaklib.interfaces.summary_statistics_interface.summarystatisticsinterface method)": [[1179, "oaklib.interfaces.summary_statistics_interface.SummaryStatisticsInterface.global_summary_statistics"]], "metadata_property_summary_statistics() (oaklib.interfaces.summary_statistics_interface.summarystatisticsinterface method)": [[1179, "oaklib.interfaces.summary_statistics_interface.SummaryStatisticsInterface.metadata_property_summary_statistics"]], "summary_statistic_description() (oaklib.interfaces.summary_statistics_interface.summarystatisticsinterface method)": [[1179, "oaklib.interfaces.summary_statistics_interface.SummaryStatisticsInterface.summary_statistic_description"]], "textannotation (class in oaklib.datamodels.text_annotator)": [[1180, "oaklib.datamodels.text_annotator.TextAnnotation"]], "textannotatorinterface (class in oaklib.interfaces.text_annotator_interface)": [[1180, "oaklib.interfaces.text_annotator_interface.TextAnnotatorInterface"]], "annotate_file() (oaklib.interfaces.text_annotator_interface.textannotatorinterface method)": [[1180, "oaklib.interfaces.text_annotator_interface.TextAnnotatorInterface.annotate_file"]], "annotate_tabular_file() (oaklib.interfaces.text_annotator_interface.textannotatorinterface method)": [[1180, "oaklib.interfaces.text_annotator_interface.TextAnnotatorInterface.annotate_tabular_file"]], "annotate_text() (oaklib.interfaces.text_annotator_interface.textannotatorinterface method)": [[1180, "oaklib.interfaces.text_annotator_interface.TextAnnotatorInterface.annotate_text"]], "cache_directory (oaklib.interfaces.text_annotator_interface.textannotatorinterface attribute)": [[1180, "oaklib.interfaces.text_annotator_interface.TextAnnotatorInterface.cache_directory"]], "lexical_index (oaklib.interfaces.text_annotator_interface.textannotatorinterface attribute)": [[1180, "oaklib.interfaces.text_annotator_interface.TextAnnotatorInterface.lexical_index"]], "rule_collection (oaklib.interfaces.text_annotator_interface.textannotatorinterface attribute)": [[1180, "oaklib.interfaces.text_annotator_interface.TextAnnotatorInterface.rule_collection"]], "validatorinterface (class in oaklib.interfaces.validator_interface)": [[1181, "oaklib.interfaces.validator_interface.ValidatorInterface"]], "autosave (oaklib.interfaces.validator_interface.validatorinterface attribute)": [[1181, "oaklib.interfaces.validator_interface.ValidatorInterface.autosave"]], "exclude_owl_top_and_bottom (oaklib.interfaces.validator_interface.validatorinterface attribute)": [[1181, "oaklib.interfaces.validator_interface.ValidatorInterface.exclude_owl_top_and_bottom"]], "is_coherent() (oaklib.interfaces.validator_interface.validatorinterface method)": [[1181, "oaklib.interfaces.validator_interface.ValidatorInterface.is_coherent"]], "repair() (oaklib.interfaces.validator_interface.validatorinterface method)": [[1181, "oaklib.interfaces.validator_interface.ValidatorInterface.repair"]], "term_curies_without_definitions() (oaklib.interfaces.validator_interface.validatorinterface method)": [[1181, "oaklib.interfaces.validator_interface.ValidatorInterface.term_curies_without_definitions"]], "unsatisfiable_classes() (oaklib.interfaces.validator_interface.validatorinterface method)": [[1181, "oaklib.interfaces.validator_interface.ValidatorInterface.unsatisfiable_classes"]], "validate() (oaklib.interfaces.validator_interface.validatorinterface method)": [[1181, "oaklib.interfaces.validator_interface.ValidatorInterface.validate"]], "validate_mappings() (oaklib.interfaces.validator_interface.validatorinterface method)": [[1181, "oaklib.interfaces.validator_interface.ValidatorInterface.validate_mappings"]], "add_associations() (in module oaklib.selector)": [[1182, "oaklib.selector.add_associations"]], "get_adapter() (in module oaklib.selector)": [[1182, "oaklib.selector.get_adapter"]], "get_implementation_class_from_scheme() (in module oaklib.selector)": [[1182, "oaklib.selector.get_implementation_class_from_scheme"]], "get_implementation_from_shorthand() (in module oaklib.selector)": [[1182, "oaklib.selector.get_implementation_from_shorthand"]], "get_resource_from_shorthand() (in module oaklib.selector)": [[1182, "oaklib.selector.get_resource_from_shorthand"]], "module": [[1182, "module-oaklib.selector"], [1183, "module-oaklib.utilities.apikey_manager"], [1184, "module-oaklib.utilities.graph.networkx_bridge"], [1185, "module-oaklib.utilities.graph.relationship_walker"], [1186, "module-oaklib.utilities.lexical.lexical_indexer"], [1187, "module-oaklib.utilities.obograph_utils"], [1188, "module-oaklib.utilities.subsets.slimmer_utils"], [1189, "module-oaklib.utilities.table_filler"], [1190, "module-oaklib.utilities.taxon"], [1193, "module-oaklib.datamodels.search"]], "oaklib.selector": [[1182, "module-oaklib.selector"]], "oaklib.utilities.apikey_manager": [[1183, "module-oaklib.utilities.apikey_manager"]], "oaklib.utilities.graph.networkx_bridge": [[1184, "module-oaklib.utilities.graph.networkx_bridge"]], "oaklib.utilities.graph.relationship_walker": [[1185, "module-oaklib.utilities.graph.relationship_walker"]], "oaklib.utilities.lexical.lexical_indexer": [[1186, "module-oaklib.utilities.lexical.lexical_indexer"]], "oaklib.utilities.obograph_utils": [[1187, "module-oaklib.utilities.obograph_utils"]], "oaklib.utilities.subsets.slimmer_utils": [[1188, "module-oaklib.utilities.subsets.slimmer_utils"]], "oaklib.utilities.table_filler": [[1189, "module-oaklib.utilities.table_filler"]], "oaklib.utilities.taxon": [[1190, "module-oaklib.utilities.taxon"]], "searchconfiguration (class in oaklib.datamodels.search)": [[1193, "oaklib.datamodels.search.SearchConfiguration"]], "create_search_configuration() (in module oaklib.datamodels.search)": [[1193, "oaklib.datamodels.search.create_search_configuration"]], "oaklib.datamodels.search": [[1193, "module-oaklib.datamodels.search"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["cli", "concepts", "contributing", "datamodels/association/Association", "datamodels/association/AssociationChange", "datamodels/association/Boolean", "datamodels/association/Curie", "datamodels/association/Date", "datamodels/association/DateOrDatetime", "datamodels/association/Datetime", "datamodels/association/Decimal", "datamodels/association/Double", "datamodels/association/Float", "datamodels/association/Integer", "datamodels/association/Jsonpath", "datamodels/association/Jsonpointer", "datamodels/association/Ncname", "datamodels/association/NegatedAssociation", "datamodels/association/Nodeidentifier", "datamodels/association/Objectidentifier", "datamodels/association/PairwiseCoAssociation", "datamodels/association/ParserConfiguration", "datamodels/association/PositiveOrNegativeAssociation", "datamodels/association/PropertyValue", "datamodels/association/RollupGroup", "datamodels/association/Sparqlpath", "datamodels/association/String", "datamodels/association/Time", "datamodels/association/Uri", "datamodels/association/Uriorcurie", "datamodels/association/aggregator_knowledge_source", "datamodels/association/association", "datamodels/association/associations", "datamodels/association/associations_for_subjects_in_common", "datamodels/association/closure_delta", "datamodels/association/closure_information_content_delta", "datamodels/association/closure_predicates", "datamodels/association/comments", "datamodels/association/core_triple", "datamodels/association/creation_date", "datamodels/association/date", "datamodels/association/denormalized_slot", "datamodels/association/diff_slot", "datamodels/association/evidence_type", "datamodels/association/group_object", "datamodels/association/include_association_attributes", "datamodels/association/index", "datamodels/association/is_creation", "datamodels/association/is_deletion", "datamodels/association/is_generalization", "datamodels/association/is_migration", "datamodels/association/is_specialization", "datamodels/association/modification_date", "datamodels/association/negated", "datamodels/association/new_date", "datamodels/association/new_object", "datamodels/association/new_predicate", "datamodels/association/number_subject_unique_to_entity1", "datamodels/association/number_subject_unique_to_entity2", "datamodels/association/number_subjects_in_common", "datamodels/association/object", "datamodels/association/object1", "datamodels/association/object1_label", "datamodels/association/object2", "datamodels/association/object2_label", "datamodels/association/object_closure", "datamodels/association/object_closure_label", "datamodels/association/object_label", "datamodels/association/old_date", "datamodels/association/old_object", "datamodels/association/old_object_obsolete", "datamodels/association/old_predicate", "datamodels/association/original_object", "datamodels/association/original_predicate", "datamodels/association/original_subject", "datamodels/association/predicate", "datamodels/association/predicate_label", "datamodels/association/preserve_negated_associations", "datamodels/association/primary_knowledge_source", "datamodels/association/property_values", "datamodels/association/publication_is_added", "datamodels/association/publication_is_deleted", "datamodels/association/publications", "datamodels/association/sub_groups", "datamodels/association/subject", "datamodels/association/subject_closure", "datamodels/association/subject_closure_label", "datamodels/association/subject_label", "datamodels/association/subjects_in_common", "datamodels/association/summary_group", "datamodels/association/supporting_objects", "datamodels/class-enrichment/Boolean", "datamodels/class-enrichment/ClassEnrichmentConfiguration", "datamodels/class-enrichment/ClassEnrichmentResult", "datamodels/class-enrichment/ClassEnrichmentResultSet", "datamodels/class-enrichment/Curie", "datamodels/class-enrichment/Date", "datamodels/class-enrichment/DateOrDatetime", "datamodels/class-enrichment/Datetime", "datamodels/class-enrichment/Decimal", "datamodels/class-enrichment/Double", "datamodels/class-enrichment/Float", "datamodels/class-enrichment/Integer", "datamodels/class-enrichment/Jsonpath", "datamodels/class-enrichment/Jsonpointer", "datamodels/class-enrichment/Ncname", "datamodels/class-enrichment/Nodeidentifier", "datamodels/class-enrichment/Objectidentifier", "datamodels/class-enrichment/Position", "datamodels/class-enrichment/SortFieldEnum", "datamodels/class-enrichment/Sparqlpath", "datamodels/class-enrichment/String", "datamodels/class-enrichment/Time", "datamodels/class-enrichment/Uri", "datamodels/class-enrichment/Uriorcurie", "datamodels/class-enrichment/ancestor_of_more_informative_result", "datamodels/class-enrichment/background_count", "datamodels/class-enrichment/background_total", "datamodels/class-enrichment/class-enrichment", "datamodels/class-enrichment/class_id", "datamodels/class-enrichment/class_label", "datamodels/class-enrichment/descendant_of_more_informative_result", "datamodels/class-enrichment/direction", "datamodels/class-enrichment/false_discovery_rate", "datamodels/class-enrichment/fold_enrichment", "datamodels/class-enrichment/index", "datamodels/class-enrichment/p_value", "datamodels/class-enrichment/p_value_adjusted", "datamodels/class-enrichment/p_value_cutoff", "datamodels/class-enrichment/probability", "datamodels/class-enrichment/rank", "datamodels/class-enrichment/results", "datamodels/class-enrichment/sample_count", "datamodels/class-enrichment/sample_total", "datamodels/cross-ontology-diff/Boolean", "datamodels/cross-ontology-diff/Curie", "datamodels/cross-ontology-diff/Date", "datamodels/cross-ontology-diff/DateOrDatetime", "datamodels/cross-ontology-diff/Datetime", "datamodels/cross-ontology-diff/Decimal", "datamodels/cross-ontology-diff/DiffCategory", "datamodels/cross-ontology-diff/Double", "datamodels/cross-ontology-diff/EntityReference", "datamodels/cross-ontology-diff/Float", "datamodels/cross-ontology-diff/Integer", "datamodels/cross-ontology-diff/Jsonpath", "datamodels/cross-ontology-diff/Jsonpointer", "datamodels/cross-ontology-diff/Label", "datamodels/cross-ontology-diff/MappingCardinalityEnum", "datamodels/cross-ontology-diff/Ncname", "datamodels/cross-ontology-diff/Nodeidentifier", "datamodels/cross-ontology-diff/Objectidentifier", "datamodels/cross-ontology-diff/Position", "datamodels/cross-ontology-diff/RelationalDiff", "datamodels/cross-ontology-diff/Source", "datamodels/cross-ontology-diff/Sparqlpath", "datamodels/cross-ontology-diff/String", "datamodels/cross-ontology-diff/StructureDiffResultSet", "datamodels/cross-ontology-diff/Time", "datamodels/cross-ontology-diff/Uri", "datamodels/cross-ontology-diff/Uriorcurie", "datamodels/cross-ontology-diff/category", "datamodels/cross-ontology-diff/cross-ontology-diff", "datamodels/cross-ontology-diff/index", "datamodels/cross-ontology-diff/is_functional", "datamodels/cross-ontology-diff/label", "datamodels/cross-ontology-diff/left_object_id", "datamodels/cross-ontology-diff/left_object_is_functional", "datamodels/cross-ontology-diff/left_object_label", "datamodels/cross-ontology-diff/left_object_name", "datamodels/cross-ontology-diff/left_predicate_id", "datamodels/cross-ontology-diff/left_predicate_label", "datamodels/cross-ontology-diff/left_predicate_name", "datamodels/cross-ontology-diff/left_side", "datamodels/cross-ontology-diff/left_source", "datamodels/cross-ontology-diff/left_subject_id", "datamodels/cross-ontology-diff/left_subject_is_functional", "datamodels/cross-ontology-diff/left_subject_label", "datamodels/cross-ontology-diff/left_subject_name", "datamodels/cross-ontology-diff/object", "datamodels/cross-ontology-diff/object_mapping_cardinality", "datamodels/cross-ontology-diff/object_mapping_predicate", "datamodels/cross-ontology-diff/predicate", "datamodels/cross-ontology-diff/results", "datamodels/cross-ontology-diff/right_intermediate_ids", "datamodels/cross-ontology-diff/right_object_id", "datamodels/cross-ontology-diff/right_object_label", "datamodels/cross-ontology-diff/right_object_name", "datamodels/cross-ontology-diff/right_predicate_ids", "datamodels/cross-ontology-diff/right_predicate_labels", "datamodels/cross-ontology-diff/right_predicate_names", "datamodels/cross-ontology-diff/right_side", "datamodels/cross-ontology-diff/right_source", "datamodels/cross-ontology-diff/right_subject_id", "datamodels/cross-ontology-diff/right_subject_label", "datamodels/cross-ontology-diff/right_subject_name", "datamodels/cross-ontology-diff/side", "datamodels/cross-ontology-diff/subject", "datamodels/cross-ontology-diff/subject_mapping_cardinality", "datamodels/cross-ontology-diff/subject_mapping_predicate", "datamodels/cross-ontology-diff/types", "datamodels/funowl/index", "datamodels/index", "datamodels/item-list/Boolean", "datamodels/item-list/Curie", "datamodels/item-list/Date", "datamodels/item-list/DateOrDatetime", "datamodels/item-list/Datetime", "datamodels/item-list/Decimal", "datamodels/item-list/Double", "datamodels/item-list/Float", "datamodels/item-list/Integer", "datamodels/item-list/ItemList", "datamodels/item-list/ItemListCollection", "datamodels/item-list/ItemListOrderType", "datamodels/item-list/Jsonpath", "datamodels/item-list/Jsonpointer", "datamodels/item-list/ListItem", "datamodels/item-list/Ncname", "datamodels/item-list/Nodeidentifier", "datamodels/item-list/Objectidentifier", "datamodels/item-list/Sparqlpath", "datamodels/item-list/String", "datamodels/item-list/Thing", "datamodels/item-list/Time", "datamodels/item-list/Uri", "datamodels/item-list/Uriorcurie", "datamodels/item-list/additionalType", "datamodels/item-list/categories", "datamodels/item-list/description", "datamodels/item-list/elementId", "datamodels/item-list/id", "datamodels/item-list/idType", "datamodels/item-list/identifiers", "datamodels/item-list/index", "datamodels/item-list/item", "datamodels/item-list/itemList", "datamodels/item-list/itemListElements", "datamodels/item-list/itemLists", "datamodels/item-list/itemMetadataMap", "datamodels/item-list/keywords", "datamodels/item-list/name", "datamodels/item-list/numberOfItems", "datamodels/item-list/position", "datamodels/item-list/previousItem", "datamodels/item-list/type", "datamodels/item-list/url", "datamodels/item-list/wasGeneratedBy", "datamodels/kgcl/index", "datamodels/lexical-index/Activity", "datamodels/lexical-index/Any", "datamodels/lexical-index/Boolean", "datamodels/lexical-index/Curie", "datamodels/lexical-index/Date", "datamodels/lexical-index/DateOrDatetime", "datamodels/lexical-index/Datetime", "datamodels/lexical-index/Decimal", "datamodels/lexical-index/Double", "datamodels/lexical-index/Float", "datamodels/lexical-index/Integer", "datamodels/lexical-index/Jsonpath", "datamodels/lexical-index/Jsonpointer", "datamodels/lexical-index/LexicalGrouping", "datamodels/lexical-index/LexicalIndex", "datamodels/lexical-index/LexicalTransformation", "datamodels/lexical-index/LexicalTransformationPipeline", "datamodels/lexical-index/Ncname", "datamodels/lexical-index/Nodeidentifier", "datamodels/lexical-index/Objectidentifier", "datamodels/lexical-index/RelationshipToTerm", "datamodels/lexical-index/Sparqlpath", "datamodels/lexical-index/String", "datamodels/lexical-index/Time", "datamodels/lexical-index/TransformationType", "datamodels/lexical-index/Uri", "datamodels/lexical-index/Uriorcurie", "datamodels/lexical-index/element", "datamodels/lexical-index/element_term", "datamodels/lexical-index/groupings", "datamodels/lexical-index/index", "datamodels/lexical-index/lexical-index", "datamodels/lexical-index/lexican-index", "datamodels/lexical-index/name", "datamodels/lexical-index/params", "datamodels/lexical-index/pipeline", "datamodels/lexical-index/pipelines", "datamodels/lexical-index/predicate", "datamodels/lexical-index/relationships", "datamodels/lexical-index/source", "datamodels/lexical-index/synonymized", "datamodels/lexical-index/term", "datamodels/lexical-index/transformations", "datamodels/lexical-index/type", "datamodels/lexical-index/types", "datamodels/mapping-rules/Activity", "datamodels/mapping-rules/Any", "datamodels/mapping-rules/Boolean", "datamodels/mapping-rules/Curie", "datamodels/mapping-rules/Date", "datamodels/mapping-rules/DateOrDatetime", "datamodels/mapping-rules/Datetime", "datamodels/mapping-rules/Decimal", "datamodels/mapping-rules/Double", "datamodels/mapping-rules/Float", "datamodels/mapping-rules/Integer", "datamodels/mapping-rules/Jsonpath", "datamodels/mapping-rules/Jsonpointer", "datamodels/mapping-rules/LexicalGrouping", "datamodels/mapping-rules/LexicalIndex", "datamodels/mapping-rules/LexicalTransformation", "datamodels/mapping-rules/LexicalTransformationPipeline", "datamodels/mapping-rules/MappingRule", "datamodels/mapping-rules/MappingRuleCollection", "datamodels/mapping-rules/Ncname", "datamodels/mapping-rules/Nodeidentifier", "datamodels/mapping-rules/Objectidentifier", "datamodels/mapping-rules/Postcondition", "datamodels/mapping-rules/Precondition", "datamodels/mapping-rules/RelationshipToTerm", "datamodels/mapping-rules/Sparqlpath", "datamodels/mapping-rules/String", "datamodels/mapping-rules/Synonymizer", "datamodels/mapping-rules/Test", "datamodels/mapping-rules/Time", "datamodels/mapping-rules/TransformationType", "datamodels/mapping-rules/Uri", "datamodels/mapping-rules/Uriorcurie", "datamodels/mapping-rules/description", "datamodels/mapping-rules/element", "datamodels/mapping-rules/element_term", "datamodels/mapping-rules/groupings", "datamodels/mapping-rules/index", "datamodels/mapping-rules/input", "datamodels/mapping-rules/lexical-index", "datamodels/mapping-rules/lexican-index", "datamodels/mapping-rules/mapping-rules", "datamodels/mapping-rules/mapping-rules-datamodel", "datamodels/mapping-rules/mapping_source_one_of", "datamodels/mapping-rules/match", "datamodels/mapping-rules/match_scope", "datamodels/mapping-rules/minimum_confidence", "datamodels/mapping-rules/name", "datamodels/mapping-rules/object_match_field_one_of", "datamodels/mapping-rules/object_source_one_of", "datamodels/mapping-rules/oneway", "datamodels/mapping-rules/output", "datamodels/mapping-rules/params", "datamodels/mapping-rules/pipeline", "datamodels/mapping-rules/pipelines", "datamodels/mapping-rules/postconditions", "datamodels/mapping-rules/preconditions", "datamodels/mapping-rules/predicate", "datamodels/mapping-rules/predicate_id", "datamodels/mapping-rules/predicate_id_one_of", "datamodels/mapping-rules/prefix", "datamodels/mapping-rules/qualifier", "datamodels/mapping-rules/relationships", "datamodels/mapping-rules/replacement", "datamodels/mapping-rules/rules", "datamodels/mapping-rules/source", "datamodels/mapping-rules/subject_match_field_one_of", "datamodels/mapping-rules/subject_source_one_of", "datamodels/mapping-rules/synonymized", "datamodels/mapping-rules/synonymizer", "datamodels/mapping-rules/term", "datamodels/mapping-rules/tests", "datamodels/mapping-rules/the_rule", "datamodels/mapping-rules/transformations", "datamodels/mapping-rules/transformations_included_in", "datamodels/mapping-rules/type", "datamodels/mapping-rules/types", "datamodels/mapping-rules/weight", "datamodels/obograph/Axiom", "datamodels/obograph/BasicPropertyValue", "datamodels/obograph/Boolean", "datamodels/obograph/Curie", "datamodels/obograph/Date", "datamodels/obograph/DateOrDatetime", "datamodels/obograph/Datetime", "datamodels/obograph/Decimal", "datamodels/obograph/DefinitionPropertyValue", "datamodels/obograph/DisjointClassExpressionsAxiom", "datamodels/obograph/DomainRangeAxiom", "datamodels/obograph/Double", "datamodels/obograph/Edge", "datamodels/obograph/EquivalentNodesSet", "datamodels/obograph/ExistentialRestrictionExpression", "datamodels/obograph/Float", "datamodels/obograph/Graph", "datamodels/obograph/GraphDocument", "datamodels/obograph/Integer", "datamodels/obograph/Jsonpath", "datamodels/obograph/Jsonpointer", "datamodels/obograph/LogicalDefinitionAxiom", "datamodels/obograph/Meta", "datamodels/obograph/Ncname", "datamodels/obograph/Node", "datamodels/obograph/NodeTypeEnum", "datamodels/obograph/Nodeidentifier", "datamodels/obograph/Objectidentifier", "datamodels/obograph/OboIdentifierString", "datamodels/obograph/PredsEnum", "datamodels/obograph/PrefixDeclaration", "datamodels/obograph/PropertyChainAxiom", "datamodels/obograph/PropertyTypeEnum", "datamodels/obograph/PropertyValue", "datamodels/obograph/ScopeEnum", "datamodels/obograph/ScopesEnum", "datamodels/obograph/Sparqlpath", "datamodels/obograph/String", "datamodels/obograph/SubsetDefinition", "datamodels/obograph/SynonymPropertyValue", "datamodels/obograph/SynonymTypeDefinition", "datamodels/obograph/SynonymTypeIdentifierString", "datamodels/obograph/Time", "datamodels/obograph/Uri", "datamodels/obograph/Uriorcurie", "datamodels/obograph/XrefPropertyValue", "datamodels/obograph/XrefString", "datamodels/obograph/allValuesFromEdges", "datamodels/obograph/basicPropertyValues", "datamodels/obograph/chainPredicateIds", "datamodels/obograph/classExpressions", "datamodels/obograph/classIds", "datamodels/obograph/comments", "datamodels/obograph/definedClassId", "datamodels/obograph/definition", "datamodels/obograph/deprecated", "datamodels/obograph/disjointClassExpressionsAxioms", "datamodels/obograph/domainClassIds", "datamodels/obograph/domainRangeAxioms", "datamodels/obograph/edges", "datamodels/obograph/equivalentNodesSets", "datamodels/obograph/fillerId", "datamodels/obograph/genusIds", "datamodels/obograph/graphs", "datamodels/obograph/id", "datamodels/obograph/index", "datamodels/obograph/isExact", "datamodels/obograph/label", "datamodels/obograph/lang", "datamodels/obograph/lbl", "datamodels/obograph/logicalDefinitionAxioms", "datamodels/obograph/meta", "datamodels/obograph/namespace", "datamodels/obograph/nodeIds", "datamodels/obograph/nodes", "datamodels/obograph/obj", "datamodels/obograph/obographs_datamodel", "datamodels/obograph/obographs_linkml_model", "datamodels/obograph/pred", "datamodels/obograph/predicateId", "datamodels/obograph/prefix", "datamodels/obograph/prefixes", "datamodels/obograph/propertyChainAxioms", "datamodels/obograph/propertyId", "datamodels/obograph/propertyType", "datamodels/obograph/rangeClassIds", "datamodels/obograph/representativeNodeId", "datamodels/obograph/representitiveNodeId", "datamodels/obograph/restrictions", "datamodels/obograph/scope", "datamodels/obograph/sub", "datamodels/obograph/subsetDefinitions", "datamodels/obograph/subsets", "datamodels/obograph/synonymType", "datamodels/obograph/synonymTypeDefinitions", "datamodels/obograph/synonyms", "datamodels/obograph/type", "datamodels/obograph/types", "datamodels/obograph/unionEquivalentTo", "datamodels/obograph/unionEquivalentToExpression", "datamodels/obograph/val", "datamodels/obograph/valType", "datamodels/obograph/version", "datamodels/obograph/xrefs", "datamodels/ontology-metadata/Agent", "datamodels/ontology-metadata/AllotropePermittedProfile", "datamodels/ontology-metadata/AllotropeRequiredProfile", "datamodels/ontology-metadata/Annotation", "datamodels/ontology-metadata/AnnotationProperty", "datamodels/ontology-metadata/AnnotationPropertyMixin", "datamodels/ontology-metadata/Anonymous", "datamodels/ontology-metadata/AnonymousClassExpression", "datamodels/ontology-metadata/Any", "datamodels/ontology-metadata/Axiom", "datamodels/ontology-metadata/Boolean", "datamodels/ontology-metadata/CURIELiteral", "datamodels/ontology-metadata/Class", "datamodels/ontology-metadata/ClassExpression", "datamodels/ontology-metadata/Curie", "datamodels/ontology-metadata/Date", "datamodels/ontology-metadata/DateOrDatetime", "datamodels/ontology-metadata/Datetime", "datamodels/ontology-metadata/Decimal", "datamodels/ontology-metadata/DefinitionConstraintComponent", "datamodels/ontology-metadata/Double", "datamodels/ontology-metadata/Expression", "datamodels/ontology-metadata/Float", "datamodels/ontology-metadata/GoPermittedProfile", "datamodels/ontology-metadata/GoRecommendedProfile", "datamodels/ontology-metadata/GoRequiredProfile", "datamodels/ontology-metadata/HasCategory", "datamodels/ontology-metadata/HasLifeCycle", "datamodels/ontology-metadata/HasMappings", "datamodels/ontology-metadata/HasMinimalMetadata", "datamodels/ontology-metadata/HasProvenance", "datamodels/ontology-metadata/HasSynonyms", "datamodels/ontology-metadata/HasUserInformation", "datamodels/ontology-metadata/HomoSapiens", "datamodels/ontology-metadata/IEDB_alternative_term", "datamodels/ontology-metadata/ISA_alternative_term", "datamodels/ontology-metadata/Image", "datamodels/ontology-metadata/Integer", "datamodels/ontology-metadata/IriType", "datamodels/ontology-metadata/Jsonpath", "datamodels/ontology-metadata/Jsonpointer", "datamodels/ontology-metadata/LabelType", "datamodels/ontology-metadata/NCIT_definition_source", "datamodels/ontology-metadata/NCIT_term_source", "datamodels/ontology-metadata/NCIT_term_type", "datamodels/ontology-metadata/NamedIndividual", "datamodels/ontology-metadata/NamedObject", "datamodels/ontology-metadata/NarrativeText", "datamodels/ontology-metadata/Ncname", "datamodels/ontology-metadata/Nodeidentifier", "datamodels/ontology-metadata/NotObsoleteAspect", "datamodels/ontology-metadata/OBO_foundry_unique_label", "datamodels/ontology-metadata/ObiPermittedProfile", "datamodels/ontology-metadata/ObiRequiredProfile", "datamodels/ontology-metadata/ObjectProperty", "datamodels/ontology-metadata/Objectidentifier", "datamodels/ontology-metadata/ObsoleteAspect", "datamodels/ontology-metadata/Ontology", "datamodels/ontology-metadata/Ontology-Metadata", "datamodels/ontology-metadata/Property", "datamodels/ontology-metadata/PropertyExpression", "datamodels/ontology-metadata/Restriction", "datamodels/ontology-metadata/Sparqlpath", "datamodels/ontology-metadata/String", "datamodels/ontology-metadata/Subset", "datamodels/ontology-metadata/Term", "datamodels/ontology-metadata/Thing", "datamodels/ontology-metadata/TidyString", "datamodels/ontology-metadata/Time", "datamodels/ontology-metadata/TransitiveProperty", "datamodels/ontology-metadata/URLLiteral", "datamodels/ontology-metadata/Uri", "datamodels/ontology-metadata/Uriorcurie", "datamodels/ontology-metadata/allValuesFrom", "datamodels/ontology-metadata/alternative_term", "datamodels/ontology-metadata/annotatedProperty", "datamodels/ontology-metadata/annotatedSource", "datamodels/ontology-metadata/annotatedTarget", "datamodels/ontology-metadata/annotations", "datamodels/ontology-metadata/broadMatch", "datamodels/ontology-metadata/cardinality", "datamodels/ontology-metadata/category", "datamodels/ontology-metadata/changeNote", "datamodels/ontology-metadata/closeMatch", "datamodels/ontology-metadata/comment", "datamodels/ontology-metadata/complementOf", "datamodels/ontology-metadata/conformsTo", "datamodels/ontology-metadata/consider", "datamodels/ontology-metadata/contributor", "datamodels/ontology-metadata/core_property", "datamodels/ontology-metadata/created", "datamodels/ontology-metadata/created_by", "datamodels/ontology-metadata/creation_date", "datamodels/ontology-metadata/creator", "datamodels/ontology-metadata/curator_note", "datamodels/ontology-metadata/database_cross_reference", "datamodels/ontology-metadata/date", "datamodels/ontology-metadata/date_retrieved", "datamodels/ontology-metadata/defaultLanguage", "datamodels/ontology-metadata/definition", "datamodels/ontology-metadata/definition_source", "datamodels/ontology-metadata/depicted_by", "datamodels/ontology-metadata/deprecated", "datamodels/ontology-metadata/disconnected_from", "datamodels/ontology-metadata/disjointWith", "datamodels/ontology-metadata/distinctMembers", "datamodels/ontology-metadata/domain", "datamodels/ontology-metadata/editor_note", "datamodels/ontology-metadata/editor_preferred_term", "datamodels/ontology-metadata/equivalentClass", "datamodels/ontology-metadata/equivalentProperty", "datamodels/ontology-metadata/evidence", "datamodels/ontology-metadata/exactMatch", "datamodels/ontology-metadata/example_of_usage", "datamodels/ontology-metadata/excluded_axiom", "datamodels/ontology-metadata/excluded_from_QC_check", "datamodels/ontology-metadata/excluded_subClassOf", "datamodels/ontology-metadata/excluded_synonym", "datamodels/ontology-metadata/external_ontology", "datamodels/ontology-metadata/hasValue", "datamodels/ontology-metadata/has_alternative_id", "datamodels/ontology-metadata/has_axiom_label", "datamodels/ontology-metadata/has_broad_synonym", "datamodels/ontology-metadata/has_curation_status", "datamodels/ontology-metadata/has_exact_synonym", "datamodels/ontology-metadata/has_narrow_synonym", "datamodels/ontology-metadata/has_obo_namespace", "datamodels/ontology-metadata/has_obsolescence_reason", "datamodels/ontology-metadata/has_ontology_root_term", "datamodels/ontology-metadata/has_rank", "datamodels/ontology-metadata/has_related_synonym", "datamodels/ontology-metadata/has_synonym_type", "datamodels/ontology-metadata/id", "datamodels/ontology-metadata/image", "datamodels/ontology-metadata/imported_from", "datamodels/ontology-metadata/imports", "datamodels/ontology-metadata/in_subset", "datamodels/ontology-metadata/index", "datamodels/ontology-metadata/informative_property", "datamodels/ontology-metadata/intersectionOf", "datamodels/ontology-metadata/inverseOf", "datamodels/ontology-metadata/isDefinedBy", "datamodels/ontology-metadata/is_a_defining_property_chain_axiom", "datamodels/ontology-metadata/is_a_defining_property_chain_axiom_where_second_argument_is_reflexive", "datamodels/ontology-metadata/is_class_level", "datamodels/ontology-metadata/is_cyclic", "datamodels/ontology-metadata/is_inferred", "datamodels/ontology-metadata/is_metadata_tag", "datamodels/ontology-metadata/is_transitive", "datamodels/ontology-metadata/label", "datamodels/ontology-metadata/language", "datamodels/ontology-metadata/license", "datamodels/ontology-metadata/logical_predicate", "datamodels/ontology-metadata/match", "datamodels/ontology-metadata/match_aspect", "datamodels/ontology-metadata/maxQualifiedCardinality", "datamodels/ontology-metadata/members", "datamodels/ontology-metadata/minCardinality", "datamodels/ontology-metadata/minQualifiedCardinality", "datamodels/ontology-metadata/narrowMatch", "datamodels/ontology-metadata/never_in_taxon", "datamodels/ontology-metadata/notes", "datamodels/ontology-metadata/object", "datamodels/ontology-metadata/oboInOwl_id", "datamodels/ontology-metadata/oboInOwl_ontology", "datamodels/ontology-metadata/obsoletion_related_property", "datamodels/ontology-metadata/omo-schema", "datamodels/ontology-metadata/onClass", "datamodels/ontology-metadata/onProperty", "datamodels/ontology-metadata/oneOf", "datamodels/ontology-metadata/ontology_term_requester", "datamodels/ontology-metadata/page", "datamodels/ontology-metadata/predicate", "datamodels/ontology-metadata/propertyChainAxiom", "datamodels/ontology-metadata/provenance_property", "datamodels/ontology-metadata/qualifiedCardinality", "datamodels/ontology-metadata/range", "datamodels/ontology-metadata/reification_predicate", "datamodels/ontology-metadata/sameAs", "datamodels/ontology-metadata/seeAlso", "datamodels/ontology-metadata/shortcut_annotation_property", "datamodels/ontology-metadata/shorthand", "datamodels/ontology-metadata/should_conform_to", "datamodels/ontology-metadata/someValuesFrom", "datamodels/ontology-metadata/source", "datamodels/ontology-metadata/subClassOf", "datamodels/ontology-metadata/synonym", "datamodels/ontology-metadata/temporal_interpretation", "datamodels/ontology-metadata/term_editor", "datamodels/ontology-metadata/term_replaced_by", "datamodels/ontology-metadata/term_tracker_item", "datamodels/ontology-metadata/title", "datamodels/ontology-metadata/type", "datamodels/ontology-metadata/types", "datamodels/ontology-metadata/unionOf", "datamodels/ontology-metadata/url", "datamodels/ontology-metadata/versionIRI", "datamodels/ontology-metadata/versionInfo", "datamodels/ontology-metadata/version_property", "datamodels/search/Boolean", "datamodels/search/BooleanOperator", "datamodels/search/ComplexQuery", "datamodels/search/Curie", "datamodels/search/Date", "datamodels/search/DateOrDatetime", "datamodels/search/Datetime", "datamodels/search/Decimal", "datamodels/search/Double", "datamodels/search/Float", "datamodels/search/GraphFunction", "datamodels/search/Integer", "datamodels/search/Jsonpath", "datamodels/search/Jsonpointer", "datamodels/search/Ncname", "datamodels/search/Nodeidentifier", "datamodels/search/Objectidentifier", "datamodels/search/PathExpression", "datamodels/search/SearchBaseConfiguration", "datamodels/search/SearchProperty", "datamodels/search/SearchResult", "datamodels/search/SearchResultSet", "datamodels/search/SearchTerm", "datamodels/search/SearchTermSyntax", "datamodels/search/Sparqlpath", "datamodels/search/String", "datamodels/search/Time", "datamodels/search/Uri", "datamodels/search/Uriorcurie", "datamodels/search/all_of", "datamodels/search/any_of", "datamodels/search/atom", "datamodels/search/categories", "datamodels/search/configuration", "datamodels/search/cursor", "datamodels/search/force_case_insensitive", "datamodels/search/graph_predicates", "datamodels/search/include_aliases", "datamodels/search/include_definition", "datamodels/search/include_id", "datamodels/search/include_label", "datamodels/search/include_obsoletes_in_results", "datamodels/search/index", "datamodels/search/is_complete", "datamodels/search/is_fuzzy", "datamodels/search/is_partial", "datamodels/search/is_regular_expression", "datamodels/search/limit", "datamodels/search/matches_full_search_term", "datamodels/search/none_of", "datamodels/search/object_id", "datamodels/search/object_label", "datamodels/search/object_match_field", "datamodels/search/object_source", "datamodels/search/object_source_version", "datamodels/search/path_to", "datamodels/search/properties", "datamodels/search/rank", "datamodels/search/result_count", "datamodels/search/results", "datamodels/search/search-datamodel", "datamodels/search/search_term", "datamodels/search/search_terms", "datamodels/search/snippet", "datamodels/search/syntax", "datamodels/search/traversal", "datamodels/search/types", "datamodels/semsql/index", "datamodels/similarity/BestMatch", "datamodels/similarity/Boolean", "datamodels/similarity/Curie", "datamodels/similarity/Date", "datamodels/similarity/DateOrDatetime", "datamodels/similarity/Datetime", "datamodels/similarity/Decimal", "datamodels/similarity/Double", "datamodels/similarity/Float", "datamodels/similarity/Integer", "datamodels/similarity/ItemCount", "datamodels/similarity/Jsonpath", "datamodels/similarity/Jsonpointer", "datamodels/similarity/Ncname", "datamodels/similarity/NegativeLogValue", "datamodels/similarity/Nodeidentifier", "datamodels/similarity/NonNegativeFloat", "datamodels/similarity/Objectidentifier", "datamodels/similarity/PairwiseSimilarity", "datamodels/similarity/Sparqlpath", "datamodels/similarity/String", "datamodels/similarity/TermInfo", "datamodels/similarity/TermPairwiseSimilarity", "datamodels/similarity/TermSetPairwiseSimilarity", "datamodels/similarity/Time", "datamodels/similarity/Uri", "datamodels/similarity/Uriorcurie", "datamodels/similarity/ZeroToOne", "datamodels/similarity/ancestor_id", "datamodels/similarity/ancestor_information_content", "datamodels/similarity/ancestor_label", "datamodels/similarity/ancestor_source", "datamodels/similarity/average_score", "datamodels/similarity/best_score", "datamodels/similarity/cosine_similarity", "datamodels/similarity/dice_similarity", "datamodels/similarity/id", "datamodels/similarity/index", "datamodels/similarity/information_content", "datamodels/similarity/intersection_count", "datamodels/similarity/jaccard_similarity", "datamodels/similarity/label", "datamodels/similarity/match_source", "datamodels/similarity/match_source_label", "datamodels/similarity/match_subsumer", "datamodels/similarity/match_subsumer_label", "datamodels/similarity/match_target", "datamodels/similarity/match_target_label", "datamodels/similarity/metric", "datamodels/similarity/object_best_matches", "datamodels/similarity/object_id", "datamodels/similarity/object_information_content", "datamodels/similarity/object_label", "datamodels/similarity/object_source", "datamodels/similarity/object_termset", "datamodels/similarity/overlap_coefficient", "datamodels/similarity/phenodigm_score", "datamodels/similarity/score", "datamodels/similarity/similarity", "datamodels/similarity/subject_best_matches", "datamodels/similarity/subject_id", "datamodels/similarity/subject_information_content", "datamodels/similarity/subject_label", "datamodels/similarity/subject_source", "datamodels/similarity/subject_termset", "datamodels/similarity/subsumed_by_score", "datamodels/similarity/subsumes_score", "datamodels/similarity/types", "datamodels/similarity/union_count", "datamodels/sssom/index", "datamodels/summary-statistics/Agent", "datamodels/summary-statistics/Boolean", "datamodels/summary-statistics/ChangeTypeStatistic", "datamodels/summary-statistics/ContributorRole", "datamodels/summary-statistics/ContributorStatistics", "datamodels/summary-statistics/Curie", "datamodels/summary-statistics/Date", "datamodels/summary-statistics/DateOrDatetime", "datamodels/summary-statistics/Datetime", "datamodels/summary-statistics/Decimal", "datamodels/summary-statistics/Double", "datamodels/summary-statistics/FacetStatistics", "datamodels/summary-statistics/FacetedCount", "datamodels/summary-statistics/Float", "datamodels/summary-statistics/GlobalStatistics", "datamodels/summary-statistics/GroupedStatistics", "datamodels/summary-statistics/Integer", "datamodels/summary-statistics/Jsonpath", "datamodels/summary-statistics/Jsonpointer", "datamodels/summary-statistics/Ncname", "datamodels/summary-statistics/Nodeidentifier", "datamodels/summary-statistics/Objectidentifier", "datamodels/summary-statistics/Ontology", "datamodels/summary-statistics/Sparqlpath", "datamodels/summary-statistics/String", "datamodels/summary-statistics/SummaryStatisticCollection", "datamodels/summary-statistics/SummaryStatisticsCalculationActivity", "datamodels/summary-statistics/SummaryStatisticsReport", "datamodels/summary-statistics/Time", "datamodels/summary-statistics/UngroupedStatistics", "datamodels/summary-statistics/Uri", "datamodels/summary-statistics/Uriorcurie", "datamodels/summary-statistics/acted_on_behalf_of", "datamodels/summary-statistics/agents", "datamodels/summary-statistics/annotation_property_count", "datamodels/summary-statistics/anonymous_class_expression_count", "datamodels/summary-statistics/anonymous_individual_count", "datamodels/summary-statistics/by_category", "datamodels/summary-statistics/by_ontology", "datamodels/summary-statistics/by_subset", "datamodels/summary-statistics/by_taxon", "datamodels/summary-statistics/change_summary", "datamodels/summary-statistics/class_count", "datamodels/summary-statistics/class_count_by_category", "datamodels/summary-statistics/class_count_by_subset", "datamodels/summary-statistics/class_count_excluding_deprecated", "datamodels/summary-statistics/class_count_with_definitions", "datamodels/summary-statistics/class_count_with_text_definitions", "datamodels/summary-statistics/class_count_without_text_definitions", "datamodels/summary-statistics/class_statistic_group", "datamodels/summary-statistics/compared_with", "datamodels/summary-statistics/contributor_id", "datamodels/summary-statistics/contributor_name", "datamodels/summary-statistics/contributor_summary", "datamodels/summary-statistics/count_statistic", "datamodels/summary-statistics/datatype_property_count", "datamodels/summary-statistics/deprecated_class_count", "datamodels/summary-statistics/deprecated_object_property_count", "datamodels/summary-statistics/description", "datamodels/summary-statistics/description_logic_profile", "datamodels/summary-statistics/distinct_synonym_count", "datamodels/summary-statistics/edge_count_by_predicate", "datamodels/summary-statistics/ended_at_time", "datamodels/summary-statistics/entailed_edge_count_by_predicate", "datamodels/summary-statistics/equivalent_classes_axiom_count", "datamodels/summary-statistics/equivalentclasses_axiom_count", "datamodels/summary-statistics/facet", "datamodels/summary-statistics/filtered_count", "datamodels/summary-statistics/id", "datamodels/summary-statistics/index", "datamodels/summary-statistics/individual_count", "datamodels/summary-statistics/individual_statistic_group", "datamodels/summary-statistics/label", "datamodels/summary-statistics/mapping_count", "datamodels/summary-statistics/mapping_statement_count_by_object_source", "datamodels/summary-statistics/mapping_statement_count_by_predicate", "datamodels/summary-statistics/mapping_statement_count_subject_by_object_source", "datamodels/summary-statistics/merged_class_count", "datamodels/summary-statistics/metadata_statistic_group", "datamodels/summary-statistics/named_individual_count", "datamodels/summary-statistics/non_deprecated_class_count", "datamodels/summary-statistics/non_deprecated_object_property_count", "datamodels/summary-statistics/normalization_comments", "datamodels/summary-statistics/object_property_count", "datamodels/summary-statistics/ontologies", "datamodels/summary-statistics/ontology_count", "datamodels/summary-statistics/owl_axiom_count", "datamodels/summary-statistics/owl_statistic_group", "datamodels/summary-statistics/partitions", "datamodels/summary-statistics/prefix", "datamodels/summary-statistics/property_count", "datamodels/summary-statistics/property_statistic_group", "datamodels/summary-statistics/rdf_triple_count", "datamodels/summary-statistics/role_counts", "datamodels/summary-statistics/started_at_time", "datamodels/summary-statistics/subclass_of_axiom_count", "datamodels/summary-statistics/subset_count", "datamodels/summary-statistics/summary-statistics", "datamodels/summary-statistics/synonym_statement_count", "datamodels/summary-statistics/synonym_statement_count_by_predicate", "datamodels/summary-statistics/title", "datamodels/summary-statistics/types", "datamodels/summary-statistics/unsatisfiable_class_count", "datamodels/summary-statistics/untyped_entity_count", "datamodels/summary-statistics/version", "datamodels/summary-statistics/version_info", "datamodels/summary-statistics/was_associated_with", "datamodels/summary-statistics/was_generated_by", "datamodels/taxon-constraints/Boolean", "datamodels/taxon-constraints/ConfigurationOption", "datamodels/taxon-constraints/Curie", "datamodels/taxon-constraints/Date", "datamodels/taxon-constraints/DateOrDatetime", "datamodels/taxon-constraints/Datetime", "datamodels/taxon-constraints/Decimal", "datamodels/taxon-constraints/Double", "datamodels/taxon-constraints/Float", "datamodels/taxon-constraints/Integer", "datamodels/taxon-constraints/Jsonpath", "datamodels/taxon-constraints/Jsonpointer", "datamodels/taxon-constraints/Ncname", "datamodels/taxon-constraints/Nodeidentifier", "datamodels/taxon-constraints/Objectidentifier", "datamodels/taxon-constraints/PredicateTerm", "datamodels/taxon-constraints/Sparqlpath", "datamodels/taxon-constraints/String", "datamodels/taxon-constraints/SubjectTerm", "datamodels/taxon-constraints/Taxon", "datamodels/taxon-constraints/TaxonConstraint", "datamodels/taxon-constraints/Term", "datamodels/taxon-constraints/Time", "datamodels/taxon-constraints/Uri", "datamodels/taxon-constraints/Uriorcurie", "datamodels/taxon-constraints/asserted", "datamodels/taxon-constraints/candidate", "datamodels/taxon-constraints/comments", "datamodels/taxon-constraints/contradicted_by", "datamodels/taxon-constraints/description", "datamodels/taxon-constraints/evolutionary", "datamodels/taxon-constraints/id", "datamodels/taxon-constraints/index", "datamodels/taxon-constraints/label", "datamodels/taxon-constraints/never_in", "datamodels/taxon-constraints/only_in", "datamodels/taxon-constraints/predicate", "datamodels/taxon-constraints/predicates", "datamodels/taxon-constraints/present_in", "datamodels/taxon-constraints/present_in_ancestor_of", "datamodels/taxon-constraints/redundant", "datamodels/taxon-constraints/redundant_with", "datamodels/taxon-constraints/redundant_with_only_in", "datamodels/taxon-constraints/sources", "datamodels/taxon-constraints/subject", "datamodels/taxon-constraints/taxon", "datamodels/taxon-constraints/taxon-constraints", "datamodels/taxon-constraints/unsatisfiable", "datamodels/taxon-constraints/via_terms", "datamodels/text-annotator/Boolean", "datamodels/text-annotator/Curie", "datamodels/text-annotator/Date", "datamodels/text-annotator/DateOrDatetime", "datamodels/text-annotator/Datetime", "datamodels/text-annotator/Decimal", "datamodels/text-annotator/Double", "datamodels/text-annotator/Float", "datamodels/text-annotator/HasSpan", "datamodels/text-annotator/Integer", "datamodels/text-annotator/Jsonpath", "datamodels/text-annotator/Jsonpointer", "datamodels/text-annotator/Ncname", "datamodels/text-annotator/Nodeidentifier", "datamodels/text-annotator/Objectidentifier", "datamodels/text-annotator/Position", "datamodels/text-annotator/Sparqlpath", "datamodels/text-annotator/String", "datamodels/text-annotator/TextAnnotation", "datamodels/text-annotator/TextAnnotationConfiguration", "datamodels/text-annotator/TextAnnotationResultSet", "datamodels/text-annotator/TextualElement", "datamodels/text-annotator/Time", "datamodels/text-annotator/TransformationType", "datamodels/text-annotator/Uri", "datamodels/text-annotator/Uriorcurie", "datamodels/text-annotator/annotations", "datamodels/text-annotator/categories", "datamodels/text-annotator/confidence", "datamodels/text-annotator/id", "datamodels/text-annotator/include_aliases", "datamodels/text-annotator/index", "datamodels/text-annotator/info", "datamodels/text-annotator/is_longest_match", "datamodels/text-annotator/limit", "datamodels/text-annotator/match_string", "datamodels/text-annotator/match_type", "datamodels/text-annotator/matches_whole_text", "datamodels/text-annotator/model", "datamodels/text-annotator/object_aliases", "datamodels/text-annotator/object_categories", "datamodels/text-annotator/object_id", "datamodels/text-annotator/object_label", "datamodels/text-annotator/object_source", "datamodels/text-annotator/parent_document", "datamodels/text-annotator/predicate_id", "datamodels/text-annotator/source_text", "datamodels/text-annotator/sources", "datamodels/text-annotator/subject_end", "datamodels/text-annotator/subject_label", "datamodels/text-annotator/subject_source", "datamodels/text-annotator/subject_start", "datamodels/text-annotator/subject_text_id", "datamodels/text-annotator/text", "datamodels/text-annotator/text-annotator", "datamodels/text-annotator/token_exclusion_list", "datamodels/text-annotator/types", "datamodels/validation/Boolean", "datamodels/validation/ConstraintComponent", "datamodels/validation/Curie", "datamodels/validation/Date", "datamodels/validation/DateOrDatetime", "datamodels/validation/Datetime", "datamodels/validation/Decimal", "datamodels/validation/Double", "datamodels/validation/ExternalReferenceValidationResult", "datamodels/validation/Float", "datamodels/validation/Integer", "datamodels/validation/Jsonpath", "datamodels/validation/Jsonpointer", "datamodels/validation/MappingValidationResult", "datamodels/validation/NamedResource", "datamodels/validation/Ncname", "datamodels/validation/Node", "datamodels/validation/Nodeidentifier", "datamodels/validation/Objectidentifier", "datamodels/validation/RepairConfiguration", "datamodels/validation/RepairOperation", "datamodels/validation/RepairReport", "datamodels/validation/Report", "datamodels/validation/Result", "datamodels/validation/SeverityOptions", "datamodels/validation/Sparqlpath", "datamodels/validation/String", "datamodels/validation/Time", "datamodels/validation/TypeSeverityKeyValue", "datamodels/validation/Uri", "datamodels/validation/Uriorcurie", "datamodels/validation/ValidationConfiguration", "datamodels/validation/ValidationReport", "datamodels/validation/ValidationResult", "datamodels/validation/ValidationResultType", "datamodels/validation/category", "datamodels/validation/confidence", "datamodels/validation/dry_run", "datamodels/validation/http_response_code", "datamodels/validation/id", "datamodels/validation/index", "datamodels/validation/info", "datamodels/validation/instantiates", "datamodels/validation/max_number_results_per_type", "datamodels/validation/modified", "datamodels/validation/number_of_attempts", "datamodels/validation/object", "datamodels/validation/object_id", "datamodels/validation/object_info", "datamodels/validation/object_str", "datamodels/validation/predicate", "datamodels/validation/predicate_id", "datamodels/validation/problem", "datamodels/validation/prompt_info", "datamodels/validation/repairs", "datamodels/validation/results", "datamodels/validation/schema_path", "datamodels/validation/severity", "datamodels/validation/source", "datamodels/validation/subject", "datamodels/validation/subject_id", "datamodels/validation/subject_info", "datamodels/validation/successful", "datamodels/validation/suggested_modifications", "datamodels/validation/suggested_predicate", "datamodels/validation/time_checked", "datamodels/validation/type", "datamodels/validation/type_severity_map", "datamodels/validation/types", "datamodels/validation/url", "datamodels/validation/validation_configuration", "datamodels/validation/validaton-results", "faq/architecture", "faq/commandline", "faq/contributing", "faq/general", "faq/index", "faq/ontologies", "faq/troubleshooting", "glossary", "guide/aliases", "guide/associations", "guide/basics", "guide/curies-and-uris", "guide/index", "guide/learning-more", "guide/logical-definitions", "guide/mappings", "guide/obsoletion", "guide/primary-labels", "guide/relationships-and-graphs", "guide/similarity", "howtos/fhir-conversions", "howtos/index", "howtos/perform-lexical-matching", "howtos/roll-up-annotations-to-a-subset", "howtos/use-llms", "howtos/validate-an-obo-ontology", "howtos/visualize-ontology-subgraphs", "howtos/write-a-plugin", "index", "intro/index", "intro/tutorial01", "intro/tutorial02", "intro/tutorial03", "intro/tutorial04", "intro/tutorial05", "intro/tutorial06", "intro/tutorial07", "intro/tutorial08", "introduction", "logos/README", "notebooks", "packages/architecture", "packages/best-practice", "packages/converters/data-model-converter", "packages/converters/index", "packages/converters/obo-graph-to-cx", "packages/converters/obo-graph-to-fhir", "packages/converters/obo-graph-to-obo-format", "packages/converters/obo-graph-to-owl", "packages/implementations/aggregator", "packages/implementations/bioportal", "packages/implementations/funowl", "packages/implementations/gilda", "packages/implementations/index", "packages/implementations/llm", "packages/implementations/obograph", "packages/implementations/ols", "packages/implementations/ontobee", "packages/implementations/owlery", "packages/implementations/pantherdb", "packages/implementations/pronto", "packages/implementations/simple_obo", "packages/implementations/sparql", "packages/implementations/sqldb", "packages/implementations/ubergraph", "packages/index", "packages/interfaces/association-provider", "packages/interfaces/basic", "packages/interfaces/class-enrichment", "packages/interfaces/differ", "packages/interfaces/dumper", "packages/interfaces/index", "packages/interfaces/mapping-provider", "packages/interfaces/obograph", "packages/interfaces/owl", "packages/interfaces/patcher", "packages/interfaces/relation-graph", "packages/interfaces/search", "packages/interfaces/semantic-similarity", "packages/interfaces/subsetting", "packages/interfaces/summary-statistics", "packages/interfaces/text-annotator", "packages/interfaces/validator", "packages/selectors", "packages/src/oaklib.utilities.apikey_manager", "packages/src/oaklib.utilities.graph.networkx_bridge", "packages/src/oaklib.utilities.graph.relationship_walker", "packages/src/oaklib.utilities.lexical.lexical_indexer", "packages/src/oaklib.utilities.obograph_utils", "packages/src/oaklib.utilities.subsets.slimmer_utils", "packages/src/oaklib.utilities.table_filler", "packages/src/oaklib.utilities.taxon", "packages/utilities", "rdf-owl-layering", "search-syntax"], "filenames": ["cli.rst", "concepts.rst", "contributing.md", "datamodels/association/Association.md", "datamodels/association/AssociationChange.md", "datamodels/association/Boolean.md", "datamodels/association/Curie.md", "datamodels/association/Date.md", "datamodels/association/DateOrDatetime.md", "datamodels/association/Datetime.md", "datamodels/association/Decimal.md", "datamodels/association/Double.md", "datamodels/association/Float.md", "datamodels/association/Integer.md", "datamodels/association/Jsonpath.md", "datamodels/association/Jsonpointer.md", "datamodels/association/Ncname.md", "datamodels/association/NegatedAssociation.md", "datamodels/association/Nodeidentifier.md", "datamodels/association/Objectidentifier.md", "datamodels/association/PairwiseCoAssociation.md", "datamodels/association/ParserConfiguration.md", "datamodels/association/PositiveOrNegativeAssociation.md", "datamodels/association/PropertyValue.md", "datamodels/association/RollupGroup.md", "datamodels/association/Sparqlpath.md", "datamodels/association/String.md", "datamodels/association/Time.md", "datamodels/association/Uri.md", "datamodels/association/Uriorcurie.md", "datamodels/association/aggregator_knowledge_source.md", "datamodels/association/association.md", "datamodels/association/associations.md", "datamodels/association/associations_for_subjects_in_common.md", "datamodels/association/closure_delta.md", "datamodels/association/closure_information_content_delta.md", "datamodels/association/closure_predicates.md", "datamodels/association/comments.md", "datamodels/association/core_triple.md", "datamodels/association/creation_date.md", "datamodels/association/date.md", "datamodels/association/denormalized_slot.md", "datamodels/association/diff_slot.md", "datamodels/association/evidence_type.md", "datamodels/association/group_object.md", "datamodels/association/include_association_attributes.md", "datamodels/association/index.md", "datamodels/association/is_creation.md", "datamodels/association/is_deletion.md", "datamodels/association/is_generalization.md", "datamodels/association/is_migration.md", "datamodels/association/is_specialization.md", "datamodels/association/modification_date.md", "datamodels/association/negated.md", "datamodels/association/new_date.md", "datamodels/association/new_object.md", "datamodels/association/new_predicate.md", "datamodels/association/number_subject_unique_to_entity1.md", "datamodels/association/number_subject_unique_to_entity2.md", "datamodels/association/number_subjects_in_common.md", "datamodels/association/object.md", "datamodels/association/object1.md", "datamodels/association/object1_label.md", "datamodels/association/object2.md", "datamodels/association/object2_label.md", "datamodels/association/object_closure.md", "datamodels/association/object_closure_label.md", "datamodels/association/object_label.md", "datamodels/association/old_date.md", "datamodels/association/old_object.md", "datamodels/association/old_object_obsolete.md", "datamodels/association/old_predicate.md", "datamodels/association/original_object.md", "datamodels/association/original_predicate.md", "datamodels/association/original_subject.md", "datamodels/association/predicate.md", "datamodels/association/predicate_label.md", "datamodels/association/preserve_negated_associations.md", "datamodels/association/primary_knowledge_source.md", "datamodels/association/property_values.md", "datamodels/association/publication_is_added.md", "datamodels/association/publication_is_deleted.md", "datamodels/association/publications.md", "datamodels/association/sub_groups.md", "datamodels/association/subject.md", "datamodels/association/subject_closure.md", "datamodels/association/subject_closure_label.md", "datamodels/association/subject_label.md", "datamodels/association/subjects_in_common.md", "datamodels/association/summary_group.md", "datamodels/association/supporting_objects.md", "datamodels/class-enrichment/Boolean.md", "datamodels/class-enrichment/ClassEnrichmentConfiguration.md", "datamodels/class-enrichment/ClassEnrichmentResult.md", "datamodels/class-enrichment/ClassEnrichmentResultSet.md", "datamodels/class-enrichment/Curie.md", "datamodels/class-enrichment/Date.md", "datamodels/class-enrichment/DateOrDatetime.md", "datamodels/class-enrichment/Datetime.md", "datamodels/class-enrichment/Decimal.md", "datamodels/class-enrichment/Double.md", "datamodels/class-enrichment/Float.md", "datamodels/class-enrichment/Integer.md", "datamodels/class-enrichment/Jsonpath.md", "datamodels/class-enrichment/Jsonpointer.md", "datamodels/class-enrichment/Ncname.md", "datamodels/class-enrichment/Nodeidentifier.md", "datamodels/class-enrichment/Objectidentifier.md", "datamodels/class-enrichment/Position.md", "datamodels/class-enrichment/SortFieldEnum.md", "datamodels/class-enrichment/Sparqlpath.md", "datamodels/class-enrichment/String.md", "datamodels/class-enrichment/Time.md", "datamodels/class-enrichment/Uri.md", "datamodels/class-enrichment/Uriorcurie.md", "datamodels/class-enrichment/ancestor_of_more_informative_result.md", "datamodels/class-enrichment/background_count.md", "datamodels/class-enrichment/background_total.md", "datamodels/class-enrichment/class-enrichment.md", "datamodels/class-enrichment/class_id.md", "datamodels/class-enrichment/class_label.md", "datamodels/class-enrichment/descendant_of_more_informative_result.md", "datamodels/class-enrichment/direction.md", "datamodels/class-enrichment/false_discovery_rate.md", "datamodels/class-enrichment/fold_enrichment.md", "datamodels/class-enrichment/index.md", "datamodels/class-enrichment/p_value.md", "datamodels/class-enrichment/p_value_adjusted.md", "datamodels/class-enrichment/p_value_cutoff.md", "datamodels/class-enrichment/probability.md", "datamodels/class-enrichment/rank.md", "datamodels/class-enrichment/results.md", "datamodels/class-enrichment/sample_count.md", "datamodels/class-enrichment/sample_total.md", "datamodels/cross-ontology-diff/Boolean.md", "datamodels/cross-ontology-diff/Curie.md", "datamodels/cross-ontology-diff/Date.md", "datamodels/cross-ontology-diff/DateOrDatetime.md", "datamodels/cross-ontology-diff/Datetime.md", "datamodels/cross-ontology-diff/Decimal.md", "datamodels/cross-ontology-diff/DiffCategory.md", "datamodels/cross-ontology-diff/Double.md", "datamodels/cross-ontology-diff/EntityReference.md", "datamodels/cross-ontology-diff/Float.md", "datamodels/cross-ontology-diff/Integer.md", "datamodels/cross-ontology-diff/Jsonpath.md", "datamodels/cross-ontology-diff/Jsonpointer.md", "datamodels/cross-ontology-diff/Label.md", "datamodels/cross-ontology-diff/MappingCardinalityEnum.md", "datamodels/cross-ontology-diff/Ncname.md", "datamodels/cross-ontology-diff/Nodeidentifier.md", "datamodels/cross-ontology-diff/Objectidentifier.md", "datamodels/cross-ontology-diff/Position.md", "datamodels/cross-ontology-diff/RelationalDiff.md", "datamodels/cross-ontology-diff/Source.md", "datamodels/cross-ontology-diff/Sparqlpath.md", "datamodels/cross-ontology-diff/String.md", "datamodels/cross-ontology-diff/StructureDiffResultSet.md", "datamodels/cross-ontology-diff/Time.md", "datamodels/cross-ontology-diff/Uri.md", "datamodels/cross-ontology-diff/Uriorcurie.md", "datamodels/cross-ontology-diff/category.md", "datamodels/cross-ontology-diff/cross-ontology-diff.md", "datamodels/cross-ontology-diff/index.md", "datamodels/cross-ontology-diff/is_functional.md", "datamodels/cross-ontology-diff/label.md", "datamodels/cross-ontology-diff/left_object_id.md", "datamodels/cross-ontology-diff/left_object_is_functional.md", "datamodels/cross-ontology-diff/left_object_label.md", "datamodels/cross-ontology-diff/left_object_name.md", "datamodels/cross-ontology-diff/left_predicate_id.md", "datamodels/cross-ontology-diff/left_predicate_label.md", "datamodels/cross-ontology-diff/left_predicate_name.md", "datamodels/cross-ontology-diff/left_side.md", "datamodels/cross-ontology-diff/left_source.md", "datamodels/cross-ontology-diff/left_subject_id.md", "datamodels/cross-ontology-diff/left_subject_is_functional.md", "datamodels/cross-ontology-diff/left_subject_label.md", "datamodels/cross-ontology-diff/left_subject_name.md", "datamodels/cross-ontology-diff/object.md", "datamodels/cross-ontology-diff/object_mapping_cardinality.md", "datamodels/cross-ontology-diff/object_mapping_predicate.md", "datamodels/cross-ontology-diff/predicate.md", "datamodels/cross-ontology-diff/results.md", "datamodels/cross-ontology-diff/right_intermediate_ids.md", "datamodels/cross-ontology-diff/right_object_id.md", "datamodels/cross-ontology-diff/right_object_label.md", "datamodels/cross-ontology-diff/right_object_name.md", "datamodels/cross-ontology-diff/right_predicate_ids.md", "datamodels/cross-ontology-diff/right_predicate_labels.md", "datamodels/cross-ontology-diff/right_predicate_names.md", "datamodels/cross-ontology-diff/right_side.md", "datamodels/cross-ontology-diff/right_source.md", "datamodels/cross-ontology-diff/right_subject_id.md", "datamodels/cross-ontology-diff/right_subject_label.md", "datamodels/cross-ontology-diff/right_subject_name.md", "datamodels/cross-ontology-diff/side.md", "datamodels/cross-ontology-diff/subject.md", "datamodels/cross-ontology-diff/subject_mapping_cardinality.md", "datamodels/cross-ontology-diff/subject_mapping_predicate.md", "datamodels/cross-ontology-diff/types.md", "datamodels/funowl/index.rst", "datamodels/index.rst", "datamodels/item-list/Boolean.md", "datamodels/item-list/Curie.md", "datamodels/item-list/Date.md", "datamodels/item-list/DateOrDatetime.md", "datamodels/item-list/Datetime.md", "datamodels/item-list/Decimal.md", "datamodels/item-list/Double.md", "datamodels/item-list/Float.md", "datamodels/item-list/Integer.md", "datamodels/item-list/ItemList.md", "datamodels/item-list/ItemListCollection.md", "datamodels/item-list/ItemListOrderType.md", "datamodels/item-list/Jsonpath.md", "datamodels/item-list/Jsonpointer.md", "datamodels/item-list/ListItem.md", "datamodels/item-list/Ncname.md", "datamodels/item-list/Nodeidentifier.md", "datamodels/item-list/Objectidentifier.md", "datamodels/item-list/Sparqlpath.md", "datamodels/item-list/String.md", "datamodels/item-list/Thing.md", "datamodels/item-list/Time.md", "datamodels/item-list/Uri.md", "datamodels/item-list/Uriorcurie.md", "datamodels/item-list/additionalType.md", "datamodels/item-list/categories.md", "datamodels/item-list/description.md", "datamodels/item-list/elementId.md", "datamodels/item-list/id.md", "datamodels/item-list/idType.md", "datamodels/item-list/identifiers.md", "datamodels/item-list/index.md", "datamodels/item-list/item.md", "datamodels/item-list/itemList.md", "datamodels/item-list/itemListElements.md", "datamodels/item-list/itemLists.md", "datamodels/item-list/itemMetadataMap.md", "datamodels/item-list/keywords.md", "datamodels/item-list/name.md", "datamodels/item-list/numberOfItems.md", "datamodels/item-list/position.md", "datamodels/item-list/previousItem.md", "datamodels/item-list/type.md", "datamodels/item-list/url.md", "datamodels/item-list/wasGeneratedBy.md", "datamodels/kgcl/index.rst", "datamodels/lexical-index/Activity.md", "datamodels/lexical-index/Any.md", "datamodels/lexical-index/Boolean.md", "datamodels/lexical-index/Curie.md", "datamodels/lexical-index/Date.md", "datamodels/lexical-index/DateOrDatetime.md", "datamodels/lexical-index/Datetime.md", "datamodels/lexical-index/Decimal.md", "datamodels/lexical-index/Double.md", "datamodels/lexical-index/Float.md", "datamodels/lexical-index/Integer.md", "datamodels/lexical-index/Jsonpath.md", "datamodels/lexical-index/Jsonpointer.md", "datamodels/lexical-index/LexicalGrouping.md", "datamodels/lexical-index/LexicalIndex.md", "datamodels/lexical-index/LexicalTransformation.md", "datamodels/lexical-index/LexicalTransformationPipeline.md", "datamodels/lexical-index/Ncname.md", "datamodels/lexical-index/Nodeidentifier.md", "datamodels/lexical-index/Objectidentifier.md", "datamodels/lexical-index/RelationshipToTerm.md", "datamodels/lexical-index/Sparqlpath.md", "datamodels/lexical-index/String.md", "datamodels/lexical-index/Time.md", "datamodels/lexical-index/TransformationType.md", "datamodels/lexical-index/Uri.md", "datamodels/lexical-index/Uriorcurie.md", "datamodels/lexical-index/element.md", "datamodels/lexical-index/element_term.md", "datamodels/lexical-index/groupings.md", "datamodels/lexical-index/index.md", "datamodels/lexical-index/lexical-index.md", "datamodels/lexical-index/lexican-index.md", "datamodels/lexical-index/name.md", "datamodels/lexical-index/params.md", "datamodels/lexical-index/pipeline.md", "datamodels/lexical-index/pipelines.md", "datamodels/lexical-index/predicate.md", "datamodels/lexical-index/relationships.md", "datamodels/lexical-index/source.md", "datamodels/lexical-index/synonymized.md", "datamodels/lexical-index/term.md", "datamodels/lexical-index/transformations.md", "datamodels/lexical-index/type.md", "datamodels/lexical-index/types.md", "datamodels/mapping-rules/Activity.md", "datamodels/mapping-rules/Any.md", "datamodels/mapping-rules/Boolean.md", "datamodels/mapping-rules/Curie.md", "datamodels/mapping-rules/Date.md", "datamodels/mapping-rules/DateOrDatetime.md", "datamodels/mapping-rules/Datetime.md", "datamodels/mapping-rules/Decimal.md", "datamodels/mapping-rules/Double.md", "datamodels/mapping-rules/Float.md", "datamodels/mapping-rules/Integer.md", "datamodels/mapping-rules/Jsonpath.md", "datamodels/mapping-rules/Jsonpointer.md", "datamodels/mapping-rules/LexicalGrouping.md", "datamodels/mapping-rules/LexicalIndex.md", "datamodels/mapping-rules/LexicalTransformation.md", "datamodels/mapping-rules/LexicalTransformationPipeline.md", "datamodels/mapping-rules/MappingRule.md", "datamodels/mapping-rules/MappingRuleCollection.md", "datamodels/mapping-rules/Ncname.md", "datamodels/mapping-rules/Nodeidentifier.md", "datamodels/mapping-rules/Objectidentifier.md", "datamodels/mapping-rules/Postcondition.md", "datamodels/mapping-rules/Precondition.md", "datamodels/mapping-rules/RelationshipToTerm.md", "datamodels/mapping-rules/Sparqlpath.md", "datamodels/mapping-rules/String.md", "datamodels/mapping-rules/Synonymizer.md", "datamodels/mapping-rules/Test.md", "datamodels/mapping-rules/Time.md", "datamodels/mapping-rules/TransformationType.md", "datamodels/mapping-rules/Uri.md", "datamodels/mapping-rules/Uriorcurie.md", "datamodels/mapping-rules/description.md", "datamodels/mapping-rules/element.md", "datamodels/mapping-rules/element_term.md", "datamodels/mapping-rules/groupings.md", "datamodels/mapping-rules/index.md", "datamodels/mapping-rules/input.md", "datamodels/mapping-rules/lexical-index.md", "datamodels/mapping-rules/lexican-index.md", "datamodels/mapping-rules/mapping-rules.md", "datamodels/mapping-rules/mapping-rules-datamodel.md", "datamodels/mapping-rules/mapping_source_one_of.md", "datamodels/mapping-rules/match.md", "datamodels/mapping-rules/match_scope.md", "datamodels/mapping-rules/minimum_confidence.md", "datamodels/mapping-rules/name.md", "datamodels/mapping-rules/object_match_field_one_of.md", "datamodels/mapping-rules/object_source_one_of.md", "datamodels/mapping-rules/oneway.md", "datamodels/mapping-rules/output.md", "datamodels/mapping-rules/params.md", "datamodels/mapping-rules/pipeline.md", "datamodels/mapping-rules/pipelines.md", "datamodels/mapping-rules/postconditions.md", "datamodels/mapping-rules/preconditions.md", "datamodels/mapping-rules/predicate.md", "datamodels/mapping-rules/predicate_id.md", "datamodels/mapping-rules/predicate_id_one_of.md", "datamodels/mapping-rules/prefix.md", "datamodels/mapping-rules/qualifier.md", "datamodels/mapping-rules/relationships.md", "datamodels/mapping-rules/replacement.md", "datamodels/mapping-rules/rules.md", "datamodels/mapping-rules/source.md", "datamodels/mapping-rules/subject_match_field_one_of.md", "datamodels/mapping-rules/subject_source_one_of.md", "datamodels/mapping-rules/synonymized.md", "datamodels/mapping-rules/synonymizer.md", "datamodels/mapping-rules/term.md", "datamodels/mapping-rules/tests.md", "datamodels/mapping-rules/the_rule.md", "datamodels/mapping-rules/transformations.md", "datamodels/mapping-rules/transformations_included_in.md", "datamodels/mapping-rules/type.md", "datamodels/mapping-rules/types.md", "datamodels/mapping-rules/weight.md", "datamodels/obograph/Axiom.md", "datamodels/obograph/BasicPropertyValue.md", "datamodels/obograph/Boolean.md", "datamodels/obograph/Curie.md", "datamodels/obograph/Date.md", "datamodels/obograph/DateOrDatetime.md", "datamodels/obograph/Datetime.md", "datamodels/obograph/Decimal.md", "datamodels/obograph/DefinitionPropertyValue.md", "datamodels/obograph/DisjointClassExpressionsAxiom.md", "datamodels/obograph/DomainRangeAxiom.md", "datamodels/obograph/Double.md", "datamodels/obograph/Edge.md", "datamodels/obograph/EquivalentNodesSet.md", "datamodels/obograph/ExistentialRestrictionExpression.md", "datamodels/obograph/Float.md", "datamodels/obograph/Graph.md", "datamodels/obograph/GraphDocument.md", "datamodels/obograph/Integer.md", "datamodels/obograph/Jsonpath.md", "datamodels/obograph/Jsonpointer.md", "datamodels/obograph/LogicalDefinitionAxiom.md", "datamodels/obograph/Meta.md", "datamodels/obograph/Ncname.md", "datamodels/obograph/Node.md", "datamodels/obograph/NodeTypeEnum.md", "datamodels/obograph/Nodeidentifier.md", "datamodels/obograph/Objectidentifier.md", "datamodels/obograph/OboIdentifierString.md", "datamodels/obograph/PredsEnum.md", "datamodels/obograph/PrefixDeclaration.md", "datamodels/obograph/PropertyChainAxiom.md", "datamodels/obograph/PropertyTypeEnum.md", "datamodels/obograph/PropertyValue.md", "datamodels/obograph/ScopeEnum.md", "datamodels/obograph/ScopesEnum.md", "datamodels/obograph/Sparqlpath.md", "datamodels/obograph/String.md", "datamodels/obograph/SubsetDefinition.md", "datamodels/obograph/SynonymPropertyValue.md", "datamodels/obograph/SynonymTypeDefinition.md", "datamodels/obograph/SynonymTypeIdentifierString.md", "datamodels/obograph/Time.md", "datamodels/obograph/Uri.md", "datamodels/obograph/Uriorcurie.md", "datamodels/obograph/XrefPropertyValue.md", "datamodels/obograph/XrefString.md", "datamodels/obograph/allValuesFromEdges.md", "datamodels/obograph/basicPropertyValues.md", "datamodels/obograph/chainPredicateIds.md", "datamodels/obograph/classExpressions.md", "datamodels/obograph/classIds.md", "datamodels/obograph/comments.md", "datamodels/obograph/definedClassId.md", "datamodels/obograph/definition.md", "datamodels/obograph/deprecated.md", "datamodels/obograph/disjointClassExpressionsAxioms.md", "datamodels/obograph/domainClassIds.md", "datamodels/obograph/domainRangeAxioms.md", "datamodels/obograph/edges.md", "datamodels/obograph/equivalentNodesSets.md", "datamodels/obograph/fillerId.md", "datamodels/obograph/genusIds.md", "datamodels/obograph/graphs.md", "datamodels/obograph/id.md", "datamodels/obograph/index.md", "datamodels/obograph/isExact.md", "datamodels/obograph/label.md", "datamodels/obograph/lang.md", "datamodels/obograph/lbl.md", "datamodels/obograph/logicalDefinitionAxioms.md", "datamodels/obograph/meta.md", "datamodels/obograph/namespace.md", "datamodels/obograph/nodeIds.md", "datamodels/obograph/nodes.md", "datamodels/obograph/obj.md", "datamodels/obograph/obographs_datamodel.md", "datamodels/obograph/obographs_linkml_model.md", "datamodels/obograph/pred.md", "datamodels/obograph/predicateId.md", "datamodels/obograph/prefix.md", "datamodels/obograph/prefixes.md", "datamodels/obograph/propertyChainAxioms.md", "datamodels/obograph/propertyId.md", "datamodels/obograph/propertyType.md", "datamodels/obograph/rangeClassIds.md", "datamodels/obograph/representativeNodeId.md", "datamodels/obograph/representitiveNodeId.md", "datamodels/obograph/restrictions.md", "datamodels/obograph/scope.md", "datamodels/obograph/sub.md", "datamodels/obograph/subsetDefinitions.md", "datamodels/obograph/subsets.md", "datamodels/obograph/synonymType.md", "datamodels/obograph/synonymTypeDefinitions.md", "datamodels/obograph/synonyms.md", "datamodels/obograph/type.md", "datamodels/obograph/types.md", "datamodels/obograph/unionEquivalentTo.md", "datamodels/obograph/unionEquivalentToExpression.md", "datamodels/obograph/val.md", "datamodels/obograph/valType.md", "datamodels/obograph/version.md", "datamodels/obograph/xrefs.md", "datamodels/ontology-metadata/Agent.md", "datamodels/ontology-metadata/AllotropePermittedProfile.md", "datamodels/ontology-metadata/AllotropeRequiredProfile.md", "datamodels/ontology-metadata/Annotation.md", "datamodels/ontology-metadata/AnnotationProperty.md", "datamodels/ontology-metadata/AnnotationPropertyMixin.md", "datamodels/ontology-metadata/Anonymous.md", "datamodels/ontology-metadata/AnonymousClassExpression.md", "datamodels/ontology-metadata/Any.md", "datamodels/ontology-metadata/Axiom.md", "datamodels/ontology-metadata/Boolean.md", "datamodels/ontology-metadata/CURIELiteral.md", "datamodels/ontology-metadata/Class.md", "datamodels/ontology-metadata/ClassExpression.md", "datamodels/ontology-metadata/Curie.md", "datamodels/ontology-metadata/Date.md", "datamodels/ontology-metadata/DateOrDatetime.md", "datamodels/ontology-metadata/Datetime.md", "datamodels/ontology-metadata/Decimal.md", "datamodels/ontology-metadata/DefinitionConstraintComponent.md", "datamodels/ontology-metadata/Double.md", "datamodels/ontology-metadata/Expression.md", "datamodels/ontology-metadata/Float.md", "datamodels/ontology-metadata/GoPermittedProfile.md", "datamodels/ontology-metadata/GoRecommendedProfile.md", "datamodels/ontology-metadata/GoRequiredProfile.md", "datamodels/ontology-metadata/HasCategory.md", "datamodels/ontology-metadata/HasLifeCycle.md", "datamodels/ontology-metadata/HasMappings.md", "datamodels/ontology-metadata/HasMinimalMetadata.md", "datamodels/ontology-metadata/HasProvenance.md", "datamodels/ontology-metadata/HasSynonyms.md", "datamodels/ontology-metadata/HasUserInformation.md", "datamodels/ontology-metadata/HomoSapiens.md", "datamodels/ontology-metadata/IEDB_alternative_term.md", "datamodels/ontology-metadata/ISA_alternative_term.md", "datamodels/ontology-metadata/Image.md", "datamodels/ontology-metadata/Integer.md", "datamodels/ontology-metadata/IriType.md", "datamodels/ontology-metadata/Jsonpath.md", "datamodels/ontology-metadata/Jsonpointer.md", "datamodels/ontology-metadata/LabelType.md", "datamodels/ontology-metadata/NCIT_definition_source.md", "datamodels/ontology-metadata/NCIT_term_source.md", "datamodels/ontology-metadata/NCIT_term_type.md", "datamodels/ontology-metadata/NamedIndividual.md", "datamodels/ontology-metadata/NamedObject.md", "datamodels/ontology-metadata/NarrativeText.md", "datamodels/ontology-metadata/Ncname.md", "datamodels/ontology-metadata/Nodeidentifier.md", "datamodels/ontology-metadata/NotObsoleteAspect.md", "datamodels/ontology-metadata/OBO_foundry_unique_label.md", "datamodels/ontology-metadata/ObiPermittedProfile.md", "datamodels/ontology-metadata/ObiRequiredProfile.md", "datamodels/ontology-metadata/ObjectProperty.md", "datamodels/ontology-metadata/Objectidentifier.md", "datamodels/ontology-metadata/ObsoleteAspect.md", "datamodels/ontology-metadata/Ontology.md", "datamodels/ontology-metadata/Ontology-Metadata.md", "datamodels/ontology-metadata/Property.md", "datamodels/ontology-metadata/PropertyExpression.md", "datamodels/ontology-metadata/Restriction.md", "datamodels/ontology-metadata/Sparqlpath.md", "datamodels/ontology-metadata/String.md", "datamodels/ontology-metadata/Subset.md", "datamodels/ontology-metadata/Term.md", "datamodels/ontology-metadata/Thing.md", "datamodels/ontology-metadata/TidyString.md", "datamodels/ontology-metadata/Time.md", "datamodels/ontology-metadata/TransitiveProperty.md", "datamodels/ontology-metadata/URLLiteral.md", "datamodels/ontology-metadata/Uri.md", "datamodels/ontology-metadata/Uriorcurie.md", "datamodels/ontology-metadata/allValuesFrom.md", "datamodels/ontology-metadata/alternative_term.md", "datamodels/ontology-metadata/annotatedProperty.md", "datamodels/ontology-metadata/annotatedSource.md", "datamodels/ontology-metadata/annotatedTarget.md", "datamodels/ontology-metadata/annotations.md", "datamodels/ontology-metadata/broadMatch.md", "datamodels/ontology-metadata/cardinality.md", "datamodels/ontology-metadata/category.md", "datamodels/ontology-metadata/changeNote.md", "datamodels/ontology-metadata/closeMatch.md", "datamodels/ontology-metadata/comment.md", "datamodels/ontology-metadata/complementOf.md", "datamodels/ontology-metadata/conformsTo.md", "datamodels/ontology-metadata/consider.md", "datamodels/ontology-metadata/contributor.md", "datamodels/ontology-metadata/core_property.md", "datamodels/ontology-metadata/created.md", "datamodels/ontology-metadata/created_by.md", "datamodels/ontology-metadata/creation_date.md", "datamodels/ontology-metadata/creator.md", "datamodels/ontology-metadata/curator_note.md", "datamodels/ontology-metadata/database_cross_reference.md", "datamodels/ontology-metadata/date.md", "datamodels/ontology-metadata/date_retrieved.md", "datamodels/ontology-metadata/defaultLanguage.md", "datamodels/ontology-metadata/definition.md", "datamodels/ontology-metadata/definition_source.md", "datamodels/ontology-metadata/depicted_by.md", "datamodels/ontology-metadata/deprecated.md", "datamodels/ontology-metadata/disconnected_from.md", "datamodels/ontology-metadata/disjointWith.md", "datamodels/ontology-metadata/distinctMembers.md", "datamodels/ontology-metadata/domain.md", "datamodels/ontology-metadata/editor_note.md", "datamodels/ontology-metadata/editor_preferred_term.md", "datamodels/ontology-metadata/equivalentClass.md", "datamodels/ontology-metadata/equivalentProperty.md", "datamodels/ontology-metadata/evidence.md", "datamodels/ontology-metadata/exactMatch.md", "datamodels/ontology-metadata/example_of_usage.md", "datamodels/ontology-metadata/excluded_axiom.md", "datamodels/ontology-metadata/excluded_from_QC_check.md", "datamodels/ontology-metadata/excluded_subClassOf.md", "datamodels/ontology-metadata/excluded_synonym.md", "datamodels/ontology-metadata/external_ontology.md", "datamodels/ontology-metadata/hasValue.md", "datamodels/ontology-metadata/has_alternative_id.md", "datamodels/ontology-metadata/has_axiom_label.md", "datamodels/ontology-metadata/has_broad_synonym.md", "datamodels/ontology-metadata/has_curation_status.md", "datamodels/ontology-metadata/has_exact_synonym.md", "datamodels/ontology-metadata/has_narrow_synonym.md", "datamodels/ontology-metadata/has_obo_namespace.md", "datamodels/ontology-metadata/has_obsolescence_reason.md", "datamodels/ontology-metadata/has_ontology_root_term.md", "datamodels/ontology-metadata/has_rank.md", "datamodels/ontology-metadata/has_related_synonym.md", "datamodels/ontology-metadata/has_synonym_type.md", "datamodels/ontology-metadata/id.md", "datamodels/ontology-metadata/image.md", "datamodels/ontology-metadata/imported_from.md", "datamodels/ontology-metadata/imports.md", "datamodels/ontology-metadata/in_subset.md", "datamodels/ontology-metadata/index.md", "datamodels/ontology-metadata/informative_property.md", "datamodels/ontology-metadata/intersectionOf.md", "datamodels/ontology-metadata/inverseOf.md", "datamodels/ontology-metadata/isDefinedBy.md", "datamodels/ontology-metadata/is_a_defining_property_chain_axiom.md", "datamodels/ontology-metadata/is_a_defining_property_chain_axiom_where_second_argument_is_reflexive.md", "datamodels/ontology-metadata/is_class_level.md", "datamodels/ontology-metadata/is_cyclic.md", "datamodels/ontology-metadata/is_inferred.md", "datamodels/ontology-metadata/is_metadata_tag.md", "datamodels/ontology-metadata/is_transitive.md", "datamodels/ontology-metadata/label.md", "datamodels/ontology-metadata/language.md", "datamodels/ontology-metadata/license.md", "datamodels/ontology-metadata/logical_predicate.md", "datamodels/ontology-metadata/match.md", "datamodels/ontology-metadata/match_aspect.md", "datamodels/ontology-metadata/maxQualifiedCardinality.md", "datamodels/ontology-metadata/members.md", "datamodels/ontology-metadata/minCardinality.md", "datamodels/ontology-metadata/minQualifiedCardinality.md", "datamodels/ontology-metadata/narrowMatch.md", "datamodels/ontology-metadata/never_in_taxon.md", "datamodels/ontology-metadata/notes.md", "datamodels/ontology-metadata/object.md", "datamodels/ontology-metadata/oboInOwl_id.md", "datamodels/ontology-metadata/oboInOwl_ontology.md", "datamodels/ontology-metadata/obsoletion_related_property.md", "datamodels/ontology-metadata/omo-schema.md", "datamodels/ontology-metadata/onClass.md", "datamodels/ontology-metadata/onProperty.md", "datamodels/ontology-metadata/oneOf.md", "datamodels/ontology-metadata/ontology_term_requester.md", "datamodels/ontology-metadata/page.md", "datamodels/ontology-metadata/predicate.md", "datamodels/ontology-metadata/propertyChainAxiom.md", "datamodels/ontology-metadata/provenance_property.md", "datamodels/ontology-metadata/qualifiedCardinality.md", "datamodels/ontology-metadata/range.md", "datamodels/ontology-metadata/reification_predicate.md", "datamodels/ontology-metadata/sameAs.md", "datamodels/ontology-metadata/seeAlso.md", "datamodels/ontology-metadata/shortcut_annotation_property.md", "datamodels/ontology-metadata/shorthand.md", "datamodels/ontology-metadata/should_conform_to.md", "datamodels/ontology-metadata/someValuesFrom.md", "datamodels/ontology-metadata/source.md", "datamodels/ontology-metadata/subClassOf.md", "datamodels/ontology-metadata/synonym.md", "datamodels/ontology-metadata/temporal_interpretation.md", "datamodels/ontology-metadata/term_editor.md", "datamodels/ontology-metadata/term_replaced_by.md", "datamodels/ontology-metadata/term_tracker_item.md", "datamodels/ontology-metadata/title.md", "datamodels/ontology-metadata/type.md", "datamodels/ontology-metadata/types.md", "datamodels/ontology-metadata/unionOf.md", "datamodels/ontology-metadata/url.md", "datamodels/ontology-metadata/versionIRI.md", "datamodels/ontology-metadata/versionInfo.md", "datamodels/ontology-metadata/version_property.md", "datamodels/search/Boolean.md", "datamodels/search/BooleanOperator.md", "datamodels/search/ComplexQuery.md", "datamodels/search/Curie.md", "datamodels/search/Date.md", "datamodels/search/DateOrDatetime.md", "datamodels/search/Datetime.md", "datamodels/search/Decimal.md", "datamodels/search/Double.md", "datamodels/search/Float.md", "datamodels/search/GraphFunction.md", "datamodels/search/Integer.md", "datamodels/search/Jsonpath.md", "datamodels/search/Jsonpointer.md", "datamodels/search/Ncname.md", "datamodels/search/Nodeidentifier.md", "datamodels/search/Objectidentifier.md", "datamodels/search/PathExpression.md", "datamodels/search/SearchBaseConfiguration.md", "datamodels/search/SearchProperty.md", "datamodels/search/SearchResult.md", "datamodels/search/SearchResultSet.md", "datamodels/search/SearchTerm.md", "datamodels/search/SearchTermSyntax.md", "datamodels/search/Sparqlpath.md", "datamodels/search/String.md", "datamodels/search/Time.md", "datamodels/search/Uri.md", "datamodels/search/Uriorcurie.md", "datamodels/search/all_of.md", "datamodels/search/any_of.md", "datamodels/search/atom.md", "datamodels/search/categories.md", "datamodels/search/configuration.md", "datamodels/search/cursor.md", "datamodels/search/force_case_insensitive.md", "datamodels/search/graph_predicates.md", "datamodels/search/include_aliases.md", "datamodels/search/include_definition.md", "datamodels/search/include_id.md", "datamodels/search/include_label.md", "datamodels/search/include_obsoletes_in_results.md", "datamodels/search/index.md", "datamodels/search/is_complete.md", "datamodels/search/is_fuzzy.md", "datamodels/search/is_partial.md", "datamodels/search/is_regular_expression.md", "datamodels/search/limit.md", "datamodels/search/matches_full_search_term.md", "datamodels/search/none_of.md", "datamodels/search/object_id.md", "datamodels/search/object_label.md", "datamodels/search/object_match_field.md", "datamodels/search/object_source.md", "datamodels/search/object_source_version.md", "datamodels/search/path_to.md", "datamodels/search/properties.md", "datamodels/search/rank.md", "datamodels/search/result_count.md", "datamodels/search/results.md", "datamodels/search/search-datamodel.md", "datamodels/search/search_term.md", "datamodels/search/search_terms.md", "datamodels/search/snippet.md", "datamodels/search/syntax.md", "datamodels/search/traversal.md", "datamodels/search/types.md", "datamodels/semsql/index.rst", "datamodels/similarity/BestMatch.md", "datamodels/similarity/Boolean.md", "datamodels/similarity/Curie.md", "datamodels/similarity/Date.md", "datamodels/similarity/DateOrDatetime.md", "datamodels/similarity/Datetime.md", "datamodels/similarity/Decimal.md", "datamodels/similarity/Double.md", "datamodels/similarity/Float.md", "datamodels/similarity/Integer.md", "datamodels/similarity/ItemCount.md", "datamodels/similarity/Jsonpath.md", "datamodels/similarity/Jsonpointer.md", "datamodels/similarity/Ncname.md", "datamodels/similarity/NegativeLogValue.md", "datamodels/similarity/Nodeidentifier.md", "datamodels/similarity/NonNegativeFloat.md", "datamodels/similarity/Objectidentifier.md", "datamodels/similarity/PairwiseSimilarity.md", "datamodels/similarity/Sparqlpath.md", "datamodels/similarity/String.md", "datamodels/similarity/TermInfo.md", "datamodels/similarity/TermPairwiseSimilarity.md", "datamodels/similarity/TermSetPairwiseSimilarity.md", "datamodels/similarity/Time.md", "datamodels/similarity/Uri.md", "datamodels/similarity/Uriorcurie.md", "datamodels/similarity/ZeroToOne.md", "datamodels/similarity/ancestor_id.md", "datamodels/similarity/ancestor_information_content.md", "datamodels/similarity/ancestor_label.md", "datamodels/similarity/ancestor_source.md", "datamodels/similarity/average_score.md", "datamodels/similarity/best_score.md", "datamodels/similarity/cosine_similarity.md", "datamodels/similarity/dice_similarity.md", "datamodels/similarity/id.md", "datamodels/similarity/index.md", "datamodels/similarity/information_content.md", "datamodels/similarity/intersection_count.md", "datamodels/similarity/jaccard_similarity.md", "datamodels/similarity/label.md", "datamodels/similarity/match_source.md", "datamodels/similarity/match_source_label.md", "datamodels/similarity/match_subsumer.md", "datamodels/similarity/match_subsumer_label.md", "datamodels/similarity/match_target.md", "datamodels/similarity/match_target_label.md", "datamodels/similarity/metric.md", "datamodels/similarity/object_best_matches.md", "datamodels/similarity/object_id.md", "datamodels/similarity/object_information_content.md", "datamodels/similarity/object_label.md", "datamodels/similarity/object_source.md", "datamodels/similarity/object_termset.md", "datamodels/similarity/overlap_coefficient.md", "datamodels/similarity/phenodigm_score.md", "datamodels/similarity/score.md", "datamodels/similarity/similarity.md", "datamodels/similarity/subject_best_matches.md", "datamodels/similarity/subject_id.md", "datamodels/similarity/subject_information_content.md", "datamodels/similarity/subject_label.md", "datamodels/similarity/subject_source.md", "datamodels/similarity/subject_termset.md", "datamodels/similarity/subsumed_by_score.md", "datamodels/similarity/subsumes_score.md", "datamodels/similarity/types.md", "datamodels/similarity/union_count.md", "datamodels/sssom/index.rst", "datamodels/summary-statistics/Agent.md", "datamodels/summary-statistics/Boolean.md", "datamodels/summary-statistics/ChangeTypeStatistic.md", "datamodels/summary-statistics/ContributorRole.md", "datamodels/summary-statistics/ContributorStatistics.md", "datamodels/summary-statistics/Curie.md", "datamodels/summary-statistics/Date.md", "datamodels/summary-statistics/DateOrDatetime.md", "datamodels/summary-statistics/Datetime.md", "datamodels/summary-statistics/Decimal.md", "datamodels/summary-statistics/Double.md", "datamodels/summary-statistics/FacetStatistics.md", "datamodels/summary-statistics/FacetedCount.md", "datamodels/summary-statistics/Float.md", "datamodels/summary-statistics/GlobalStatistics.md", "datamodels/summary-statistics/GroupedStatistics.md", "datamodels/summary-statistics/Integer.md", "datamodels/summary-statistics/Jsonpath.md", "datamodels/summary-statistics/Jsonpointer.md", "datamodels/summary-statistics/Ncname.md", "datamodels/summary-statistics/Nodeidentifier.md", "datamodels/summary-statistics/Objectidentifier.md", "datamodels/summary-statistics/Ontology.md", "datamodels/summary-statistics/Sparqlpath.md", "datamodels/summary-statistics/String.md", "datamodels/summary-statistics/SummaryStatisticCollection.md", "datamodels/summary-statistics/SummaryStatisticsCalculationActivity.md", "datamodels/summary-statistics/SummaryStatisticsReport.md", "datamodels/summary-statistics/Time.md", "datamodels/summary-statistics/UngroupedStatistics.md", "datamodels/summary-statistics/Uri.md", "datamodels/summary-statistics/Uriorcurie.md", "datamodels/summary-statistics/acted_on_behalf_of.md", "datamodels/summary-statistics/agents.md", "datamodels/summary-statistics/annotation_property_count.md", "datamodels/summary-statistics/anonymous_class_expression_count.md", "datamodels/summary-statistics/anonymous_individual_count.md", "datamodels/summary-statistics/by_category.md", "datamodels/summary-statistics/by_ontology.md", "datamodels/summary-statistics/by_subset.md", "datamodels/summary-statistics/by_taxon.md", "datamodels/summary-statistics/change_summary.md", "datamodels/summary-statistics/class_count.md", "datamodels/summary-statistics/class_count_by_category.md", "datamodels/summary-statistics/class_count_by_subset.md", "datamodels/summary-statistics/class_count_excluding_deprecated.md", "datamodels/summary-statistics/class_count_with_definitions.md", "datamodels/summary-statistics/class_count_with_text_definitions.md", "datamodels/summary-statistics/class_count_without_text_definitions.md", "datamodels/summary-statistics/class_statistic_group.md", "datamodels/summary-statistics/compared_with.md", "datamodels/summary-statistics/contributor_id.md", "datamodels/summary-statistics/contributor_name.md", "datamodels/summary-statistics/contributor_summary.md", "datamodels/summary-statistics/count_statistic.md", "datamodels/summary-statistics/datatype_property_count.md", "datamodels/summary-statistics/deprecated_class_count.md", "datamodels/summary-statistics/deprecated_object_property_count.md", "datamodels/summary-statistics/description.md", "datamodels/summary-statistics/description_logic_profile.md", "datamodels/summary-statistics/distinct_synonym_count.md", "datamodels/summary-statistics/edge_count_by_predicate.md", "datamodels/summary-statistics/ended_at_time.md", "datamodels/summary-statistics/entailed_edge_count_by_predicate.md", "datamodels/summary-statistics/equivalent_classes_axiom_count.md", "datamodels/summary-statistics/equivalentclasses_axiom_count.md", "datamodels/summary-statistics/facet.md", "datamodels/summary-statistics/filtered_count.md", "datamodels/summary-statistics/id.md", "datamodels/summary-statistics/index.md", "datamodels/summary-statistics/individual_count.md", "datamodels/summary-statistics/individual_statistic_group.md", "datamodels/summary-statistics/label.md", "datamodels/summary-statistics/mapping_count.md", "datamodels/summary-statistics/mapping_statement_count_by_object_source.md", "datamodels/summary-statistics/mapping_statement_count_by_predicate.md", "datamodels/summary-statistics/mapping_statement_count_subject_by_object_source.md", "datamodels/summary-statistics/merged_class_count.md", "datamodels/summary-statistics/metadata_statistic_group.md", "datamodels/summary-statistics/named_individual_count.md", "datamodels/summary-statistics/non_deprecated_class_count.md", "datamodels/summary-statistics/non_deprecated_object_property_count.md", "datamodels/summary-statistics/normalization_comments.md", "datamodels/summary-statistics/object_property_count.md", "datamodels/summary-statistics/ontologies.md", "datamodels/summary-statistics/ontology_count.md", "datamodels/summary-statistics/owl_axiom_count.md", "datamodels/summary-statistics/owl_statistic_group.md", "datamodels/summary-statistics/partitions.md", "datamodels/summary-statistics/prefix.md", "datamodels/summary-statistics/property_count.md", "datamodels/summary-statistics/property_statistic_group.md", "datamodels/summary-statistics/rdf_triple_count.md", "datamodels/summary-statistics/role_counts.md", "datamodels/summary-statistics/started_at_time.md", "datamodels/summary-statistics/subclass_of_axiom_count.md", "datamodels/summary-statistics/subset_count.md", "datamodels/summary-statistics/summary-statistics.md", "datamodels/summary-statistics/synonym_statement_count.md", "datamodels/summary-statistics/synonym_statement_count_by_predicate.md", "datamodels/summary-statistics/title.md", "datamodels/summary-statistics/types.md", "datamodels/summary-statistics/unsatisfiable_class_count.md", "datamodels/summary-statistics/untyped_entity_count.md", "datamodels/summary-statistics/version.md", "datamodels/summary-statistics/version_info.md", "datamodels/summary-statistics/was_associated_with.md", "datamodels/summary-statistics/was_generated_by.md", "datamodels/taxon-constraints/Boolean.md", "datamodels/taxon-constraints/ConfigurationOption.md", "datamodels/taxon-constraints/Curie.md", "datamodels/taxon-constraints/Date.md", "datamodels/taxon-constraints/DateOrDatetime.md", "datamodels/taxon-constraints/Datetime.md", "datamodels/taxon-constraints/Decimal.md", "datamodels/taxon-constraints/Double.md", "datamodels/taxon-constraints/Float.md", "datamodels/taxon-constraints/Integer.md", "datamodels/taxon-constraints/Jsonpath.md", "datamodels/taxon-constraints/Jsonpointer.md", "datamodels/taxon-constraints/Ncname.md", "datamodels/taxon-constraints/Nodeidentifier.md", "datamodels/taxon-constraints/Objectidentifier.md", "datamodels/taxon-constraints/PredicateTerm.md", "datamodels/taxon-constraints/Sparqlpath.md", "datamodels/taxon-constraints/String.md", "datamodels/taxon-constraints/SubjectTerm.md", "datamodels/taxon-constraints/Taxon.md", "datamodels/taxon-constraints/TaxonConstraint.md", "datamodels/taxon-constraints/Term.md", "datamodels/taxon-constraints/Time.md", "datamodels/taxon-constraints/Uri.md", "datamodels/taxon-constraints/Uriorcurie.md", "datamodels/taxon-constraints/asserted.md", "datamodels/taxon-constraints/candidate.md", "datamodels/taxon-constraints/comments.md", "datamodels/taxon-constraints/contradicted_by.md", "datamodels/taxon-constraints/description.md", "datamodels/taxon-constraints/evolutionary.md", "datamodels/taxon-constraints/id.md", "datamodels/taxon-constraints/index.md", "datamodels/taxon-constraints/label.md", "datamodels/taxon-constraints/never_in.md", "datamodels/taxon-constraints/only_in.md", "datamodels/taxon-constraints/predicate.md", "datamodels/taxon-constraints/predicates.md", "datamodels/taxon-constraints/present_in.md", "datamodels/taxon-constraints/present_in_ancestor_of.md", "datamodels/taxon-constraints/redundant.md", "datamodels/taxon-constraints/redundant_with.md", "datamodels/taxon-constraints/redundant_with_only_in.md", "datamodels/taxon-constraints/sources.md", "datamodels/taxon-constraints/subject.md", "datamodels/taxon-constraints/taxon.md", "datamodels/taxon-constraints/taxon-constraints.md", "datamodels/taxon-constraints/unsatisfiable.md", "datamodels/taxon-constraints/via_terms.md", "datamodels/text-annotator/Boolean.md", "datamodels/text-annotator/Curie.md", "datamodels/text-annotator/Date.md", "datamodels/text-annotator/DateOrDatetime.md", "datamodels/text-annotator/Datetime.md", "datamodels/text-annotator/Decimal.md", "datamodels/text-annotator/Double.md", "datamodels/text-annotator/Float.md", "datamodels/text-annotator/HasSpan.md", "datamodels/text-annotator/Integer.md", "datamodels/text-annotator/Jsonpath.md", "datamodels/text-annotator/Jsonpointer.md", "datamodels/text-annotator/Ncname.md", "datamodels/text-annotator/Nodeidentifier.md", "datamodels/text-annotator/Objectidentifier.md", "datamodels/text-annotator/Position.md", "datamodels/text-annotator/Sparqlpath.md", "datamodels/text-annotator/String.md", "datamodels/text-annotator/TextAnnotation.md", "datamodels/text-annotator/TextAnnotationConfiguration.md", "datamodels/text-annotator/TextAnnotationResultSet.md", "datamodels/text-annotator/TextualElement.md", "datamodels/text-annotator/Time.md", "datamodels/text-annotator/TransformationType.md", "datamodels/text-annotator/Uri.md", "datamodels/text-annotator/Uriorcurie.md", "datamodels/text-annotator/annotations.md", "datamodels/text-annotator/categories.md", "datamodels/text-annotator/confidence.md", "datamodels/text-annotator/id.md", "datamodels/text-annotator/include_aliases.md", "datamodels/text-annotator/index.md", "datamodels/text-annotator/info.md", "datamodels/text-annotator/is_longest_match.md", "datamodels/text-annotator/limit.md", "datamodels/text-annotator/match_string.md", "datamodels/text-annotator/match_type.md", "datamodels/text-annotator/matches_whole_text.md", "datamodels/text-annotator/model.md", "datamodels/text-annotator/object_aliases.md", "datamodels/text-annotator/object_categories.md", "datamodels/text-annotator/object_id.md", "datamodels/text-annotator/object_label.md", "datamodels/text-annotator/object_source.md", "datamodels/text-annotator/parent_document.md", "datamodels/text-annotator/predicate_id.md", "datamodels/text-annotator/source_text.md", "datamodels/text-annotator/sources.md", "datamodels/text-annotator/subject_end.md", "datamodels/text-annotator/subject_label.md", "datamodels/text-annotator/subject_source.md", "datamodels/text-annotator/subject_start.md", "datamodels/text-annotator/subject_text_id.md", "datamodels/text-annotator/text.md", "datamodels/text-annotator/text-annotator.md", "datamodels/text-annotator/token_exclusion_list.md", "datamodels/text-annotator/types.md", "datamodels/validation/Boolean.md", "datamodels/validation/ConstraintComponent.md", "datamodels/validation/Curie.md", "datamodels/validation/Date.md", "datamodels/validation/DateOrDatetime.md", "datamodels/validation/Datetime.md", "datamodels/validation/Decimal.md", "datamodels/validation/Double.md", "datamodels/validation/ExternalReferenceValidationResult.md", "datamodels/validation/Float.md", "datamodels/validation/Integer.md", "datamodels/validation/Jsonpath.md", "datamodels/validation/Jsonpointer.md", "datamodels/validation/MappingValidationResult.md", "datamodels/validation/NamedResource.md", "datamodels/validation/Ncname.md", "datamodels/validation/Node.md", "datamodels/validation/Nodeidentifier.md", "datamodels/validation/Objectidentifier.md", "datamodels/validation/RepairConfiguration.md", "datamodels/validation/RepairOperation.md", "datamodels/validation/RepairReport.md", "datamodels/validation/Report.md", "datamodels/validation/Result.md", "datamodels/validation/SeverityOptions.md", "datamodels/validation/Sparqlpath.md", "datamodels/validation/String.md", "datamodels/validation/Time.md", "datamodels/validation/TypeSeverityKeyValue.md", "datamodels/validation/Uri.md", "datamodels/validation/Uriorcurie.md", "datamodels/validation/ValidationConfiguration.md", "datamodels/validation/ValidationReport.md", "datamodels/validation/ValidationResult.md", "datamodels/validation/ValidationResultType.md", "datamodels/validation/category.md", "datamodels/validation/confidence.md", "datamodels/validation/dry_run.md", "datamodels/validation/http_response_code.md", "datamodels/validation/id.md", "datamodels/validation/index.md", "datamodels/validation/info.md", "datamodels/validation/instantiates.md", "datamodels/validation/max_number_results_per_type.md", "datamodels/validation/modified.md", "datamodels/validation/number_of_attempts.md", "datamodels/validation/object.md", "datamodels/validation/object_id.md", "datamodels/validation/object_info.md", "datamodels/validation/object_str.md", "datamodels/validation/predicate.md", "datamodels/validation/predicate_id.md", "datamodels/validation/problem.md", "datamodels/validation/prompt_info.md", "datamodels/validation/repairs.md", "datamodels/validation/results.md", "datamodels/validation/schema_path.md", "datamodels/validation/severity.md", "datamodels/validation/source.md", "datamodels/validation/subject.md", "datamodels/validation/subject_id.md", "datamodels/validation/subject_info.md", "datamodels/validation/successful.md", "datamodels/validation/suggested_modifications.md", "datamodels/validation/suggested_predicate.md", "datamodels/validation/time_checked.md", "datamodels/validation/type.md", "datamodels/validation/type_severity_map.md", "datamodels/validation/types.md", "datamodels/validation/url.md", "datamodels/validation/validation_configuration.md", "datamodels/validation/validaton-results.md", "faq/architecture.rst", "faq/commandline.rst", "faq/contributing.rst", "faq/general.rst", "faq/index.rst", "faq/ontologies.rst", "faq/troubleshooting.rst", "glossary.rst", "guide/aliases.rst", "guide/associations.rst", "guide/basics.rst", "guide/curies-and-uris.rst", "guide/index.rst", "guide/learning-more.rst", "guide/logical-definitions.rst", "guide/mappings.rst", "guide/obsoletion.rst", "guide/primary-labels.rst", "guide/relationships-and-graphs.rst", "guide/similarity.rst", "howtos/fhir-conversions.rst", "howtos/index.rst", "howtos/perform-lexical-matching.rst", "howtos/roll-up-annotations-to-a-subset.rst", "howtos/use-llms.rst", "howtos/validate-an-obo-ontology.md", "howtos/visualize-ontology-subgraphs.rst", "howtos/write-a-plugin.rst", "index.rst", "intro/index.rst", "intro/tutorial01.rst", "intro/tutorial02.rst", "intro/tutorial03.rst", "intro/tutorial04.rst", "intro/tutorial05.rst", "intro/tutorial06.rst", "intro/tutorial07.rst", "intro/tutorial08.rst", "introduction.rst", "logos/README.md", "notebooks.rst", "packages/architecture.rst", "packages/best-practice.rst", "packages/converters/data-model-converter.rst", "packages/converters/index.rst", "packages/converters/obo-graph-to-cx.rst", "packages/converters/obo-graph-to-fhir.rst", "packages/converters/obo-graph-to-obo-format.rst", "packages/converters/obo-graph-to-owl.rst", "packages/implementations/aggregator.rst", "packages/implementations/bioportal.rst", "packages/implementations/funowl.rst", "packages/implementations/gilda.rst", "packages/implementations/index.rst", "packages/implementations/llm.rst", "packages/implementations/obograph.rst", "packages/implementations/ols.rst", "packages/implementations/ontobee.rst", "packages/implementations/owlery.rst", "packages/implementations/pantherdb.rst", "packages/implementations/pronto.rst", "packages/implementations/simple_obo.rst", "packages/implementations/sparql.rst", "packages/implementations/sqldb.rst", "packages/implementations/ubergraph.rst", "packages/index.rst", "packages/interfaces/association-provider.rst", "packages/interfaces/basic.rst", "packages/interfaces/class-enrichment.rst", "packages/interfaces/differ.rst", "packages/interfaces/dumper.rst", "packages/interfaces/index.rst", "packages/interfaces/mapping-provider.rst", "packages/interfaces/obograph.rst", "packages/interfaces/owl.rst", "packages/interfaces/patcher.rst", "packages/interfaces/relation-graph.rst", "packages/interfaces/search.rst", "packages/interfaces/semantic-similarity.rst", "packages/interfaces/subsetting.rst", "packages/interfaces/summary-statistics.rst", "packages/interfaces/text-annotator.rst", "packages/interfaces/validator.rst", "packages/selectors.rst", "packages/src/oaklib.utilities.apikey_manager.rst", "packages/src/oaklib.utilities.graph.networkx_bridge.rst", "packages/src/oaklib.utilities.graph.relationship_walker.rst", "packages/src/oaklib.utilities.lexical.lexical_indexer.rst", "packages/src/oaklib.utilities.obograph_utils.rst", "packages/src/oaklib.utilities.subsets.slimmer_utils.rst", "packages/src/oaklib.utilities.table_filler.rst", "packages/src/oaklib.utilities.taxon.rst", "packages/utilities.rst", "rdf-owl-layering.rst", "search-syntax.rst"], "titles": ["Command Line", "Ontology Concepts", "Contribution Guidelines", "Class: Association", "Class: AssociationChange", "Type: Boolean", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Type: Float", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Type: Ncname", "Class: NegatedAssociation", "Type: Nodeidentifier", "Type: Objectidentifier", "Class: PairwiseCoAssociation", "Class: ParserConfiguration", "Class: PositiveOrNegativeAssociation", "Class: PropertyValue", "Class: RollupGroup", "Type: Sparqlpath", "Type: String", "Type: Time", "Type: Uri", "Type: Uriorcurie", "Slot: aggregator_knowledge_source", "association", "Slot: associations", "Slot: associations_for_subjects_in_common", "Slot: closure_delta", "Slot: closure_information_content_delta", "Slot: closure_predicates", "Slot: comments", "Slot: core_triple", "Slot: creation_date", "Slot: date", "Slot: denormalized_slot", "Slot: diff_slot", "Slot: evidence_type", "Slot: group_object", "Slot: include_association_attributes", "OAK Association Data Model", "Slot: is_creation", "Slot: is_deletion", "Slot: is_generalization", "Slot: is_migration", "Slot: is_specialization", "Slot: modification_date", "Slot: negated", "Slot: new_date", "Slot: new_object", "Slot: new_predicate", "Slot: number_subject_unique_to_entity1", "Slot: number_subject_unique_to_entity2", "Slot: number_subjects_in_common", "Slot: object", "Slot: object1", "Slot: object1_label", "Slot: object2", "Slot: object2_label", "Slot: object_closure", "Slot: object_closure_label", "Slot: object_label", "Slot: old_date", "Slot: old_object", "Slot: old_object_obsolete", "Slot: old_predicate", "Slot: original_object", "Slot: original_predicate", "Slot: original_subject", "Slot: predicate", "Slot: predicate_label", "Slot: preserve_negated_associations", "Slot: primary_knowledge_source", "Slot: property_values", "Slot: publication_is_added", "Slot: publication_is_deleted", "Slot: publications", "Slot: sub_groups", "Slot: subject", "Slot: subject_closure", "Slot: subject_closure_label", "Slot: subject_label", "Slot: subjects_in_common", "Slot: summary_group", "Slot: supporting_objects", "Type: Boolean", "Class: ClassEnrichmentConfiguration", "Class: ClassEnrichmentResult", "Class: ClassEnrichmentResultSet", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Type: Float", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Type: Ncname", "Type: Nodeidentifier", "Type: Objectidentifier", "Type: Position", "Enum: SortFieldEnum", "Type: Sparqlpath", "Type: String", "Type: Time", "Type: Uri", "Type: Uriorcurie", "Slot: ancestor_of_more_informative_result", "Slot: background_count", "Slot: background_total", "class-enrichment", "Slot: class_id", "Slot: class_label", "Slot: descendant_of_more_informative_result", "Slot: direction", "Slot: false_discovery_rate", "Slot: fold_enrichment", "Class Enrichment Datamodel", "Slot: p_value", "Slot: p_value_adjusted", "Slot: p_value_cutoff", "Slot: probability", "Slot: rank", "Slot: results", "Slot: sample_count", "Slot: sample_total", "Type: Boolean", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Enum: DiffCategory", "Type: Double", "Type: EntityReference", "Type: Float", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Type: Label", "Enum: MappingCardinalityEnum", "Type: Ncname", "Type: Nodeidentifier", "Type: Objectidentifier", "Position", "Class: RelationalDiff", "Type: Source", "Type: Sparqlpath", "Type: String", "Class: StructureDiffResultSet", "Type: Time", "Type: Uri", "Type: Uriorcurie", "Slot: category", "cross-ontology-diff", "Cross-Ontology Diff", "Slot: is_functional", "Slot: label", "Slot: left_object_id", "Slot: left_object_is_functional", "Slot: left_object_label", "Slot: left_object_name", "Slot: left_predicate_id", "Slot: left_predicate_label", "Slot: left_predicate_name", "Slot: left_side", "Slot: left_source", "Slot: left_subject_id", "Slot: left_subject_is_functional", "Slot: left_subject_label", "Slot: left_subject_name", "Slot: object", "Slot: object_mapping_cardinality", "Slot: object_mapping_predicate", "Slot: predicate", "Slot: results", "Slot: right_intermediate_ids", "Slot: right_object_id", "Slot: right_object_label", "Slot: right_object_name", "Slot: right_predicate_ids", "Slot: right_predicate_labels", "Slot: right_predicate_names", "Slot: right_side", "Slot: right_source", "Slot: right_subject_id", "Slot: right_subject_label", "Slot: right_subject_name", "Slot: side", "Slot: subject", "Slot: subject_mapping_cardinality", "Slot: subject_mapping_predicate", "types", "FunOwl", "Datamodels", "Type: Boolean", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Type: Float", "Type: Integer", "Class: ItemList", "Class: ItemListCollection", "Enum: ItemListOrderType", "Type: Jsonpath", "Type: Jsonpointer", "Class: ListItem", "Type: Ncname", "Type: Nodeidentifier", "Type: Objectidentifier", "Type: Sparqlpath", "Type: String", "Class: Thing", "Type: Time", "Type: Uri", "Type: Uriorcurie", "Slot: additionalType", "Slot: categories", "Slot: description", "Slot: elementId", "Slot: id", "Slot: idType", "Slot: identifiers", "Item List Data Model", "Slot: item", "itemList", "Slot: itemListElements", "Slot: itemLists", "Slot: itemMetadataMap", "Slot: keywords", "Slot: name", "Slot: numberOfItems", "Slot: position", "Slot: previousItem", "Slot: type", "Slot: url", "Slot: wasGeneratedBy", "KGCL", "Class: Activity", "Class: Any", "Type: Boolean", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Type: Float", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Class: LexicalGrouping", "Class: LexicalIndex", "Class: LexicalTransformation", "Class: LexicalTransformationPipeline", "Type: Ncname", "Type: Nodeidentifier", "Type: Objectidentifier", "Class: RelationshipToTerm", "Type: Sparqlpath", "Type: String", "Type: Time", "Enum: TransformationType", "Type: Uri", "Type: Uriorcurie", "Slot: element", "Slot: element_term", "Slot: groupings", "Lexical Index", "lexical-index", "lexican-index", "Slot: name", "Slot: params", "Slot: pipeline", "Slot: pipelines", "Slot: predicate", "Slot: relationships", "Slot: source", "Slot: synonymized", "Slot: term", "Slot: transformations", "Slot: type", "types", "Class: Activity", "Class: Any", "Type: Boolean", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Type: Float", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Class: LexicalGrouping", "Class: LexicalIndex", "Class: LexicalTransformation", "Class: LexicalTransformationPipeline", "Class: MappingRule", "Class: MappingRuleCollection", "Type: Ncname", "Type: Nodeidentifier", "Type: Objectidentifier", "Class: Postcondition", "Class: Precondition", "Class: RelationshipToTerm", "Type: Sparqlpath", "Type: String", "Class: Synonymizer", "Class: Test", "Type: Time", "Enum: TransformationType", "Type: Uri", "Type: Uriorcurie", "Slot: description", "Slot: element", "Slot: element_term", "Slot: groupings", "Mapping Rules Datamodel", "Slot: input", "lexical-index", "lexican-index", "mapping-rules", "mapping-rules-datamodel", "Slot: mapping_source_one_of", "Slot: match", "Slot: match_scope", "Slot: minimum_confidence", "Slot: name", "Slot: object_match_field_one_of", "Slot: object_source_one_of", "Slot: oneway", "Slot: output", "Slot: params", "Slot: pipeline", "Slot: pipelines", "Slot: postconditions", "Slot: preconditions", "Slot: predicate", "Slot: predicate_id", "Slot: predicate_id_one_of", "Slot: prefix", "Slot: qualifier", "Slot: relationships", "Slot: replacement", "Slot: rules", "Slot: source", "Slot: subject_match_field_one_of", "Slot: subject_source_one_of", "Slot: synonymized", "Slot: synonymizer", "Slot: term", "Slot: tests", "Slot: the_rule", "Slot: transformations", "Slot: transformations_included_in", "Slot: type", "types", "Slot: weight", "Class: Axiom", "Class: BasicPropertyValue", "Type: Boolean", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Class: DefinitionPropertyValue", "Class: DisjointClassExpressionsAxiom", "Class: DomainRangeAxiom", "Type: Double", "Class: Edge", "Class: EquivalentNodesSet", "Class: ExistentialRestrictionExpression", "Type: Float", "Class: Graph", "Class: GraphDocument", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Class: LogicalDefinitionAxiom", "Class: Meta", "Type: Ncname", "Class: Node", "Enum: NodeTypeEnum", "Type: Nodeidentifier", "Type: Objectidentifier", "Type: OboIdentifierString", "PredsEnum", "Class: PrefixDeclaration", "Class: PropertyChainAxiom", "Enum: PropertyTypeEnum", "Class: PropertyValue", "Enum: ScopeEnum", "ScopesEnum", "Type: Sparqlpath", "Type: String", "Class: SubsetDefinition", "Class: SynonymPropertyValue", "Class: SynonymTypeDefinition", "Type: SynonymTypeIdentifierString", "Type: Time", "Type: Uri", "Type: Uriorcurie", "Class: XrefPropertyValue", "Type: XrefString", "Slot: allValuesFromEdges", "Slot: basicPropertyValues", "Slot: chainPredicateIds", "Slot: classExpressions", "Slot: classIds", "Slot: comments", "Slot: definedClassId", "Slot: definition", "Slot: deprecated", "Slot: disjointClassExpressionsAxioms", "Slot: domainClassIds", "Slot: domainRangeAxioms", "Slot: edges", "Slot: equivalentNodesSets", "Slot: fillerId", "Slot: genusIds", "Slot: graphs", "Slot: id", "Obographs Datamodel", "Slot: isExact", "Slot: label", "Slot: lang", "Slot: lbl", "Slot: logicalDefinitionAxioms", "Slot: meta", "Slot: namespace", "Slot: nodeIds", "Slot: nodes", "Slot: obj", "obographs_datamodel", "obographs_linkml_model", "Slot: pred", "Slot: predicateId", "Slot: prefix", "Slot: prefixes", "Slot: propertyChainAxioms", "Slot: propertyId", "Slot: propertyType", "Slot: rangeClassIds", "Slot: representativeNodeId", "Slot: representitiveNodeId", "Slot: restrictions", "Slot: scope", "Slot: sub", "Slot: subsetDefinitions", "Slot: subsets", "Slot: synonymType", "Slot: synonymTypeDefinitions", "Slot: synonyms", "Slot: type", "types", "Slot: unionEquivalentTo", "Slot: unionEquivalentToExpression", "Slot: val", "Slot: valType", "Slot: version", "Slot: xrefs", "Class: Agent", "Subset: AllotropePermittedProfile", "Subset: AllotropeRequiredProfile", "Class: Annotation", "Class: AnnotationProperty", "Class: AnnotationPropertyMixin", "Class: Anonymous", "Class: AnonymousClassExpression", "Class: Any", "Class: Axiom", "Type: Boolean", "Type: CURIELiteral", "Class: Class", "Class: ClassExpression", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Enum: DefinitionConstraintComponent", "Type: Double", "Class: Expression", "Type: Float", "Subset: GoPermittedProfile", "Subset: GoRecommendedProfile", "Subset: GoRequiredProfile", "Class: HasCategory", "Class: HasLifeCycle", "Class: HasMappings", "Class: HasMinimalMetadata", "Class: HasProvenance", "Class: HasSynonyms", "Class: HasUserInformation", "Class: HomoSapiens", "Slot: IEDB_alternative_term", "Slot: ISA_alternative_term", "Class: Image", "Type: Integer", "Type: IriType", "Type: Jsonpath", "Type: Jsonpointer", "Type: LabelType", "Slot: NCIT_definition_source", "Slot: NCIT_term_source", "Slot: NCIT_term_type", "Class: NamedIndividual", "Class: NamedObject", "Type: NarrativeText", "Type: Ncname", "Type: Nodeidentifier", "Class: NotObsoleteAspect", "Slot: OBO_foundry_unique_label", "Subset: ObiPermittedProfile", "Subset: ObiRequiredProfile", "Class: ObjectProperty", "Type: Objectidentifier", "Class: ObsoleteAspect", "Class: Ontology", "Ontology-Metadata", "Class: Property", "Class: PropertyExpression", "Class: Restriction", "Type: Sparqlpath", "Type: String", "Class: Subset", "Class: Term", "Class: Thing", "Type: TidyString", "Type: Time", "Class: TransitiveProperty", "Type: URLLiteral", "Type: Uri", "Type: Uriorcurie", "Slot: allValuesFrom", "Slot: alternative_term", "Slot: annotatedProperty", "Slot: annotatedSource", "Slot: annotatedTarget", "Slot: annotations", "Slot: broadMatch", "Slot: cardinality", "Slot: category", "Slot: changeNote", "Slot: closeMatch", "Slot: comment", "Slot: complementOf", "Slot: conformsTo", "Slot: consider", "Slot: contributor", "Slot: core_property", "Slot: created", "Slot: created_by", "Slot: creation_date", "Slot: creator", "Slot: curator_note", "Slot: database_cross_reference", "Slot: date", "Slot: date_retrieved", "Slot: defaultLanguage", "Slot: definition", "Slot: definition_source", "Slot: depicted_by", "Slot: deprecated", "Slot: disconnected_from", "Slot: disjointWith", "Slot: distinctMembers", "Slot: domain", "Slot: editor_note", "Slot: editor_preferred_term", "Slot: equivalentClass", "Slot: equivalentProperty", "Slot: evidence", "Slot: exactMatch", "Slot: example_of_usage", "Slot: excluded_axiom", "Slot: excluded_from_QC_check", "Slot: excluded_subClassOf", "Slot: excluded_synonym", "Slot: external_ontology", "Slot: hasValue", "Slot: has_alternative_id", "Slot: has_axiom_label", "Slot: has_broad_synonym", "Slot: has_curation_status", "Slot: has_exact_synonym", "Slot: has_narrow_synonym", "Slot: has_obo_namespace", "Slot: has_obsolescence_reason", "Slot: has_ontology_root_term", "Slot: has_rank", "Slot: has_related_synonym", "Slot: has_synonym_type", "Slot: id", "Slot: image", "Slot: imported_from", "Slot: imports", "Slot: in_subset", "Ontology Metadata Ontology Schema", "Slot: informative_property", "Slot: intersectionOf", "Slot: inverseOf", "Slot: isDefinedBy", "Slot: is_a_defining_property_chain_axiom", "Slot: is_a_defining_property_chain_axiom_where_second_argument_is_reflexive", "Slot: is_class_level", "Slot: is_cyclic", "Slot: is_inferred", "Slot: is_metadata_tag", "Slot: is_transitive", "Slot: label", "Slot: language", "Slot: license", "Slot: logical_predicate", "Slot: match", "Slot: match_aspect", "Slot: maxQualifiedCardinality", "Slot: members", "Slot: minCardinality", "Slot: minQualifiedCardinality", "Slot: narrowMatch", "Slot: never_in_taxon", "Slot: notes", "Slot: object", "Slot: oboInOwl_id", "Slot: oboInOwl_ontology", "Slot: obsoletion_related_property", "omo-schema", "Slot: onClass", "Slot: onProperty", "Slot: oneOf", "Slot: ontology_term_requester", "Slot: page", "Slot: predicate", "Slot: propertyChainAxiom", "Slot: provenance_property", "Slot: qualifiedCardinality", "Slot: range", "Slot: reification_predicate", "Slot: sameAs", "Slot: seeAlso", "Slot: shortcut_annotation_property", "Slot: shorthand", "Slot: should_conform_to", "Slot: someValuesFrom", "Slot: source", "Slot: subClassOf", "Slot: synonym", "Slot: temporal_interpretation", "Slot: term_editor", "Slot: term_replaced_by", "Slot: term_tracker_item", "Slot: title", "Slot: type", "types", "Slot: unionOf", "Slot: url", "Slot: versionIRI", "Slot: versionInfo", "Slot: version_property", "Type: Boolean", "Enum: BooleanOperator", "Class: ComplexQuery", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Type: Float", "Enum: GraphFunction", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Type: Ncname", "Type: Nodeidentifier", "Type: Objectidentifier", "Class: PathExpression", "Class: SearchBaseConfiguration", "Enum: SearchProperty", "Class: SearchResult", "Class: SearchResultSet", "Type: SearchTerm", "Enum: SearchTermSyntax", "Type: Sparqlpath", "Type: String", "Type: Time", "Type: Uri", "Type: Uriorcurie", "Slot: all_of", "Slot: any_of", "Slot: atom", "Slot: categories", "Slot: configuration", "Slot: cursor", "Slot: force_case_insensitive", "Slot: graph_predicates", "Slot: include_aliases", "Slot: include_definition", "Slot: include_id", "Slot: include_label", "Slot: include_obsoletes_in_results", "search datamodel", "Slot: is_complete", "Slot: is_fuzzy", "Slot: is_partial", "Slot: is_regular_expression", "Slot: limit", "Slot: matches_full_search_term", "Slot: none_of", "Slot: object_id", "Slot: object_label", "Slot: object_match_field", "Slot: object_source", "Slot: object_source_version", "Slot: path_to", "Slot: properties", "Slot: rank", "Slot: result_count", "Slot: results", "search-datamodel", "Slot: search_term", "Slot: search_terms", "Slot: snippet", "Slot: syntax", "Slot: traversal", "types", "SemSQL", "Class: BestMatch", "Type: Boolean", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Type: Float", "Type: Integer", "Type: ItemCount", "Type: Jsonpath", "Type: Jsonpointer", "Type: Ncname", "Type: NegativeLogValue", "Type: Nodeidentifier", "Type: NonNegativeFloat", "Type: Objectidentifier", "Class: PairwiseSimilarity", "Type: Sparqlpath", "Type: String", "Class: TermInfo", "Class: TermPairwiseSimilarity", "Class: TermSetPairwiseSimilarity", "Type: Time", "Type: Uri", "Type: Uriorcurie", "Type: ZeroToOne", "Slot: ancestor_id", "Slot: ancestor_information_content", "Slot: ancestor_label", "Slot: ancestor_source", "Slot: average_score", "Slot: best_score", "Slot: cosine_similarity", "Slot: dice_similarity", "Slot: id", "Semantic Similarity", "Slot: information_content", "Slot: intersection_count", "Slot: jaccard_similarity", "Slot: label", "Slot: match_source", "Slot: match_source_label", "Slot: match_subsumer", "Slot: match_subsumer_label", "Slot: match_target", "Slot: match_target_label", "Slot: metric", "Slot: object_best_matches", "Slot: object_id", "Slot: object_information_content", "Slot: object_label", "Slot: object_source", "Slot: object_termset", "Slot: overlap_coefficient", "Slot: phenodigm_score", "Slot: score", "Slot: similarity", "Slot: subject_best_matches", "Slot: subject_id", "Slot: subject_information_content", "Slot: subject_label", "Slot: subject_source", "Slot: subject_termset", "Slot: subsumed_by_score", "Slot: subsumes_score", "types", "Slot: union_count", "SSSOM", "Class: Agent", "Type: Boolean", "Class: ChangeTypeStatistic", "Class: ContributorRole", "Class: ContributorStatistics", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Class: FacetStatistics", "Class: FacetedCount", "Type: Float", "Class: GlobalStatistics", "Class: GroupedStatistics", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Type: Ncname", "Type: Nodeidentifier", "Type: Objectidentifier", "Class: Ontology", "Type: Sparqlpath", "Type: String", "Class: SummaryStatisticCollection", "Class: SummaryStatisticsCalculationActivity", "Class: SummaryStatisticsReport", "Type: Time", "Class: UngroupedStatistics", "Type: Uri", "Type: Uriorcurie", "Slot: acted_on_behalf_of", "Slot: agents", "Slot: annotation_property_count", "Slot: anonymous_class_expression_count", "Slot: anonymous_individual_count", "Slot: by_category", "Slot: by_ontology", "Slot: by_subset", "Slot: by_taxon", "Slot: change_summary", "Slot: class_count", "Slot: class_count_by_category", "Slot: class_count_by_subset", "Slot: class_count_excluding_deprecated", "Slot: class_count_with_definitions", "Slot: class_count_with_text_definitions", "Slot: class_count_without_text_definitions", "Slot: class_statistic_group", "Slot: compared_with", "Slot: contributor_id", "Slot: contributor_name", "Slot: contributor_summary", "Slot: count_statistic", "Slot: datatype_property_count", "Slot: deprecated_class_count", "Slot: deprecated_object_property_count", "Slot: description", "Slot: description_logic_profile", "Slot: distinct_synonym_count", "Slot: edge_count_by_predicate", "Slot: ended_at_time", "Slot: entailed_edge_count_by_predicate", "Slot: equivalent_classes_axiom_count", "Slot: equivalentclasses_axiom_count", "Slot: facet", "Slot: filtered_count", "Slot: id", "Summary Statistics Datamodel", "Slot: individual_count", "Slot: individual_statistic_group", "Slot: label", "Slot: mapping_count", "Slot: mapping_statement_count_by_object_source", "Slot: mapping_statement_count_by_predicate", "Slot: mapping_statement_count_subject_by_object_source", "Slot: merged_class_count", "Slot: metadata_statistic_group", "Slot: named_individual_count", "Slot: non_deprecated_class_count", "Slot: non_deprecated_object_property_count", "Slot: normalization_comments", "Slot: object_property_count", "Slot: ontologies", "Slot: ontology_count", "Slot: owl_axiom_count", "Slot: owl_statistic_group", "Slot: partitions", "Slot: prefix", "Slot: property_count", "Slot: property_statistic_group", "Slot: rdf_triple_count", "Slot: role_counts", "Slot: started_at_time", "Slot: subclass_of_axiom_count", "Slot: subset_count", "summary-statistics", "Slot: synonym_statement_count", "Slot: synonym_statement_count_by_predicate", "Slot: title", "types", "Slot: unsatisfiable_class_count", "Slot: untyped_entity_count", "Slot: version", "Slot: version_info", "Slot: was_associated_with", "Slot: was_generated_by", "Type: Boolean", "Enum: ConfigurationOption", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Type: Float", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Type: Ncname", "Type: Nodeidentifier", "Type: Objectidentifier", "Class: PredicateTerm", "Type: Sparqlpath", "Type: String", "Class: SubjectTerm", "Class: Taxon", "Class: TaxonConstraint", "Class: Term", "Type: Time", "Type: Uri", "Type: Uriorcurie", "Slot: asserted", "Slot: candidate", "Slot: comments", "Slot: contradicted_by", "Slot: description", "Slot: evolutionary", "Slot: id", "Taxon Constraints Reporting Datamodel", "Slot: label", "Slot: never_in", "Slot: only_in", "Slot: predicate", "Slot: predicates", "Slot: present_in", "Slot: present_in_ancestor_of", "Slot: redundant", "Slot: redundant_with", "Slot: redundant_with_only_in", "Slot: sources", "Slot: subject", "Slot: taxon", "taxon-constraints", "Slot: unsatisfiable", "Slot: via_terms", "Type: Boolean", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Type: Float", "Class: HasSpan", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Type: Ncname", "Type: Nodeidentifier", "Type: Objectidentifier", "Type: Position", "Type: Sparqlpath", "Type: String", "Class: TextAnnotation", "Class: TextAnnotationConfiguration", "Class: TextAnnotationResultSet", "Class: TextualElement", "Type: Time", "Enum: TransformationType", "Type: Uri", "Type: Uriorcurie", "Slot: annotations", "Slot: categories", "Slot: confidence", "Slot: id", "Slot: include_aliases", "Text Annotator Datamodel", "Slot: info", "Slot: is_longest_match", "Slot: limit", "Slot: match_string", "Slot: match_type", "Slot: matches_whole_text", "Slot: model", "Slot: object_aliases", "Slot: object_categories", "Slot: object_id", "Slot: object_label", "Slot: object_source", "Slot: parent_document", "Slot: predicate_id", "Slot: source_text", "Slot: sources", "Slot: subject_end", "Slot: subject_label", "Slot: subject_source", "Slot: subject_start", "Slot: subject_text_id", "Slot: text", "text-annotator", "Slot: token_exclusion_list", "types", "Type: Boolean", "Class: ConstraintComponent", "Type: Curie", "Type: Date", "Type: DateOrDatetime", "Type: Datetime", "Type: Decimal", "Type: Double", "Class: ExternalReferenceValidationResult", "Type: Float", "Type: Integer", "Type: Jsonpath", "Type: Jsonpointer", "Class: MappingValidationResult", "Class: NamedResource", "Type: Ncname", "Class: Node", "Type: Nodeidentifier", "Type: Objectidentifier", "Class: RepairConfiguration", "Class: RepairOperation", "Class: RepairReport", "Class: Report", "Class: Result", "Enum: SeverityOptions", "Type: Sparqlpath", "Type: String", "Type: Time", "Class: TypeSeverityKeyValue", "Type: Uri", "Type: Uriorcurie", "Class: ValidationConfiguration", "Class: ValidationReport", "Class: ValidationResult", "Enum: ValidationResultType", "Slot: category", "Slot: confidence", "Slot: dry_run", "Slot: http_response_code", "Slot: id", "Validation Results Datamodel", "Slot: info", "Slot: instantiates", "Slot: max_number_results_per_type", "Slot: modified", "Slot: number_of_attempts", "Slot: object", "Slot: object_id", "Slot: object_info", "Slot: object_str", "Slot: predicate", "Slot: predicate_id", "Slot: problem", "Slot: prompt_info", "Slot: repairs", "Slot: results", "Slot: schema_path", "Slot: severity", "Slot: source", "Slot: subject", "Slot: subject_id", "Slot: subject_info", "Slot: successful", "Slot: suggested_modifications", "Slot: suggested_predicate", "Slot: time_checked", "Slot: type", "Slot: type_severity_map", "types", "Slot: url", "Slot: validation_configuration", "validaton-results", "FAQ: Architecture and Design", "FAQ: Command Line", "FAQ: Contributing", "FAQ: General", "FAQ", "FAQ: Ontologies", "FAQ: Troubleshooting", "Glossary", "Aliases and Synonyms", "Associations and Curated Annotations", "OAK Basics", "Identifying entities: CURIEs and URIs", "The OAK Guide", "Learning More", "Logical Definitions", "Mappings and Cross-References", "Obsoletion", "Primary Labels", "Relationships and Graphs", "Computing Similarity between Entities", "FHIR Conversions", "How-To Guides", "<no title>", "<no title>", "How to use Large Language Models (LLMs) with OAK", "How to Validate an OBO ontology using Obo Metadata Ontology schema", "<no title>", "How to write a plugin", "Ontology Access Kit (OAK) Documentation", "Tutorial", "Part 1: Getting Started", "Part 2: Basic Python", "Part 3: Triplestore Backends", "Part 4: OboGraphs", "Part 5: Graph Visualization", "Part 6: Working With OWL", "Part 7: SQLite files", "Part 8: Applying Changes to Ontologies", "Introduction", "<no title>", "Jupyter Notebooks", "Architecture", "Best Practice", "Abstract Class", "Converters", "OBO Graph to CX Converter", "OBO Graph to FHIR Converter", "OBO Graph to OBO Format Converter", "OBO Graph to OWL Converter", "Aggregator Adapter", "Bioportal Adapter", "FunOwl Adapter", "Gilda Adapter", "Implementations", "LLM Adapter", "OBO Graph Adapter", "Ontology Lookup Service (OLS) Adapter", "Ontobee Adapter", "Owlery Adapter", "PantherDB Adapter", "Pronto / OBO Files Adapter", "Simple OBO Adapter", "Sparql Adapter", "SQL Database Adapter", "Ubergraph Adapter", "OAK Library Documentation", "Association Provider Interface", "Basic Ontology Interface", "Class Enrichment Calculation Interface", "Differ Interface", "Dumper Interface", "Interfaces", "Mapping Provider Interface", "OboGraph Interface", "OWL Interface", "Patcher Interface", "Relation Graph", "Search Interface", "Semantic Similarity Interface", "Subsetting", "Summary Statistics", "Text Annotator Interface", "Validator Interface", "Ontology Adapter Selectors", "oaklib.utilities.apikey_manager", "oaklib.utilities.graph.networkx_bridge", "oaklib.utilities.graph.relationship_walker", "oaklib.utilities.lexical.lexical_indexer", "oaklib.utilities.obograph_utils", "oaklib.utilities.subsets.slimmer_utils", "oaklib.utilities.table_filler", "oaklib.utilities.taxon", "Utilities", "Layering on RDF/OWL", "Search Syntax"], "terms": {"we": [0, 1, 2, 248, 742, 812, 939, 956, 1100, 1101, 1102, 1103, 1105, 1106, 1107, 1108, 1109, 1110, 1113, 1116, 1117, 1118, 1119, 1123, 1126, 1129, 1130, 1131, 1132, 1134, 1135, 1136, 1140, 1162, 1165, 1166, 1167, 1173, 1182, 1192], "follow": [0, 2, 41, 46, 411, 437, 465, 476, 485, 495, 505, 509, 512, 521, 541, 625, 936, 940, 1099, 1100, 1102, 1106, 1108, 1110, 1113, 1117, 1119, 1123, 1124, 1126, 1129, 1130, 1131, 1132, 1133, 1135, 1137, 1141, 1145, 1159, 1162, 1166, 1172, 1181, 1182], "clig": [0, 1100, 1141], "far": [0, 2, 1100, 1113, 1129, 1131, 1132, 1149], "possibl": [0, 1, 2, 765, 771, 1100, 1102, 1106, 1107, 1117, 1129, 1131, 1141, 1166, 1181, 1191, 1192], "you": [0, 1, 202, 212, 213, 228, 1100, 1101, 1102, 1104, 1105, 1107, 1108, 1109, 1110, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1123, 1124, 1126, 1129, 1130, 1132, 1133, 1135, 1140, 1141, 1145, 1149, 1156, 1158, 1159, 1162, 1165, 1170, 1171, 1176, 1182, 1192], "ar": [0, 1, 2, 3, 17, 22, 31, 41, 46, 65, 66, 85, 86, 140, 153, 163, 202, 214, 265, 273, 279, 282, 291, 310, 311, 324, 327, 331, 341, 344, 349, 350, 363, 367, 373, 380, 381, 384, 385, 386, 393, 394, 405, 411, 413, 417, 422, 423, 434, 437, 443, 445, 448, 458, 460, 475, 693, 694, 717, 731, 735, 737, 765, 771, 828, 840, 842, 882, 897, 941, 953, 963, 989, 993, 1000, 1001, 1008, 1058, 1067, 1070, 1099, 1100, 1101, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1123, 1124, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1140, 1141, 1143, 1145, 1149, 1151, 1158, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1170, 1171, 1173, 1174, 1175, 1176, 1177, 1178, 1181, 1182, 1191, 1192], "run": [0, 2, 273, 324, 993, 1102, 1115, 1123, 1128, 1135, 1145, 1176], "thi": [0, 1, 4, 6, 21, 22, 42, 45, 46, 49, 50, 51, 56, 70, 71, 93, 95, 115, 121, 125, 130, 132, 135, 142, 202, 204, 212, 213, 217, 223, 227, 230, 232, 233, 249, 252, 294, 297, 335, 372, 375, 381, 382, 386, 388, 393, 394, 396, 400, 405, 410, 411, 412, 418, 419, 420, 424, 425, 429, 431, 434, 437, 441, 443, 446, 451, 455, 457, 460, 464, 465, 470, 471, 476, 480, 482, 488, 490, 503, 509, 512, 521, 522, 530, 533, 535, 540, 541, 542, 545, 596, 608, 613, 678, 693, 695, 717, 732, 735, 737, 745, 761, 818, 828, 840, 842, 882, 889, 923, 936, 940, 941, 942, 947, 949, 953, 957, 961, 962, 965, 966, 969, 971, 989, 1001, 1008, 1024, 1029, 1049, 1050, 1058, 1067, 1070, 1080, 1099, 1100, 1102, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1123, 1126, 1128, 1129, 1130, 1131, 1132, 1134, 1135, 1136, 1137, 1140, 1141, 1142, 1145, 1148, 1149, 1154, 1155, 1156, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1178, 1179, 1180, 1181, 1182, 1191, 1192, 1193], "an": [0, 1, 2, 3, 4, 7, 13, 17, 19, 22, 23, 24, 28, 31, 42, 44, 46, 60, 75, 89, 96, 102, 107, 113, 125, 136, 140, 144, 151, 153, 154, 159, 161, 163, 164, 166, 167, 168, 170, 171, 173, 175, 176, 177, 180, 181, 184, 185, 186, 188, 189, 193, 194, 198, 199, 201, 202, 205, 211, 212, 217, 220, 225, 227, 228, 230, 232, 234, 235, 243, 244, 249, 253, 259, 263, 264, 268, 269, 274, 276, 277, 278, 279, 280, 281, 283, 284, 285, 286, 288, 289, 292, 294, 298, 304, 308, 309, 311, 315, 317, 318, 325, 327, 328, 329, 330, 331, 333, 334, 337, 342, 343, 344, 346, 347, 348, 349, 350, 351, 353, 359, 360, 361, 362, 363, 368, 369, 372, 373, 376, 380, 381, 382, 384, 385, 386, 388, 389, 390, 393, 394, 396, 399, 400, 402, 403, 405, 411, 412, 415, 417, 420, 421, 422, 423, 424, 425, 426, 427, 433, 434, 435, 436, 437, 438, 440, 441, 443, 444, 447, 448, 450, 451, 452, 454, 455, 456, 458, 460, 462, 464, 465, 467, 468, 470, 471, 472, 473, 474, 475, 476, 480, 482, 485, 488, 491, 495, 502, 505, 509, 510, 511, 512, 513, 514, 517, 521, 522, 527, 530, 531, 533, 535, 540, 541, 542, 545, 547, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 580, 582, 583, 584, 586, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 604, 606, 608, 609, 610, 611, 612, 613, 616, 617, 620, 621, 623, 624, 625, 627, 635, 646, 647, 649, 652, 655, 657, 658, 660, 663, 664, 665, 666, 667, 668, 672, 673, 679, 686, 691, 693, 694, 695, 702, 717, 723, 725, 726, 727, 728, 729, 732, 737, 738, 746, 752, 760, 761, 768, 780, 813, 819, 829, 834, 835, 839, 840, 842, 843, 845, 854, 871, 875, 881, 882, 885, 902, 907, 913, 917, 918, 919, 924, 930, 935, 941, 942, 944, 946, 947, 948, 949, 951, 952, 953, 954, 957, 958, 961, 962, 963, 964, 965, 966, 969, 972, 978, 979, 984, 988, 994, 998, 1001, 1002, 1003, 1005, 1006, 1007, 1009, 1010, 1011, 1012, 1013, 1015, 1018, 1019, 1020, 1021, 1022, 1030, 1035, 1037, 1045, 1047, 1049, 1050, 1056, 1060, 1061, 1065, 1067, 1068, 1069, 1071, 1072, 1073, 1076, 1077, 1081, 1084, 1085, 1086, 1089, 1092, 1093, 1096, 1102, 1103, 1105, 1106, 1107, 1108, 1110, 1111, 1113, 1115, 1116, 1117, 1118, 1119, 1120, 1123, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1136, 1137, 1140, 1141, 1144, 1145, 1146, 1148, 1149, 1150, 1153, 1154, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1180, 1181, 1182, 1192], "intern": [0, 142, 1100, 1107, 1166], "oak": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 232, 233, 234, 235, 236, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 710, 711, 716, 717, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 825, 826, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1101, 1103, 1104, 1106, 1110, 1112, 1115, 1116, 1117, 1118, 1119, 1120, 1126, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1141, 1143, 1148, 1156, 1158, 1165, 1176, 1180, 1182], "develop": [0, 1099, 1100, 1102, 1104, 1106, 1107, 1113, 1117, 1118, 1123, 1126, 1130, 1132, 1135, 1137, 1140, 1170], "need": [0, 1, 202, 1099, 1103, 1107, 1108, 1113, 1119, 1129, 1135, 1140, 1149, 1158, 1162, 1180, 1192], "preced": [0, 403, 421, 437, 1171], "poetri": [0, 1123, 1126, 1128, 1176], "shell": 0, "The": [0, 1, 2, 3, 4, 9, 14, 15, 17, 21, 22, 23, 25, 30, 31, 36, 39, 40, 41, 42, 43, 46, 52, 54, 55, 65, 66, 67, 68, 69, 72, 73, 74, 75, 76, 78, 82, 84, 85, 86, 87, 89, 90, 93, 94, 98, 103, 104, 109, 110, 116, 117, 119, 120, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 138, 145, 146, 148, 153, 154, 155, 163, 165, 166, 168, 169, 170, 171, 172, 173, 175, 177, 178, 179, 180, 181, 182, 185, 186, 187, 189, 190, 191, 193, 194, 195, 197, 198, 199, 207, 212, 214, 215, 216, 217, 221, 223, 230, 232, 234, 235, 236, 237, 239, 242, 243, 244, 245, 247, 255, 260, 261, 264, 270, 273, 279, 292, 300, 305, 306, 309, 319, 321, 322, 324, 331, 369, 373, 378, 380, 381, 385, 388, 391, 392, 393, 394, 396, 397, 402, 404, 405, 406, 408, 410, 411, 412, 417, 418, 422, 423, 425, 434, 436, 437, 444, 448, 452, 458, 460, 475, 493, 515, 516, 538, 613, 681, 687, 688, 693, 694, 695, 698, 699, 717, 725, 726, 727, 728, 735, 737, 748, 754, 755, 762, 765, 772, 780, 781, 783, 793, 794, 803, 804, 821, 828, 830, 831, 836, 840, 842, 882, 920, 926, 931, 932, 937, 939, 941, 953, 957, 958, 959, 965, 966, 974, 978, 980, 981, 986, 988, 989, 1001, 1004, 1008, 1019, 1032, 1035, 1038, 1039, 1040, 1047, 1052, 1060, 1062, 1067, 1068, 1069, 1071, 1077, 1081, 1086, 1089, 1093, 1099, 1102, 1104, 1105, 1106, 1107, 1108, 1109, 1112, 1114, 1115, 1116, 1117, 1118, 1119, 1123, 1124, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1135, 1136, 1137, 1140, 1141, 1143, 1145, 1149, 1156, 1162, 1165, 1166, 1167, 1168, 1170, 1171, 1175, 1176, 1177, 1180, 1181, 1182, 1192, 1193], "structur": [0, 1, 153, 163, 437, 448, 717, 735, 1061, 1099, 1106, 1107, 1111, 1113, 1115, 1117, 1129, 1145, 1181], "i": [0, 1, 2, 3, 4, 17, 22, 23, 24, 28, 31, 36, 41, 42, 44, 46, 49, 50, 51, 53, 56, 60, 67, 70, 71, 81, 84, 87, 93, 113, 115, 121, 125, 140, 142, 147, 153, 159, 161, 163, 164, 167, 173, 176, 182, 188, 191, 201, 202, 212, 213, 217, 223, 225, 227, 232, 233, 234, 236, 249, 274, 279, 280, 294, 311, 316, 325, 331, 333, 350, 352, 372, 373, 381, 384, 386, 388, 389, 393, 394, 396, 400, 402, 405, 413, 415, 418, 419, 420, 424, 425, 428, 430, 431, 432, 433, 435, 436, 437, 440, 441, 442, 443, 446, 447, 448, 450, 452, 453, 454, 455, 456, 462, 463, 466, 468, 471, 472, 473, 475, 476, 480, 482, 488, 503, 507, 509, 512, 521, 526, 530, 532, 535, 540, 541, 542, 545, 547, 578, 596, 613, 693, 698, 702, 717, 720, 735, 737, 739, 743, 761, 765, 768, 771, 780, 781, 785, 827, 840, 842, 843, 882, 939, 941, 942, 944, 946, 947, 949, 950, 951, 952, 953, 954, 955, 956, 959, 960, 961, 962, 965, 966, 968, 969, 978, 988, 989, 994, 1001, 1019, 1035, 1040, 1049, 1050, 1056, 1060, 1061, 1062, 1063, 1065, 1067, 1068, 1069, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1082, 1084, 1085, 1086, 1087, 1088, 1090, 1091, 1092, 1093, 1096, 1103, 1106, 1107, 1108, 1110, 1111, 1113, 1114, 1115, 1116, 1118, 1119, 1120, 1123, 1124, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1140, 1141, 1143, 1145, 1148, 1149, 1151, 1153, 1154, 1156, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1184, 1192, 1193], "input": [0, 2, 322, 331, 1099, 1105, 1106, 1108, 1110, 1115, 1116, 1117, 1119, 1126, 1129, 1130, 1136, 1143, 1145, 1154, 1156, 1158, 1162, 1165, 1166, 1167, 1171, 1172, 1176, 1180, 1182], "handl": [0, 1, 828, 840, 842, 882, 1109, 1114, 1115, 1129], "arg": [0, 1165, 1171, 1176, 1180, 1193], "AND": [0, 676, 939, 955, 956, 1149, 1151, 1153], "option": [0, 1, 212, 279, 280, 333, 693, 737, 1102, 1103, 1108, 1110, 1113, 1118, 1119, 1124, 1126, 1129, 1133, 1135, 1136, 1142, 1145, 1148, 1149, 1151, 1153, 1154, 1158, 1159, 1160, 1165, 1166, 1171, 1172, 1177, 1182, 1192], "valu": [0, 1, 3, 4, 5, 14, 15, 17, 20, 21, 22, 23, 24, 25, 46, 60, 75, 79, 91, 92, 93, 94, 103, 104, 110, 125, 126, 127, 128, 129, 134, 145, 146, 153, 155, 157, 163, 203, 212, 213, 215, 216, 217, 221, 223, 232, 234, 245, 249, 250, 251, 260, 261, 262, 263, 264, 265, 269, 270, 279, 294, 295, 296, 305, 306, 307, 308, 309, 310, 311, 312, 316, 317, 318, 319, 321, 322, 331, 372, 373, 374, 380, 381, 382, 384, 385, 386, 388, 389, 391, 392, 393, 394, 396, 402, 403, 405, 408, 410, 411, 412, 417, 420, 422, 433, 437, 438, 440, 443, 450, 455, 465, 467, 472, 473, 475, 476, 479, 480, 481, 482, 483, 484, 485, 486, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 512, 515, 516, 521, 522, 526, 530, 532, 533, 535, 536, 537, 538, 540, 541, 542, 545, 613, 675, 677, 687, 688, 692, 693, 695, 696, 699, 717, 743, 744, 754, 755, 761, 762, 764, 765, 766, 780, 813, 814, 815, 816, 817, 824, 825, 827, 828, 830, 831, 835, 836, 838, 839, 840, 842, 847, 849, 855, 856, 857, 860, 861, 862, 868, 869, 870, 873, 874, 876, 882, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 898, 899, 904, 909, 911, 912, 915, 921, 931, 932, 936, 937, 939, 940, 941, 942, 953, 957, 970, 978, 980, 981, 986, 988, 989, 990, 991, 1001, 1027, 1028, 1035, 1038, 1039, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1052, 1055, 1058, 1059, 1060, 1067, 1073, 1084, 1093, 1100, 1107, 1113, 1123, 1129, 1163, 1166, 1167, 1168, 1173, 1174, 1175, 1179, 1181], "which": [0, 1, 3, 4, 17, 22, 28, 41, 46, 84, 87, 113, 159, 202, 225, 274, 325, 386, 394, 405, 415, 437, 464, 547, 693, 694, 695, 702, 717, 727, 731, 768, 828, 839, 840, 842, 843, 875, 882, 897, 907, 941, 944, 953, 965, 966, 994, 1035, 1056, 1060, 1061, 1067, 1077, 1086, 1099, 1100, 1102, 1106, 1107, 1108, 1109, 1110, 1111, 1113, 1114, 1115, 1118, 1119, 1123, 1124, 1126, 1129, 1132, 1140, 1141, 1145, 1158, 1162, 1163, 1166, 1170, 1173, 1176, 1180, 1181, 1182, 1192], "can": [0, 1, 2, 23, 46, 60, 75, 140, 217, 223, 230, 273, 279, 311, 324, 331, 344, 389, 405, 406, 437, 448, 507, 510, 511, 527, 550, 584, 598, 600, 601, 606, 613, 693, 694, 717, 816, 881, 882, 993, 1001, 1099, 1103, 1104, 1106, 1107, 1108, 1109, 1110, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1123, 1124, 1126, 1129, 1130, 1131, 1133, 1135, 1136, 1137, 1140, 1141, 1145, 1156, 1159, 1160, 1162, 1163, 1166, 1170, 1171, 1179, 1181, 1182, 1192, 1193], "short": [0, 1109, 1129, 1166], "specifi": [0, 331, 335, 336, 428, 437, 693, 707, 709, 710, 716, 717, 718, 719, 720, 722, 731, 737, 739, 939, 953, 955, 956, 959, 1061, 1100, 1102, 1106, 1108, 1113, 1115, 1116, 1117, 1118, 1123, 1126, 1129, 1131, 1135, 1136, 1145, 1154, 1159, 1160, 1162, 1166, 1167, 1172, 1173, 1176, 1178, 1181, 1182, 1192, 1193], "adapt": [0, 1099, 1100, 1102, 1105, 1106, 1107, 1109, 1110, 1114, 1115, 1116, 1117, 1118, 1120, 1126, 1127, 1129, 1130, 1131, 1135, 1137, 1140, 1141, 1152, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1175, 1176, 1178, 1180, 1181], "selector": [0, 1099, 1100, 1102, 1106, 1109, 1117, 1118, 1120, 1127, 1129, 1135, 1149, 1151, 1153, 1154, 1156, 1158, 1160, 1162, 1163, 1164], "document": [0, 14, 15, 25, 103, 104, 110, 145, 146, 155, 215, 216, 221, 260, 261, 270, 305, 306, 319, 389, 391, 392, 408, 435, 437, 443, 453, 515, 516, 538, 687, 688, 699, 754, 755, 762, 830, 831, 836, 931, 932, 937, 980, 981, 986, 1038, 1039, 1052, 1100, 1101, 1102, 1105, 1106, 1107, 1118, 1126, 1129, 1130, 1131, 1132, 1136, 1140, 1144, 1145, 1146, 1152, 1193], "exampl": [0, 1, 202, 212, 217, 223, 230, 233, 234, 247, 476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 589, 642, 694, 825, 827, 828, 901, 1099, 1103, 1104, 1105, 1106, 1107, 1109, 1111, 1113, 1115, 1116, 1118, 1119, 1120, 1123, 1124, 1127, 1128, 1129, 1131, 1133, 1141, 1145, 1152, 1164, 1165, 1166, 1167, 1170, 1172, 1173, 1174, 1176, 1180, 1181, 1192, 1193], "ubergraph": [0, 1103, 1106, 1110, 1111, 1116, 1117, 1128, 1136, 1140, 1141, 1152, 1161, 1164, 1170, 1176, 1178, 1182], "fbbt": [0, 1129, 1133], "obo": [0, 1, 388, 389, 394, 396, 400, 402, 410, 412, 413, 418, 424, 436, 437, 453, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 936, 939, 940, 942, 952, 953, 1035, 1060, 1093, 1099, 1100, 1101, 1103, 1106, 1108, 1109, 1110, 1111, 1112, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1123, 1127, 1128, 1130, 1131, 1133, 1135, 1137, 1140, 1141, 1148, 1152, 1153, 1156, 1162, 1163, 1164, 1166, 1167, 1170, 1171, 1172, 1176, 1180, 1182, 1192], "cl": [0, 939, 953, 1099, 1100, 1104, 1105, 1106, 1110, 1123, 1129, 1130, 1135, 1137, 1153, 1163, 1165, 1176, 1180, 1182], "db": [0, 1105, 1124, 1135, 1136, 1148, 1162, 1165, 1166, 1172, 1176, 1182, 1192], "sqlite": [0, 1099, 1100, 1102, 1103, 1104, 1107, 1108, 1113, 1114, 1115, 1117, 1118, 1120, 1123, 1127, 1128, 1129, 1130, 1131, 1136, 1137, 1140, 1141, 1145, 1148, 1153, 1162, 1166, 1168, 1169, 1170, 1171, 1172, 1175, 1176, 1178, 1181, 1192], "It": [0, 1, 402, 405, 437, 452, 717, 735, 1099, 1100, 1102, 1106, 1107, 1109, 1113, 1114, 1115, 1116, 1118, 1123, 1129, 1140, 1163, 1166, 1176], "us": [0, 1, 3, 4, 19, 23, 24, 31, 36, 46, 89, 93, 107, 147, 151, 153, 163, 202, 212, 213, 217, 220, 223, 227, 228, 234, 240, 250, 262, 263, 264, 265, 268, 269, 273, 277, 279, 285, 295, 307, 308, 309, 310, 311, 315, 316, 317, 318, 321, 322, 324, 329, 331, 348, 373, 380, 382, 384, 385, 386, 388, 389, 393, 394, 396, 399, 402, 403, 406, 410, 411, 412, 417, 418, 437, 438, 453, 476, 479, 480, 484, 485, 488, 489, 507, 510, 511, 512, 518, 519, 520, 521, 522, 526, 527, 531, 532, 533, 535, 536, 540, 542, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 582, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 620, 623, 625, 635, 646, 647, 652, 655, 657, 658, 664, 665, 666, 668, 677, 691, 693, 695, 716, 717, 718, 737, 743, 760, 764, 765, 813, 815, 817, 824, 825, 834, 835, 839, 842, 882, 935, 936, 939, 940, 941, 984, 988, 989, 991, 993, 1001, 1008, 1028, 1035, 1043, 1045, 1047, 1050, 1055, 1058, 1060, 1067, 1068, 1069, 1073, 1076, 1077, 1084, 1085, 1086, 1093, 1103, 1104, 1106, 1108, 1109, 1110, 1111, 1112, 1114, 1115, 1116, 1118, 1119, 1120, 1126, 1127, 1128, 1130, 1131, 1132, 1133, 1135, 1136, 1137, 1140, 1141, 1142, 1143, 1145, 1148, 1149, 1151, 1153, 1154, 1155, 1156, 1158, 1159, 1160, 1162, 1163, 1166, 1167, 1168, 1169, 1172, 1173, 1174, 1176, 1178, 1179, 1180, 1181, 1182, 1191, 1192], "creat": [0, 2, 39, 40, 46, 476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 568, 613, 650, 1107, 1113, 1116, 1120, 1128, 1129, 1136, 1144, 1146, 1162, 1166, 1167, 1171, 1174], "individu": [0, 1, 311, 317, 327, 331, 337, 342, 343, 344, 349, 350, 353, 360, 361, 363, 368, 380, 384, 397, 402, 437, 444, 452, 509, 510, 511, 527, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668, 693, 695, 717, 723, 725, 726, 727, 728, 729, 732, 737, 738, 761, 780, 842, 849, 882, 883, 892, 941, 946, 947, 948, 949, 951, 953, 957, 958, 961, 962, 963, 964, 965, 966, 969, 978, 988, 998, 1001, 1002, 1003, 1005, 1006, 1007, 1009, 1010, 1011, 1012, 1013, 1015, 1018, 1019, 1020, 1021, 1022, 1047, 1050, 1060, 1067, 1068, 1069, 1071, 1073, 1076, 1077, 1081, 1084, 1085, 1086, 1089, 1093, 1106, 1109, 1118, 1120, 1141, 1142, 1166, 1172, 1180], "For": [0, 1, 153, 163, 202, 217, 223, 232, 233, 695, 717, 732, 825, 827, 828, 840, 842, 863, 882, 901, 941, 953, 969, 1035, 1060, 1093, 1099, 1100, 1102, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1115, 1116, 1117, 1118, 1119, 1123, 1124, 1129, 1130, 1131, 1132, 1133, 1135, 1136, 1141, 1145, 1166, 1168, 1169, 1170, 1171, 1173, 1175, 1176, 1178, 1180, 1181, 1192, 1193], "alia": [0, 3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 153, 157, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 212, 213, 217, 223, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 262, 263, 264, 265, 269, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 479, 480, 485, 488, 489, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 527, 530, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 677, 692, 693, 694, 695, 696, 704, 705, 706, 707, 708, 709, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 879, 880, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1055, 1058, 1059, 1060, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1100, 1104, 1107, 1109, 1129, 1166, 1171, 1176, 1182, 1192], "uberon": [0, 939, 953, 1100, 1106, 1107, 1110, 1116, 1117, 1118, 1123, 1124, 1129, 1131, 1135, 1140, 1149, 1156, 1163, 1165, 1166, 1170, 1171, 1176, 1182], "obi": [0, 93, 126, 476, 480, 485, 488, 503, 505, 506, 507, 509, 510, 511, 512, 521, 530, 535, 540, 541, 545, 575, 576, 578, 584, 625, 665, 1100, 1135, 1137, 1162, 1166], "further": [0, 1109, 1111, 1117], "implement": [0, 1, 989, 1008, 1099, 1102, 1106, 1109, 1111, 1116, 1117, 1120, 1123, 1124, 1127, 1129, 1130, 1133, 1135, 1136, 1141, 1143, 1145, 1148, 1149, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1164, 1166, 1170, 1172, 1173, 1176, 1178, 1179, 1180, 1181, 1182], "aggreg": [0, 3, 4, 17, 21, 22, 30, 46, 1111, 1129, 1152, 1164], "wrap": [0, 1118, 1135, 1148, 1150, 1153, 1157, 1159, 1161, 1162, 1163, 1166, 1168, 1169, 1171, 1175, 1176, 1178, 1179, 1181], "multiplex": 0, "over": [0, 1, 263, 278, 279, 285, 308, 330, 331, 348, 394, 424, 518, 519, 520, 693, 694, 717, 731, 735, 1103, 1106, 1107, 1112, 1113, 1116, 1117, 1118, 1123, 1129, 1137, 1140, 1141, 1165, 1166, 1167, 1172, 1176, 1180, 1181], "differ": [0, 1, 4, 140, 153, 157, 161, 163, 166, 167, 168, 170, 171, 175, 176, 177, 180, 181, 183, 184, 185, 186, 188, 189, 193, 194, 198, 199, 202, 405, 437, 440, 443, 450, 472, 473, 475, 780, 800, 1099, 1100, 1102, 1106, 1108, 1109, 1111, 1112, 1114, 1116, 1117, 1123, 1124, 1129, 1131, 1132, 1136, 1137, 1140, 1143, 1163, 1164, 1170, 1176, 1179, 1180, 1181, 1182, 1192], "endpoint": [0, 1102, 1106, 1129, 1130, 1137, 1140, 1141, 1149, 1155, 1156, 1157, 1161, 1163, 1172, 1176, 1180], "mani": [0, 1, 148, 1099, 1100, 1106, 1107, 1108, 1109, 1110, 1113, 1114, 1116, 1117, 1118, 1120, 1124, 1129, 1132, 1140, 1156, 1166, 1171], "take": [0, 1099, 1100, 1103, 1106, 1107, 1110, 1113, 1118, 1123, 1129, 1130, 1140, 1171, 1193], "primari": [0, 3, 4, 17, 21, 22, 46, 78, 1106, 1107, 1109, 1110, 1111, 1114, 1127, 1192], "argument": [0, 1100, 1102, 1118, 1129, 1142, 1145, 1149, 1151, 1153, 1165, 1166, 1169, 1182], "These": [0, 1, 1099, 1100, 1106, 1107, 1109, 1110, 1113, 1115, 1117, 1118, 1129, 1137, 1140, 1180, 1192], "typic": [0, 1, 31, 46, 212, 227, 234, 273, 324, 393, 394, 434, 437, 460, 939, 953, 993, 1100, 1102, 1106, 1107, 1108, 1109, 1110, 1113, 1118, 1132, 1140, 1145, 1165, 1166, 1176], "one": [0, 1, 2, 4, 36, 140, 148, 153, 161, 163, 164, 166, 167, 168, 170, 171, 175, 176, 177, 180, 181, 184, 185, 186, 188, 189, 193, 194, 198, 199, 202, 381, 437, 476, 480, 485, 488, 508, 509, 512, 521, 530, 533, 535, 540, 541, 545, 560, 693, 717, 722, 765, 771, 842, 889, 936, 940, 1100, 1105, 1106, 1108, 1110, 1111, 1113, 1116, 1117, 1118, 1120, 1123, 1124, 1129, 1132, 1134, 1135, 1140, 1141, 1142, 1144, 1146, 1149, 1152, 1165, 1166, 1168, 1171, 1173, 1181, 1192, 1193], "0000955": [0, 1114], "syntax": [0, 14, 15, 25, 103, 104, 110, 145, 146, 155, 212, 215, 216, 221, 227, 260, 261, 270, 305, 306, 319, 388, 391, 392, 396, 400, 408, 410, 412, 413, 418, 436, 476, 480, 488, 506, 509, 512, 515, 516, 521, 530, 533, 535, 538, 540, 541, 545, 564, 569, 687, 688, 693, 698, 699, 717, 737, 754, 755, 762, 830, 831, 836, 931, 932, 937, 980, 981, 986, 1038, 1039, 1052, 1100, 1102, 1105, 1106, 1109, 1123, 1129, 1148, 1164, 1166, 1169, 1176], "either": [0, 4, 8, 46, 50, 97, 125, 137, 163, 206, 234, 254, 279, 299, 331, 372, 373, 377, 380, 381, 382, 384, 385, 388, 389, 393, 396, 400, 403, 405, 411, 417, 437, 443, 492, 503, 613, 680, 717, 743, 747, 780, 785, 820, 882, 925, 942, 953, 973, 1001, 1031, 1067, 1105, 1106, 1107, 1113, 1116, 1118, 1124, 1129, 1162, 1166, 1171, 1182, 1193], "exact": [0, 406, 407, 485, 842, 889, 940, 1107, 1149, 1176], "match": [0, 140, 153, 161, 163, 165, 179, 182, 185, 186, 187, 188, 191, 193, 194, 195, 197, 311, 317, 321, 327, 331, 337, 342, 343, 344, 349, 350, 353, 355, 360, 361, 363, 368, 476, 480, 485, 488, 495, 504, 509, 512, 521, 530, 535, 540, 541, 545, 555, 559, 571, 588, 613, 630, 635, 693, 695, 698, 707, 710, 717, 720, 723, 725, 726, 727, 728, 738, 743, 780, 789, 978, 988, 989, 1000, 1001, 1019, 1061, 1100, 1113, 1117, 1118, 1123, 1126, 1129, 1137, 1149, 1158, 1165, 1166, 1171, 1173, 1176, 1179, 1180, 1193], "limb": [0, 1117, 1171, 1176], "plasma": 0, "membran": [0, 1117, 1159, 1165, 1166, 1167, 1180], "compound": 0, "t": [0, 1, 2, 202, 939, 953, 978, 988, 1001, 1061, 1099, 1103, 1104, 1106, 1108, 1109, 1110, 1113, 1114, 1117, 1118, 1119, 1123, 1126, 1129, 1135, 1137, 1140, 1149, 1158, 1162, 1166, 1177, 1182, 1192, 1193], "find": [0, 1099, 1103, 1116, 1129, 1165, 1171, 1178, 1180, 1181], "partial": [0, 1107, 1150, 1155, 1164, 1176], "fed": 0, "assum": [0, 698, 1116, 1117, 1118, 1129, 1130, 1136, 1156, 1162, 1166, 1178, 1182], "abov": [0, 1, 153, 163, 1102, 1113, 1115, 1117, 1118, 1123, 1129, 1130, 1135, 1156, 1166, 1192], "look": [0, 1109, 1111, 1113, 1117, 1126, 1129, 1130, 1166, 1172], "up": [0, 2, 1105, 1106, 1111, 1113, 1117, 1123, 1129, 1130, 1166, 1172, 1178, 1180, 1182], "two": [0, 4, 20, 30, 33, 34, 36, 46, 47, 48, 49, 50, 51, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 68, 69, 70, 71, 78, 80, 81, 82, 84, 88, 89, 384, 437, 443, 447, 450, 462, 510, 511, 527, 530, 536, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 580, 582, 583, 584, 586, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 616, 617, 620, 621, 623, 624, 625, 635, 646, 647, 649, 652, 655, 657, 658, 663, 664, 665, 666, 668, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 780, 783, 791, 792, 793, 794, 795, 796, 797, 799, 802, 803, 804, 805, 806, 807, 842, 854, 882, 1100, 1102, 1106, 1109, 1113, 1114, 1116, 1117, 1118, 1130, 1133, 1135, 1161, 1162, 1166, 1167, 1168, 1173], "hand": [0, 140, 163, 1106, 1107, 1109, 1113, 1117, 1129, 1132, 1172, 1176], "foot": [0, 1117], "equival": [0, 381, 385, 388, 432, 437, 443, 445, 458, 471, 842, 877, 882, 1107, 1113, 1115, 1117, 1166], "0002398": [0, 1117, 1156, 1176], "0002397": 0, "shorten": [0, 1106], "p": [0, 21, 45, 46, 92, 93, 125, 126, 127, 128, 384, 437, 1108, 1113, 1117, 1118, 1119, 1123, 1129, 1130, 1133, 1145, 1153, 1156, 1159, 1166, 1167, 1175], "aka": [0, 1106, 1117, 1166, 1182], "type": [0, 1, 3, 4, 17, 20, 21, 22, 23, 24, 41, 43, 75, 76, 92, 93, 94, 153, 157, 182, 188, 191, 202, 212, 213, 217, 223, 227, 232, 249, 250, 262, 263, 264, 265, 269, 273, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 355, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 397, 402, 403, 405, 410, 411, 412, 417, 443, 446, 447, 450, 462, 465, 473, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 526, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 598, 600, 601, 606, 625, 628, 662, 677, 692, 693, 695, 696, 743, 761, 764, 765, 766, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 916, 936, 939, 940, 941, 942, 952, 954, 957, 961, 978, 988, 989, 990, 991, 993, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1055, 1058, 1059, 1060, 1061, 1069, 1070, 1084, 1094, 1100, 1106, 1107, 1108, 1109, 1114, 1115, 1116, 1117, 1118, 1123, 1124, 1129, 1132, 1137, 1148, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1172, 1175, 1182, 1192, 1193], "see": [0, 2, 201, 248, 742, 812, 1099, 1102, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1114, 1117, 1118, 1119, 1123, 1124, 1125, 1126, 1129, 1131, 1132, 1134, 1139, 1140, 1141, 1143, 1145, 1153, 1156, 1157, 1162, 1163, 1165, 1166, 1168, 1171, 1172, 1174, 1176, 1178, 1179, 1180, 1181, 1182, 1183, 1187, 1193], "filter": [0, 842, 847, 849, 855, 856, 857, 860, 861, 868, 869, 870, 873, 874, 876, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 898, 899, 911, 912, 915, 1117, 1165, 1166, 1167, 1171, 1172, 1173], "comma": [0, 1100, 1119], "delimit": [0, 1180], "space": [0, 273, 324, 993, 1129, 1171], "biolog": [0, 1, 31, 46, 1106, 1109, 1115, 1131, 1172], "is_a": [0, 3, 4, 17, 20, 39, 52, 54, 55, 56, 61, 63, 68, 69, 71, 140, 173, 191, 264, 265, 309, 310, 373, 380, 381, 382, 385, 393, 403, 411, 417, 476, 480, 483, 485, 488, 489, 495, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 527, 530, 533, 535, 536, 537, 540, 541, 542, 545, 549, 551, 552, 553, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 588, 589, 591, 592, 593, 595, 596, 597, 598, 599, 600, 601, 603, 604, 608, 609, 610, 615, 616, 625, 626, 627, 631, 632, 633, 634, 635, 643, 644, 645, 646, 647, 649, 651, 652, 654, 658, 659, 660, 661, 662, 664, 665, 666, 668, 670, 672, 673, 765, 766, 772, 777, 778, 781, 782, 783, 794, 798, 799, 804, 808, 809, 811, 824, 827, 828, 838, 842, 847, 848, 849, 855, 860, 861, 868, 869, 870, 873, 877, 883, 886, 890, 892, 893, 894, 896, 898, 899, 903, 905, 908, 909, 911, 915, 916, 936, 939, 940, 1028, 1035, 1040, 1043, 1047, 1048, 1059, 1060, 1099, 1100, 1106, 1117, 1119, 1129, 1131, 1145, 1156, 1165, 1166, 1172, 1175], "rdf": [0, 1, 3, 4, 6, 17, 22, 23, 24, 25, 28, 37, 44, 60, 75, 84, 95, 110, 113, 135, 142, 155, 159, 165, 179, 182, 197, 204, 212, 221, 223, 225, 252, 270, 274, 297, 319, 325, 373, 375, 380, 384, 388, 394, 396, 397, 405, 408, 410, 411, 412, 415, 417, 424, 441, 447, 450, 462, 472, 475, 476, 480, 485, 488, 489, 490, 505, 506, 508, 509, 512, 521, 522, 530, 533, 535, 537, 538, 540, 541, 542, 545, 547, 551, 552, 553, 560, 582, 608, 613, 617, 625, 652, 655, 661, 668, 678, 694, 699, 702, 745, 762, 764, 768, 784, 813, 818, 836, 842, 843, 882, 885, 904, 905, 923, 936, 937, 939, 940, 941, 942, 944, 954, 957, 965, 966, 971, 986, 994, 1029, 1052, 1056, 1100, 1102, 1104, 1106, 1107, 1109, 1110, 1115, 1116, 1117, 1124, 1129, 1130, 1131, 1135, 1136, 1137, 1145, 1159, 1162, 1166, 1182], "subclassof": [0, 384, 386, 388, 431, 437, 488, 489, 535, 537, 613, 628, 1100, 1102, 1106, 1108, 1110, 1117, 1118, 1129, 1130, 1131, 1135, 1137, 1145, 1159, 1162, 1166, 1173, 1175], "part_of": [0, 1100, 1117, 1165, 1172], "bfo": [0, 1, 1100, 1106, 1113, 1117, 1129, 1135, 1159, 1166], "0000050": [0, 1100, 1106, 1107, 1113, 1117, 1129, 1135, 1159, 1166], "so": [0, 2, 1102, 1103, 1107, 1113, 1115, 1117, 1123, 1129, 1132, 1135, 1140, 1149, 1158, 1170, 1171, 1178, 1182], "interfac": [0, 1, 2, 202, 1102, 1103, 1104, 1106, 1107, 1109, 1112, 1114, 1115, 1116, 1117, 1118, 1120, 1123, 1127, 1128, 1129, 1130, 1131, 1136, 1137, 1141, 1148, 1149, 1152, 1155, 1156, 1158, 1159, 1161, 1162, 1164, 1175, 1178, 1179, 1182, 1191, 1192, 1193], "understand": [0, 1, 212, 227, 1103, 1106, 1109, 1110, 1129, 1192], "shortcut": [0, 1100], "e": [0, 1, 3, 4, 17, 22, 42, 46, 50, 53, 55, 69, 70, 316, 352, 384, 388, 389, 394, 402, 403, 417, 420, 421, 437, 443, 444, 451, 452, 453, 717, 735, 842, 872, 882, 888, 941, 953, 957, 1035, 1060, 1093, 1100, 1102, 1106, 1107, 1108, 1115, 1117, 1118, 1126, 1129, 1137, 1140, 1145, 1148, 1156, 1159, 1163, 1165, 1166, 1168, 1169, 1171, 1173, 1175, 1176, 1178, 1181, 1182], "between": [0, 1, 2, 3, 4, 17, 22, 23, 30, 34, 36, 37, 41, 43, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 60, 65, 66, 67, 68, 69, 70, 71, 75, 76, 78, 79, 80, 81, 82, 84, 85, 86, 87, 89, 90, 140, 153, 157, 161, 163, 166, 167, 168, 170, 171, 175, 176, 177, 180, 181, 182, 183, 184, 185, 186, 188, 189, 193, 194, 197, 198, 199, 212, 227, 384, 388, 389, 402, 431, 437, 443, 444, 447, 448, 450, 452, 453, 462, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 780, 783, 791, 792, 793, 794, 795, 796, 797, 799, 802, 803, 804, 805, 806, 807, 842, 854, 882, 939, 956, 1106, 1107, 1108, 1111, 1113, 1117, 1127, 1132, 1142, 1143, 1158, 1165, 1166, 1168, 1172, 1177, 1182], "name": [0, 3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 109, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 140, 148, 153, 154, 157, 161, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 212, 213, 214, 217, 223, 227, 228, 229, 230, 231, 232, 233, 234, 235, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 249, 250, 262, 263, 264, 265, 269, 273, 276, 277, 278, 279, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 327, 328, 329, 330, 331, 332, 337, 338, 339, 340, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 397, 402, 403, 404, 405, 406, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 495, 497, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 517, 518, 519, 520, 521, 522, 526, 527, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 676, 677, 685, 692, 693, 694, 695, 696, 698, 704, 705, 706, 707, 708, 709, 710, 711, 716, 717, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 743, 761, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 922, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 993, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1051, 1055, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1102, 1105, 1106, 1107, 1110, 1113, 1115, 1116, 1117, 1126, 1129, 1130, 1136, 1151, 1163, 1166, 1167, 1172, 1178, 1182, 1192], "class": [0, 1, 2, 31, 91, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 202, 236, 397, 400, 428, 641, 862, 1099, 1106, 1107, 1108, 1109, 1113, 1115, 1117, 1118, 1126, 1132, 1143, 1144, 1145, 1146, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1187, 1189, 1192, 1193], "part": [0, 16, 46, 105, 125, 149, 163, 218, 234, 266, 279, 313, 331, 395, 437, 524, 613, 689, 717, 735, 756, 780, 832, 882, 933, 953, 982, 1001, 1042, 1067, 1099, 1100, 1102, 1106, 1109, 1113, 1115, 1117, 1118, 1123, 1125, 1127, 1128, 1158, 1166, 1192], "draw": [0, 1001, 1024], "subgraph": [0, 1156, 1172], "start": [0, 2, 503, 698, 839, 882, 907, 1103, 1106, 1117, 1126, 1127, 1128, 1166, 1172], "from": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 163, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 201, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 232, 233, 235, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 710, 711, 712, 713, 714, 715, 716, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1099, 1100, 1102, 1105, 1106, 1107, 1108, 1109, 1110, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1123, 1124, 1126, 1128, 1130, 1131, 1133, 1135, 1137, 1138, 1140, 1141, 1142, 1144, 1145, 1146, 1148, 1150, 1154, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1170, 1171, 1172, 1173, 1176, 1177, 1180, 1182, 1192, 1193], "trace": 0, "upward": 0, "through": [0, 693, 1058, 1067, 1080, 1106, 1112, 1123, 1126, 1130, 1135, 1182, 1192], "section": [0, 1100, 1104, 1106, 1109, 1112, 1113, 1123, 1129, 1130, 1133, 1165, 1166], "autogener": [0, 2], "inlin": [0, 3, 17, 22, 24, 32, 79, 83, 157, 183, 212, 213, 217, 235, 237, 238, 239, 263, 264, 278, 283, 285, 308, 309, 312, 330, 346, 348, 358, 388, 389, 431, 435, 442, 446, 453, 463, 466, 766, 792, 797, 802, 807, 817, 827, 828, 840, 842, 846, 854, 856, 857, 863, 866, 874, 876, 887, 888, 889, 897, 901, 906, 912, 941, 966, 969, 990, 996, 1048, 1049, 1058, 1059, 1082, 1094], "doc": [0, 2, 201, 248, 388, 396, 400, 410, 412, 413, 418, 436, 1106, 1123, 1124, 1129, 1135, 1178, 1193], "should": [0, 2, 14, 15, 21, 22, 25, 77, 103, 104, 110, 145, 146, 155, 215, 216, 221, 249, 260, 261, 270, 294, 305, 306, 319, 372, 388, 391, 392, 394, 396, 405, 408, 410, 412, 418, 424, 441, 476, 482, 485, 495, 503, 505, 509, 512, 515, 516, 521, 535, 538, 541, 542, 575, 625, 687, 688, 693, 699, 707, 717, 754, 755, 761, 762, 830, 831, 836, 840, 842, 889, 931, 932, 936, 937, 940, 942, 980, 981, 986, 1038, 1039, 1049, 1050, 1052, 1061, 1103, 1105, 1106, 1107, 1108, 1110, 1111, 1113, 1116, 1123, 1126, 1129, 1135, 1166, 1168, 1169, 1171, 1175, 1176, 1178, 1181, 1192], "get": [0, 1, 1102, 1103, 1107, 1110, 1113, 1114, 1115, 1117, 1124, 1127, 1128, 1149, 1166, 1171, 1172, 1173, 1179, 1182, 1192], "same": [0, 1, 2, 4, 140, 153, 163, 164, 167, 173, 176, 842, 889, 941, 953, 961, 965, 1106, 1107, 1110, 1114, 1116, 1117, 1119, 1123, 1129, 1131, 1137, 1140, 1141, 1165, 1166, 1182], "result": [0, 1, 21, 45, 93, 94, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 132, 133, 153, 157, 162, 163, 174, 192, 202, 693, 695, 696, 717, 722, 723, 725, 726, 727, 728, 729, 732, 735, 738, 989, 990, 996, 1000, 1001, 1024, 1035, 1040, 1047, 1048, 1049, 1055, 1058, 1059, 1060, 1062, 1063, 1065, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1081, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1096, 1102, 1105, 1106, 1113, 1117, 1118, 1123, 1124, 1127, 1136, 1141, 1148, 1165, 1166, 1167, 1168, 1169, 1171, 1175, 1176, 1178, 1180, 1181, 1193], "help": [0, 1103, 1107, 1109, 1124, 1129, 1192], "oaklib": [0, 1099, 1105, 1107, 1110, 1114, 1115, 1116, 1117, 1120, 1123, 1126, 1129, 1130, 1131, 1135, 1137, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1193], "A": [0, 1, 2, 3, 4, 5, 10, 11, 12, 14, 15, 17, 18, 19, 20, 23, 24, 25, 26, 27, 30, 31, 32, 33, 34, 36, 37, 38, 42, 43, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 75, 76, 78, 79, 80, 81, 82, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 99, 100, 101, 103, 104, 106, 107, 110, 111, 112, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 139, 141, 142, 143, 145, 146, 147, 150, 151, 153, 155, 156, 157, 158, 161, 162, 163, 166, 167, 168, 170, 171, 174, 175, 176, 177, 180, 181, 183, 184, 185, 186, 188, 189, 192, 193, 194, 198, 199, 203, 208, 209, 210, 212, 215, 216, 219, 220, 221, 222, 223, 224, 233, 234, 236, 246, 251, 256, 257, 258, 260, 261, 262, 265, 267, 268, 269, 270, 271, 272, 273, 276, 277, 279, 280, 281, 282, 284, 286, 287, 288, 289, 290, 291, 296, 301, 302, 303, 305, 306, 307, 310, 312, 314, 315, 317, 318, 319, 320, 323, 324, 328, 329, 331, 333, 334, 335, 336, 337, 340, 341, 342, 343, 347, 351, 353, 356, 358, 359, 360, 361, 362, 364, 367, 368, 372, 373, 374, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 391, 392, 393, 394, 396, 398, 399, 400, 402, 403, 405, 406, 408, 409, 411, 413, 414, 417, 418, 419, 420, 421, 424, 426, 427, 428, 430, 431, 432, 435, 436, 437, 438, 440, 441, 442, 443, 444, 445, 446, 448, 450, 452, 453, 454, 456, 458, 463, 464, 465, 466, 467, 468, 472, 473, 474, 475, 479, 480, 485, 486, 487, 494, 495, 496, 498, 502, 503, 504, 505, 506, 507, 508, 510, 511, 515, 516, 517, 523, 525, 527, 530, 531, 536, 538, 539, 540, 541, 544, 546, 550, 551, 552, 553, 554, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 580, 582, 583, 584, 586, 587, 588, 589, 591, 592, 593, 594, 596, 597, 598, 599, 600, 601, 602, 603, 606, 607, 608, 609, 610, 612, 613, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 635, 637, 638, 646, 647, 648, 649, 652, 655, 657, 658, 660, 663, 664, 665, 666, 668, 671, 675, 682, 683, 684, 687, 688, 690, 691, 692, 693, 694, 699, 700, 701, 707, 709, 710, 711, 716, 717, 718, 719, 720, 722, 731, 735, 736, 737, 739, 740, 744, 749, 750, 751, 754, 755, 758, 760, 762, 763, 765, 766, 767, 771, 772, 773, 774, 775, 776, 777, 778, 780, 783, 791, 792, 793, 794, 795, 796, 797, 799, 802, 803, 804, 805, 806, 807, 814, 816, 822, 823, 826, 830, 831, 833, 834, 836, 837, 838, 841, 842, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 866, 868, 869, 870, 872, 873, 874, 876, 877, 881, 882, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 897, 898, 899, 903, 905, 908, 909, 910, 911, 912, 915, 916, 920, 921, 927, 928, 929, 931, 932, 934, 935, 936, 937, 938, 939, 940, 943, 950, 952, 953, 954, 955, 956, 959, 960, 967, 968, 970, 975, 976, 977, 980, 981, 983, 984, 986, 987, 989, 990, 992, 993, 996, 997, 1001, 1024, 1025, 1027, 1033, 1034, 1035, 1036, 1038, 1039, 1040, 1044, 1045, 1048, 1049, 1052, 1053, 1054, 1059, 1062, 1063, 1065, 1067, 1068, 1069, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1082, 1084, 1085, 1086, 1087, 1088, 1090, 1091, 1092, 1093, 1096, 1098, 1099, 1106, 1108, 1109, 1111, 1113, 1115, 1118, 1126, 1129, 1130, 1131, 1136, 1137, 1141, 1142, 1145, 1162, 1165, 1166, 1174, 1176, 1180, 1182], "subcommand": [0, 1100, 1102, 1105, 1176], "must": [0, 6, 14, 15, 25, 95, 103, 104, 110, 135, 145, 146, 155, 204, 215, 216, 221, 252, 260, 261, 270, 297, 305, 306, 311, 319, 331, 350, 375, 391, 392, 400, 408, 476, 480, 485, 488, 490, 495, 503, 505, 509, 512, 515, 516, 521, 530, 535, 538, 540, 541, 545, 563, 596, 603, 625, 665, 678, 687, 688, 698, 699, 745, 754, 755, 762, 818, 830, 831, 836, 923, 931, 932, 937, 939, 955, 956, 971, 980, 981, 986, 1029, 1038, 1039, 1052, 1061, 1105, 1129, 1135, 1162, 1166, 1171, 1172, 1182], "pass": [0, 213, 1058, 1067, 1080, 1106, 1107, 1108, 1115, 1118, 1124, 1129, 1133, 1136, 1142, 1145, 1158, 1165, 1169, 1171, 1181, 1182], "most": [0, 1, 21, 77, 373, 386, 394, 405, 411, 417, 475, 695, 732, 765, 771, 780, 1100, 1102, 1106, 1107, 1109, 1110, 1113, 1116, 1117, 1118, 1131, 1132, 1135, 1136, 1140, 1141, 1156, 1163, 1165, 1170, 1171, 1177], "requir": [0, 2, 20, 61, 63, 92, 93, 119, 128, 153, 166, 170, 175, 217, 223, 230, 262, 265, 282, 290, 307, 310, 341, 364, 388, 393, 396, 402, 410, 412, 425, 436, 452, 476, 480, 485, 488, 503, 505, 509, 512, 521, 522, 530, 533, 535, 540, 541, 545, 575, 608, 625, 695, 725, 743, 764, 765, 766, 775, 776, 779, 785, 801, 803, 813, 815, 816, 817, 825, 828, 835, 840, 842, 864, 936, 939, 940, 942, 952, 991, 999, 1028, 1035, 1041, 1043, 1055, 1060, 1066, 1086, 1093, 1102, 1104, 1107, 1109, 1110, 1117, 1123, 1124, 1126, 1132, 1133, 1140, 1181], "specif": [0, 1, 2, 4, 10, 11, 12, 42, 46, 51, 93, 99, 100, 101, 121, 125, 139, 140, 141, 143, 163, 208, 209, 210, 212, 227, 234, 256, 257, 258, 279, 301, 302, 303, 321, 331, 379, 383, 387, 437, 494, 496, 498, 613, 682, 683, 684, 717, 749, 750, 751, 780, 822, 823, 826, 882, 927, 928, 929, 953, 975, 976, 977, 989, 1001, 1008, 1033, 1034, 1036, 1067, 1102, 1106, 1107, 1108, 1113, 1116, 1117, 1118, 1123, 1124, 1126, 1129, 1135, 1136, 1142, 1156, 1163, 1166, 1176, 1181, 1182], "ani": [0, 27, 42, 46, 109, 112, 125, 158, 163, 202, 217, 223, 224, 230, 234, 249, 264, 272, 279, 283, 294, 309, 323, 331, 346, 372, 405, 414, 437, 443, 476, 480, 485, 488, 495, 503, 509, 512, 521, 530, 535, 540, 541, 544, 545, 553, 563, 595, 613, 665, 694, 701, 717, 735, 767, 780, 841, 882, 943, 953, 992, 1001, 1050, 1054, 1067, 1101, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1113, 1114, 1117, 1118, 1119, 1123, 1126, 1129, 1131, 1132, 1135, 1137, 1140, 1142, 1145, 1149, 1155, 1156, 1159, 1161, 1162, 1165, 1166, 1167, 1168, 1172, 1173, 1174, 1176, 1178, 1179, 1180, 1192, 1193], "g": [0, 1, 4, 50, 55, 69, 70, 316, 352, 388, 389, 402, 403, 417, 437, 453, 717, 735, 842, 872, 888, 941, 957, 1035, 1060, 1093, 1102, 1106, 1107, 1108, 1113, 1115, 1117, 1118, 1126, 1140, 1145, 1148, 1156, 1159, 1163, 1165, 1166, 1168, 1169, 1171, 1175, 1176, 1178, 1181, 1182], "h": 0, "v": [0, 941, 961, 1124, 1135, 1166, 1177], "verbos": [0, 1129], "q": [0, 1158], "quiet": 0, "stacktrac": [0, 1100, 1117, 1123], "If": [0, 2, 4, 21, 42, 45, 46, 56, 71, 77, 153, 163, 182, 188, 191, 381, 400, 418, 437, 470, 693, 737, 765, 771, 939, 941, 949, 953, 962, 968, 989, 1000, 1001, 1100, 1105, 1109, 1113, 1115, 1117, 1118, 1119, 1123, 1126, 1129, 1130, 1133, 1135, 1140, 1141, 1142, 1145, 1158, 1162, 1165, 1166, 1167, 1169, 1171, 1172, 1174, 1180, 1182], "show": [0, 695, 717, 738, 1099, 1109, 1110, 1113, 1115, 1117, 1129, 1131, 1135, 1165, 1166, 1171], "full": [0, 693, 695, 717, 720, 723, 1100, 1102, 1110, 1114, 1119, 1129, 1131, 1140, 1156, 1172, 1179], "error": [0, 1051, 1103, 1113, 1119, 1124, 1145, 1171], "default": [0, 21, 77, 1055, 1058, 1067, 1083, 1102, 1105, 1106, 1107, 1111, 1113, 1114, 1116, 1117, 1119, 1123, 1135, 1145, 1156, 1166, 1167, 1169, 1170, 1172, 1180, 1181], "fals": [0, 3, 5, 21, 46, 77, 91, 93, 123, 125, 134, 163, 203, 212, 234, 237, 251, 279, 296, 311, 331, 344, 374, 437, 476, 480, 485, 486, 488, 505, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 564, 566, 569, 613, 625, 675, 717, 744, 766, 775, 776, 780, 814, 882, 921, 953, 970, 1001, 1027, 1067, 1117, 1119, 1145, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "save": [0, 1136, 1166, 1170, 1174], "save_a": 0, "mutat": [0, 1107, 1136], "where": [0, 1, 140, 384, 437, 693, 717, 720, 1035, 1040, 1061, 1062, 1063, 1065, 1067, 1068, 1069, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1084, 1085, 1086, 1087, 1088, 1090, 1091, 1092, 1093, 1096, 1099, 1103, 1106, 1107, 1109, 1110, 1111, 1113, 1114, 1115, 1116, 1118, 1119, 1123, 1140, 1145, 1166, 1171, 1173, 1175, 1177, 1179, 1191, 1192], "chang": [0, 4, 30, 31, 34, 36, 42, 46, 47, 48, 49, 50, 51, 54, 55, 56, 68, 69, 70, 71, 78, 80, 81, 82, 84, 89, 248, 842, 854, 882, 1047, 1105, 1106, 1108, 1113, 1118, 1119, 1123, 1127, 1128, 1129, 1135, 1140, 1145, 1165, 1166, 1168, 1174, 1182], "autosav": [0, 1136, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "determin": [0, 4, 21, 30, 36, 45, 46, 77, 78, 153, 163, 693, 694, 698, 707, 709, 710, 716, 717, 718, 719, 720, 722, 731, 737, 739, 842, 882, 916, 1035, 1040, 1062, 1063, 1065, 1067, 1068, 1069, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1084, 1085, 1086, 1087, 1088, 1090, 1091, 1092, 1093, 1096, 1106, 1113, 1119, 1145, 1165, 1166, 1171, 1177, 1181], "automat": [0, 2, 4, 50, 1106, 1109, 1115, 1123, 1135, 1158, 1159, 1192], "place": [0, 140, 153, 161, 163, 1099, 1106, 1136, 1142], "named_prefix_map": 0, "prefixcc": 0, "expans": [0, 1, 1166], "metamodel": [0, 200, 293, 370, 469, 669, 741, 810, 914, 1026, 1095, 1166], "metamodel_map": 0, "overrid": [0, 1055, 1058, 1067, 1083, 1094, 1107, 1110, 1166], "properti": [0, 1, 21, 25, 46, 110, 125, 155, 163, 221, 234, 270, 279, 319, 331, 373, 380, 382, 386, 388, 393, 394, 396, 397, 403, 404, 405, 408, 411, 417, 437, 476, 479, 480, 481, 484, 485, 488, 502, 503, 504, 505, 506, 507, 508, 512, 521, 526, 530, 532, 533, 536, 538, 540, 541, 542, 545, 613, 693, 694, 695, 699, 717, 762, 780, 828, 836, 842, 882, 937, 953, 986, 1001, 1035, 1052, 1060, 1067, 1102, 1106, 1107, 1111, 1117, 1118, 1119, 1145, 1166, 1173, 1174, 1175, 1176, 1179, 1181, 1193], "import": [0, 248, 389, 533, 613, 742, 812, 842, 882, 898, 1099, 1105, 1106, 1107, 1108, 1110, 1114, 1115, 1116, 1117, 1118, 1123, 1124, 1126, 1130, 1131, 1135, 1137, 1140, 1141, 1143, 1145, 1148, 1154, 1156, 1158, 1159, 1162, 1163, 1165, 1166, 1167, 1170, 1171, 1172, 1176, 1180, 1182, 1192, 1193], "depth": [0, 1182], "import_depth": [0, 1182], "maximum": [0, 1, 129, 693, 717, 722, 989, 1001, 1004, 1061, 1116, 1118, 1166, 1182, 1192], "travers": [0, 685, 692, 717, 1102, 1106, 1111, 1129, 1137, 1172, 1182], "current": [0, 14, 15, 25, 103, 104, 110, 145, 146, 155, 215, 216, 221, 260, 261, 270, 305, 306, 319, 381, 391, 392, 408, 422, 515, 516, 538, 687, 688, 699, 754, 755, 762, 830, 831, 836, 931, 932, 937, 980, 981, 986, 1038, 1039, 1052, 1102, 1105, 1106, 1108, 1113, 1117, 1118, 1124, 1128, 1129, 1135, 1136, 1143, 1149, 1151, 1158, 1159, 1161, 1162, 1165, 1166, 1168, 1169, 1173, 1178, 1181, 1182, 1193], "onli": [0, 1, 212, 227, 382, 388, 394, 424, 431, 939, 941, 953, 956, 961, 963, 989, 1001, 1102, 1106, 1109, 1116, 1118, 1119, 1124, 1129, 1136, 1140, 1143, 1145, 1149, 1158, 1165, 1166, 1168, 1171, 1172, 1178, 1179, 1181], "pronto": [0, 1, 1102, 1105, 1106, 1133, 1140, 1141, 1152, 1154, 1160, 1164, 1166], "locat": [0, 1130, 1135], "associations_typ": 0, "prefer": [0, 1, 2, 694, 1129, 1171], "preferred_languag": [0, 1116], "lexic": [0, 202, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 307, 308, 309, 310, 318, 328, 329, 330, 331, 334, 335, 336, 341, 346, 347, 348, 351, 356, 359, 362, 364, 367, 369, 1103, 1109, 1113, 1127, 1129, 1140, 1164, 1166, 1181], "element": [0, 31, 46, 212, 228, 234, 240, 262, 269, 277, 279, 284, 286, 287, 288, 289, 290, 307, 318, 329, 331, 347, 351, 356, 359, 362, 364, 437, 448, 476, 480, 488, 502, 509, 512, 521, 530, 535, 540, 541, 545, 612, 613, 1061, 1100, 1106, 1107, 1108, 1109, 1118, 1132, 1137, 1141, 1165, 1166, 1172, 1176, 1181], "other": [0, 1, 31, 46, 202, 217, 223, 230, 373, 386, 388, 394, 396, 405, 411, 417, 418, 419, 428, 430, 431, 432, 436, 437, 441, 442, 443, 446, 453, 454, 456, 463, 466, 468, 475, 695, 717, 728, 1100, 1102, 1106, 1107, 1108, 1109, 1111, 1112, 1113, 1114, 1115, 1117, 1118, 1123, 1126, 1128, 1130, 1143, 1159, 1164, 1166, 1168, 1172, 1176, 1181, 1192], "other_languag": 0, "addit": [0, 3, 17, 21, 22, 45, 46, 79, 212, 227, 234, 437, 448, 507, 1035, 1058, 1060, 1067, 1068, 1080, 1106, 1108, 1111, 1114, 1117, 1118, 1119, 1123, 1126, 1128, 1129, 1136, 1142, 1145, 1148, 1165, 1169, 1174, 1180, 1182, 1192], "request": [0, 1176], "requests_cache_db": 0, "all": [0, 1, 21, 153, 157, 163, 182, 183, 188, 191, 262, 263, 273, 278, 279, 285, 287, 307, 308, 311, 312, 324, 330, 331, 348, 350, 356, 358, 385, 388, 389, 431, 435, 437, 443, 445, 446, 458, 481, 482, 613, 641, 840, 846, 863, 881, 882, 897, 920, 990, 993, 996, 1001, 1099, 1100, 1101, 1103, 1105, 1106, 1109, 1110, 1114, 1115, 1116, 1117, 1118, 1119, 1123, 1129, 1131, 1132, 1133, 1135, 1136, 1140, 1141, 1142, 1158, 1165, 1166, 1167, 1171, 1172, 1173, 1174, 1175, 1177, 1178, 1179, 1180, 1181, 1182, 1192], "http": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 232, 233, 234, 235, 236, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1102, 1106, 1108, 1109, 1110, 1113, 1114, 1116, 1118, 1119, 1123, 1124, 1129, 1134, 1135, 1138, 1145, 1150, 1156, 1157, 1159, 1163, 1166, 1171, 1176, 1178, 1180, 1182, 1183, 1192], "file": [0, 2, 389, 1099, 1103, 1106, 1109, 1114, 1115, 1116, 1118, 1120, 1124, 1127, 1128, 1130, 1131, 1133, 1140, 1142, 1143, 1145, 1152, 1154, 1160, 1164, 1165, 1166, 1169, 1170, 1180, 1182], "w": [0, 1135, 1151], "wrap_adapt": 0, "anoth": [0, 3, 17, 30, 37, 43, 46, 53, 60, 65, 66, 67, 75, 76, 78, 79, 82, 84, 85, 86, 87, 90, 153, 163, 202, 335, 418, 437, 941, 949, 953, 1100, 1106, 1108, 1116, 1117, 1123, 1129, 1165, 1166, 1168, 1171, 1177, 1192], "llm": [0, 1104, 1120, 1127, 1152, 1164, 1180], "semsimian": [0, 1111], "input_typ": 0, "format": [0, 2, 394, 424, 476, 480, 485, 488, 508, 509, 512, 521, 530, 533, 535, 540, 541, 545, 560, 1103, 1106, 1107, 1108, 1110, 1111, 1113, 1114, 1115, 1117, 1119, 1129, 1130, 1131, 1136, 1137, 1143, 1144, 1145, 1159, 1160, 1165, 1166, 1182, 1192], "permiss": [0, 1158], "vari": [0, 1106, 1107, 1136], "depend": [0, 4, 49, 51, 382, 437, 989, 1008, 1106, 1114, 1126, 1129, 1133, 1135, 1136, 1149, 1166], "context": [0, 1106, 1107, 1111, 1126, 1192], "add": [0, 476, 480, 488, 507, 509, 512, 521, 527, 530, 535, 540, 541, 545, 1059, 1116, 1117, 1123, 1124, 1126, 1130, 1148, 1165, 1166, 1171, 1182], "merg": [0, 1, 382, 476, 480, 488, 499, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 613, 842, 882, 890, 1111, 1116, 1129, 1134, 1135, 1166], "0001988": 0, "explicit": [0, 4, 49, 51, 1108, 1129, 1135, 1171, 1182], "fetch": [0, 1102, 1106, 1128, 1166, 1171], "envo": [0, 1118, 1165], "core": [0, 3, 17, 22, 31, 38, 46, 53, 200, 293, 370, 388, 431, 437, 448, 469, 565, 613, 669, 741, 810, 914, 1026, 1095, 1106, 1108, 1110, 1111, 1131, 1140, 1166, 1171], "behavior": [0, 21, 30, 45, 46, 77, 78, 1107, 1119, 1129, 1131, 1132, 1135, 1136, 1145, 1166, 1176, 1193], "simpl": [0, 1, 202, 212, 234, 236, 237, 384, 386, 388, 431, 437, 443, 447, 448, 450, 462, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 780, 783, 791, 792, 793, 794, 795, 796, 797, 799, 802, 803, 804, 805, 806, 807, 1099, 1100, 1104, 1106, 1109, 1111, 1113, 1114, 1117, 1132, 1140, 1152, 1159, 1164, 1166, 1167, 1180, 1191], "datamodel": [0, 1, 118, 162, 163, 201, 248, 273, 279, 280, 281, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 333, 334, 335, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 780, 910, 967, 993, 1024, 1035, 1060, 1093, 1098, 1099, 1106, 1117, 1124, 1127, 1128, 1129, 1131, 1132, 1136, 1140, 1143, 1145, 1148, 1154, 1156, 1165, 1166, 1168, 1171, 1172, 1173, 1179, 1180, 1181, 1182], "tupl": [0, 1099, 1107, 1114, 1117, 1154, 1159, 1160, 1162, 1165, 1166, 1172, 1173, 1175, 1176, 1177, 1178, 1180, 1193], "being": [0, 1, 31, 46, 202, 381, 422, 423, 437, 443, 470, 471, 476, 480, 488, 506, 509, 510, 511, 512, 521, 527, 530, 533, 535, 540, 541, 545, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668, 695, 732, 765, 780, 793, 803, 828, 840, 842, 863, 882, 1106, 1107, 1113, 1128, 1129, 1191], "some": [0, 1, 31, 46, 381, 382, 384, 386, 422, 433, 437, 455, 510, 511, 527, 540, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 582, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 620, 623, 625, 635, 646, 647, 652, 655, 657, 658, 664, 665, 666, 668, 939, 953, 968, 1100, 1102, 1106, 1107, 1108, 1109, 1112, 1113, 1114, 1115, 1116, 1117, 1119, 1123, 1129, 1130, 1135, 1136, 1140, 1149, 1159, 1162, 1163, 1165, 1166, 1170, 1172, 1174, 1176, 1180, 1191, 1192], "standard": [0, 1, 2, 273, 324, 372, 394, 411, 418, 420, 437, 465, 993, 1100, 1102, 1104, 1106, 1107, 1108, 1110, 1111, 1114, 1116, 1117, 1118, 1119, 1129, 1131, 1132, 1156, 1159, 1192], "vocabulari": [0, 212, 227, 373, 380, 394, 405, 406, 411, 417, 418, 437, 475, 842, 882, 887, 889, 1035, 1060, 1093, 1099, 1107, 1109, 1114, 1116, 1117, 1119, 1124, 1131, 1156, 1165, 1166, 1172, 1192], "sko": [0, 1, 217, 232, 316, 352, 476, 480, 485, 488, 503, 504, 505, 507, 508, 509, 512, 521, 530, 535, 540, 541, 545, 550, 555, 558, 559, 575, 588, 589, 593, 625, 635, 694, 842, 888, 1106, 1107, 1109, 1110, 1114, 1116, 1129, 1192], "altlabel": [0, 476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 550, 694, 1107], "oboinowl": [0, 411, 437, 465, 480, 485, 530, 535, 540, 545, 587, 594, 620, 621, 622, 623, 624, 637, 657, 671, 1107, 1110, 1114, 1115, 1166, 1192], "etc": [0, 1, 2, 223, 233, 388, 446, 1106, 1118, 1129, 1170, 1182], "know": [0, 1099, 1103, 1107, 1129, 1131, 1162, 1192], "model": [0, 1, 18, 19, 31, 41, 93, 106, 107, 125, 129, 150, 151, 163, 201, 202, 219, 220, 236, 267, 268, 279, 314, 315, 331, 398, 399, 405, 437, 448, 505, 507, 525, 531, 575, 613, 625, 690, 691, 717, 742, 758, 760, 780, 812, 833, 834, 882, 934, 935, 942, 953, 983, 984, 989, 1001, 1024, 1044, 1045, 1047, 1067, 1103, 1104, 1106, 1109, 1111, 1114, 1115, 1117, 1120, 1127, 1140, 1142, 1143, 1152, 1165, 1166, 1180], "give": [0, 1, 153, 163, 1107, 1117, 1123, 1129, 1140, 1173], "back": [0, 1, 394, 424, 1129, 1140, 1141, 1154, 1160], "richer": 0, "data": [0, 1, 31, 41, 201, 202, 236, 404, 437, 448, 742, 812, 824, 882, 910, 1047, 1060, 1067, 1068, 1069, 1073, 1076, 1077, 1084, 1085, 1086, 1093, 1098, 1102, 1103, 1104, 1105, 1106, 1109, 1110, 1111, 1113, 1114, 1119, 1127, 1129, 1132, 1135, 1140, 1142, 1143, 1156, 1158, 1165, 1179, 1180], "present": [0, 4, 42, 46, 80, 81, 153, 163, 164, 167, 173, 176, 202, 381, 386, 388, 393, 431, 437, 446, 460, 470, 471, 1102, 1117, 1119, 1137, 1145, 1166, 1172, 1173, 1180, 1192], "includ": [0, 1, 2, 21, 45, 46, 388, 431, 437, 446, 448, 502, 503, 504, 505, 506, 507, 508, 510, 511, 527, 541, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668, 694, 717, 735, 842, 876, 882, 886, 898, 989, 997, 1000, 1001, 1046, 1067, 1097, 1100, 1101, 1106, 1108, 1109, 1110, 1113, 1114, 1115, 1117, 1118, 1119, 1123, 1126, 1129, 1131, 1136, 1137, 1141, 1145, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1175, 1176, 1178, 1179, 1180, 1181, 1192], "proven": [0, 212, 234, 247, 405, 437, 1108], "In": [0, 1, 2, 212, 227, 942, 953, 1099, 1106, 1107, 1108, 1109, 1110, 1111, 1113, 1115, 1116, 1117, 1118, 1119, 1126, 1129, 1131, 1132, 1135, 1140, 1145, 1158, 1159, 1166, 1173, 1182, 1192], "futur": [0, 1102, 1105, 1106, 1113, 1118, 1123, 1129, 1130, 1135, 1136, 1140, 1159, 1165, 1172, 1173, 1178, 1182], "mai": [0, 1, 2, 4, 6, 21, 45, 49, 51, 95, 135, 202, 204, 212, 227, 252, 297, 335, 375, 382, 418, 490, 678, 745, 818, 825, 827, 828, 901, 923, 939, 940, 941, 952, 953, 954, 959, 966, 971, 1029, 1102, 1105, 1106, 1107, 1108, 1109, 1113, 1114, 1115, 1116, 1117, 1118, 1123, 1126, 1129, 1135, 1136, 1140, 1141, 1149, 1158, 1159, 1166, 1167, 1170, 1172, 1173, 1174, 1176, 1178, 1179, 1180, 1181, 1182, 1191, 1192], "becom": [0, 4, 42, 46, 49, 51, 316, 352, 1115, 1118, 1145], "true": [0, 3, 4, 5, 17, 20, 21, 22, 24, 32, 33, 36, 37, 38, 41, 42, 45, 46, 49, 50, 51, 53, 61, 63, 65, 66, 70, 77, 79, 80, 81, 82, 83, 85, 86, 88, 90, 91, 92, 93, 94, 119, 125, 128, 131, 134, 153, 157, 163, 164, 165, 166, 167, 170, 173, 175, 176, 179, 182, 183, 184, 188, 189, 191, 196, 197, 203, 212, 213, 217, 223, 227, 228, 230, 233, 234, 235, 237, 238, 239, 240, 247, 249, 251, 262, 263, 264, 265, 269, 278, 279, 282, 283, 284, 285, 287, 290, 291, 294, 296, 307, 308, 309, 310, 311, 312, 317, 318, 330, 331, 337, 341, 342, 343, 344, 346, 347, 348, 350, 353, 356, 358, 360, 361, 364, 367, 368, 372, 373, 374, 380, 381, 382, 385, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 428, 429, 430, 431, 432, 434, 435, 436, 437, 442, 445, 446, 452, 453, 454, 457, 460, 463, 464, 466, 467, 475, 476, 479, 480, 481, 482, 485, 486, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 526, 527, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 550, 554, 555, 558, 559, 560, 562, 563, 564, 565, 568, 569, 570, 571, 572, 575, 576, 577, 580, 582, 583, 584, 585, 586, 588, 589, 590, 592, 593, 594, 596, 598, 600, 601, 602, 604, 606, 607, 608, 610, 612, 613, 614, 628, 629, 630, 635, 636, 637, 641, 644, 647, 649, 650, 652, 653, 654, 655, 656, 657, 659, 660, 661, 662, 664, 666, 668, 674, 675, 677, 692, 693, 695, 696, 704, 705, 707, 711, 717, 724, 725, 726, 731, 734, 737, 743, 744, 761, 764, 765, 766, 779, 780, 781, 785, 792, 797, 800, 801, 802, 803, 807, 813, 814, 815, 816, 817, 824, 825, 827, 828, 835, 840, 842, 846, 854, 856, 857, 862, 863, 864, 866, 874, 876, 882, 884, 887, 888, 889, 891, 897, 900, 901, 904, 906, 912, 921, 936, 939, 940, 941, 942, 947, 948, 949, 952, 953, 955, 956, 958, 959, 960, 961, 962, 963, 964, 966, 968, 969, 970, 978, 988, 989, 990, 991, 996, 997, 999, 1000, 1001, 1009, 1010, 1017, 1025, 1027, 1028, 1035, 1041, 1043, 1048, 1049, 1050, 1055, 1058, 1059, 1060, 1066, 1067, 1082, 1086, 1093, 1094, 1106, 1107, 1115, 1117, 1119, 1131, 1142, 1145, 1146, 1158, 1159, 1165, 1166, 1167, 1171, 1172, 1174, 1176, 1177, 1179, 1180, 1181, 1192], "provenancem": 0, "o": [0, 21, 45, 46, 384, 403, 437, 1105, 1110, 1113, 1117, 1118, 1119, 1123, 1124, 1129, 1130, 1133, 1136, 1143, 1145, 1149, 1159, 1166, 1171], "output": [0, 2, 21, 46, 77, 322, 331, 1100, 1110, 1114, 1119, 1123, 1124, 1129, 1133, 1136, 1142, 1143], "output_typ": 0, "desir": [0, 1106, 1135, 1136, 1171], "": [0, 1, 21, 24, 44, 45, 46, 384, 437, 543, 842, 882, 1061, 1103, 1106, 1108, 1115, 1116, 1117, 1123, 1126, 1130, 1140, 1141, 1166], "given": [0, 1061, 1107, 1108, 1119, 1142, 1145, 1166, 1173, 1177, 1178, 1179, 1180, 1182, 1192], "here": [0, 1, 394, 424, 817, 882, 895, 939, 956, 1101, 1106, 1109, 1113, 1115, 1116, 1117, 1118, 1119, 1123, 1124, 1126, 1129, 1130, 1136, 1138, 1140, 1145, 1165, 1166, 1171, 1172, 1180], "mean": [0, 1, 109, 140, 148, 214, 273, 324, 388, 397, 401, 404, 405, 406, 407, 437, 442, 495, 676, 685, 694, 698, 765, 780, 799, 922, 993, 1051, 1061, 1105, 1106, 1107, 1109, 1117, 1129, 1131, 1137, 1166], "transit": [0, 510, 511, 527, 545, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 580, 582, 583, 584, 586, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 616, 617, 620, 621, 623, 624, 625, 635, 646, 647, 649, 652, 655, 657, 658, 663, 664, 665, 666, 668, 1102, 1168, 1172, 1173, 1178], "closur": [0, 3, 4, 17, 22, 42, 46, 49, 51, 65, 66, 85, 86, 389, 1102, 1106, 1165], "parent": [0, 153, 163, 165, 166, 168, 169, 173, 179, 185, 186, 187, 191, 384, 447, 1113, 1129, 1130, 1166, 1175, 1179], "just": [0, 1, 2, 1100, 1103, 1115, 1117, 1129], "owl": [0, 1, 201, 202, 372, 381, 382, 384, 385, 386, 388, 393, 394, 397, 403, 404, 405, 421, 427, 433, 437, 443, 451, 454, 455, 458, 460, 470, 474, 476, 480, 485, 488, 489, 503, 509, 512, 521, 530, 533, 535, 536, 537, 540, 541, 542, 545, 549, 551, 552, 553, 556, 560, 561, 566, 569, 578, 580, 581, 585, 586, 595, 604, 608, 611, 613, 615, 616, 627, 631, 632, 633, 634, 643, 644, 645, 649, 651, 654, 659, 660, 667, 668, 670, 672, 673, 824, 827, 835, 838, 842, 862, 872, 882, 899, 917, 918, 942, 1103, 1106, 1108, 1109, 1110, 1112, 1114, 1115, 1117, 1119, 1126, 1127, 1128, 1129, 1131, 1132, 1135, 1137, 1143, 1145, 1159, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1175, 1176, 1178, 1181, 1182], "4023094": 0, "ancestri": [0, 1102, 1172], "graph": [0, 1, 201, 372, 373, 380, 381, 382, 384, 385, 386, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 419, 430, 431, 432, 436, 437, 441, 442, 443, 446, 448, 453, 454, 463, 466, 1103, 1106, 1111, 1118, 1119, 1127, 1128, 1132, 1135, 1137, 1140, 1152, 1156, 1157, 1161, 1162, 1163, 1164, 1165, 1166, 1170, 1172, 1178, 1181, 1182], "like": [0, 1, 405, 698, 827, 939, 953, 1099, 1100, 1102, 1106, 1107, 1108, 1109, 1113, 1114, 1115, 1116, 1117, 1118, 1123, 1124, 1126, 1129, 1131, 1132, 1136, 1140, 1141, 1149, 1165, 1170, 1181, 1192], "relat": [0, 1, 3, 17, 22, 46, 65, 66, 85, 86, 153, 157, 161, 162, 163, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 180, 181, 182, 183, 184, 185, 186, 188, 189, 192, 193, 194, 198, 199, 406, 407, 476, 480, 488, 499, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 613, 641, 742, 842, 882, 896, 939, 956, 1101, 1102, 1106, 1107, 1108, 1111, 1118, 1135, 1137, 1140, 1143, 1162, 1163, 1164, 1170, 1172, 1178], "constrain": [0, 382, 419, 429, 437, 443, 451, 457, 495, 613, 941, 953, 1117, 1129, 1165, 1166, 1171, 1173], "backend": [0, 1099, 1109, 1110, 1127, 1128, 1130, 1137, 1166, 1191], "also": [0, 1, 153, 163, 405, 437, 1100, 1102, 1106, 1107, 1108, 1109, 1110, 1113, 1114, 1115, 1117, 1118, 1123, 1126, 1129, 1130, 1131, 1135, 1145, 1152, 1153, 1155, 1156, 1159, 1162, 1163, 1165, 1166, 1171, 1172, 1174, 1176, 1182], "goblet": 0, "cell": [0, 1104, 1106, 1117, 1118, 1123, 1130, 1135, 1137, 1151, 1166], "go": [0, 1, 31, 46, 388, 389, 402, 437, 453, 476, 480, 485, 488, 503, 505, 507, 509, 512, 521, 530, 535, 540, 541, 545, 563, 575, 578, 596, 625, 665, 827, 828, 901, 939, 953, 1035, 1060, 1093, 1099, 1106, 1107, 1115, 1117, 1118, 1119, 1123, 1126, 1129, 1130, 1132, 1136, 1137, 1143, 1149, 1153, 1154, 1158, 1159, 1162, 1165, 1166, 1167, 1171, 1172, 1178, 1180, 1182, 1192], "0005773": [0, 1117, 1159, 1166, 1167, 1172], "0005737": [0, 1117, 1159, 1166], "python": [0, 202, 1099, 1103, 1106, 1109, 1110, 1111, 1115, 1118, 1124, 1126, 1127, 1128, 1129, 1132, 1136, 1141, 1182, 1184, 1191, 1192], "api": [0, 1102, 1103, 1106, 1118, 1123, 1124, 1129, 1136, 1137, 1140, 1148, 1150, 1151, 1152, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1183], "incatool": [0, 495, 1100, 1106, 1124, 1163, 1192], "github": [0, 2, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 480, 488, 495, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 1100, 1102, 1106, 1109, 1124, 1134, 1138, 1139, 1150, 1157, 1163, 1183, 1192], "io": [0, 388, 396, 400, 410, 412, 413, 418, 436, 1106, 1109, 1123, 1192], "access": [0, 1, 495, 1099, 1100, 1103, 1106, 1108, 1110, 1111, 1114, 1123, 1126, 1129, 1131, 1132, 1135, 1137, 1155, 1156, 1158, 1159, 1162, 1182, 1183, 1192], "kit": [0, 495, 1100, 1102, 1109, 1123, 1192], "obograph": [0, 1, 202, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 1107, 1127, 1128, 1133, 1143, 1144, 1145, 1146, 1154, 1156, 1164, 1166, 1170], "separ": [0, 1, 2, 1100, 1107, 1108, 1115, 1118, 1119, 1136, 1137, 1141, 1165], "shorthand": [0, 480, 530, 540, 545, 613, 1106, 1108, 1182], "m": [0, 1114, 1123, 1129, 1151, 1166], "method": [0, 1, 1099, 1102, 1103, 1106, 1107, 1113, 1115, 1117, 1118, 1119, 1130, 1131, 1132, 1136, 1141, 1156, 1159, 1165, 1166, 1170, 1171, 1172, 1178, 1180, 1181, 1182, 1192], "graph_traversal_method": 0, "whether": [0, 1106, 1107, 1115, 1116, 1119, 1137, 1141, 1145, 1161, 1166, 1167, 1168, 1169, 1170, 1171, 1175, 1176, 1178, 1181], "formal": [0, 1, 381, 437, 939, 955, 956, 1100, 1106, 1108, 1109, 1110, 1117, 1123, 1166, 1178], "entail": [0, 140, 153, 163, 842, 876, 882, 1100, 1106, 1111, 1113, 1131, 1166, 1173, 1178, 1179], "walk": [0, 1106, 1117, 1130, 1133, 1172], "hop": [0, 1106, 1117], "each": [0, 1, 140, 153, 161, 163, 202, 273, 321, 324, 331, 365, 437, 448, 827, 993, 1100, 1102, 1106, 1107, 1109, 1117, 1118, 1119, 1123, 1126, 1129, 1132, 1140, 1141, 1145, 1163, 1166, 1168, 1169, 1171, 1175, 1176, 1178, 1180, 1181, 1192], "piec": [0, 1, 1106, 1108, 1109, 1180], "text": [0, 109, 140, 148, 202, 214, 273, 324, 380, 397, 404, 406, 411, 476, 480, 488, 495, 505, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 575, 583, 667, 676, 685, 694, 698, 842, 860, 861, 882, 922, 978, 988, 989, 991, 993, 998, 1002, 1003, 1005, 1006, 1007, 1009, 1010, 1011, 1012, 1013, 1015, 1018, 1019, 1020, 1021, 1022, 1051, 1061, 1099, 1103, 1106, 1109, 1111, 1113, 1118, 1123, 1126, 1127, 1129, 1137, 1149, 1151, 1164, 1165, 1166, 1170, 1176], "entiti": [0, 1, 3, 4, 17, 22, 23, 24, 31, 41, 44, 46, 60, 67, 84, 93, 125, 132, 133, 142, 157, 163, 174, 192, 212, 227, 228, 229, 231, 234, 236, 237, 239, 240, 241, 242, 247, 372, 373, 380, 381, 382, 384, 385, 388, 389, 393, 394, 396, 403, 405, 410, 411, 412, 417, 418, 420, 424, 426, 427, 436, 437, 438, 440, 441, 443, 450, 456, 464, 465, 467, 468, 472, 473, 474, 475, 495, 517, 522, 613, 694, 717, 735, 743, 765, 771, 780, 789, 793, 795, 796, 803, 805, 806, 842, 882, 889, 916, 989, 997, 1000, 1001, 1024, 1106, 1107, 1108, 1109, 1111, 1116, 1117, 1127, 1129, 1132, 1141, 1148, 1151, 1154, 1162, 1165, 1166, 1167, 1170, 1171, 1172, 1173, 1174, 1177, 1178, 1179, 1181], "recognit": [0, 1001, 1024, 1180], "bioport": [0, 1, 1103, 1106, 1128, 1136, 1137, 1152, 1164, 1166, 1171, 1180], "have": [0, 1, 2, 212, 227, 405, 437, 448, 476, 480, 485, 488, 495, 503, 507, 508, 509, 510, 511, 512, 521, 527, 530, 533, 535, 540, 541, 545, 550, 560, 584, 598, 600, 601, 606, 613, 816, 881, 882, 936, 940, 941, 953, 969, 1061, 1099, 1100, 1101, 1102, 1103, 1105, 1106, 1108, 1109, 1113, 1114, 1115, 1116, 1117, 1118, 1123, 1124, 1126, 1129, 1131, 1132, 1135, 1136, 1140, 1141, 1149, 1166, 1192], "built": [0, 1106, 1131], "support": [0, 3, 4, 17, 22, 43, 46, 82, 90, 380, 388, 394, 418, 424, 446, 1099, 1103, 1106, 1107, 1111, 1113, 1117, 1118, 1126, 1129, 1131, 1140, 1149, 1151, 1162, 1165, 1166, 1168, 1176, 1181], "case": [0, 1, 28, 113, 140, 159, 225, 273, 274, 324, 325, 386, 415, 547, 693, 702, 710, 717, 768, 843, 944, 993, 994, 1056, 1099, 1102, 1106, 1108, 1109, 1110, 1111, 1114, 1117, 1118, 1119, 1133, 1140, 1145, 1159, 1166, 1171, 1180, 1182], "function": [0, 1102, 1106, 1109, 1113, 1114, 1115, 1123, 1126, 1129, 1130, 1134, 1136, 1141, 1142, 1164, 1180, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1191], "enlarg": 0, "nucleu": [0, 1099, 1119, 1126, 1136, 1143, 1154, 1159, 1162, 1166, 1167, 1171, 1172, 1180, 1182], "peripher": 0, "blood": 0, "basic": [0, 153, 163, 1099, 1102, 1104, 1106, 1111, 1113, 1114, 1115, 1116, 1117, 1118, 1123, 1124, 1127, 1128, 1132, 1140, 1156, 1164, 1170, 1181], "algorithm": [0, 264, 279, 283, 309, 331, 346], "base": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 25, 26, 27, 28, 29, 42, 46, 49, 50, 51, 91, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 110, 111, 112, 113, 114, 125, 129, 134, 135, 136, 137, 138, 139, 141, 142, 143, 144, 145, 146, 147, 149, 150, 151, 152, 154, 155, 156, 158, 159, 160, 203, 204, 205, 206, 207, 208, 209, 210, 211, 215, 216, 218, 219, 220, 221, 222, 224, 225, 226, 234, 236, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 266, 267, 268, 270, 271, 272, 273, 274, 275, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 313, 314, 315, 319, 320, 322, 323, 324, 325, 326, 331, 345, 374, 375, 376, 377, 378, 379, 383, 387, 390, 391, 392, 395, 398, 399, 400, 408, 409, 413, 414, 415, 416, 418, 449, 486, 487, 490, 491, 492, 493, 494, 496, 498, 513, 514, 515, 516, 517, 523, 524, 525, 531, 538, 539, 543, 544, 546, 547, 548, 675, 678, 679, 680, 681, 682, 683, 684, 686, 687, 688, 689, 690, 691, 697, 699, 700, 701, 702, 703, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 762, 763, 767, 768, 769, 770, 780, 800, 814, 818, 819, 820, 821, 822, 823, 826, 829, 830, 831, 832, 833, 834, 836, 837, 840, 841, 843, 844, 846, 863, 881, 882, 897, 920, 921, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 937, 938, 943, 944, 945, 970, 971, 972, 973, 974, 975, 976, 977, 979, 980, 981, 982, 983, 984, 985, 986, 987, 992, 993, 994, 995, 1027, 1029, 1030, 1031, 1032, 1033, 1034, 1036, 1037, 1038, 1039, 1042, 1044, 1045, 1050, 1052, 1053, 1054, 1056, 1057, 1067, 1102, 1104, 1105, 1106, 1109, 1111, 1113, 1124, 1129, 1140, 1142, 1161, 1166, 1176, 1180, 1182, 1193], "builtin": [0, 1106, 1117], "slow": [0, 1105, 1118, 1123, 1141, 1165], "index": [0, 202, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 307, 308, 309, 310, 318, 330, 331, 348, 827, 1106, 1123, 1127, 1140, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "re": [0, 1135], "everi": [0, 153, 163, 1110, 1113, 1117, 1118, 1129, 1168], "time": [0, 4, 9, 46, 98, 125, 138, 163, 207, 234, 255, 279, 300, 331, 378, 437, 493, 613, 681, 717, 748, 780, 821, 839, 875, 882, 907, 926, 953, 974, 1001, 1032, 1067, 1104, 1112, 1113, 1117, 1129, 1131, 1135, 1136, 1171], "To": [0, 1102, 1105, 1107, 1114, 1115, 1117, 1118, 1127, 1129, 1132, 1136, 1145, 1154, 1156, 1159, 1160, 1162, 1163, 1165, 1166, 1171], "preserv": 0, "On": [0, 1102, 1108, 1110, 1115, 1117, 1135, 1192], "subsequ": [0, 1180], "iter": [0, 693, 1103, 1106, 1132, 1163, 1165, 1166, 1167, 1168, 1171, 1172, 1173, 1175, 1176, 1177, 1178, 1180, 1181, 1191], "reus": [0, 1124], "pars": [0, 21, 30, 45, 46, 77, 78, 418, 1103, 1106, 1159, 1166, 1182], "gilda": [0, 1152, 1164], "instal": [0, 1103, 1120, 1126, 1128, 1135], "extra": [0, 212, 227, 1123, 1129, 1182], "whole": [0, 1124, 1129, 1166, 1177], "perform": [0, 989, 1001, 1047, 1067, 1068, 1071, 1081, 1089, 1102, 1106, 1115, 1117, 1118, 1124, 1129, 1130, 1140, 1151, 1159, 1163, 1170, 1178, 1180], "ground": [0, 989, 1001, 1104, 1107, 1123, 1180], "brca2": 0, "flag": [0, 1108, 1113, 1118, 1119, 1145], "plugin": [0, 1102, 1106, 1120, 1127, 1128, 1180], "oakx": [0, 2, 1126, 1134], "spaci": [0, 1126, 1180], "bero": 0, "myeloid": 0, "deriv": [0, 1135], "suppressor": 0, "yield": [0, 264, 273, 279, 283, 292, 309, 324, 331, 346, 369, 993, 1099, 1106, 1111, 1141, 1165, 1166, 1168, 1171, 1172, 1173, 1175, 1177, 1178, 1180, 1181], "confid": [0, 316, 331, 371, 988, 1001, 1040, 1067, 1129], "0": [0, 2, 3, 4, 17, 20, 21, 22, 23, 24, 93, 94, 129, 148, 153, 157, 212, 213, 217, 223, 262, 263, 264, 265, 269, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 476, 479, 480, 485, 488, 489, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 530, 533, 535, 536, 537, 540, 541, 542, 545, 677, 692, 693, 695, 696, 743, 764, 765, 766, 813, 815, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 936, 939, 940, 941, 942, 978, 988, 989, 990, 991, 1035, 1040, 1046, 1047, 1048, 1049, 1055, 1058, 1059, 1060, 1123, 1129, 1134, 1165, 1166, 1167, 1172], "8": [0, 1106, 1117, 1127, 1128, 1166], "object_alias": [0, 988, 1001], "mdsc": 0, "object_id": [0, 695, 717, 765, 780, 988, 1001, 1040, 1067, 1099, 1114, 1129, 1171, 1180], "mesh_d000072737": 0, "object_label": [0, 3, 17, 22, 41, 46, 695, 717, 765, 780, 988, 1001, 1110, 1129, 1135, 1180], "subject_end": [0, 978, 988, 1001, 1019, 1129, 1180], "30": [0, 1166], "subject_start": [0, 978, 988, 1001, 1019, 1129, 1180], "w3id": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 232, 233, 234, 235, 236, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 469, 669, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1114, 1124, 1171, 1176, 1180], "org": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 232, 233, 234, 235, 236, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 388, 389, 402, 437, 453, 469, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1102, 1106, 1108, 1109, 1110, 1113, 1114, 1116, 1119, 1124, 1129, 1133, 1145, 1156, 1166, 1171, 1176, 1178, 1180, 1182, 1192], "word": [0, 273, 324, 993], "span": [0, 693, 717, 720, 1106, 1165], "entir": [0, 827, 828, 846, 863, 881, 882, 897, 901, 920, 989, 1001, 1119, 1124, 1166, 1169, 1172, 1181], "text_fil": [0, 1180], "newlin": 0, "entri": [0, 1115, 1119, 1126, 1145], "distinct": [0, 1, 413, 507, 842, 873, 882, 889, 909, 1106, 1107, 1162, 1165, 1172, 1182], "lexical_index_fil": 0, "recreat": [0, 2], "unless": [0, 28, 113, 159, 225, 274, 325, 415, 547, 702, 768, 843, 944, 994, 1056, 1119, 1129, 1145, 1167, 1182], "column": [0, 1100, 1106, 1113], "match_column": [0, 1180], "tsv": [0, 1105, 1114, 1124, 1129, 1149, 1171], "csv": [0, 1113, 1114, 1118, 1129], "train": 0, "en_ner_craft_md": 0, "x": [0, 2, 1115], "exclud": [0, 989, 1001, 1025, 1115, 1166], "token": [0, 989, 1001, 1025], "exclude_token": 0, "prior": [0, 2, 46, 72, 73, 74], "r": [0, 386, 403, 437, 1162, 1166, 1167, 1170, 1172, 1175], "rule": [0, 202, 273, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 403, 421, 476, 480, 488, 503, 509, 512, 521, 526, 530, 535, 540, 541, 545, 563, 596, 603, 665, 941, 946, 1035, 1060, 1061, 1067, 1093, 1102, 1105, 1127, 1180], "rules_fil": 0, "conform": [0, 10, 11, 12, 14, 15, 25, 46, 99, 100, 101, 103, 104, 110, 125, 139, 141, 143, 145, 146, 155, 163, 208, 209, 210, 215, 216, 221, 234, 256, 257, 258, 260, 261, 270, 279, 301, 302, 303, 305, 306, 319, 331, 379, 383, 387, 391, 392, 408, 437, 494, 495, 496, 498, 515, 516, 538, 613, 682, 683, 684, 687, 688, 699, 717, 749, 750, 751, 754, 755, 762, 780, 822, 823, 826, 830, 831, 836, 882, 927, 928, 929, 931, 932, 937, 953, 975, 976, 977, 980, 981, 986, 1001, 1033, 1034, 1036, 1038, 1039, 1052, 1061, 1067, 1099, 1104, 1105, 1106, 1107, 1110, 1114, 1118, 1129, 1131, 1136, 1178, 1180], "c": [0, 384, 388, 431, 437, 1113, 1117, 1119, 1126, 1129, 1166, 1175], "configur": [0, 92, 125, 128, 693, 696, 707, 709, 710, 716, 717, 718, 719, 720, 722, 731, 735, 737, 739, 989, 997, 1000, 1001, 1004, 1007, 1008, 1017, 1025, 1046, 1058, 1064, 1067, 1070, 1080, 1083, 1094, 1097, 1119, 1123, 1168, 1172, 1173, 1174, 1180, 1181, 1193], "configuration_fil": 0, "config": [0, 1120, 1148, 1176], "patch": [0, 1106, 1174], "kgcl": [0, 202, 1047, 1099, 1106, 1115, 1127, 1128, 1168, 1174], "com": [0, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 480, 488, 495, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 1100, 1106, 1123, 1124, 1134, 1135, 1138, 1150, 1157, 1159, 1163, 1183], "ttl": [0, 1110, 1166, 1182], "renam": [0, 693], "0000561": 0, "amacrin": 0, "neuron": [0, 1099, 1130, 1135, 1176, 1180], "simpleobo": [0, 1117, 1160, 1166], "edit": [0, 1106, 1123, 1136, 1166], "0005634": [0, 1166, 1171, 1172, 1180], "foo": [0, 1115, 1165], "new": [0, 4, 36, 42, 46, 50, 54, 55, 56, 80, 81, 321, 331, 355, 1101, 1106, 1117, 1120, 1123, 1128, 1136, 1162, 1166], "With": [0, 1117, 1118, 1119, 1127, 1128, 1136, 1145], "uri": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1106, 1107, 1111, 1119, 1124, 1127, 1142, 1145, 1166, 1172], "purl": [0, 388, 389, 402, 437, 453, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 1108, 1110, 1113, 1119, 1129, 1166, 1182, 1192], "obolibrari": [0, 388, 389, 402, 437, 453, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 1108, 1110, 1113, 1119, 1129, 1133, 1135, 1166, 1182, 1192], "cl_0000561": 0, "warn": [0, 1051], "still": [0, 1035, 1067, 1106, 1107, 1116, 1166, 1178, 1192], "experiment": [0, 1102, 1113, 1117, 1136, 1150, 1178, 1193], "thing": [0, 1, 3, 4, 17, 22, 30, 37, 41, 43, 46, 53, 60, 65, 66, 67, 75, 76, 78, 79, 82, 84, 85, 86, 87, 90, 163, 164, 212, 217, 227, 229, 231, 233, 234, 235, 241, 245, 246, 476, 480, 485, 488, 502, 503, 504, 508, 509, 512, 521, 522, 530, 533, 535, 540, 541, 545, 555, 559, 562, 581, 588, 591, 597, 605, 609, 613, 627, 630, 632, 635, 654, 655, 658, 668, 1100, 1106, 1108, 1109, 1110, 1117, 1140, 1166, 1168, 1169, 1171, 1175, 1176, 1178, 1181, 1182, 1192], "bear": 0, "mind": 0, "work": [0, 1, 2, 693, 717, 1102, 1104, 1105, 1106, 1109, 1113, 1116, 1117, 1120, 1127, 1128, 1130, 1131, 1132, 1135, 1140, 1154, 1186, 1192], "instead": [0, 411, 438, 1106, 1115, 1117, 1119, 1129, 1136, 1140, 1145, 1163, 1166, 1182], "surround": 0, "changes_output": 0, "changes_input": 0, "changes_format": 0, "json": [0, 2, 14, 15, 46, 103, 104, 125, 145, 146, 163, 215, 216, 234, 260, 261, 279, 305, 306, 331, 391, 392, 437, 515, 516, 613, 687, 688, 717, 754, 755, 780, 830, 831, 882, 931, 932, 953, 980, 981, 1001, 1038, 1039, 1067, 1106, 1119, 1123, 1136, 1143, 1145, 1154, 1159, 1182], "dry": 0, "kcgl": 0, "do": [0, 1, 202, 386, 765, 771, 1103, 1106, 1108, 1113, 1117, 1119, 1123, 1124, 1126, 1129, 1135, 1136, 1140, 1142, 1145, 1162, 1166, 1168, 1169, 1171, 1172, 1175, 1176, 1178, 1181, 1182], "complex": [0, 437, 448, 1117, 1137, 1162, 1174], "atom": [0, 264, 265, 279, 282, 283, 291, 292, 309, 310, 331, 341, 346, 367, 369, 677, 693, 717, 765, 771, 772, 773, 774, 777, 778, 780, 783, 793, 794, 795, 796, 799, 803, 804, 805, 806, 1174], "ignor": [0, 1166, 1174, 1182], "invalid": [0, 1174], "contributor": [0, 476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650, 816, 817, 864, 865, 881, 882, 895, 906, 1174], "person": [0, 31, 46, 223, 245, 1106, 1110], "contribut": [0, 380, 828, 840, 842, 846, 882, 1103, 1127], "overwrit": 0, "sourc": [0, 2, 46, 163, 169, 172, 178, 279, 331, 613, 717, 780, 953, 1001, 1067, 1099, 1100, 1102, 1111, 1124, 1129, 1133, 1142, 1144, 1145, 1146, 1148, 1150, 1151, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1193], "my": [0, 212, 1103, 1123, 1126, 1130, 1145, 1149, 1158, 1159], "0002200": 0, "modifi": [0, 30, 32, 33, 34, 36, 37, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 161, 166, 167, 168, 170, 171, 174, 175, 176, 177, 180, 181, 183, 184, 185, 186, 188, 189, 192, 193, 194, 198, 199, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 419, 420, 421, 422, 423, 424, 425, 426, 427, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 510, 511, 527, 549, 550, 551, 552, 553, 554, 555, 556, 557, 559, 560, 561, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 579, 580, 582, 583, 584, 585, 586, 587, 588, 589, 591, 592, 593, 594, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 627, 635, 636, 637, 638, 644, 645, 646, 647, 648, 649, 652, 655, 657, 658, 659, 660, 661, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 704, 705, 706, 707, 708, 709, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 771, 772, 773, 774, 775, 776, 777, 778, 779, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 864, 865, 866, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 879, 880, 881, 883, 885, 886, 887, 888, 889, 890, 892, 893, 894, 895, 896, 897, 898, 899, 901, 902, 903, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1047, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1108, 1142, 1165, 1181], "id": [0, 93, 119, 125, 140, 212, 217, 223, 230, 232, 233, 234, 239, 388, 396, 410, 412, 437, 480, 488, 499, 503, 512, 521, 522, 530, 533, 535, 540, 541, 545, 565, 596, 613, 639, 764, 780, 813, 816, 828, 835, 840, 842, 882, 939, 942, 953, 988, 991, 1001, 1011, 1028, 1035, 1041, 1043, 1060, 1067, 1093, 1107, 1110, 1113, 1115, 1116, 1117, 1118, 1119, 1129, 1130, 1135, 1145, 1158, 1163, 1166, 1171, 1192], "1": [0, 1, 3, 4, 17, 20, 21, 22, 23, 24, 92, 93, 129, 140, 148, 153, 157, 212, 217, 223, 262, 264, 265, 269, 307, 309, 310, 311, 312, 316, 318, 321, 322, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 476, 479, 480, 485, 488, 489, 495, 502, 503, 505, 506, 508, 509, 512, 521, 522, 530, 533, 535, 537, 540, 541, 545, 677, 692, 693, 695, 696, 743, 764, 765, 766, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 936, 939, 940, 941, 942, 978, 988, 989, 991, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1055, 1058, 1060, 1102, 1106, 1113, 1115, 1116, 1118, 1120, 1127, 1128, 1151, 1159, 1167, 1176], "2": [0, 2, 140, 388, 396, 400, 410, 412, 413, 418, 436, 1113, 1115, 1116, 1117, 1120, 1127, 1128, 1129, 1151, 1166, 1171, 1176], "3": [0, 140, 1113, 1116, 1120, 1123, 1127, 1128, 1129, 1134, 1165, 1166, 1167], "chain": [0, 388, 403, 421, 437, 443, 451, 454, 1117, 1128, 1173], "them": [0, 389, 437, 1103, 1106, 1113, 1124, 1129, 1166, 1178, 1181], "redund": [0, 476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 941, 949, 953, 962, 1167, 1178], "more": [0, 1, 4, 14, 25, 42, 46, 49, 51, 93, 103, 110, 115, 121, 125, 140, 145, 155, 201, 202, 212, 215, 221, 227, 234, 260, 270, 305, 319, 381, 391, 408, 437, 448, 476, 480, 485, 488, 508, 509, 512, 515, 521, 530, 533, 535, 538, 540, 541, 545, 560, 687, 699, 742, 754, 762, 812, 830, 836, 931, 937, 941, 966, 980, 986, 1038, 1052, 1058, 1067, 1070, 1099, 1106, 1107, 1108, 1109, 1110, 1111, 1113, 1115, 1116, 1118, 1120, 1123, 1127, 1129, 1132, 1135, 1140, 1141, 1152, 1158, 1163, 1165, 1166, 1167, 1168, 1171, 1172, 1180, 1181, 1182, 1193], "test": [0, 321, 331, 332, 345, 354, 1099, 1101, 1102, 1110, 1116, 1117, 1119, 1120, 1132, 1135, 1141, 1143, 1145, 1154, 1156, 1159, 1162, 1166, 1167, 1171, 1172, 1180, 1182], "candid": [0, 941, 953, 1191], "form": [0, 14, 15, 103, 104, 145, 146, 153, 188, 215, 216, 260, 261, 273, 305, 306, 324, 388, 391, 392, 403, 421, 431, 432, 437, 476, 495, 505, 509, 512, 515, 516, 521, 541, 575, 687, 688, 754, 755, 830, 831, 931, 932, 980, 981, 993, 1038, 1039, 1100, 1106, 1107, 1108, 1110, 1116, 1118, 1123, 1129, 1136, 1166], "tripl": [0, 3, 17, 22, 38, 46, 53, 476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 842, 882, 905, 1106, 1114, 1117, 1131, 1162, 1163, 1166, 1192], "period": [0, 1119, 1145], "0005743": 0, "ncbitaxon": [0, 488, 509, 605, 940, 1131, 1140, 1165, 1166], "2759": [0, 1166], "never": [0, 939, 941, 953, 955, 961, 963, 1115, 1140], "evolut": 0, "arxiv": 0, "ab": 0, "1802": 0, "06004": 0, "0000229": 0, "gain": 0, "loss": 0, "eukaryota": [0, 1166], "eval": 0, "evo": 0, "blob": [0, 1138], "main": [0, 1, 397, 437, 1100, 1101, 1102, 1106, 1108, 1117, 1126, 1129, 1148, 1161, 1166, 1181], "notebook": [0, 1100, 1102, 1124, 1127], "ipynb": 0, "evolution_fil": 0, "contain": [0, 24, 46, 83, 394, 437, 695, 717, 728, 941, 965, 1106, 1107, 1109, 1116, 1117, 1119, 1129, 1131, 1145, 1172], "lookup": [0, 1102, 1106, 1118, 1129, 1130, 1132, 1137, 1140, 1152, 1164, 1166, 1171, 1182], "hp": [0, 1102, 1107, 1108, 1109, 1115, 1118, 1119, 1123, 1145, 1148, 1153, 1166, 1182], "hpoa": [0, 31, 46, 1108, 1118, 1165], "plu": [0, 212, 227, 228, 229, 231, 234, 237, 239, 240, 241, 242, 247, 939, 953, 968, 1106, 1129, 1133, 1166, 1182, 1186], "0001392": 0, "abnorm": [0, 1106, 1108, 1123, 1145, 1153, 1166], "liver": [0, 1123, 1153], "awkward": 0, "both": [0, 140, 437, 448, 717, 735, 1001, 1024, 1099, 1100, 1103, 1105, 1106, 1107, 1111, 1113, 1114, 1117, 1118, 1168, 1175, 1176, 1192], "bundl": [0, 481, 613, 1134, 1140], "combin": [0, 1, 9, 46, 98, 125, 138, 163, 207, 234, 255, 279, 300, 331, 378, 382, 437, 493, 613, 681, 717, 748, 780, 821, 882, 926, 939, 953, 968, 974, 1001, 1032, 1067, 1102, 1106, 1108, 1118, 1165, 1166, 1172, 1177, 1182, 1192], "togeth": [0, 389, 435, 437, 443, 448, 453, 1116, 1118, 1148, 1165, 1166], "dictybas": 0, "spec": [0, 1143, 1165, 1167], "src": [0, 1124, 1126, 1130, 1165, 1167], "conf": [0, 1165, 1167], "yaml": [0, 3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 109, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 140, 148, 153, 157, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 212, 213, 214, 217, 223, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 262, 263, 264, 265, 269, 273, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 397, 402, 403, 404, 405, 406, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 495, 497, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 526, 527, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 676, 677, 685, 692, 693, 694, 695, 696, 698, 704, 705, 706, 707, 708, 709, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 761, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 879, 880, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 922, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 993, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1051, 1055, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1113, 1114, 1123, 1124, 1129, 1136, 1165, 1167, 1182], "0008104": 0, "autolabel": [0, 1158, 1167], "assign": [0, 1106, 1129, 1166], "absent": [0, 1148], "if_abs": 0, "when": [0, 1, 2, 14, 15, 21, 25, 30, 45, 46, 77, 78, 103, 104, 110, 145, 146, 155, 213, 215, 216, 221, 260, 261, 270, 305, 306, 319, 382, 384, 391, 392, 408, 437, 476, 480, 488, 506, 509, 512, 515, 516, 521, 530, 533, 535, 538, 540, 541, 545, 566, 572, 613, 687, 688, 693, 699, 717, 737, 754, 755, 762, 765, 771, 830, 831, 836, 931, 932, 937, 980, 981, 986, 1038, 1039, 1052, 1099, 1106, 1107, 1109, 1113, 1115, 1116, 1117, 1118, 1126, 1129, 1145, 1154, 1159, 1160, 1165, 1166, 1192], "empti": [0, 1165, 1166, 1171], "set_valu": 0, "field": [0, 1, 4, 46, 89, 109, 125, 217, 223, 230, 695, 698, 717, 723, 727, 738, 1099, 1108, 1129, 1165, 1167, 1171], "association_pred": 0, "role": [0, 380, 411, 417, 816, 881, 882, 1166], "terms_rol": 0, "how": [0, 153, 163, 693, 695, 698, 707, 709, 710, 716, 717, 718, 719, 720, 722, 731, 735, 737, 738, 739, 1103, 1106, 1109, 1111, 1113, 1127, 1128, 1129, 1130, 1131, 1136, 1141, 1172, 1182, 1192], "interpret": [0, 394, 437, 693, 698, 717, 739, 1106, 1159], "object": [0, 3, 4, 14, 15, 17, 19, 20, 22, 23, 24, 25, 27, 30, 31, 33, 34, 36, 37, 38, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 75, 76, 78, 79, 80, 81, 82, 84, 85, 86, 87, 88, 89, 90, 103, 104, 107, 110, 112, 125, 140, 145, 146, 148, 151, 153, 155, 158, 163, 164, 165, 166, 167, 168, 169, 173, 180, 182, 185, 186, 187, 188, 191, 215, 216, 220, 221, 224, 234, 260, 261, 268, 270, 272, 279, 305, 306, 311, 315, 319, 323, 331, 344, 373, 380, 384, 386, 391, 392, 399, 404, 405, 408, 411, 414, 417, 433, 437, 447, 448, 472, 476, 479, 480, 485, 488, 503, 509, 510, 511, 512, 515, 516, 521, 522, 527, 530, 531, 535, 536, 538, 540, 541, 544, 545, 550, 553, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 580, 582, 583, 584, 586, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 616, 617, 620, 621, 623, 624, 625, 635, 646, 647, 648, 649, 652, 655, 657, 658, 663, 664, 665, 666, 668, 687, 688, 691, 695, 699, 701, 717, 729, 743, 754, 755, 760, 762, 765, 767, 772, 780, 785, 794, 830, 831, 834, 836, 838, 841, 842, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 866, 868, 869, 870, 872, 873, 874, 876, 877, 881, 882, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 897, 898, 899, 903, 905, 908, 909, 911, 912, 915, 916, 920, 931, 932, 935, 937, 941, 943, 953, 966, 980, 981, 984, 986, 992, 1001, 1035, 1038, 1039, 1043, 1045, 1049, 1052, 1054, 1059, 1060, 1061, 1067, 1082, 1099, 1106, 1108, 1110, 1117, 1124, 1126, 1130, 1132, 1135, 1136, 1140, 1142, 1145, 1154, 1158, 1165, 1166, 1167, 1168, 1171, 1172, 1173, 1174, 1175, 1177], "subject": [0, 3, 4, 17, 20, 22, 23, 30, 31, 33, 37, 38, 41, 43, 46, 53, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 73, 74, 75, 76, 78, 79, 82, 85, 86, 87, 88, 90, 140, 148, 153, 163, 164, 165, 173, 175, 176, 177, 178, 181, 182, 188, 191, 193, 194, 195, 198, 199, 212, 228, 311, 331, 344, 384, 437, 462, 476, 480, 485, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 552, 563, 603, 665, 743, 765, 780, 785, 804, 842, 882, 889, 939, 941, 950, 952, 953, 954, 955, 956, 958, 959, 960, 968, 978, 988, 1001, 1019, 1035, 1043, 1060, 1067, 1069, 1077, 1106, 1108, 1110, 1117, 1118, 1124, 1135, 1140, 1158, 1165, 1166, 1167, 1171, 1172, 1173, 1175, 1177], "group": [0, 4, 24, 38, 44, 46, 83, 89, 249, 262, 263, 279, 287, 290, 294, 307, 308, 331, 356, 364, 372, 382, 405, 419, 429, 437, 440, 443, 450, 451, 457, 472, 473, 475, 476, 480, 481, 485, 488, 506, 509, 510, 511, 512, 521, 527, 530, 535, 540, 541, 545, 550, 555, 557, 559, 560, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 582, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 620, 623, 625, 635, 641, 646, 647, 652, 655, 657, 658, 664, 665, 666, 668, 761, 780, 815, 825, 828, 842, 856, 857, 874, 876, 882, 887, 888, 889, 901, 912, 940, 952, 953, 954, 1106, 1108, 1109, 1113, 1126, 1129, 1168, 1172, 1179], "summarz": 0, "hpo": [0, 1108, 1115, 1118, 1119, 1165, 1166], "number": [0, 10, 11, 12, 46, 93, 99, 100, 101, 125, 132, 133, 139, 141, 143, 163, 208, 209, 210, 234, 256, 257, 258, 279, 301, 302, 303, 331, 379, 383, 387, 437, 494, 496, 498, 613, 682, 683, 684, 693, 695, 717, 722, 732, 749, 750, 751, 765, 780, 783, 815, 822, 823, 825, 826, 842, 847, 848, 849, 855, 856, 857, 860, 861, 868, 869, 870, 873, 874, 876, 877, 882, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 898, 899, 903, 905, 908, 909, 911, 912, 915, 916, 927, 928, 929, 953, 975, 976, 977, 989, 1001, 1004, 1033, 1034, 1036, 1058, 1067, 1070, 1100, 1102, 1106, 1108, 1109, 1113, 1117, 1118, 1123, 1129, 1131, 1132, 1136, 1140, 1143, 1165, 1168, 1192], "direct": [0, 125, 140, 1106, 1111, 1123, 1129, 1135, 1167, 1172, 1175], "diseas": [0, 31, 46, 1106, 1108, 1167], "special": [0, 4, 36, 140, 437, 448, 698, 1106, 1113, 1115, 1129, 1137, 1140, 1156, 1163, 1166, 1181, 1192], "particular": [0, 1, 2, 27, 46, 112, 125, 158, 163, 212, 224, 227, 234, 272, 279, 323, 331, 414, 437, 544, 613, 693, 701, 707, 709, 710, 716, 717, 718, 719, 720, 722, 731, 737, 739, 767, 780, 815, 828, 841, 879, 880, 882, 901, 943, 953, 992, 1001, 1054, 1058, 1060, 1067, 1094, 1099, 1102, 1106, 1107, 1110, 1113, 1118, 1119, 1129, 1130, 1137, 1140, 1163, 1166, 1171, 1182], "databas": [0, 373, 394, 405, 411, 417, 418, 475, 1099, 1102, 1105, 1106, 1117, 1118, 1124, 1129, 1135, 1137, 1140, 1141, 1152, 1164, 1170, 1182], "iea": 0, "amigo": [0, 1165], "limit": [0, 394, 424, 437, 448, 693, 717, 989, 1001, 1102, 1106, 1108, 1113, 1129, 1132, 1163, 1165, 1166], "f": [0, 384, 437, 1107, 1110, 1117, 1126, 1130, 1137, 1141, 1159, 1165, 1166, 1167, 1172], "evidence_typ": [0, 3, 17, 22, 46], "speci": [0, 46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 940, 941, 952, 953, 954, 966, 1001, 1067, 1107, 1158], "9606": [0, 509, 1158], "accept": [0, 1, 1100, 1135, 1140, 1193], "detail": [0, 1, 3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 109, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 140, 148, 153, 157, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 212, 213, 214, 217, 223, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 262, 263, 264, 265, 269, 273, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 397, 402, 403, 404, 405, 406, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 495, 497, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 526, 527, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 676, 677, 685, 692, 693, 694, 695, 696, 698, 704, 705, 706, 707, 708, 709, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 761, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 922, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 993, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1051, 1055, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1099, 1106, 1108, 1109, 1110, 1112, 1118, 1123, 1129, 1135, 1162, 1165, 1170, 1172, 1181], "10": [0, 140, 1102, 1165], "k": 0, "min": 0, "facet": [0, 815, 824, 825, 842, 856, 857, 874, 876, 880, 882, 887, 888, 889, 912], "min_facet_count": 0, "minimum": [0, 129, 505, 575, 613, 625, 1061, 1129, 1177], "group_bi": [0, 1165, 1179], "co": [0, 20, 33, 46, 57, 58, 59, 61, 62, 63, 64, 88, 1165], "wood": 0, "carbon": 0, "et": [0, 1107, 1118], "al": [0, 1107, 1118], "royalsocietypublish": 0, "doi": [0, 1102, 1108], "1098": 0, "rsob": 0, "200149": 0, "0042416": 0, "0014046": 0, "As": [0, 1136, 1172, 1176], "heatmap": 0, "tmp": 0, "png": [0, 316, 371, 1133], "ofn": 0, "write": [0, 1102, 1105, 1109, 1120, 1123, 1127, 1130, 1131, 1135, 1136, 1141, 1169, 1170, 1181], "note": [0, 1, 2, 4, 21, 22, 49, 51, 77, 217, 223, 230, 249, 294, 335, 372, 386, 388, 405, 413, 431, 482, 485, 535, 541, 542, 613, 743, 761, 785, 840, 939, 942, 956, 1049, 1050, 1102, 1105, 1106, 1107, 1109, 1111, 1113, 1115, 1116, 1118, 1123, 1129, 1136, 1140, 1149, 1158, 1162, 1165, 1166, 1168, 1171, 1172, 1173, 1179, 1191, 1192], "funowl": [0, 202, 1102, 1106, 1127, 1134, 1140, 1157, 1159, 1160, 1162, 1173], "axiom_typ": 0, "about": [0, 1, 3, 4, 17, 22, 37, 41, 46, 79, 84, 87, 372, 373, 380, 381, 382, 384, 385, 388, 389, 393, 394, 396, 403, 405, 411, 417, 424, 437, 438, 440, 443, 450, 465, 472, 473, 475, 941, 953, 966, 1035, 1060, 1067, 1068, 1077, 1086, 1099, 1106, 1107, 1108, 1115, 1117, 1128, 1130, 1131, 1133, 1140, 1152, 1166, 1170, 1171, 1173], "refer": [0, 1, 28, 113, 142, 159, 163, 225, 274, 325, 373, 394, 405, 411, 415, 417, 418, 437, 440, 443, 450, 472, 473, 475, 547, 702, 768, 843, 944, 994, 1056, 1106, 1109, 1110, 1111, 1115, 1119, 1126, 1127, 1133, 1145, 1172, 1173, 1182], "pystow": [0, 1105, 1135], "dai": [0, 7, 27, 46, 96, 112, 125, 136, 158, 163, 205, 224, 234, 253, 272, 279, 298, 323, 331, 376, 414, 437, 491, 544, 613, 679, 701, 717, 746, 767, 780, 819, 841, 882, 924, 943, 953, 972, 992, 1001, 1030, 1054, 1067], "old": [0, 4, 36, 42, 46, 50, 68, 69, 70, 71, 80, 81, 1105], "days_old": 0, "anyth": [0, 2, 522, 526, 532, 608, 613, 668, 694, 1099, 1135, 1192, 1193], "than": [0, 2, 93, 115, 121, 125, 406, 476, 480, 485, 488, 508, 509, 512, 521, 530, 533, 535, 540, 541, 545, 560, 941, 946, 953, 1058, 1061, 1067, 1070, 1106, 1107, 1108, 1109, 1111, 1115, 1129, 1136, 1141, 1158, 1166, 1167], "100": 0, "todo": [0, 2, 476, 480, 485, 488, 489, 503, 506, 507, 508, 509, 512, 521, 530, 535, 536, 537, 540, 541, 545, 640, 765, 941, 1121, 1122, 1123, 1124, 1132, 1133, 1134, 1157, 1181, 1182], "unix": [0, 1109], "system": [0, 1, 1106, 1107, 1108, 1109, 1113, 1117, 1119, 1123, 1126, 1135, 1145, 1166], "textual": [0, 380, 411, 417, 437, 440, 443, 450, 472, 473, 475, 1001, 1024, 1109, 1113, 1118, 1123, 1180, 1192], "tropic": 0, "biom": 0, "temper": 0, "d": [0, 384, 388, 431, 437, 440, 443, 450, 472, 473, 475, 1099, 1113, 1129, 1135], "displai": [0, 1102, 1104, 1107, 1129, 1145], "obojson": [0, 1], "fhirjson": [0, 1119, 1145], "nl": [0, 1166], "statement": [0, 485, 551, 552, 553, 554, 560, 567, 571, 573, 587, 594, 597, 600, 607, 613, 618, 619, 622, 625, 637, 655, 660, 671, 842, 882, 911, 912, 941, 951, 953, 1106, 1152, 1162, 1166], "store": [0, 1102, 1106, 1110, 1129, 1131, 1132, 1149, 1165, 1166], "reific": 0, "assai": [0, 1135, 1137], "heart": [0, 1106, 1107, 1110, 1116], "invers": [0, 476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 1118], "But": [0, 382, 1102, 1106, 1113, 1117, 1118, 1126, 1140, 1192], "potenti": [0, 382, 419, 429, 437, 443, 451, 457, 507, 1106, 1115, 1117, 1141, 1166, 1192], "explos": 0, "especi": [0, 1117], "high": [0, 1106, 1129, 1136, 1140, 1159, 1168], "level": [0, 4, 49, 51, 405, 940, 952, 953, 954, 1106, 1107, 1114, 1126, 1132, 1136, 1140, 1162, 1166, 1168, 1192], "comput": [0, 828, 840, 842, 882, 897, 1106, 1111, 1113, 1117, 1126, 1127, 1129, 1132, 1177], "bar": 0, "produc": [0, 1104, 1141], "html": [0, 388, 396, 400, 410, 412, 413, 418, 436, 1106, 1119, 1123, 1145, 1192], "control": [0, 212, 228, 234, 273, 279, 324, 331, 993, 1001, 1109, 1129, 1166, 1168, 1169, 1171, 1175, 1176, 1178, 1181], "natur": [0, 1104, 1108, 1123], "txt": [0, 1158], "summari": [0, 4, 46, 89, 202, 824, 827, 828, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 866, 868, 869, 870, 872, 873, 874, 875, 876, 877, 881, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 897, 898, 899, 901, 903, 905, 907, 908, 909, 911, 912, 915, 916, 919, 920, 1123, 1127, 1164, 1168, 1170], "accord": [0, 1113, 1123, 1172], "oio": [0, 373, 394, 405, 406, 410, 411, 412, 417, 464, 475, 476, 480, 485, 488, 502, 503, 504, 506, 507, 509, 512, 521, 530, 533, 535, 540, 541, 545, 563, 567, 568, 571, 573, 587, 594, 596, 598, 600, 601, 602, 606, 607, 612, 620, 621, 622, 623, 624, 637, 639, 640, 657, 660, 662, 671, 1104, 1107, 1110, 1114, 1115, 1166], "hasobonamespac": [0, 476, 480, 488, 502, 509, 512, 521, 530, 535, 540, 541, 545, 602, 1115], "partit": [0, 1, 828, 842, 882, 1179], "dictionari": [0, 273, 324, 993, 1132, 1144, 1166, 1168, 1179], "outer": 0, "kei": [0, 3, 17, 22, 46, 79, 212, 217, 230, 234, 239, 262, 263, 265, 278, 279, 280, 282, 285, 290, 307, 308, 310, 330, 331, 333, 341, 348, 364, 402, 405, 437, 440, 443, 450, 452, 472, 473, 475, 815, 817, 824, 825, 827, 850, 851, 852, 853, 864, 1055, 1067, 1084, 1093, 1103, 1129, 1142, 1152, 1166, 1168, 1172, 1175, 1179, 1183], "inner": 0, "__residual__": 0, "tabular": [0, 1113], "out": [0, 1, 827, 828, 901, 1102, 1103, 1115, 1116, 1123, 1130, 1132, 1136, 1148, 1166, 1167], "doe": [0, 1, 394, 420, 437, 695, 717, 723, 1103, 1104, 1105, 1106, 1113, 1117, 1118, 1124, 1126, 1129, 1132, 1137], "complet": [0, 1, 28, 46, 113, 125, 159, 163, 225, 234, 274, 279, 325, 331, 415, 437, 547, 613, 702, 717, 768, 780, 843, 882, 944, 953, 994, 1001, 1056, 1067, 1102, 1117, 1164, 1166], "robot": [0, 2, 1102, 1113, 1126, 1128, 1135, 1159, 1166, 1173], "other_ontologi": [0, 1168], "quick": [0, 1102, 1111, 1129], "change_typ": 0, "classcreat": 0, "edgedelet": 0, "group_by_properti": 0, "isdefinedbi": [0, 476, 480, 488, 506, 509, 512, 519, 521, 530, 533, 535, 540, 541, 545, 613, 1166], "namespac": [0, 388, 389, 402, 437, 453, 1099, 1126], "defin": [0, 1, 212, 227, 381, 388, 393, 422, 423, 425, 430, 434, 437, 442, 443, 454, 460, 470, 471, 941, 957, 1108, 1109, 1113, 1117, 1118, 1137, 1165, 1166, 1172, 1180], "infer": [0, 4, 42, 46, 49, 51, 941, 946, 953, 967, 969, 1106, 1113, 1117, 1129, 1158, 1162, 1166, 1179, 1182], "explicitli": [0, 2, 693, 716, 1129, 1162, 1165, 1166], "sh": [0, 311, 350, 388, 389, 402, 444, 452, 453, 816, 835, 902, 1035, 1048, 1049, 1051, 1059, 1060, 1061, 1068, 1069, 1073, 1077, 1082, 1084, 1086, 1093], "gaf": [0, 31, 46, 1108, 1165], "date": [0, 4, 8, 9, 39, 42, 46, 52, 54, 68, 97, 98, 125, 137, 138, 163, 206, 207, 234, 254, 255, 279, 299, 300, 331, 377, 378, 437, 476, 480, 488, 492, 493, 506, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650, 680, 681, 717, 747, 748, 780, 820, 821, 882, 925, 926, 953, 973, 974, 1001, 1031, 1032, 1067, 1103], "date1": 0, "date2": 0, "download_dir": 0, "public": [0, 3, 4, 17, 22, 42, 46, 80, 81, 380, 1108], "move": [0, 335, 1173], "old_dat": [0, 4, 40, 42, 46], "yyyi": 0, "mm": 0, "dd": 0, "new_dat": [0, 4, 40, 42, 46], "other_associ": 0, "One": [0, 148, 1107, 1117, 1129, 1167, 1182], "primary_knowledge_sourc": [0, 3, 4, 17, 21, 22, 46, 1182], "compar": [0, 765, 771, 780, 793, 803, 828, 840, 842, 863, 882, 1107, 1111, 1117], "calcul": [0, 839, 845, 875, 882, 907, 919, 1099, 1102, 1106, 1118, 1164, 1165, 1166, 1170, 1171, 1177], "cross": [0, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 202, 373, 394, 405, 411, 417, 418, 437, 475, 1111, 1113, 1127], "connect": [0, 1, 162, 163, 437, 448, 510, 511, 527, 530, 536, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 580, 582, 583, 584, 586, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 616, 617, 620, 621, 623, 624, 625, 635, 646, 647, 649, 652, 655, 657, 658, 663, 664, 665, 666, 668, 941, 953, 958, 1106, 1107, 1113, 1114, 1128, 1149, 1152, 1155, 1162, 1165, 1166, 1175, 1178], "comparison": [0, 273, 324, 993], "zfa": [0, 1114], "distribut": [0, 1114, 1124, 1165], "within": [0, 14, 15, 24, 25, 46, 83, 103, 104, 110, 145, 146, 153, 155, 163, 164, 167, 173, 176, 215, 216, 221, 260, 261, 270, 305, 306, 319, 391, 392, 408, 476, 485, 505, 509, 512, 515, 516, 521, 538, 541, 625, 687, 688, 699, 754, 755, 762, 830, 831, 836, 931, 932, 937, 941, 953, 961, 980, 981, 986, 1038, 1039, 1052, 1099, 1106, 1107, 1113, 1115, 1123, 1124, 1130, 1163, 1165, 1182, 1192], "provid": [0, 1, 201, 202, 394, 418, 437, 448, 517, 523, 613, 693, 717, 735, 737, 817, 882, 895, 1099, 1100, 1102, 1104, 1106, 1107, 1108, 1109, 1110, 1111, 1113, 1114, 1116, 1118, 1123, 1126, 1129, 1132, 1133, 1136, 1137, 1140, 1141, 1149, 1155, 1156, 1158, 1162, 1164, 1166, 1167, 1168, 1170, 1172, 1174, 1175, 1176, 1178, 1179, 1180, 1181, 1192], "extern": [0, 212, 227, 380, 417, 437, 440, 443, 450, 472, 473, 475, 842, 882, 887, 889, 1035, 1065, 1067, 1068, 1069, 1072, 1073, 1076, 1077, 1084, 1085, 1086, 1092, 1093, 1096, 1099, 1129, 1136], "ont1": 0, "ont2": 0, "sssom": [0, 3, 17, 22, 67, 76, 87, 148, 202, 317, 331, 337, 342, 343, 353, 360, 361, 368, 695, 725, 726, 727, 728, 729, 765, 793, 795, 796, 803, 805, 806, 978, 988, 998, 1001, 1005, 1011, 1012, 1013, 1015, 1020, 1024, 1099, 1105, 1106, 1111, 1116, 1127, 1149, 1171, 1192], "exist": [0, 2, 372, 381, 386, 388, 396, 410, 412, 437, 441, 1107, 1113, 1115, 1117, 1118, 1120, 1126, 1132, 1136, 1153, 1166], "serial": [0, 6, 28, 95, 113, 135, 159, 204, 225, 252, 265, 274, 279, 282, 291, 297, 310, 325, 331, 341, 367, 375, 415, 490, 547, 678, 702, 745, 768, 818, 843, 923, 944, 971, 994, 1029, 1056, 1102, 1106, 1109, 1119, 1145, 1182], "mp": [0, 1118, 1148], "mapping_input": 0, "other_input": 0, "other_input_typ": 0, "intra": 0, "ident": [0, 140, 153, 188, 388, 396, 410, 412, 441, 1106, 1117], "report": [0, 93, 115, 121, 125, 202, 824, 827, 828, 838, 840, 842, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 866, 868, 869, 870, 872, 873, 874, 876, 877, 881, 882, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 897, 898, 899, 903, 905, 908, 909, 910, 911, 912, 915, 916, 920, 1048, 1050, 1058, 1059, 1067, 1070, 1080, 1082, 1083, 1094, 1127], "ha": [0, 1, 4, 50, 70, 389, 405, 437, 507, 510, 511, 521, 527, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668, 1099, 1102, 1106, 1107, 1109, 1110, 1113, 1117, 1118, 1119, 1129, 1131, 1135, 1141, 1145, 1156, 1163, 1166, 1170, 1182], "bidirect": 0, "left": [0, 140, 153, 157, 163, 165, 166, 168, 169, 170, 171, 172, 173, 174, 175, 177, 178, 179, 182, 196, 197, 1113], "right": [0, 140, 153, 157, 163, 165, 179, 182, 185, 186, 187, 188, 191, 192, 193, 194, 195, 196, 197, 1107, 1113, 1129], "perspect": [0, 140, 153, 163, 202, 1115, 1171], "leav": [0, 21, 77, 1107, 1117, 1129, 1171, 1172], "off": [0, 1102, 1154], "pairwis": [0, 761, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 780, 783, 791, 792, 793, 794, 795, 796, 797, 799, 802, 803, 804, 805, 806, 807, 1106, 1118, 1177], "setwis": 0, "union": [0, 381, 437, 471, 693, 737, 765, 780, 783, 1100, 1193], "involv": [0, 1102, 1103, 1106, 1117, 1136, 1140, 1165, 1166, 1191], "express": [0, 153, 161, 163, 166, 167, 168, 170, 171, 175, 176, 177, 180, 181, 184, 185, 186, 188, 189, 193, 194, 198, 199, 201, 381, 386, 422, 423, 428, 433, 437, 443, 455, 470, 471, 482, 489, 536, 613, 698, 842, 848, 882, 1061, 1104, 1106, 1113, 1118, 1129, 1130, 1136, 1137, 1165, 1166, 1172, 1173, 1176, 1181], "easier": [0, 1105], "brows": 0, "desc": [0, 1100, 1113, 1118, 1123, 1153], "immun": [0, 1137], "export": [0, 1119, 1129, 1136, 1145, 1169], "pato": [0, 1117, 1135, 1182], "turtl": [0, 1106, 1109, 1115, 1131, 1182, 1192], "parameter": [0, 693, 717, 735, 737, 1106, 1192], "process": [0, 828, 840, 842, 882, 920, 989, 1001, 1025, 1102, 1106, 1115, 1123, 1137, 1163, 1172], "convert": [0, 382, 394, 424, 1102, 1105, 1116, 1119, 1127, 1141, 1142, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182], "fhir": [0, 1109, 1120, 1127, 1143, 1146], "fhir_config": 0, "block": [0, 1123, 1141], "remot": [0, 1102, 1106, 1123, 1130, 1131, 1137, 1141, 1161, 1162, 1163, 1172, 1180, 1182, 1191], "avoid": [0, 2, 1099, 1129, 1135, 1140, 1163], "killer": 0, "config_fil": 0, "param": [0, 250, 264, 279, 295, 309, 331, 1145, 1172], "enforc": [0, 1102, 1105, 1142], "canon": [0, 1118, 1142, 1145], "order": [0, 212, 214, 234, 242, 273, 324, 993, 1099, 1100, 1142, 1165], "forc": [0, 693, 710, 717, 1135], "dif": 0, "analysi": [0, 1120, 1153], "sampl": [0, 93, 125, 132, 133, 1106, 1117, 1167], "identifi": [0, 234, 437, 613, 1100, 1106, 1108, 1109, 1111, 1115, 1116, 1127, 1165, 1166, 1172, 1176, 1192], "gene": [0, 31, 46, 118, 125, 212, 223, 234, 236, 245, 1106, 1107, 1108, 1113, 1115, 1118, 1123, 1158, 1165, 1167], "return": [0, 693, 717, 722, 989, 1001, 1004, 1107, 1110, 1113, 1114, 1115, 1116, 1117, 1129, 1132, 1140, 1141, 1142, 1144, 1145, 1146, 1149, 1162, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1193], "repres": [0, 1, 18, 19, 27, 31, 46, 106, 107, 112, 118, 125, 142, 150, 151, 158, 162, 163, 202, 212, 217, 219, 220, 224, 234, 235, 236, 237, 239, 248, 267, 268, 272, 279, 280, 281, 314, 315, 323, 331, 333, 334, 373, 380, 382, 384, 385, 388, 389, 394, 398, 399, 400, 403, 405, 406, 411, 413, 414, 417, 418, 419, 421, 430, 431, 432, 436, 437, 438, 440, 441, 442, 443, 446, 448, 450, 451, 453, 454, 458, 463, 465, 466, 472, 473, 475, 525, 531, 544, 613, 690, 691, 701, 717, 735, 742, 758, 760, 761, 767, 780, 812, 833, 834, 841, 882, 934, 935, 936, 940, 943, 952, 953, 954, 967, 983, 984, 992, 1001, 1024, 1044, 1045, 1054, 1067, 1106, 1108, 1109, 1111, 1113, 1114, 1133, 1143, 1162, 1165, 1166, 1192], "gene2anat": 0, "g2t": 0, "u": [0, 1106, 1117, 1158], "recommend": [0, 212, 393, 402, 434, 452, 460, 480, 488, 530, 535, 540, 545, 695, 726, 1035, 1060, 1093, 1102, 1105, 1113, 1123, 1124, 1126, 1129, 1165, 1167, 1174, 1181, 1192], "alwai": [0, 1, 393, 460, 1105, 1106, 1126, 1129, 1165], "background": [0, 93, 116, 117, 125, 1111, 1117, 1167], "consid": [0, 2, 388, 396, 410, 412, 441, 476, 480, 484, 488, 499, 503, 509, 512, 521, 530, 532, 535, 540, 541, 545, 613, 641, 1113, 1115, 1141, 1159, 1165, 1166, 1177, 1178, 1179, 1192], "experi": [0, 1109], "subsum": [0, 941, 953, 963, 1175], "lower": [0, 1117], "alreadi": [0, 1118, 1129, 1149], "pseudo": 0, "fake": 0, "simpli": [0, 1109, 1116, 1136, 1171], "reflex": [0, 153, 163, 1106, 1117, 1118, 1172], "itself": [0, 1, 405, 1106, 1109, 1117], "summar": [0, 1113, 1123], "meaning": [0, 1117, 1129], "treat": [0, 28, 113, 159, 225, 274, 325, 415, 547, 693, 702, 737, 768, 843, 944, 994, 1056, 1100, 1106, 1107, 1108, 1115, 1118, 1131, 1135, 1145, 1165, 1179, 1192], "cutoff": [0, 92, 125, 128, 1167], "greater": [0, 1061, 1167], "05": [0, 1165, 1167], "sample_fil": 0, "b": [0, 384, 386, 388, 431, 437, 717, 735, 1117, 1118, 1124, 1129, 1162], "background_fil": 0, "allow": [0, 1, 411, 437, 465, 693, 717, 720, 1058, 1061, 1067, 1080, 1083, 1094, 1100, 1106, 1107, 1114, 1116, 1123, 1126, 1129, 1132, 1133, 1136, 1148, 1156, 1176, 1182], "well": [0, 1, 2, 31, 46, 388, 405, 437, 446, 1100, 1106, 1108, 1109, 1110, 1129, 1132, 1140, 1166, 1173, 1176], "attribute_slim": 0, "value_slim": 0, "sub": [0, 24, 44, 384, 437, 827, 842, 882, 1117, 1149, 1151, 1162], "singl": [0, 1, 93, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 132, 133, 388, 389, 393, 394, 424, 434, 437, 495, 1108, 1116, 1136, 1162, 1166, 1171, 1179, 1181, 1192], "node": [0, 18, 28, 46, 106, 113, 125, 140, 150, 159, 163, 179, 197, 219, 225, 234, 267, 274, 279, 314, 321, 325, 331, 372, 373, 380, 381, 382, 384, 385, 388, 389, 393, 394, 397, 398, 403, 404, 405, 406, 410, 411, 412, 415, 417, 419, 430, 431, 432, 436, 437, 441, 442, 443, 445, 447, 448, 450, 453, 454, 456, 458, 462, 463, 466, 468, 525, 547, 613, 690, 702, 717, 758, 765, 768, 777, 780, 833, 843, 882, 934, 944, 953, 983, 994, 1001, 1035, 1041, 1044, 1056, 1060, 1066, 1067, 1069, 1073, 1077, 1086, 1106, 1107, 1115, 1117, 1118, 1132, 1145, 1165, 1166, 1170, 1172, 1192], "No": [0, 1102, 1103, 1117, 1129, 1166], "dangl": [0, 1, 1166, 1170, 1172], "edg": [0, 140, 153, 161, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 175, 176, 177, 178, 179, 180, 181, 182, 184, 185, 186, 187, 188, 189, 191, 193, 194, 195, 197, 198, 199, 372, 373, 380, 381, 382, 385, 386, 388, 389, 393, 394, 396, 403, 405, 411, 412, 417, 419, 420, 424, 426, 427, 430, 432, 436, 437, 441, 442, 443, 446, 447, 448, 450, 453, 454, 462, 463, 464, 466, 467, 474, 475, 825, 842, 874, 876, 882, 1106, 1108, 1111, 1118, 1132, 1136, 1145, 1152, 1162, 1166, 1170, 1172, 1174, 1178, 1179], "even": [0, 1, 2, 1107, 1109, 1116, 1117, 1129, 1140, 1141, 1166, 1192], "wish": [0, 212, 213, 228, 1113, 1115, 1123, 1135, 1181], "fulli": [0, 1102, 1106, 1115, 1129, 1192, 1193], "anc": [0, 1100, 1117], "split": 0, "seed": [0, 1172, 1178], "Then": [0, 1117, 1123, 1126, 1129, 1130, 1133, 1135, 1159, 1178], "idfil": [0, 1118], "miss": [0, 140, 153, 163, 1113, 1117, 1124, 1149, 1166, 1181], "util": [0, 1106, 1127, 1141, 1143, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "table_fil": [0, 1164], "popul": [0, 1, 1113, 1119, 1145, 1166, 1171], "unpopul": 0, "row": [0, 1113], "revers": 0, "blank": [0, 1106, 1166], "scenario": [0, 1, 1166], "convent": [0, 3, 4, 17, 22, 23, 60, 84, 495, 1102, 1109, 1111, 1116, 1119, 1192], "header": 0, "later": [0, 2, 1117, 1118, 1129, 1165], "don": [0, 1, 2, 202, 1100, 1103, 1108, 1117, 1119, 1126, 1129, 1135, 1140, 1149, 1162, 1192], "By": [0, 1105, 1113, 1116, 1166, 1167], "throw": [0, 1172], "success": [0, 1047, 1067, 1129, 1174], "relax": [0, 418, 1166], "cannot": [0, 153, 163, 476, 480, 485, 488, 508, 509, 512, 521, 530, 533, 535, 540, 541, 545, 560, 1132, 1166], "remain": 0, "no_data": 0, "recogn": [0, 1107, 1126, 1180], "uniqu": [0, 1, 2, 153, 163, 164, 167, 173, 176, 217, 223, 230, 388, 396, 410, 412, 436, 437, 476, 485, 505, 509, 512, 521, 541, 625, 813, 816, 828, 835, 840, 842, 882, 1106, 1109, 1110, 1126, 1129, 1166], "procedur": 0, "denorm": [0, 41, 46, 1108], "foo_id": 0, "foo_nam": 0, "implicit": [0, 1108, 1182, 1193], "wai": [0, 1, 1099, 1102, 1104, 1106, 1107, 1108, 1109, 1110, 1113, 1114, 1115, 1116, 1118, 1119, 1123, 1124, 1126, 1129, 1133, 1135, 1141, 1162, 1163, 1165, 1167, 1176, 1181, 1182, 1192], "linkml": [0, 2, 8, 97, 137, 152, 169, 172, 178, 187, 190, 195, 200, 206, 254, 281, 293, 299, 333, 334, 335, 370, 377, 469, 492, 669, 680, 712, 713, 714, 715, 721, 741, 747, 810, 820, 850, 851, 852, 853, 858, 859, 878, 914, 925, 973, 1026, 1027, 1029, 1030, 1031, 1032, 1033, 1034, 1036, 1037, 1038, 1039, 1042, 1044, 1045, 1052, 1053, 1054, 1056, 1057, 1067, 1095, 1098, 1113, 1123, 1124, 1181], "first": [0, 2, 163, 173, 765, 780, 803, 805, 806, 1100, 1106, 1108, 1116, 1118, 1126, 1128, 1129, 1132, 1133, 1149, 1168, 1178], "cl_identifi": 0, "cl_display_label": 0, "sai": 0, "primary_kei": 0, "dependent_column": 0, "2nd": [0, 1117], "schema": [0, 1, 2, 202, 234, 236, 449, 534, 1067, 1106, 1109, 1110, 1120, 1123, 1127, 1131, 1135, 1159, 1162, 1166, 1180, 1181, 1182], "least": [0, 2, 1117, 1126], "slot": [0, 28, 113, 159, 202, 225, 274, 325, 415, 547, 702, 768, 843, 944, 994, 1056, 1061, 1124], "slot_uri": [0, 3, 4, 17, 21, 22, 23, 24, 30, 37, 44, 60, 67, 72, 73, 74, 75, 76, 78, 82, 84, 87, 93, 126, 165, 179, 182, 197, 212, 217, 223, 227, 228, 235, 237, 240, 242, 243, 244, 247, 311, 350, 373, 380, 384, 388, 389, 393, 394, 396, 402, 405, 410, 411, 412, 417, 424, 426, 427, 441, 444, 447, 450, 452, 453, 460, 462, 464, 472, 474, 476, 480, 485, 488, 489, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 527, 530, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 606, 607, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 631, 632, 633, 634, 635, 636, 637, 639, 640, 643, 644, 645, 646, 647, 649, 651, 652, 654, 655, 657, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 695, 725, 726, 727, 728, 729, 764, 765, 784, 793, 795, 796, 803, 805, 806, 813, 835, 839, 845, 871, 875, 885, 902, 907, 913, 917, 918, 919, 936, 939, 940, 941, 942, 954, 955, 956, 957, 959, 965, 966, 978, 988, 998, 1005, 1011, 1012, 1013, 1015, 1020, 1035, 1048, 1049, 1059, 1060, 1068, 1073, 1082, 1084, 1086, 1093], "attribut": [0, 3, 4, 17, 20, 21, 22, 23, 24, 45, 92, 93, 94, 153, 157, 212, 213, 217, 223, 227, 262, 263, 264, 265, 269, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 476, 479, 480, 485, 488, 489, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 530, 533, 535, 536, 537, 540, 541, 542, 545, 677, 692, 693, 695, 696, 743, 764, 765, 766, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 936, 939, 940, 941, 942, 978, 988, 989, 990, 991, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1055, 1058, 1059, 1060, 1061, 1099, 1106, 1166], "power": [0, 1123, 1132, 1140], "soon": [0, 1113, 1140], "now": [0, 1103, 1112, 1113, 1117, 1118, 1129, 1130, 1131, 1132, 1175, 1182], "pleas": [0, 1102, 1105, 1135, 1182], "issu": [0, 393, 434, 460, 476, 480, 488, 495, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 1035, 1040, 1051, 1060, 1062, 1067, 1068, 1084, 1100, 1105, 1107, 1120, 1141, 1151], "question": [0, 2, 1100, 1108, 1117, 1123], "fuzzi": 0, "detect": [0, 1126], "inconsist": 0, "replac": [0, 1, 321, 331, 503, 694, 1107, 1115, 1119, 1145, 1166, 1171, 1172, 1174, 1192], "optim": [0, 1165], "whichev": [0, 1126], "post": [0, 1100, 1165, 1167], "missing_value_token": 0, "comment": [0, 3, 17, 21, 22, 23, 46, 212, 316, 381, 388, 393, 394, 396, 402, 410, 412, 437, 476, 480, 485, 488, 503, 505, 508, 509, 512, 521, 530, 533, 535, 540, 541, 545, 613, 614, 693, 694, 743, 827, 828, 842, 939, 941, 953, 1115, 1166, 1170], "indic": [0, 405, 437, 485, 695, 717, 732, 1106, 1108, 1109, 1115, 1129, 1192, 1193], "begin": [0, 1176], "string": [0, 1, 3, 4, 6, 14, 15, 16, 17, 20, 22, 25, 37, 39, 40, 41, 46, 52, 54, 66, 67, 68, 76, 86, 87, 89, 93, 95, 103, 104, 105, 110, 120, 125, 135, 142, 145, 146, 147, 149, 153, 154, 155, 163, 173, 179, 182, 191, 196, 197, 204, 212, 215, 216, 217, 218, 221, 223, 229, 230, 231, 234, 240, 241, 252, 260, 261, 262, 264, 265, 266, 269, 270, 277, 279, 282, 283, 290, 292, 297, 305, 306, 307, 309, 310, 311, 313, 316, 317, 318, 319, 321, 322, 327, 329, 331, 332, 337, 338, 339, 341, 342, 343, 345, 346, 352, 353, 354, 355, 357, 360, 361, 364, 366, 368, 369, 373, 375, 380, 381, 382, 384, 385, 386, 388, 391, 392, 393, 394, 395, 396, 400, 402, 403, 405, 408, 410, 411, 412, 413, 417, 418, 421, 424, 429, 433, 437, 439, 440, 441, 445, 447, 450, 451, 452, 455, 457, 458, 459, 462, 464, 468, 472, 473, 474, 476, 479, 480, 485, 487, 488, 489, 490, 502, 503, 506, 507, 508, 509, 510, 511, 512, 515, 516, 517, 518, 519, 520, 521, 523, 524, 527, 530, 533, 535, 536, 537, 538, 540, 541, 543, 545, 546, 549, 550, 556, 557, 558, 560, 561, 565, 566, 567, 568, 570, 572, 573, 574, 576, 580, 582, 584, 587, 589, 590, 593, 594, 599, 602, 603, 611, 613, 614, 618, 619, 626, 628, 629, 630, 637, 638, 639, 640, 641, 646, 647, 648, 649, 650, 651, 652, 653, 656, 657, 659, 660, 664, 666, 670, 671, 673, 674, 677, 678, 687, 688, 689, 695, 697, 699, 709, 717, 723, 725, 726, 727, 728, 729, 730, 738, 743, 745, 754, 755, 756, 762, 764, 765, 773, 774, 779, 780, 784, 785, 786, 788, 789, 790, 795, 796, 800, 805, 806, 813, 815, 817, 818, 824, 825, 827, 828, 830, 831, 832, 835, 836, 838, 840, 842, 862, 865, 871, 872, 873, 879, 880, 881, 882, 884, 885, 891, 895, 900, 902, 904, 913, 917, 918, 923, 931, 932, 933, 936, 937, 939, 940, 941, 942, 948, 950, 953, 954, 971, 978, 980, 981, 982, 986, 988, 989, 991, 997, 1001, 1002, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1015, 1016, 1017, 1019, 1020, 1023, 1025, 1029, 1035, 1038, 1039, 1040, 1042, 1047, 1052, 1058, 1060, 1062, 1067, 1068, 1074, 1075, 1076, 1078, 1080, 1083, 1085, 1087, 1088, 1090, 1091, 1092, 1096, 1106, 1107, 1116, 1129, 1132, 1146, 1151, 1180, 1182, 1192], "correspond": [0, 1, 2, 153, 163, 165, 182, 189, 190, 191, 394, 420, 437, 1035, 1060, 1093, 1106, 1114, 1117, 1126, 1166], "relation_fil": 0, "extens": [0, 495, 613, 1108, 1109, 1113, 1117, 1123, 1136], "foodon": 0, "03315258": 0, "style": [0, 507, 698, 1113, 1123], "hint": [0, 1123], "pretenti": 0, "food": [0, 1118], "critic": 0, "pancak": 0, "humbl": 0, "delight": 0, "realm": [0, 1108], "breakfast": 0, "fare": 0, "delect": 0, "disc": 0, "gastronom": 0, "style_hint": 0, "descript": [0, 3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 109, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 140, 148, 153, 157, 161, 163, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 212, 213, 214, 217, 223, 227, 228, 230, 231, 232, 233, 234, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 262, 263, 264, 265, 269, 273, 276, 277, 278, 279, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 328, 329, 330, 331, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 397, 401, 402, 403, 404, 405, 406, 407, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 488, 489, 495, 497, 499, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 523, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 579, 580, 582, 583, 584, 585, 586, 587, 588, 589, 591, 592, 593, 594, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 627, 630, 635, 636, 637, 638, 641, 644, 645, 646, 647, 648, 649, 652, 655, 657, 658, 659, 660, 661, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 676, 677, 685, 692, 693, 694, 695, 696, 698, 704, 705, 706, 707, 708, 709, 710, 711, 716, 717, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 761, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 864, 865, 866, 868, 869, 870, 872, 873, 874, 875, 876, 877, 879, 880, 881, 882, 883, 885, 886, 887, 888, 889, 890, 892, 893, 894, 895, 896, 897, 898, 899, 901, 902, 903, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 922, 936, 939, 940, 941, 942, 946, 947, 948, 949, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 993, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1051, 1055, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1106, 1117, 1118, 1123, 1126, 1140, 1174], "written": [0, 1109, 1116, 1133], "patch_format": 0, "iao": [0, 394, 426, 476, 480, 485, 488, 503, 505, 506, 507, 508, 509, 512, 521, 527, 530, 533, 535, 540, 541, 545, 550, 570, 575, 576, 583, 584, 589, 597, 599, 603, 604, 610, 646, 664, 665, 666, 1107, 1115, 1166], "spatial": 0, "min_descend": 0, "duplic": 0, "patterns_fil": 0, "origin": [0, 46, 72, 73, 74, 269, 277, 279, 318, 329, 331, 1115, 1166], "analyz": 0, "consist": [0, 153, 163, 182, 188, 191, 1048, 1059, 1067, 1082, 1100, 1106, 1109, 1110, 1113, 1132, 1172, 1173], "progress": [0, 1120], "unmelt": 0, "wide": [0, 1106, 1107, 1108, 1116, 1123], "lso": 0, "foo_rul": 0, "foo_syn": 0, "NOT": [0, 476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 676, 939, 955, 1124, 1135, 1166, 1182], "rules_datamodel": 0, "matcher_rul": [0, 273, 324], "minim": [0, 405, 437, 1102, 1166, 1171], "few": [0, 273, 324, 993, 1102, 1105, 1140], "xref": [0, 373, 380, 394, 405, 411, 417, 420, 437, 842, 882, 886, 888, 1107, 1114, 1117, 1129, 1176], "multivalu": [0, 3, 4, 17, 20, 22, 24, 32, 33, 36, 37, 65, 66, 79, 82, 83, 85, 86, 88, 90, 94, 131, 153, 157, 183, 184, 188, 189, 212, 213, 223, 227, 228, 233, 237, 238, 239, 240, 247, 262, 263, 264, 265, 269, 278, 283, 284, 285, 287, 291, 307, 308, 309, 310, 312, 317, 318, 330, 337, 342, 343, 346, 347, 348, 353, 356, 358, 360, 361, 367, 368, 373, 380, 381, 382, 385, 388, 389, 393, 394, 403, 405, 411, 417, 419, 420, 421, 422, 423, 424, 428, 429, 430, 431, 432, 434, 435, 442, 445, 446, 453, 454, 457, 460, 463, 464, 466, 467, 475, 476, 480, 485, 488, 489, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 527, 530, 533, 535, 536, 537, 540, 541, 542, 545, 550, 554, 555, 558, 559, 560, 562, 563, 564, 566, 568, 569, 570, 571, 572, 575, 576, 577, 580, 582, 583, 584, 585, 586, 588, 589, 592, 593, 594, 596, 598, 600, 601, 602, 604, 606, 607, 610, 612, 625, 635, 636, 637, 644, 647, 649, 652, 654, 655, 657, 659, 660, 661, 662, 664, 666, 668, 677, 692, 693, 696, 704, 705, 707, 711, 724, 731, 734, 737, 766, 792, 797, 802, 807, 817, 827, 828, 840, 842, 846, 854, 856, 857, 863, 866, 874, 876, 887, 888, 889, 897, 901, 906, 912, 939, 941, 948, 949, 955, 956, 958, 959, 960, 962, 964, 969, 988, 989, 990, 996, 997, 1009, 1010, 1017, 1025, 1048, 1049, 1058, 1059, 1082, 1094], "mixtur": [0, 1099], "boolean": [0, 3, 4, 17, 21, 22, 42, 45, 46, 47, 48, 49, 50, 51, 53, 70, 77, 80, 81, 93, 115, 121, 125, 163, 164, 167, 176, 234, 269, 279, 289, 311, 318, 331, 344, 362, 394, 411, 427, 437, 438, 476, 480, 485, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 578, 613, 620, 621, 622, 623, 624, 693, 695, 710, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 723, 780, 882, 939, 941, 946, 947, 951, 953, 961, 963, 968, 988, 989, 1000, 1001, 1003, 1040, 1046, 1047, 1064, 1067, 1071, 1079, 1089, 1166], "stato": 0, "ontobe": [0, 827, 1103, 1106, 1128, 1131, 1136, 1141, 1152, 1161, 1164], "0000286": 0, "0000287": 0, "forest": 0, "subtyp": [0, 404, 437, 1142], "hypothesi": 0, "oper": [0, 249, 279, 294, 331, 693, 717, 1048, 1067, 1082, 1100, 1102, 1106, 1108, 1113, 1117, 1118, 1128, 1129, 1130, 1132, 1136, 1137, 1140, 1166, 1168, 1169, 1170, 1171, 1172, 1174, 1175, 1176, 1178, 1181], "frequenc": [0, 1118, 1177], "equal": [0, 1061, 1171], "divid": [0, 765, 777, 780, 783, 1106, 1118], "total": [0, 93, 117, 125, 133, 1118], "corpu": [0, 1118, 1177], "ic": [0, 765, 772, 780, 781, 794, 804, 1118, 1177], "4023093": 0, "ones": [0, 1109], "multilingu": [0, 1111, 1166, 1170, 1192], "sql": [0, 698, 742, 1099, 1100, 1102, 1106, 1117, 1124, 1129, 1131, 1135, 1137, 1140, 1141, 1152, 1164, 1166, 1181, 1182], "restrict": [0, 1, 381, 382, 386, 388, 393, 419, 422, 433, 437, 455, 476, 480, 483, 485, 488, 489, 503, 506, 508, 509, 512, 521, 530, 535, 536, 540, 541, 545, 549, 552, 553, 556, 561, 568, 576, 580, 582, 585, 595, 603, 613, 615, 616, 644, 645, 649, 652, 654, 655, 659, 661, 666, 670, 1106, 1113, 1117, 1132, 1163, 1166, 1172], "fr": [0, 2, 140, 1116, 1166], "hpintern": 0, "0020110": 0, "pivot": 0, "per": [0, 394, 424, 1058, 1070, 1100, 1106, 1116, 1118, 1166, 1178, 1192], "multi": [0, 389, 1107, 1129], "lingual": 0, "rather": [0, 2, 941, 946, 953, 1106, 1115, 1117, 1136, 1141], "avail": [0, 1102, 1106, 1134, 1135, 1173, 1180, 1182], "cob": [0, 1106, 1166], "wrapper": [0, 1106, 1123, 1145], "onto": [0, 842, 882, 1106, 1108, 1123, 1145], "basicontologyinterfac": [0, 1, 202, 1107, 1115, 1130, 1140, 1148, 1166, 1168, 1170, 1175, 1178, 1181, 1182, 1192], "basic_ontology_interfac": [0, 1148, 1166], "tool": [0, 1, 4, 49, 51, 212, 227, 1102, 1106, 1108, 1113, 1118, 1120, 1126, 1133], "preprocess": 0, "step": [0, 1120, 1128, 1136, 1180], "addl": 0, "second": [0, 163, 191, 765, 780, 793, 795, 796, 1106, 1118, 1124, 1166, 1168], "member": [0, 507, 510, 511, 527, 550, 584, 598, 600, 601, 606, 613, 628], "omit": [0, 1, 1116, 1133, 1162, 1166, 1182], "trivial": [0, 1106, 1110, 1113, 1166], "reciproc": [0, 941, 965, 1174], "feed": [0, 1129], "nativ": [0, 3, 4, 17, 20, 21, 22, 23, 24, 92, 93, 94, 153, 157, 212, 213, 217, 223, 227, 249, 250, 262, 263, 264, 265, 269, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 526, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 677, 692, 693, 695, 696, 743, 761, 764, 765, 766, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 936, 939, 940, 941, 942, 978, 988, 989, 990, 991, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1055, 1058, 1059, 1060, 1099, 1106, 1119, 1136, 1145], "faster": [0, 1118, 1166], "custom": [0, 1107, 1111, 1113, 1126, 1162], "match_rul": 0, "packag": [0, 2, 335, 1102, 1110, 1123, 1126, 1129, 1130, 1133, 1145, 1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173, 1184, 1193], "lexical_index": [0, 281, 333, 334, 1164, 1170, 1180], "modul": [0, 1126, 1127, 1141, 1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "fragment": [0, 1119], "local": [0, 27, 46, 112, 125, 158, 163, 224, 234, 272, 279, 323, 331, 414, 437, 544, 613, 701, 717, 767, 780, 841, 882, 943, 953, 992, 1001, 1054, 1067, 1103, 1106, 1110, 1116, 1128, 1131, 1136, 1137, 1140, 1141, 1158, 1159, 1161, 1162, 1165, 1170, 1180, 1182, 1192], "semant": [0, 1, 2, 202, 373, 380, 382, 394, 405, 411, 417, 475, 742, 1100, 1106, 1108, 1110, 1116, 1118, 1124, 1127, 1131, 1135, 1162, 1164, 1170, 1182, 1192], "otherwis": [0, 1130, 1145], "load": [0, 1102, 1103, 1108, 1117, 1118, 1135, 1137, 1140, 1145, 1154, 1159, 1160, 1162, 1172, 1182], "ensur": [0, 1132, 1135, 1141, 1154, 1159, 1160], "strict": [0, 1106, 1108, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "clean": 0, "befor": [0, 311, 331, 350, 1105, 1113, 1129, 1148], "highli": [0, 1106, 1119, 1140, 1149, 1166, 1181], "incomplet": [0, 1118, 1149, 1160], "syntact": [0, 1102], "whitespac": [0, 273, 324, 993], "trail": 0, "compliant": 0, "execut": [0, 1046, 1058, 1064, 1067, 1070, 1080, 1083, 1094, 1097, 1106, 1166], "mode": [0, 200, 293, 370, 469, 669, 741, 810, 914, 1026, 1095], "workflow": [0, 1123], "emit": [0, 1131], "manual": [0, 4, 50, 1113, 1115, 1176, 1192], "check": [0, 1, 19, 107, 151, 220, 268, 315, 399, 531, 691, 760, 834, 935, 984, 1035, 1040, 1045, 1060, 1062, 1063, 1065, 1067, 1068, 1069, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1084, 1085, 1086, 1087, 1088, 1090, 1091, 1092, 1093, 1096, 1113, 1124, 1166, 1173, 1181], "examin": [0, 153, 163, 1179], "report_format": 0, "propos": [0, 476, 480, 485, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 567, 568, 941, 947, 953, 1106, 1126, 1136], "noth": [0, 1166, 1168, 1169, 1171, 1175, 1176, 1178, 1181], "branch": [0, 1123, 1179], "physic": 0, "qualiti": [0, 1129], "render": 0, "definedclassid": [0, 393, 437, 1113], "0045071": 0, "genusid": [0, 393, 437, 1113, 1172], "0001439": 0, "fillerid": [0, 386, 437, 1113, 1172], "0000461": 0, "propertyid": [0, 386, 437, 1113, 1172], "ro": [0, 485, 488, 530, 545, 618, 619, 636, 663, 936, 939, 955, 956, 959, 1100, 1106, 1113, 1117, 1130, 1131, 1135, 1137, 1166], "0015010": 0, "flatten": 0, "choos": [0, 1109, 1110, 1113, 1117, 1132, 1166, 1172, 1180, 1181], "ax": 0, "filler": [0, 386, 433, 437, 1113, 1137, 1166, 1172, 1175], "genu": [0, 393, 425, 434, 437, 443, 460, 476, 495, 505, 509, 512, 521, 541, 575, 1123, 1172], "repeat": [0, 1140], "prop_1": 0, "prop_2": 0, "differentia": [0, 393, 437, 460, 476, 495, 505, 509, 512, 521, 541, 575, 1123, 1172], "what": [0, 1, 765, 771, 1103, 1106, 1111, 1117, 1120, 1123, 1132], "inspect": 0, "nest": [0, 405, 1113], "logicaldefinit": 0, "matrix_ax": 0, "encod": [0, 1, 14, 15, 25, 46, 103, 104, 110, 125, 145, 146, 155, 163, 215, 216, 221, 234, 260, 261, 270, 279, 305, 306, 319, 331, 391, 392, 408, 437, 515, 516, 538, 613, 687, 688, 699, 717, 754, 755, 762, 780, 830, 831, 836, 882, 931, 932, 937, 953, 980, 981, 986, 1001, 1038, 1039, 1052, 1067, 1114, 1118, 1131], "retriev": [0, 1115, 1165, 1166, 1179, 1192], "subset_siren": 0, "maps_to_sourc": 0, "mapper": [0, 1116, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "rewir": [0, 1174], "instanc": [0, 1, 14, 15, 25, 103, 104, 110, 145, 146, 155, 215, 216, 221, 260, 261, 270, 305, 306, 319, 381, 391, 392, 408, 437, 476, 509, 510, 511, 515, 516, 521, 527, 538, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668, 687, 688, 699, 754, 755, 762, 830, 831, 836, 931, 932, 936, 937, 940, 980, 981, 986, 1035, 1038, 1039, 1052, 1060, 1061, 1067, 1068, 1069, 1073, 1076, 1077, 1084, 1085, 1086, 1093, 1106, 1109, 1155, 1166], "target": [0, 2, 384, 447, 1107, 1142, 1144, 1145, 1146, 1165, 1167, 1171, 1172], "src1": 0, "tgt1": 0, "src2": 0, "tgt2": 0, "migrate_curi": [0, 1170, 1174], "patcherinterfac": [0, 1136, 1170, 1174], "patcher": [0, 1099, 1106, 1160, 1164, 1170], "patcher_interfac": [0, 1174], "curie_pair": 0, "updat": [0, 40, 46, 476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 572, 613, 1136, 1137], "translat": [0, 28, 113, 159, 225, 274, 325, 382, 386, 388, 415, 431, 547, 702, 768, 843, 944, 994, 1056, 1115, 1165, 1167], "hgnc": [0, 223, 233, 1158], "ncbigen": [0, 1158], "0000187": 0, "0000188": 0, "taxonconstraint": [0, 936, 939, 940, 946, 947, 948, 949, 951, 953, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 969], "replaced_bi": [0, 476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596], "pre": [0, 1105, 1117, 1118, 1135, 1163, 1171, 1177, 1180, 1182], "yet": [0, 1115, 1124, 1166, 1182, 1192], "nuclear": [0, 1166], "shortest": [0, 1172], "cytoplasm": [0, 1117, 1159, 1166], "thylakoid": 0, "4": [0, 1106, 1107, 1113, 1116, 1123, 1125, 1127, 1128, 1159], "end": [0, 2, 394, 411, 420, 437, 465, 839, 875, 882, 1117, 1129, 1162, 1166, 1172], "start_nod": 0, "end_nod": 0, "weight": [0, 316, 331], "0001": 0, "999": 0, "after": [0, 2, 1100, 1102, 1129, 1133, 1149, 1156, 1166, 1168, 1169, 1171, 1174, 1175, 1176, 1178, 1181, 1193], "visual": [0, 1117, 1127, 1128, 1132], "narrow": [0, 316, 352, 406, 407], "gap": 0, "flat": [0, 1099, 1115], "point": [0, 14, 15, 103, 104, 145, 146, 215, 216, 260, 261, 305, 306, 391, 392, 515, 516, 687, 688, 754, 755, 830, 831, 931, 932, 939, 953, 955, 956, 980, 981, 1038, 1039, 1117, 1118, 1126, 1166, 1192], "exclude_pred": 0, "predicate_weight": [0, 1172], "stylemap": 0, "berkeleybop": 0, "kgviz": 0, "round": [0, 1167], "declar": [0, 212, 388, 389, 402, 437, 444, 452, 453, 1173], "thei": [0, 1, 202, 1104, 1106, 1113, 1115, 1117, 1118, 1119, 1129, 1131, 1132, 1135, 1140, 1145, 1161, 1166, 1167, 1170], "appear": [0, 1, 1119, 1145], "shacl": [0, 495, 613, 1035, 1060, 1093, 1124, 1181], "prefixdeclar": [0, 388, 389, 437, 444, 452, 453], "cl_": [0, 1110], "prefixmap": [0, 1111], "arbitrari": [0, 3, 10, 17, 22, 46, 79, 99, 125, 139, 163, 208, 234, 256, 279, 301, 331, 379, 405, 437, 448, 494, 613, 682, 717, 749, 780, 822, 882, 927, 953, 975, 1001, 1033, 1067, 1102, 1166, 1176], "sparql": [0, 25, 46, 110, 125, 155, 163, 221, 234, 270, 279, 319, 331, 408, 437, 538, 613, 699, 717, 762, 780, 836, 882, 937, 953, 986, 1001, 1052, 1067, 1106, 1116, 1131, 1137, 1140, 1141, 1152, 1156, 1163, 1164, 1166, 1182], "label_field": 0, "down": [0, 825, 879, 880, 882, 1172], "lung": 0, "And": [0, 1, 1109, 1113, 1117, 1123, 1126, 1129, 1130, 1131], "arteri": 0, "suppli": [0, 1110, 1171, 1172], "0002178": 0, "indirect": [0, 842, 876, 882, 1117, 1175], "tbox": 0, "subclass": [0, 382, 388, 419, 437, 842, 882, 908, 1100, 1115, 1129, 1142, 1166, 1173, 1192], "existenti": [0, 381, 386, 388, 422, 431, 433, 437, 455, 1106, 1113, 1117, 1166], "abox": 0, "assert": [0, 140, 373, 380, 394, 411, 417, 437, 438, 440, 443, 450, 465, 467, 472, 473, 475, 842, 882, 911, 912, 941, 953, 967, 969, 1106, 1115, 1117, 1129, 1131, 1165, 1166, 1167, 1181], "dimens": 0, "remaind": 0, "wb": 0, "0032502": 0, "0007568": 0, "0048869": 0, "0098727": 0, "0008152": [0, 1], "0009056": 0, "0044238": 0, "1901275": 0, "0050896": 0, "0051716": 0, "0051606": 0, "0014823": 0, "0023052": 0, "wbgene00000417": 0, "wbgene00000912": 0, "wbgene00000898": 0, "wbgene00006752": 0, "object_group": 0, "top": [0, 1109, 1126, 1132, 1192], "sometim": [0, 1, 1106, 1107, 1113, 1114, 1115, 1118, 1123, 1132, 1182], "unintuit": 0, "has_prefix": 0, "disk": [0, 1102, 1131, 1182], "substr": [0, 321, 331, 338, 357], "rank": [0, 3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 109, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 140, 148, 153, 157, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 212, 213, 214, 217, 223, 227, 228, 230, 232, 233, 235, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 262, 263, 264, 265, 269, 273, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 397, 402, 403, 404, 405, 406, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 480, 485, 488, 489, 495, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 527, 530, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 676, 677, 685, 692, 693, 694, 695, 696, 698, 704, 705, 706, 707, 708, 710, 711, 716, 717, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 733, 734, 736, 737, 738, 739, 740, 743, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 817, 825, 828, 835, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 922, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 993, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1051, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1129, 1149, 1176], "your": [0, 2, 1100, 1105, 1110, 1120, 1123, 1126, 1128, 1129, 1130, 1141, 1149, 1158], "broad": [0, 1, 31, 46, 316, 352, 380, 406, 407, 1106, 1123, 1131], "relev": [0, 695, 717, 732, 1106, 1129, 1149, 1176], "There": [0, 1100, 1102, 1106, 1107, 1108, 1117, 1118, 1129, 1131, 1132, 1135, 1140], "stream": [0, 1099, 1124], "ctrl": [0, 1129], "stop": 0, "unifi": [0, 717, 735, 1107, 1129], "across": [0, 162, 163, 389, 437, 476, 485, 505, 509, 512, 521, 541, 625, 1105, 1131], "keyval": 0, "set1": 0, "terms1": 0, "set2": 0, "terms2": 0, "altern": [0, 1107, 1109, 1120, 1154, 1156, 1159, 1160, 1167], "term_1": 0, "term_2": 0, "term_n": 0, "term_m": 0, "select": [0, 765, 771, 1102, 1106, 1111, 1120, 1162, 1178], "ma": [0, 1114], "mix": [0, 41, 42, 164, 165, 173, 179, 182, 191, 196, 197, 481, 489, 497, 502, 503, 504, 505, 506, 507, 508, 526, 532, 536, 537, 630, 978], "pipelin": [0, 263, 265, 269, 279, 308, 310, 318, 331, 1180], "phenotyp": [0, 31, 46, 1106, 1108, 1109, 1118, 1166], "0000118": [0, 476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 550, 1107, 1166], "done": [0, 153, 163, 1106, 1109, 1110, 1117, 1118, 1123, 1135], "compactli": 0, "set1_fil": 0, "set2_fil": 0, "jaccard": [0, 765, 780, 799, 1106, 1111, 1177], "min_jaccard_similar": [0, 1177], "score": [0, 743, 765, 772, 777, 778, 780, 781, 782, 783, 794, 798, 799, 804, 808, 809, 811, 1118, 1163, 1165, 1177], "min_ancestor_information_cont": [0, 1177], "main_score_field": 0, "phenodigm_scor": [0, 765, 780, 800], "information_content_fil": 0, "varieti": [0, 1102, 1106, 1107, 1108, 1116, 1129, 1137, 1170], "metric": [0, 766, 780, 1118, 1179], "deprec": [0, 394, 411, 437, 438, 476, 477, 480, 485, 488, 499, 503, 506, 509, 512, 518, 519, 520, 521, 526, 528, 530, 532, 535, 540, 541, 545, 563, 567, 568, 587, 594, 596, 603, 613, 620, 621, 622, 623, 624, 637, 640, 641, 657, 665, 671, 693, 716, 718, 842, 869, 870, 882, 890, 893, 894, 1061, 1115, 1166, 1171, 1182, 1192], "0000540": [0, 1099], "0000000": 0, "hard": 0, "0001750": 0, "stage": [0, 1140, 1141], "found": [0, 1, 153, 163, 695, 717, 727, 939, 953, 955, 956, 1116, 1123, 1153, 1163, 1166, 1170, 1172], "adult": [0, 1129], "mrca": [0, 765, 771, 1118, 1177], "upheno": 0, "anatomi": [0, 1107, 1118, 1129], "0010922": 0, "0010616": 0, "0000001": [0, 1106, 1117, 1145, 1171], "pr": [0, 2, 1101, 1106, 1130, 1134, 1177], "break": [0, 827], "collect": [0, 1, 20, 24, 32, 33, 46, 57, 58, 59, 61, 62, 63, 64, 88, 94, 125, 131, 157, 163, 174, 183, 192, 202, 265, 279, 282, 291, 310, 312, 331, 340, 341, 358, 367, 372, 373, 380, 381, 382, 384, 385, 388, 389, 393, 394, 396, 403, 405, 411, 417, 419, 420, 424, 426, 427, 430, 431, 432, 435, 436, 437, 441, 442, 443, 446, 453, 454, 463, 464, 466, 467, 474, 475, 510, 511, 527, 540, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 582, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 620, 623, 625, 635, 646, 647, 652, 655, 657, 658, 664, 665, 666, 668, 827, 990, 996, 1001, 1048, 1049, 1059, 1067, 1082, 1106, 1123, 1137, 1140, 1165, 1166, 1171, 1172, 1177], "Its": 0, "non": [0, 1, 6, 21, 45, 46, 95, 135, 140, 204, 252, 273, 297, 324, 375, 480, 482, 485, 490, 510, 511, 527, 550, 551, 552, 553, 554, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 582, 583, 584, 587, 588, 589, 591, 592, 593, 594, 596, 597, 598, 599, 600, 601, 602, 603, 606, 607, 608, 609, 610, 612, 613, 617, 618, 619, 620, 622, 623, 625, 635, 637, 646, 647, 652, 655, 657, 658, 660, 664, 665, 666, 668, 671, 678, 745, 818, 842, 882, 893, 894, 923, 971, 993, 1029, 1102, 1106, 1111, 1123, 1129, 1156, 1178, 1192], "lot": [0, 1, 1099, 1107, 1109, 1114, 1117, 1129], "mechan": [0, 1123, 1192], "releas": [0, 1, 1102, 1117, 1120, 1166], "product": [0, 765, 777, 780, 1108, 1113, 1115], "complic": [0, 1113], "naiv": [0, 1178], "kind": [0, 1, 405, 437, 440, 443, 450, 472, 473, 475, 717, 735, 780, 800, 815, 879, 880, 882, 1101, 1106, 1107, 1108, 1109, 1113, 1123, 1136, 1137, 1166, 1181], "summarystatist": [0, 1179], "broken": [0, 825, 827, 828, 879, 880, 882, 901], "dynam": [0, 1123], "rel": [0, 1107, 1117, 1118, 1130, 1131, 1137, 1159, 1166], "v2": 0, "v1": 0, "stat": [0, 827, 828, 901, 1179], "accordingli": 0, "residu": 0, "compare_with": 0, "concept": [0, 2, 488, 717, 735, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 780, 781, 783, 791, 792, 793, 794, 795, 796, 797, 799, 802, 803, 804, 805, 806, 807, 1106, 1107, 1110, 1111, 1112, 1113, 1114, 1115, 1117, 1119, 1128, 1129, 1136, 1145, 1166, 1172, 1180], "directli": [0, 1, 22, 28, 113, 159, 225, 249, 274, 294, 325, 372, 405, 415, 482, 535, 541, 542, 547, 702, 761, 768, 840, 843, 942, 944, 994, 1049, 1050, 1056, 1106, 1110, 1113, 1118, 1123, 1129, 1133, 1136, 1140, 1141, 1142, 1156, 1162, 1165], "goslim_gener": [0, 1166], "portion": [0, 978, 988, 1001, 1019, 1109], "ncbi": [0, 1118, 1158], "taxonomi": [0, 1109], "0034357": [0, 1167], "0003884": [0, 1170], "0003941": 0, "taxon_constraints_util": 0, "ancestr": 0, "category_system": 0, "biolink": [0, 3, 4, 17, 21, 22, 30, 72, 73, 74, 78, 82, 217, 223, 232, 245, 476, 480, 488, 502, 509, 512, 521, 530, 535, 540, 541, 545, 557, 1106, 1163], "dbpedia": 0, "hasdbxref": [0, 373, 405, 411, 417, 475, 476, 480, 485, 488, 504, 509, 512, 521, 530, 535, 540, 541, 545, 571, 1114, 1166], "without": [0, 842, 861, 882, 1099, 1102, 1106, 1114, 1117, 1128, 1136, 1166, 1167, 1170], "prontolib": [0, 1159], "objectproperti": [0, 1, 404, 476, 480, 484, 488, 510, 511, 512, 521, 526, 527, 532, 533, 535, 536, 540, 542, 545, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 580, 582, 583, 584, 586, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 616, 617, 620, 621, 623, 624, 625, 630, 635, 646, 647, 649, 652, 655, 657, 658, 663, 664, 665, 666, 668, 842, 870, 894, 896, 1106, 1166], "omo": [0, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 1058, 1067, 1083, 1107, 1115, 1116], "annotationproperti": [0, 1, 404, 476, 484, 485, 488, 510, 511, 512, 521, 526, 527, 530, 532, 533, 535, 540, 542, 545, 550, 551, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 582, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 607, 608, 609, 610, 612, 613, 617, 620, 623, 625, 635, 646, 647, 652, 655, 657, 658, 664, 665, 666, 668, 842, 847, 1106, 1166, 1181], "owl_typ": [0, 1166, 1170], "vacuol": [0, 1117, 1166, 1172], "ascii": [0, 1129], "markdown": 0, "instruct": [0, 1104, 1105, 1123, 1130], "analog": [0, 140, 1123], "too": [0, 1102, 1103, 1107, 1109, 1113], "00000372": 0, "00000094": 0, "volcan": 0, "featur": [0, 2, 393, 437, 460, 1101, 1102, 1108, 1109, 1117, 1126, 1129, 1135, 1136, 1137, 1193], "00000247": 0, "volcano": 0, "00000403": 0, "shield": 0, "pyroclast": 0, "view": [0, 1, 202, 1106, 1107, 1113, 1132, 1162, 1166, 1172, 1192], "explod": 0, "subglaci": 0, "alongsid": [0, 1099, 1108, 1124, 1129], "intermedi": [0, 1117], "mud": 0, "recent": [0, 765, 771, 780, 1118, 1177], "max": [0, 1165], "distanc": [0, 1129, 1135, 1172], "00000407": 0, "though": 0, "highlight": [0, 1129], "asterisk": 0, "length": [0, 765, 777, 780, 1061], "extend": [0, 1117, 1118, 1128, 1141, 1172], "max_hop": 0, "trim": [0, 273, 324, 993], "skip": [0, 1113], "against": [0, 317, 331, 337, 342, 343, 353, 360, 361, 368, 828, 840, 842, 863, 882, 1035, 1060, 1093, 1102, 1106, 1165, 1177, 1181], "ecto": 0, "ontology_metadata": [0, 1124], "heurist": [0, 1113, 1166], "align": [0, 1, 373, 394, 405, 411, 417, 475, 1106, 1137], "guid": [0, 1, 1100, 1103, 1104, 1106, 1109, 1112, 1123, 1127, 1165, 1178, 1181], "howto": [0, 1181], "50": [0, 1172], "presenc": 0, "mine": [0, 1111], "machin": [0, 394, 437, 1106, 1111, 1126, 1151, 1192], "action": [0, 2], "initi": [0, 1106, 1126, 1152, 1156, 1163], "lag": [0, 1129], "0002053": 0, "hierarchi": [0, 1109], "larg": [0, 1, 827, 1102, 1104, 1106, 1107, 1113, 1115, 1118, 1120, 1127, 1129, 1140, 1141, 1170, 1175, 1176], "focus": [0, 1117, 1118], "sole": [0, 1106], "bad": 0, "attempt": [0, 1107, 1109, 1119, 1124, 1129, 1131, 1145, 1163], "download": [0, 1102, 1109, 1124, 1128, 1129, 1133, 1137, 1140, 1172, 1182], "resolv": 0, "foreign": 0, "nnnnnnn": 0, "wildcard": [0, 698], "applic": [0, 21, 1099, 1102, 1106, 1107, 1132, 1140, 1141, 1174], "determinist": [0, 1123], "exactmatch": [0, 476, 480, 488, 504, 509, 512, 521, 530, 535, 540, 541, 542, 545, 613, 629], "cardin": [0, 1, 3, 4, 17, 20, 21, 22, 23, 24, 92, 93, 94, 148, 153, 157, 163, 180, 198, 212, 213, 217, 223, 249, 250, 262, 263, 264, 265, 269, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 526, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 613, 628, 677, 692, 693, 695, 696, 743, 761, 764, 765, 766, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 936, 939, 940, 941, 942, 978, 988, 989, 990, 991, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1055, 1058, 1059, 1060, 1061], "expect": [0, 1110, 1113, 1158], "bespok": 0, "might": [0, 1, 31, 46, 380, 1106, 1109, 1113, 1118, 1126, 1129, 1180, 1181, 1192], "boomer": 0, "probabilist": 0, "reason": [0, 394, 424, 842, 882, 890, 941, 946, 1103, 1106, 1111, 1115, 1119, 1126, 1129, 1166, 1173, 1181], "qualit": 0, "adapter_map": 0, "except": [0, 1114, 1115, 1166, 1172, 1174], "want": [0, 1103, 1107, 1108, 1111, 1117, 1118, 1126, 1129, 1135, 1136, 1182], "obographviz": [0, 1128, 1132], "meant": 0, "0002202": [0, 1117, 1135, 1137], "abbrevi": [0, 413, 1128], "open": [0, 31, 46, 394, 411, 420, 437, 465, 477, 478, 1104, 1108, 1117, 1131, 1133, 1165, 1166], "imag": [0, 476, 480, 484, 488, 508, 509, 510, 511, 521, 526, 527, 530, 532, 533, 535, 540, 541, 542, 545, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 610, 612, 613, 614, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668, 1129], "meta": [0, 372, 373, 380, 381, 382, 384, 385, 388, 389, 393, 396, 403, 405, 411, 417, 420, 424, 426, 427, 437, 448, 464, 467, 474, 475, 1166, 1172], "describ": [1, 4, 30, 31, 34, 36, 46, 47, 48, 49, 50, 51, 54, 55, 56, 68, 69, 70, 71, 78, 80, 81, 82, 84, 89, 212, 234, 240, 1047, 1124, 1136, 1140, 1168, 1182], "arch": 1, "librari": [1, 202, 1102, 1106, 1109, 1111, 1118, 1126, 1127, 1128, 1132, 1133, 1134, 1135, 1137, 1140, 1156, 1159, 1162, 1182, 1191], "impos": [1, 1110], "own": [1, 1107, 1109, 1110, 1119, 1120, 1128, 1166, 1182], "world": [1, 1108, 1181], "intend": [1, 717, 735, 1102, 1104, 1106, 1107, 1108, 1113, 1116, 1140, 1160, 1166, 1167, 1192], "lingua": 1, "franca": 1, "veri": [1, 1100, 1102, 1104, 1107, 1109, 1114, 1116, 1123, 1129, 1140, 1155], "keep": [1, 2, 21, 46, 77], "rang": [1, 3, 4, 17, 20, 21, 22, 23, 24, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 113, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 153, 157, 159, 161, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 212, 213, 217, 223, 225, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 262, 263, 264, 265, 269, 274, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 325, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 415, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 526, 527, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 547, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 677, 692, 693, 695, 696, 702, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 761, 764, 765, 766, 768, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 843, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 936, 939, 940, 941, 942, 944, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 994, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1055, 1056, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1102, 1108, 1123, 1129, 1156, 1182], "address": [1, 1106], "user": [1, 394, 424, 693, 707, 709, 710, 716, 717, 718, 719, 720, 722, 731, 737, 739, 1102, 1107, 1109, 1113, 1117, 1118, 1129, 1132, 1141, 1162, 1178, 1180, 1182], "quit": [1, 1165], "straightforward": 1, "someth": [1, 212, 227, 406, 523, 613, 1104, 1106, 1107, 1108, 1123, 1126], "paper": 1, "2000": 1, "thousand": [1, 1141], "inter": [1, 1142], "term": [1, 4, 31, 46, 50, 55, 69, 70, 93, 115, 121, 125, 212, 228, 234, 262, 264, 269, 273, 276, 277, 279, 280, 283, 284, 286, 287, 288, 289, 292, 307, 309, 318, 324, 328, 329, 331, 333, 346, 347, 351, 356, 359, 362, 369, 388, 393, 406, 425, 434, 437, 442, 443, 448, 460, 476, 480, 484, 485, 488, 499, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 526, 527, 530, 532, 533, 535, 540, 542, 545, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 582, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 620, 623, 625, 635, 646, 647, 652, 655, 657, 658, 660, 664, 665, 666, 668, 693, 695, 698, 717, 720, 725, 726, 728, 729, 737, 739, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 780, 783, 791, 792, 793, 794, 795, 796, 797, 799, 802, 803, 804, 805, 806, 807, 936, 939, 940, 941, 950, 952, 953, 954, 955, 956, 958, 959, 960, 965, 968, 969, 993, 1106, 1107, 1108, 1109, 1113, 1115, 1117, 1118, 1119, 1123, 1128, 1130, 1133, 1136, 1137, 1141, 1149, 1165, 1166, 1167, 1171, 1175, 1176, 1177, 1178, 1180, 1181, 1182, 1192, 1193], "howev": [1, 1102, 1104, 1106, 1107, 1108, 1110, 1113, 1117, 1118, 1119, 1123, 1129, 1131, 1141, 1162, 1192], "turn": [1, 1116, 1191], "flexibl": [1, 1106], "malleabl": 1, "prov": [1, 212, 247, 249, 294, 476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 564, 569, 813, 839, 845, 875, 907, 919, 1059], "logic": [1, 388, 394, 428, 437, 442, 480, 485, 495, 510, 511, 527, 530, 536, 550, 551, 552, 553, 554, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 580, 582, 583, 584, 586, 587, 588, 589, 591, 592, 593, 594, 596, 597, 598, 599, 600, 601, 602, 603, 606, 607, 608, 609, 610, 612, 613, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 635, 637, 646, 647, 649, 652, 655, 657, 658, 660, 663, 664, 665, 666, 668, 671, 842, 872, 882, 1100, 1104, 1106, 1108, 1109, 1111, 1117, 1131, 1166, 1172, 1181, 1192], "artifact": 1, "countri": 1, "knowledg": [1, 3, 4, 17, 21, 22, 30, 46, 78, 1104, 1106, 1109, 1118, 1123, 1129, 1130, 1131, 1163, 1165], "entireti": 1, "wikidata": [1, 1055, 1131], "try": [1, 1105, 1129, 1130, 1135, 1136, 1182, 1192], "pluralist": [1, 1099, 1106, 1107, 1132, 1192], "appropri": [1, 1131, 1136], "abstract": [1, 22, 249, 294, 372, 405, 482, 535, 541, 542, 565, 590, 613, 614, 628, 629, 641, 650, 653, 656, 662, 674, 761, 780, 781, 800, 840, 846, 863, 881, 882, 897, 920, 942, 1049, 1050, 1067, 1106, 1116, 1129, 1132, 1135, 1140, 1143, 1161, 1170, 1175], "commun": [1, 1106, 1111, 1114, 1136], "serv": [1, 1106, 1109, 1137, 1140, 1163, 1166, 1171], "classic": [1, 1118], "those": [1, 212, 227, 394, 420, 437, 1106, 1108, 1114, 1166, 1172], "conceiv": [1, 1118, 1132, 1172], "loos": [1, 1106], "thought": [1, 1117, 1192], "persist": [1, 1106, 1136], "variou": [1, 1106, 1118, 1129, 1136, 1186], "metadata": [1, 4, 50, 202, 212, 227, 228, 229, 231, 234, 237, 239, 240, 241, 242, 247, 372, 373, 380, 381, 382, 384, 385, 388, 389, 393, 394, 396, 403, 405, 411, 417, 437, 443, 505, 575, 625, 642, 842, 847, 882, 1106, 1108, 1109, 1111, 1114, 1119, 1120, 1127, 1131, 1149, 1166, 1171, 1172, 1174, 1176, 1181], "associ": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 202, 402, 405, 437, 440, 443, 444, 450, 472, 473, 475, 839, 882, 919, 1099, 1106, 1107, 1111, 1118, 1127, 1158, 1159, 1161, 1162, 1164, 1166, 1167, 1170, 1182], "predomin": 1, "purpos": [1, 202, 388, 396, 410, 412, 441, 510, 511, 527, 540, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 582, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 620, 623, 625, 635, 646, 647, 652, 655, 657, 658, 664, 665, 666, 668, 717, 735, 1106, 1107, 1108, 1110, 1113, 1117, 1123, 1135, 1140], "necessarili": [1, 1106, 1192], "disjoint": [1, 381, 422, 423, 428, 437, 471, 1106, 1166, 1172, 1173], "categori": [1, 140, 153, 163, 212, 234, 476, 480, 488, 502, 509, 512, 520, 521, 530, 535, 540, 541, 545, 613, 614, 693, 717, 827, 842, 850, 856, 882, 989, 1001, 1040, 1067, 1106, 1117, 1163, 1166], "ambigu": [1, 1106, 1108, 1166], "equat": [1, 381, 437, 470, 1106], "broadli": [1, 1106, 1118], "encompass": [1, 31, 46, 1106, 1166], "scotland": 1, "denot": [1, 1106, 1107, 1109], "strictli": [1, 1105], "three": [1, 1102, 1108], "datatypeproperti": [1, 404, 842, 868, 1106, 1166], "discrimin": 1, "confus": [1, 1103, 1106, 1117, 1182], "ask": [1, 1108, 1117, 1123, 1132, 1166], "think": [1, 1106, 1192], "would": [1, 217, 223, 232, 233, 1102, 1106, 1111, 1113, 1115, 1117, 1118, 1123, 1126, 1140, 1192], "accustom": 1, "stand": [1, 1102, 1109, 1117], "alon": 1, "monolith": 1, "make": [1, 827, 1099, 1101, 1105, 1106, 1107, 1108, 1116, 1117, 1118, 1119, 1123, 1124, 1126, 1129, 1130, 1135, 1136, 1141, 1192], "assumpt": [1, 153, 163, 1116, 1119], "fact": [1, 1109, 1113, 1117, 1129, 1140], "organ": [1, 827, 853, 1106, 1109, 1117, 1163, 1191], "modular": 1, "compon": [1, 495, 613, 1115, 1126, 1172, 1180], "much": [1, 1103, 1140, 1192], "softwar": [1, 1126, 1133], "evolv": 1, "program": [1, 1106, 1109, 1126, 1129, 1130], "incorpor": [1, 1117, 1129], "design": [1, 163, 173, 191, 202, 1103, 1106, 1117, 1123, 1127, 1140, 1145], "worri": [1, 1099, 1129, 1140, 1170], "everyth": [1, 437, 448, 1100, 1106, 1109, 1110, 1117], "were": [1, 1115, 1123, 1131, 1153, 1166], "actual": [1, 942, 953, 1099, 1106, 1117], "let": [1, 1117, 1130], "explor": [1, 1111, 1112, 1118, 1176], "composit": 1, "driven": [1, 1124], "infrastructur": 1, "web": [1, 1104, 1106, 1109, 1110, 1116, 1131, 1133, 1192], "stack": 1, "scienc": [1, 1106, 1129], "bioinformat": [1, 1106, 1117, 1132, 1151], "bridg": [1, 1131], "essenti": [1, 1117], "expand": [1, 6, 95, 135, 204, 252, 273, 297, 324, 375, 490, 678, 745, 818, 923, 971, 993, 1029, 1166, 1172, 1174], "contract": [1, 1166], "seem": [1, 1113, 1140], "surpris": [1, 1129], "construct": [1, 372, 437, 1102, 1106, 1109, 1117, 1119, 1145, 1166, 1192], "call": [1, 1103, 1106, 1108, 1118, 1129, 1136, 1140, 1148, 1166, 1191], "owlinterfac": [1, 202, 1128, 1150, 1170, 1173], "rdfinterfac": 1, "common": [1, 31, 46, 316, 371, 765, 771, 780, 1104, 1106, 1107, 1109, 1113, 1115, 1116, 1117, 1118, 1127, 1129, 1137, 1140, 1141, 1170, 1177], "opaqu": 1, "exactli": [1, 140, 153, 161, 163, 164, 1141], "human": [1, 31, 46, 147, 163, 165, 388, 394, 396, 410, 412, 437, 441, 509, 510, 511, 517, 523, 527, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668, 694, 936, 939, 940, 942, 953, 954, 1106, 1107, 1108, 1109, 1110, 1111, 1117, 1118, 1192], "represent": [1, 6, 95, 135, 204, 252, 297, 375, 417, 437, 448, 487, 490, 546, 613, 678, 745, 818, 923, 971, 1029, 1106, 1109, 1111, 1115, 1117, 1118, 1159, 1167], "univers": [1, 382, 388, 419, 437, 1107, 1116], "preflabel": [1, 217, 232, 476, 485, 505, 509, 512, 521, 541, 625, 988, 1012, 1106, 1116, 1192], "share": [1, 200, 262, 279, 287, 290, 293, 307, 331, 356, 364, 370, 469, 669, 741, 810, 914, 1026, 1095, 1105, 1106, 1108, 1114, 1118, 1166], "multipl": [1, 212, 213, 227, 382, 389, 394, 419, 424, 429, 437, 443, 448, 451, 457, 693, 737, 765, 771, 1049, 1067, 1082, 1106, 1107, 1108, 1116, 1118, 1120, 1129, 1148, 1162, 1163, 1166, 1176, 1179, 1182, 1192, 1193], "intent": [1, 1166, 1192], "languag": [1, 373, 380, 405, 411, 417, 437, 440, 613, 614, 1104, 1106, 1111, 1116, 1120, 1127, 1136, 1166, 1170, 1182, 1192], "unintent": 1, "version": [1, 2, 153, 163, 394, 437, 673, 695, 717, 729, 835, 842, 854, 882, 918, 1107, 1110, 1117, 1120, 1129, 1166, 1171, 1182], "freedom": 1, "littl": [1, 1129, 1140], "disallow": 1, "suit": [1, 1106, 1119], "qc": [1, 1132, 1181], "dashboard": 1, "aim": [1, 1100, 1107, 1192], "conveni": [1, 1102, 1106, 1108, 1166], "certain": [1, 1102, 1110, 1166], "ol": [1, 1102, 1106, 1113, 1128, 1136, 1137, 1152, 1164, 1166], "roughli": [1, 1117], "adher": [1, 1106, 1132], "welcom": [2, 1100, 1101, 1103, 1128], "tracker": [2, 1100, 1120], "bug": [2, 1101, 1119, 1145], "enhanc": [2, 1123], "tutori": [2, 1103, 1111, 1117, 1125, 1127, 1129, 1130, 1133, 1135, 1162, 1193], "resid": 2, "folder": [2, 1100, 1102, 1124, 1129, 1135, 1149], "build": [2, 263, 279, 285, 308, 331, 348, 1106, 1118, 1126, 1128, 1162, 1180], "live": [2, 476, 480, 488, 499, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 613, 1124], "diataxi": 2, "rst": 2, "md": [2, 1102], "docstr": [2, 1102], "read": [2, 1104, 1109, 1111, 1136], "architectur": [2, 1103, 1127, 1129, 1164], "best": [2, 1105, 1118, 1123, 1165, 1182], "practic": [2, 1105, 1107, 1113, 1115, 1116, 1118, 1166, 1192], "sooner": 2, "mark": [2, 1115, 1117], "draft": 2, "readi": [2, 1124, 1128], "review": [2, 1113, 1123], "sure": [2, 1126, 1129], "unit": [2, 263, 278, 279, 285, 308, 321, 330, 331, 348, 365, 1102], "print": [2, 1099, 1107, 1110, 1114, 1115, 1116, 1117, 1126, 1130, 1131, 1137, 1140, 1141, 1145, 1148, 1154, 1156, 1158, 1159, 1165, 1166, 1167, 1170, 1171, 1172, 1176, 1180, 1192], "ing": 2, "log": [2, 780, 781, 1118], "diagnost": [2, 1118], "captur": [2, 372, 437, 443, 1108, 1166], "exemplar": 2, "regist": [2, 418], "scheme": [2, 1126, 1154, 1160, 1162, 1164], "__init__": [2, 1156, 1157, 1161, 1163], "py": [2, 812, 1130, 1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "__post_init__": [2, 1126], "cli": [2, 1102, 1120, 1123, 1129, 1141, 1182, 1192], "refactor": 2, "substanti": 2, "ad": [2, 212, 227, 234, 1107, 1112, 1113, 1117, 1123, 1126, 1136, 1137, 1138], "diff": [2, 4, 42, 46, 56, 71, 89, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 202, 815, 828, 840, 842, 863, 879, 880, 882, 1106, 1127, 1168, 1170, 1174], "coordin": 2, "advanc": [2, 1102, 1106, 1107, 1112, 1117, 1128, 1135, 1151, 1166, 1180], "dev": [2, 1135], "environ": [2, 1109, 1123, 1129], "test_implement": 2, "test_util": 2, "author": 2, "makefil": 2, "set": [2, 3, 4, 17, 21, 22, 30, 36, 42, 45, 46, 65, 66, 77, 78, 80, 81, 85, 86, 118, 125, 213, 234, 238, 381, 388, 389, 393, 422, 423, 425, 432, 434, 435, 437, 443, 453, 460, 470, 471, 766, 775, 776, 780, 791, 792, 797, 802, 807, 842, 857, 882, 909, 941, 949, 953, 957, 961, 962, 1055, 1058, 1067, 1070, 1084, 1093, 1102, 1104, 1106, 1109, 1110, 1113, 1116, 1117, 1118, 1123, 1129, 1130, 1131, 1136, 1140, 1141, 1149, 1165, 1166, 1167, 1170, 1171, 1172, 1174, 1177, 1178, 1179, 1181, 1192], "vx": 2, "click": [2, 1141], "button": 2, "tweak": 2, "emphasi": 2, "titl": [2, 533, 613, 835, 882], "githu": 2, "clear": [2, 1107], "concis": [2, 1126], "changelog": 2, "goe": 2, "trigger": 2, "publish": [2, 476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 617, 1126], "fail": [2, 1159], "fix": [2, 1101, 1166, 1181], "delet": [2, 1105, 1115, 1137, 1166], "again": [2, 1129], "gener": [3, 4, 23, 30, 31, 36, 37, 42, 43, 46, 49, 53, 60, 65, 66, 67, 75, 76, 78, 79, 82, 84, 85, 86, 87, 90, 93, 115, 125, 212, 234, 247, 249, 279, 294, 321, 331, 355, 372, 405, 437, 440, 443, 450, 472, 473, 475, 495, 717, 735, 828, 840, 842, 882, 889, 920, 941, 966, 1101, 1103, 1106, 1108, 1109, 1111, 1117, 1118, 1119, 1123, 1124, 1127, 1129, 1131, 1132, 1133, 1136, 1141, 1143, 1158, 1163, 1165, 1168, 1172, 1174, 1177, 1179, 1180, 1181, 1192, 1193], "oa": [3, 4, 17, 22, 23, 60, 84, 978, 988, 1020, 1165], "annot": [3, 31, 46, 202, 372, 373, 380, 381, 382, 384, 385, 388, 389, 394, 396, 403, 404, 405, 411, 417, 420, 424, 426, 427, 437, 443, 446, 464, 467, 474, 475, 481, 485, 507, 613, 638, 648, 824, 827, 838, 842, 882, 978, 988, 989, 990, 998, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1015, 1018, 1019, 1020, 1021, 1022, 1025, 1061, 1099, 1103, 1106, 1107, 1109, 1111, 1115, 1118, 1120, 1126, 1127, 1137, 1149, 1152, 1164, 1165, 1166, 1167, 1170, 1171, 1173, 1192], "positiveornegativeassoci": [3, 4, 17, 21, 23, 30, 37, 41, 43, 46, 53, 60, 65, 66, 67, 75, 76, 78, 79, 82, 84, 85, 86, 87, 90], "uriorcuri": [3, 4, 17, 20, 21, 22, 23, 24, 30, 36, 43, 44, 46, 55, 56, 60, 61, 63, 65, 69, 71, 72, 73, 74, 75, 78, 82, 84, 85, 90, 93, 119, 125, 142, 163, 212, 217, 223, 227, 228, 232, 233, 234, 245, 247, 269, 276, 279, 286, 288, 318, 328, 331, 351, 359, 437, 476, 480, 488, 503, 509, 512, 514, 521, 522, 530, 533, 535, 540, 541, 542, 545, 596, 608, 613, 668, 672, 692, 693, 707, 711, 717, 743, 765, 766, 771, 780, 787, 791, 793, 803, 816, 817, 864, 882, 936, 939, 940, 941, 942, 952, 953, 964, 991, 999, 1001, 1014, 1028, 1041, 1043, 1055, 1066, 1067], "predic": [3, 4, 17, 22, 23, 36, 38, 42, 46, 49, 51, 56, 65, 66, 71, 85, 86, 140, 153, 163, 165, 170, 171, 172, 173, 181, 188, 189, 191, 197, 199, 269, 279, 311, 316, 318, 331, 344, 352, 373, 380, 384, 386, 403, 405, 411, 412, 417, 421, 437, 450, 455, 479, 485, 551, 613, 825, 842, 857, 874, 876, 882, 888, 912, 936, 941, 953, 1035, 1043, 1060, 1067, 1099, 1100, 1102, 1106, 1107, 1108, 1110, 1113, 1114, 1117, 1118, 1119, 1124, 1128, 1131, 1135, 1145, 1156, 1162, 1165, 1166, 1167, 1172, 1175, 1177, 1178, 1192], "relationship": [3, 17, 22, 23, 41, 46, 75, 76, 140, 153, 163, 182, 212, 227, 262, 269, 276, 277, 279, 284, 286, 288, 289, 307, 318, 328, 329, 331, 347, 351, 359, 362, 384, 388, 437, 443, 446, 447, 448, 450, 462, 825, 936, 941, 952, 953, 954, 957, 1100, 1106, 1108, 1109, 1110, 1111, 1127, 1128, 1130, 1132, 1135, 1137, 1159, 1166, 1170, 1172, 1175, 1178], "ontologi": [3, 17, 22, 23, 24, 31, 41, 44, 46, 60, 67, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 202, 248, 262, 263, 269, 276, 277, 278, 279, 280, 281, 284, 285, 286, 287, 288, 289, 290, 307, 308, 318, 328, 329, 330, 331, 333, 334, 347, 348, 351, 356, 359, 362, 364, 372, 373, 380, 381, 382, 384, 385, 388, 389, 393, 394, 396, 403, 405, 411, 417, 418, 420, 424, 426, 427, 435, 436, 437, 441, 443, 448, 456, 464, 467, 468, 474, 475, 476, 480, 485, 488, 495, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 527, 530, 535, 540, 541, 542, 545, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 604, 606, 608, 609, 610, 611, 612, 617, 625, 627, 635, 640, 642, 646, 647, 655, 658, 660, 664, 665, 666, 667, 668, 672, 673, 695, 717, 728, 735, 742, 812, 813, 816, 827, 828, 839, 840, 842, 845, 847, 848, 849, 851, 852, 854, 855, 856, 857, 860, 861, 863, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 881, 882, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 898, 899, 902, 903, 905, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 939, 941, 942, 946, 952, 953, 954, 968, 1099, 1103, 1106, 1107, 1108, 1110, 1111, 1113, 1114, 1115, 1117, 1118, 1119, 1120, 1123, 1126, 1128, 1129, 1130, 1131, 1132, 1137, 1141, 1143, 1145, 1149, 1151, 1152, 1156, 1159, 1162, 1163, 1164, 1165, 1167, 1168, 1170, 1171, 1172, 1173, 1174, 1176, 1177, 1178, 1179, 1180, 1181, 1186], "property_valu": [3, 17, 22, 23, 46, 1179], "propertyvalu": [3, 17, 22, 46, 60, 75, 79, 372, 373, 380, 381, 382, 384, 385, 388, 389, 393, 394, 396, 403, 411, 412, 417, 437, 440, 443, 450, 472, 473, 475, 1108], "pair": [3, 17, 22, 42, 46, 79, 148, 153, 157, 162, 163, 180, 183, 198, 479, 613, 638, 648, 1055, 1067, 1084, 1093, 1100, 1106, 1113, 1117, 1118, 1123, 1165, 1166, 1173, 1177, 1178], "subject_label": [3, 17, 22, 41, 46, 765, 780, 978, 988, 1001, 1110, 1114, 1129, 1135, 1165], "label": [3, 17, 22, 41, 46, 67, 76, 87, 93, 120, 125, 153, 163, 168, 171, 173, 177, 179, 182, 186, 189, 191, 194, 197, 223, 311, 321, 331, 338, 357, 363, 388, 396, 410, 412, 437, 441, 476, 478, 480, 485, 488, 501, 503, 505, 507, 509, 512, 521, 526, 529, 530, 532, 535, 540, 541, 545, 565, 598, 600, 601, 606, 613, 662, 694, 695, 717, 726, 764, 765, 773, 780, 795, 805, 813, 882, 936, 939, 940, 942, 953, 1099, 1104, 1106, 1107, 1109, 1110, 1111, 1115, 1117, 1123, 1124, 1127, 1129, 1130, 1131, 1135, 1137, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1148, 1154, 1159, 1165, 1166, 1167, 1170, 1172, 1174, 1176, 1180, 1193], "predicate_label": [3, 17, 22, 41, 46, 1110, 1135], "negat": [3, 17, 21, 22, 30, 37, 43, 46, 60, 65, 66, 67, 75, 76, 77, 78, 79, 82, 84, 85, 86, 87, 90, 1108], "evid": [3, 17, 22, 43, 46, 485, 613, 1106, 1108], "supporting_object": [3, 17, 22, 46], "aggregator_knowledge_sourc": [3, 4, 17, 21, 22, 46, 1182], "subject_closur": [3, 17, 22, 46], "via": [3, 17, 22, 46, 65, 66, 85, 86, 1099, 1102, 1105, 1106, 1108, 1109, 1113, 1114, 1116, 1117, 1120, 1129, 1135, 1136, 1155, 1162, 1165, 1173, 1176, 1192], "th": [3, 4, 17, 22, 42, 46, 381, 435, 437, 443, 453, 989, 1001], "subject_closure_label": [3, 17, 22, 46], "object_closur": [3, 17, 22, 46], "object_closure_label": [3, 17, 22, 46], "rollupgroup": [3, 32, 44, 46, 83], "pairwisecoassoci": [3, 33, 46, 57, 58, 59, 61, 62, 63, 64, 88, 1165], "associations_for_subjects_in_common": [3, 20, 46], "self": [3, 4, 17, 20, 21, 22, 23, 24, 92, 93, 94, 153, 157, 212, 213, 217, 223, 249, 250, 262, 263, 264, 265, 269, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 526, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 677, 692, 693, 695, 696, 743, 761, 764, 765, 766, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 936, 939, 940, 941, 942, 978, 988, 989, 990, 991, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1055, 1058, 1059, 1060, 1167, 1172], "ontoassoc": [3, 4, 17, 20, 21, 22, 23, 24, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 70, 71, 77, 79, 80, 81, 83, 85, 86, 88, 89, 90], "from_schema": [3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 109, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 140, 148, 153, 157, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 212, 213, 214, 217, 223, 227, 228, 230, 232, 233, 235, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 249, 250, 262, 263, 264, 265, 269, 273, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 397, 402, 403, 404, 405, 406, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 495, 497, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 526, 527, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 676, 677, 685, 692, 693, 694, 695, 696, 698, 704, 705, 706, 707, 708, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 761, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 922, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 993, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1051, 1055, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097], "slot_usag": [3, 17, 380, 394, 411, 417, 476, 485, 488, 509, 532, 533, 535, 1048, 1059], "domain_of": [3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 36, 37, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 153, 157, 161, 166, 167, 168, 170, 171, 174, 175, 176, 177, 180, 181, 183, 184, 185, 186, 188, 189, 192, 193, 194, 198, 199, 212, 213, 217, 223, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 262, 263, 264, 265, 269, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 479, 480, 485, 488, 489, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 527, 530, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 559, 560, 561, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 579, 580, 582, 583, 584, 585, 586, 587, 588, 589, 591, 592, 593, 594, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 627, 635, 636, 637, 638, 644, 645, 646, 647, 648, 649, 652, 655, 657, 658, 659, 660, 661, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 677, 692, 693, 695, 696, 704, 705, 706, 707, 708, 709, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 813, 815, 816, 817, 825, 828, 835, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 864, 865, 866, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 879, 880, 881, 883, 885, 886, 887, 888, 889, 890, 892, 893, 894, 895, 896, 897, 898, 899, 901, 902, 903, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1055, 1058, 1059, 1060, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097], "equals_express": [3, 17, 503, 526, 532, 765, 799, 824, 827, 838, 842, 849], "class_uri": [3, 212, 217, 223, 249, 250, 294, 295, 372, 385, 386, 388, 396, 402, 410, 412, 476, 480, 484, 485, 488, 509, 512, 521, 530, 533, 535, 537, 540, 542, 813, 816, 835, 941, 942, 988, 1059, 1060], "induc": [3, 4, 17, 20, 21, 22, 23, 24, 92, 93, 94, 153, 157, 212, 213, 217, 223, 249, 250, 262, 263, 264, 265, 269, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 526, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 677, 692, 693, 695, 696, 743, 761, 764, 765, 766, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 936, 939, 940, 941, 942, 978, 988, 989, 990, 991, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1055, 1058, 1059, 1060], "ontolog": [3, 4, 17, 22, 23, 60, 84, 1106, 1114], "descriptor": [3, 4, 17, 22, 23, 31, 46, 60, 84, 1106, 1109, 1165, 1182], "exact_map": [3, 4, 17, 22, 23, 60, 72, 73, 74, 84, 148, 373, 405, 411, 417, 475, 476, 480, 485, 488, 503, 505, 507, 508, 509, 512, 521, 530, 533, 535, 540, 541, 545, 550, 551, 552, 553, 575, 589, 593, 605, 625, 626, 660, 665, 940, 978, 988, 1011, 1012, 1018, 1019, 1020, 1021, 1035, 1051, 1060, 1069], "hasbodi": [3, 4, 17, 22, 84, 978, 988, 1020], "1000": [3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 109, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 140, 148, 153, 157, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 212, 213, 214, 217, 223, 227, 228, 230, 232, 233, 235, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 262, 263, 264, 265, 269, 273, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 397, 402, 403, 404, 405, 406, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 480, 485, 488, 489, 495, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 527, 530, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 676, 677, 685, 692, 693, 694, 695, 696, 698, 704, 705, 706, 707, 708, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 817, 825, 828, 835, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 922, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 993, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1051, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1180], "owner": [3, 4, 17, 20, 21, 22, 23, 24, 45, 77, 92, 93, 94, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 153, 157, 161, 166, 167, 168, 170, 171, 174, 175, 176, 177, 180, 181, 183, 184, 185, 186, 188, 189, 192, 193, 194, 198, 199, 212, 213, 217, 223, 227, 228, 230, 232, 233, 235, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 262, 263, 264, 265, 269, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 422, 423, 425, 434, 444, 452, 460, 470, 471, 476, 479, 480, 485, 488, 489, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 530, 533, 535, 536, 537, 540, 541, 542, 545, 677, 692, 693, 695, 696, 704, 705, 706, 707, 708, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 764, 765, 766, 779, 784, 785, 786, 787, 788, 789, 790, 801, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 864, 865, 866, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 883, 885, 886, 887, 888, 889, 890, 892, 893, 894, 895, 896, 897, 898, 899, 901, 902, 903, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1055, 1058, 1059, 1060, 1062, 1063, 1064, 1065, 1066, 1070, 1071, 1072, 1074, 1075, 1078, 1079, 1080, 1081, 1083, 1087, 1088, 1089, 1090, 1091, 1092, 1094, 1096, 1097], "associationchang": [3, 17, 21, 22, 30, 34, 36, 42, 46, 47, 48, 49, 50, 51, 54, 55, 56, 68, 69, 70, 71, 78, 80, 81, 82, 84, 89], "slot_group": [3, 4, 17, 22, 23, 60, 75, 84, 824, 827, 838, 842, 847, 848, 849, 855, 856, 857, 860, 861, 868, 869, 870, 872, 873, 874, 876, 877, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 899, 903, 905, 908, 911, 912, 915], "core_tripl": [3, 4, 17, 22, 23, 46, 60, 75, 84], "hastarget": [3, 17, 22, 23, 60], "mixin": [3, 4, 17, 22, 46, 47, 48, 49, 50, 51, 54, 55, 56, 67, 68, 69, 70, 71, 76, 80, 81, 87, 153, 166, 167, 168, 170, 171, 175, 176, 177, 181, 185, 186, 188, 189, 193, 194, 199, 488, 510, 511, 527, 530, 541, 545, 550, 584, 585, 586, 598, 600, 601, 606, 613, 629, 654, 988], "denormalized_slot": [3, 17, 22, 46, 67, 76, 87], "parserconfigur": [3, 4, 17, 22, 30, 45, 46, 77, 78], "inherit": [4, 19, 20, 21, 23, 24, 92, 93, 94, 107, 151, 153, 157, 212, 213, 217, 220, 223, 250, 262, 263, 268, 269, 295, 307, 308, 311, 312, 315, 316, 317, 318, 321, 322, 384, 386, 388, 389, 394, 396, 399, 402, 410, 412, 479, 484, 485, 526, 531, 532, 677, 691, 692, 693, 695, 696, 743, 760, 764, 813, 815, 816, 817, 825, 834, 835, 839, 935, 941, 978, 984, 989, 990, 991, 1045, 1046, 1055, 1058, 1107], "summary_group": [4, 46], "publication_is_ad": [4, 42, 46], "wa": [4, 39, 40, 42, 46, 49, 51, 52, 80, 476, 480, 488, 499, 503, 506, 509, 512, 521, 530, 535, 540, 541, 545, 572, 596, 613, 695, 717, 727, 738, 817, 839, 882, 895, 919, 1102, 1109, 1115], "prese": [4, 42, 46], "publication_is_delet": [4, 42, 46], "presen": [4, 42, 46], "old_pred": [4, 42, 46, 75], "new_pred": [4, 42, 46, 75], "old_object": [4, 42, 46, 60], "new_object": [4, 42, 46, 60], "old_object_obsolet": [4, 42, 46], "is_migr": [4, 42, 46], "is_gener": [4, 42, 46], "is_speci": [4, 42, 46], "is_creat": [4, 42, 46], "is_delet": [4, 42, 46], "closure_pred": [4, 46], "sp": [4, 46, 1061], "closure_delta": [4, 46], "integ": [4, 20, 34, 46, 57, 58, 59, 93, 108, 116, 117, 122, 125, 130, 132, 133, 152, 163, 217, 234, 243, 279, 331, 437, 613, 631, 633, 634, 693, 695, 696, 717, 722, 732, 733, 753, 780, 815, 824, 825, 827, 838, 842, 847, 848, 849, 855, 858, 859, 860, 861, 867, 868, 869, 870, 873, 877, 878, 882, 883, 886, 890, 892, 893, 894, 896, 898, 899, 903, 905, 908, 909, 911, 915, 916, 953, 985, 989, 1001, 1004, 1035, 1058, 1065, 1067, 1070, 1072], "diff_slot": [4, 40, 46, 47, 48, 49, 50, 51, 54, 55, 56, 60, 68, 69, 70, 71, 75, 80, 81], "been": [4, 50, 70, 1108, 1114, 1115, 1131, 1132, 1156], "obsolet": [4, 50, 70, 476, 480, 485, 488, 503, 506, 509, 512, 521, 526, 530, 532, 535, 540, 541, 545, 567, 568, 578, 613, 842, 869, 870, 882, 890, 893, 894, 1111, 1127, 1136, 1166, 1170, 1174], "migrat": [4, 49, 50, 51, 1136], "binari": [5, 46, 91, 125, 134, 163, 203, 234, 251, 279, 296, 331, 374, 437, 486, 613, 675, 717, 744, 780, 814, 882, 921, 953, 970, 1001, 1027, 1067], "xsd": [5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 25, 26, 27, 28, 29, 46, 91, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 108, 110, 111, 112, 113, 114, 125, 134, 135, 136, 138, 139, 141, 143, 144, 145, 146, 147, 149, 154, 155, 156, 158, 159, 160, 163, 203, 204, 205, 207, 208, 209, 210, 211, 215, 216, 218, 221, 222, 224, 225, 226, 234, 251, 252, 253, 255, 256, 257, 258, 259, 260, 261, 266, 270, 271, 272, 274, 275, 279, 296, 297, 298, 300, 301, 302, 303, 304, 305, 306, 313, 319, 320, 323, 325, 326, 331, 374, 375, 376, 378, 379, 383, 387, 390, 391, 392, 395, 400, 408, 409, 413, 414, 415, 416, 418, 437, 459, 486, 487, 490, 491, 493, 494, 496, 498, 513, 514, 515, 516, 517, 523, 524, 538, 539, 543, 544, 546, 547, 548, 613, 675, 678, 679, 681, 682, 683, 684, 686, 687, 688, 689, 697, 699, 700, 701, 702, 703, 712, 713, 714, 715, 717, 721, 744, 745, 746, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 759, 762, 763, 767, 768, 769, 770, 780, 814, 818, 819, 821, 822, 823, 824, 826, 827, 829, 830, 831, 832, 836, 837, 838, 841, 843, 844, 858, 859, 878, 882, 921, 923, 924, 926, 927, 928, 929, 930, 931, 932, 933, 937, 938, 943, 944, 945, 953, 970, 971, 972, 974, 975, 976, 977, 979, 980, 981, 982, 985, 986, 987, 992, 994, 995, 1001, 1027, 1029, 1030, 1032, 1033, 1034, 1036, 1037, 1038, 1039, 1042, 1052, 1053, 1054, 1056, 1057, 1067, 1116, 1192], "bool": [5, 91, 134, 203, 251, 296, 374, 486, 675, 744, 814, 921, 970, 1027, 1142, 1144, 1145, 1146, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1193], "repr": [5, 6, 7, 8, 9, 14, 15, 16, 18, 19, 25, 27, 28, 29, 91, 95, 96, 97, 98, 103, 104, 105, 106, 107, 110, 112, 113, 114, 134, 135, 136, 137, 138, 142, 145, 146, 149, 150, 151, 155, 158, 159, 160, 203, 204, 205, 206, 207, 215, 216, 218, 219, 220, 221, 224, 225, 226, 251, 252, 253, 254, 255, 260, 261, 266, 267, 268, 270, 272, 274, 275, 296, 297, 298, 299, 300, 305, 306, 313, 314, 315, 319, 323, 325, 326, 374, 375, 376, 377, 378, 391, 392, 395, 398, 399, 408, 414, 415, 416, 486, 490, 491, 492, 493, 514, 515, 516, 524, 525, 531, 538, 544, 547, 548, 675, 678, 679, 680, 681, 687, 688, 689, 690, 691, 699, 701, 702, 703, 744, 745, 746, 747, 748, 754, 755, 756, 758, 760, 762, 767, 768, 769, 814, 818, 819, 820, 821, 830, 831, 832, 833, 834, 836, 841, 843, 844, 921, 923, 924, 925, 926, 931, 932, 933, 934, 935, 937, 943, 944, 945, 970, 971, 972, 973, 974, 980, 981, 982, 983, 984, 986, 992, 994, 995, 1027, 1029, 1030, 1031, 1032, 1038, 1039, 1042, 1044, 1045, 1052, 1054, 1056, 1057], "compact": [6, 46, 95, 125, 135, 163, 204, 234, 252, 279, 297, 331, 375, 437, 490, 613, 678, 717, 745, 780, 818, 882, 923, 953, 971, 1001, 1029, 1067, 1106, 1113, 1117, 1129], "str": [6, 7, 8, 9, 14, 15, 16, 18, 19, 25, 26, 27, 28, 29, 95, 96, 97, 98, 103, 104, 105, 106, 107, 110, 111, 112, 113, 114, 135, 136, 137, 138, 142, 145, 146, 147, 149, 150, 151, 154, 155, 156, 158, 159, 160, 204, 205, 206, 207, 215, 216, 218, 219, 220, 221, 222, 224, 225, 226, 252, 253, 254, 255, 260, 261, 266, 267, 268, 270, 271, 272, 274, 275, 297, 298, 299, 300, 305, 306, 313, 314, 315, 319, 320, 323, 325, 326, 375, 376, 377, 378, 391, 392, 395, 398, 399, 400, 408, 409, 413, 414, 415, 416, 418, 487, 490, 491, 492, 493, 514, 515, 516, 517, 523, 524, 525, 531, 538, 539, 543, 544, 546, 547, 548, 678, 679, 680, 681, 687, 688, 689, 690, 691, 697, 699, 700, 701, 702, 703, 745, 746, 747, 748, 754, 755, 756, 758, 760, 762, 763, 767, 768, 769, 818, 819, 820, 821, 830, 831, 832, 833, 834, 836, 837, 841, 843, 844, 923, 924, 925, 926, 931, 932, 933, 934, 935, 937, 938, 943, 944, 945, 971, 972, 973, 974, 980, 981, 982, 983, 984, 986, 987, 992, 994, 995, 1029, 1030, 1031, 1032, 1038, 1039, 1042, 1044, 1045, 1052, 1053, 1054, 1056, 1057, 1130, 1142, 1144, 1145, 1146, 1154, 1155, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1193], "year": [7, 46, 96, 125, 136, 163, 205, 234, 253, 279, 298, 331, 376, 437, 491, 613, 679, 717, 746, 780, 819, 882, 924, 953, 972, 1001, 1030, 1067], "month": [7, 46, 96, 125, 136, 163, 205, 234, 253, 279, 298, 331, 376, 437, 491, 613, 679, 717, 746, 780, 819, 882, 924, 953, 972, 1001, 1030, 1067], "ideal": [7, 46, 96, 125, 136, 163, 205, 234, 253, 279, 298, 331, 376, 437, 491, 613, 679, 717, 746, 780, 819, 882, 924, 953, 972, 1001, 1030, 1067], "calendar": [7, 46, 96, 125, 136, 163, 205, 234, 253, 279, 298, 331, 376, 437, 491, 613, 679, 717, 746, 780, 819, 882, 924, 953, 972, 1001, 1030, 1067], "xsddate": [7, 96, 136, 205, 253, 298, 376, 491, 679, 746, 819, 924, 972, 1030], "datetim": [8, 46, 97, 125, 137, 163, 206, 234, 254, 279, 299, 331, 377, 437, 492, 613, 680, 717, 747, 780, 820, 839, 875, 882, 907, 925, 953, 973, 1001, 1031, 1067], "xsddatetim": [9, 98, 138, 207, 255, 300, 378, 493, 681, 748, 821, 926, 974, 1032], "real": [10, 11, 12, 46, 99, 100, 101, 125, 139, 141, 143, 163, 208, 209, 210, 234, 256, 257, 258, 279, 301, 302, 303, 331, 379, 383, 387, 437, 494, 496, 498, 613, 682, 683, 684, 717, 749, 750, 751, 780, 822, 823, 826, 882, 927, 928, 929, 953, 975, 976, 977, 1001, 1033, 1034, 1036, 1067], "precis": [10, 46, 99, 125, 139, 163, 208, 234, 256, 279, 301, 331, 379, 437, 494, 613, 682, 717, 749, 780, 822, 882, 927, 953, 975, 1001, 1033, 1067, 1107, 1117, 1123], "float": [11, 35, 46, 92, 93, 100, 123, 124, 125, 126, 127, 128, 129, 141, 163, 209, 234, 257, 279, 302, 312, 316, 331, 340, 371, 383, 437, 496, 613, 683, 717, 743, 750, 757, 759, 765, 766, 770, 775, 776, 777, 780, 823, 882, 928, 953, 976, 988, 998, 1001, 1034, 1040, 1063, 1067, 1162, 1165, 1172, 1177], "int": [13, 102, 108, 144, 152, 211, 259, 304, 390, 513, 686, 752, 753, 829, 930, 979, 985, 1037, 1158, 1162, 1165, 1172, 1179, 1182], "path": [14, 25, 46, 103, 110, 125, 145, 153, 155, 163, 188, 215, 221, 234, 260, 270, 279, 305, 319, 331, 391, 408, 437, 515, 538, 613, 687, 692, 699, 711, 717, 736, 740, 754, 762, 780, 830, 836, 882, 931, 937, 953, 980, 986, 1001, 1038, 1052, 1067, 1106, 1117, 1126, 1129, 1135, 1154, 1159, 1160, 1162, 1166, 1169, 1170, 1172, 1182], "derefer": [14, 15, 25, 103, 104, 110, 145, 146, 155, 215, 216, 221, 260, 261, 270, 305, 306, 319, 391, 392, 408, 515, 516, 538, 687, 688, 699, 754, 755, 762, 830, 831, 836, 931, 932, 937, 980, 981, 986, 1038, 1039, 1052], "zero": [14, 25, 103, 110, 145, 155, 215, 221, 260, 270, 305, 319, 391, 408, 515, 538, 687, 699, 754, 762, 830, 836, 931, 937, 980, 986, 1038, 1052, 1110, 1117, 1166], "valid": [14, 15, 25, 103, 104, 110, 145, 146, 155, 202, 215, 216, 221, 260, 261, 270, 305, 306, 319, 382, 391, 392, 402, 408, 452, 515, 516, 538, 687, 688, 699, 754, 755, 762, 830, 831, 836, 931, 932, 937, 980, 981, 986, 1035, 1038, 1039, 1040, 1046, 1052, 1055, 1058, 1059, 1060, 1062, 1063, 1064, 1065, 1068, 1069, 1070, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1098, 1099, 1102, 1120, 1126, 1127, 1128, 1152, 1164, 1170, 1173, 1175], "tree": [14, 15, 103, 104, 145, 146, 215, 216, 260, 261, 305, 306, 391, 392, 515, 516, 687, 688, 754, 755, 830, 831, 931, 932, 980, 981, 1038, 1039, 1100, 1102, 1128, 1132], "pointer": [15, 46, 104, 125, 146, 163, 216, 234, 261, 279, 306, 331, 392, 437, 516, 613, 688, 717, 755, 780, 831, 882, 932, 953, 981, 1001, 1039, 1067], "prefix": [16, 46, 105, 125, 149, 163, 218, 234, 266, 279, 313, 321, 322, 331, 388, 389, 395, 402, 435, 437, 443, 444, 524, 613, 689, 717, 756, 780, 832, 835, 842, 882, 887, 889, 933, 953, 982, 1001, 1042, 1067, 1106, 1111, 1115, 1116, 1118, 1123, 1145, 1165, 1166, 1171, 1179, 1182, 1193], "curi": [16, 18, 19, 29, 46, 105, 106, 107, 114, 125, 149, 150, 151, 160, 163, 217, 218, 219, 220, 223, 226, 230, 234, 266, 267, 268, 275, 279, 313, 314, 315, 326, 331, 388, 389, 395, 398, 399, 400, 416, 418, 437, 453, 487, 524, 525, 531, 546, 548, 613, 689, 690, 691, 695, 703, 717, 725, 756, 758, 760, 769, 780, 832, 833, 834, 844, 882, 933, 934, 935, 936, 939, 940, 942, 945, 952, 953, 982, 983, 984, 995, 1001, 1042, 1044, 1045, 1057, 1067, 1104, 1106, 1107, 1108, 1109, 1111, 1114, 1117, 1119, 1127, 1129, 1130, 1136, 1137, 1141, 1142, 1145, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "bnode": [18, 46, 106, 125, 150, 163, 219, 234, 267, 279, 314, 331, 398, 437, 525, 613, 690, 717, 758, 780, 833, 882, 934, 953, 983, 1001, 1044, 1067], "shex": [18, 19, 106, 107, 150, 151, 219, 220, 267, 268, 314, 315, 398, 399, 525, 531, 690, 691, 758, 760, 833, 834, 934, 935, 983, 984, 1044, 1045], "nonliter": [18, 106, 150, 219, 267, 314, 398, 525, 690, 758, 833, 934, 983, 1044], "iri": [19, 107, 151, 220, 268, 315, 388, 389, 399, 453, 510, 511, 514, 521, 522, 527, 531, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668, 691, 695, 717, 729, 760, 834, 935, 984, 1045, 1106, 1110, 1173], "elementidentifi": [19, 107, 151, 220, 268, 315, 399, 531, 691, 760, 834, 935, 984, 1045], "object1": [20, 46, 60, 1165], "object2": [20, 46, 60, 1165], "object1_label": [20, 46], "object2_label": [20, 46], "number_subjects_in_common": [20, 46, 1165], "number_subject_unique_to_entity1": [20, 46], "number_subject_unique_to_entity2": [20, 46], "subjects_in_common": [20, 46], "preserve_negated_associ": [21, 46], "parser": [21, 45, 46, 77, 1105], "include_association_attribut": [21, 46], "attr": [21, 46], "resourc": [21, 142, 396, 827, 828, 835, 846, 863, 871, 881, 882, 897, 901, 913, 917, 918, 920, 1035, 1067, 1106, 1110, 1112, 1114, 1119, 1126, 1136, 1145, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182], "remov": [21, 77, 273, 324, 993, 1136, 1167, 1174, 1178], "defens": [21, 77], "slower": [21, 45], "instanti": [22, 249, 294, 372, 381, 405, 437, 482, 535, 541, 542, 761, 840, 942, 1035, 1043, 1049, 1050, 1060, 1067, 1106, 1140, 1158, 1166, 1182], "negatedassoci": [22, 23, 30, 37, 43, 46, 53, 60, 65, 66, 67, 75, 76, 78, 79, 82, 84, 85, 86, 87, 90], "tag": [23, 46, 60, 75, 212, 234, 240, 386, 393, 824, 827, 838, 842, 847, 849, 855, 856, 857, 860, 861, 862, 868, 869, 870, 873, 874, 876, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 898, 899, 904, 911, 912, 915, 1061, 1107, 1108, 1109, 1114, 1115, 1116, 1166, 1192], "group_object": [24, 46], "ancestor": [24, 44, 46, 765, 771, 773, 780, 1099, 1100, 1102, 1106, 1111, 1118, 1128, 1132, 1133, 1156, 1170, 1172, 1177], "sub_group": [24, 46], "rollup": [24, 46, 83, 1165], "nassoci": [24, 44], "inlined_as_list": [24, 32, 83, 264, 283, 309, 346, 388, 389, 428, 431, 435, 442, 446, 828, 840, 842, 846, 863, 897, 941, 969, 1048, 1049, 1059, 1082], "charact": [26, 46, 111, 125, 156, 163, 222, 234, 271, 273, 279, 320, 324, 331, 409, 437, 539, 613, 700, 717, 763, 780, 837, 882, 938, 953, 987, 993, 1001, 1053, 1067], "independ": [27, 46, 112, 125, 158, 163, 224, 234, 272, 273, 279, 323, 324, 331, 414, 437, 544, 613, 701, 717, 767, 780, 841, 882, 943, 953, 992, 993, 1001, 1054, 1067, 1117], "xsdtime": [27, 112, 158, 224, 272, 323, 414, 544, 701, 767, 841, 943, 992, 1054], "anyuri": [28, 29, 113, 114, 159, 160, 225, 226, 274, 275, 325, 326, 415, 416, 514, 547, 548, 702, 703, 768, 769, 843, 844, 944, 945, 994, 995, 1056, 1057], "liter": [28, 113, 159, 225, 274, 325, 415, 547, 702, 768, 843, 944, 994, 1056, 1106, 1107, 1116, 1124, 1166, 1192], "w3": [31, 46, 152, 1001, 1024, 1110, 1165, 1166], "bioscienc": [31, 46], "aspect": [31, 46, 1108, 1113, 1118, 1136, 1186], "drug": [31, 46], "chemic": [31, 46, 1117], "none": [38, 41, 42, 46, 62, 64, 88, 109, 140, 148, 152, 164, 169, 172, 173, 178, 187, 190, 195, 234, 273, 279, 324, 331, 401, 407, 423, 425, 434, 437, 470, 613, 630, 676, 685, 694, 698, 717, 780, 824, 827, 838, 922, 993, 1001, 1051, 1061, 1067, 1107, 1110, 1115, 1116, 1117, 1129, 1130, 1135, 1137, 1142, 1144, 1145, 1146, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1193], "is_grouping_slot": [38, 862, 884, 891, 900, 904], "last": [40, 46, 52, 273, 324, 993], "modification_d": [40, 46], "creation_d": [40, 46, 476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650], "domain": [41, 42, 164, 165, 173, 179, 182, 191, 196, 197, 382, 388, 430, 437, 476, 480, 488, 503, 509, 512, 521, 526, 530, 532, 535, 540, 541, 545, 563, 578, 596, 603, 613, 628, 630, 665, 1099, 1106, 1108, 1117, 1136], "pertain": [42, 46], "_an": 44, "_": [44, 153, 402, 1100, 1106, 1109, 1117, 1119, 1145, 1159, 1192], "closure_information_content_delta": 46, "original_object": 46, "normal": [46, 72, 73, 74, 262, 279, 280, 287, 290, 307, 311, 331, 333, 356, 363, 364, 817, 882, 895, 1115, 1123, 1126, 1135, 1151, 1158, 1159, 1161, 1162, 1165, 1166, 1167, 1170, 1171, 1182], "original_pred": 46, "original_subject": 46, "inform": [46, 437, 742, 780, 812, 1067, 1106, 1107, 1108, 1109, 1111, 1112, 1115, 1117, 1126, 1130, 1131, 1133, 1137, 1143, 1163, 1166, 1168, 1177, 1182, 1192], "dateordatetim": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 953, 1001, 1067], "decim": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 953, 1001, 1067], "doubl": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 953, 1001, 1067], "jsonpath": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 953, 1001, 1067], "jsonpoint": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 953, 1001, 1067], "ncname": [46, 125, 163, 234, 279, 331, 402, 437, 452, 613, 717, 780, 882, 953, 1001, 1067], "nodeidentifi": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 953, 1001, 1067], "objectidentifi": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 953, 1001, 1067], "sparqlpath": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 953, 1001, 1067], "ye": [53, 450, 472, 475, 555, 559, 571, 575, 588, 608, 625, 627, 635, 661, 667, 672, 673, 1082, 1100, 1102], "enrich": [91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 1099, 1123, 1131, 1152, 1164, 1170], "search": [92, 125, 128, 202, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 989, 997, 1000, 1001, 1004, 1007, 1008, 1017, 1025, 1100, 1103, 1109, 1111, 1118, 1123, 1127, 1128, 1135, 1137, 1140, 1148, 1152, 1156, 1164, 1165, 1166, 1170], "ontoenrich": [92, 93, 94, 115, 116, 117, 119, 120, 121, 122, 123, 124, 127, 128, 129, 130, 131, 132, 133], "p_value_cutoff": [92, 125], "class_id": [93, 125, 1167], "class_label": [93, 125, 1167], "p_valu": [93, 109, 125, 1167], "p_value_adjust": [93, 125, 1167], "adjust": [93, 125, 127, 1167], "false_discovery_r": [93, 125], "discoveri": [93, 123, 125], "rate": [93, 123, 125], "fold_enrich": [93, 125], "fold": [93, 124, 125], "probabl": [93, 125, 780, 781, 1106, 1118, 1177], "estim": [93, 125, 129], "approach": [93, 125, 129, 1099, 1111, 1131, 1141, 1165], "sample_count": [93, 125, 1167], "sample_tot": [93, 125], "background_count": [93, 125, 1167], "count": [93, 116, 125, 815, 825, 879, 880, 882, 1129, 1168, 1172], "background_tot": [93, 125], "ancestor_of_more_informative_result": [93, 125], "previous": [93, 115, 121, 125, 1115, 1129, 1131], "descendant_of_more_informative_result": [93, 125], "classenrichmentresultset": [93, 125, 131], "0000175": [93, 126], "minimum_valu": [93, 129, 1061], "maximum_valu": [93, 129, 1061], "enrichemt": [94, 125, 131], "classenrichmentresult": [94, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 1167], "typeof": [108, 142, 147, 154, 212, 227, 400, 413, 418, 487, 514, 517, 523, 543, 546, 697, 753, 757, 759, 770, 985], "sort": [109, 125, 1107, 1115, 1117, 1148, 1166, 1167, 1172, 1176], "permissible_valu": [109, 140, 148, 214, 273, 324, 397, 404, 406, 495, 676, 685, 694, 698, 922, 993, 1051, 1061], "classenrichmentconfigur": [125, 128], "sortfieldenum": 125, "posit": [125, 217, 234, 316, 331, 371, 978, 988, 1001, 1018, 1021, 1129, 1166], "side": [140, 153, 163, 173, 179, 182, 191, 197, 1113, 1167], "morespecificpredicateonright": 140, "lessspecificpredicateonright": 140, "less": [140, 1061, 1106, 1107, 1129, 1160, 1167, 1182, 1192], "leftentailedbyright": 140, "rightentailedbyleft": 140, "indirectformofedgeonright": 140, "ent": 140, "rightnodesareident": 140, "nonentailedrelationship": 140, "norelationship": 140, "missingmap": 140, "missingsubjectmap": 140, "missingobjectmap": 140, "lack": [140, 153, 161, 163, 212, 228, 482, 613, 1104, 1107], "5": [140, 316, 371, 388, 396, 400, 410, 412, 413, 418, 436, 1113, 1116, 1123, 1127, 1128, 1180], "neither": [140, 503, 1166], "nor": [140, 503, 1166], "20": 140, "99": 140, "readabl": [147, 163, 165, 388, 396, 410, 412, 437, 441, 517, 523, 613, 694, 936, 939, 940, 942, 953, 954, 1106, 1117, 1192], "n": [148, 153, 1130], "subject_mapping_cardin": [148, 153, 163], "object_mapping_cardin": [148, 153, 163], "mapping_cardinality_enum": 148, "www": [152, 1001, 1024, 1106, 1110, 1156, 1166, 1192], "2001": 152, "xmlschema": 152, "cross_ontology_diff": 152, "__": [153, 230, 372, 955, 956, 959], "categor": [153, 163, 212, 228, 234], "left_object": [153, 163], "right_object": [153, 163], "right_": 153, "predicate_": 153, "left_subject": [153, 163], "right_subject": [153, 163], "figur": [153, 163, 1117], "classif": [153, 163, 1113, 1117], "xodiff": [153, 157, 161, 164, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 180, 181, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 198, 199], "diffcategori": [153, 161, 163], "left_subject_id": [153, 163, 173, 182, 197, 199], "entityrefer": [153, 163, 166, 170, 173, 175, 179, 181, 182, 184, 185, 188, 191, 193, 197, 199], "child": [153, 163, 165, 173, 175, 177, 178, 191, 193, 194, 195, 197, 384, 462, 1166, 1175], "left_object_id": [153, 163, 173, 179, 181, 182, 197], "left_predicate_id": [153, 163, 173, 182], "left_subject_label": [153, 163, 165, 173, 197], "left_object_label": [153, 163, 165, 173, 179], "left_predicate_label": [153, 163, 165, 173, 182], "right_subject_id": [153, 163, 182, 191, 197, 199], "matchabl": [153, 163, 165, 179, 185, 186, 187, 191, 193, 194, 195, 197], "right_object_id": [153, 163, 179, 181, 182, 191, 197], "right_predicate_id": [153, 163, 165, 182, 189, 190, 191], "right_subject_label": [153, 163, 165, 191, 197], "right_object_label": [153, 163, 165, 179, 191], "right_predicate_label": [153, 163, 165, 182, 191], "left_subject_is_funct": [153, 163, 164, 173], "ontol": [153, 163, 164, 173], "left_object_is_funct": [153, 163, 164, 173], "subject_mapping_pred": [153, 163, 182, 197], "hold": [153, 163, 181, 182, 197, 199, 941, 946, 951, 953, 1116, 1119, 1166, 1192], "object_mapping_pred": [153, 163, 182, 197], "right_intermediate_id": [153, 163], "mappingcardinalityenum": [153, 163, 180, 198], "structurediffresultset": [153, 163, 174, 183, 192], "nanoth": 153, "nontologi": 153, "nfor": 153, "nif": 153, "nthe": 153, "ni": 153, "nleft_object": 153, "nleft_subject": 153, "left_sid": [153, 163, 166, 167, 168, 170, 171, 175, 176, 177, 196], "right_sid": [153, 163, 185, 186, 188, 189, 193, 194, 196], "otherrelationship": [153, 188], "is_funct": [153, 163, 167, 176], "act": [154, 163, 698, 839, 845, 882, 1123], "relationaldiff": [157, 161, 163, 166, 167, 168, 170, 171, 175, 176, 177, 180, 181, 183, 184, 185, 186, 188, 189, 193, 194, 198, 199], "left_sourc": [157, 163], "right_sourc": [157, 163], "map": [162, 163, 202, 234, 437, 613, 812, 882, 1067, 1099, 1102, 1106, 1109, 1111, 1116, 1120, 1127, 1129, 1142, 1145, 1152, 1155, 1156, 1162, 1164, 1165, 1166, 1170, 1172, 1174, 1175, 1176, 1177, 1180, 1181, 1182, 1186, 1192, 1193], "arbitrarili": [163, 173, 191], "ed": 163, "text_annot": [169, 172, 178, 187, 190, 195, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1126, 1180], "definit": [200, 293, 370, 373, 380, 388, 393, 394, 420, 437, 440, 442, 443, 450, 469, 472, 473, 475, 476, 478, 480, 488, 495, 501, 505, 509, 512, 521, 529, 530, 535, 540, 541, 545, 565, 613, 669, 694, 741, 810, 842, 860, 861, 882, 914, 1026, 1095, 1100, 1106, 1109, 1119, 1120, 1130, 1131, 1137, 1145, 1166, 1170, 1172, 1173, 1179, 1181, 1192], "axiom": [201, 202, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 403, 405, 411, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 434, 436, 437, 441, 442, 443, 446, 448, 451, 453, 454, 457, 460, 463, 464, 466, 467, 470, 471, 474, 475, 476, 479, 480, 484, 488, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 527, 530, 533, 535, 536, 540, 541, 542, 545, 550, 551, 552, 553, 554, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 580, 582, 583, 584, 586, 587, 588, 589, 591, 592, 593, 594, 596, 597, 598, 599, 600, 601, 602, 603, 606, 607, 608, 609, 610, 612, 613, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 635, 637, 646, 647, 649, 652, 655, 657, 658, 660, 663, 664, 665, 666, 668, 671, 842, 877, 882, 899, 908, 1104, 1106, 1107, 1108, 1109, 1111, 1113, 1114, 1117, 1123, 1132, 1137, 1140, 1162, 1166, 1168, 1173, 1192], "orient": [201, 437, 448, 1099, 1104, 1108, 1130, 1132, 1172], "contrast": [201, 1106, 1132], "intention": [202, 373, 380, 394, 405, 411, 417, 475, 1108, 1132, 1166], "overlap": [202, 1117], "lossi": [202, 1166], "respect": [202, 1117, 1129, 1180], "datatyp": [202, 373, 380, 405, 411, 417, 437, 473, 842, 868, 882, 1106], "enumer": 202, "subset": [202, 388, 394, 446, 476, 480, 484, 488, 502, 509, 510, 511, 512, 521, 526, 527, 530, 532, 533, 535, 541, 542, 545, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 582, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 605, 606, 608, 609, 610, 612, 617, 620, 623, 625, 635, 646, 647, 652, 655, 657, 658, 664, 665, 666, 668, 693, 720, 827, 842, 847, 848, 849, 852, 855, 856, 857, 860, 861, 868, 869, 870, 872, 873, 874, 876, 877, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 898, 899, 903, 905, 908, 909, 911, 912, 915, 916, 1102, 1104, 1106, 1117, 1123, 1136, 1164, 1165, 1166, 1168, 1170, 1177, 1179], "similar": [202, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 802, 803, 804, 805, 806, 807, 808, 809, 811, 1100, 1106, 1107, 1108, 1111, 1114, 1115, 1123, 1126, 1127, 1132, 1164, 1165, 1170], "statist": [202, 815, 817, 824, 827, 828, 838, 839, 840, 842, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 860, 861, 863, 864, 865, 866, 868, 869, 870, 872, 873, 874, 875, 876, 877, 879, 880, 881, 883, 886, 887, 888, 889, 890, 892, 893, 894, 895, 896, 897, 898, 899, 901, 903, 905, 906, 907, 908, 909, 911, 912, 915, 916, 919, 920, 1118, 1127, 1128, 1164, 1170], "taxon": [202, 827, 853, 939, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 968, 969, 1127, 1158], "constraint": [202, 495, 613, 939, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 1061, 1127, 1166, 1181], "item": [203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 232, 233, 236, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 815, 825, 882, 1137, 1166, 1167, 1177], "list": [203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 373, 380, 382, 388, 389, 394, 403, 405, 411, 417, 419, 420, 421, 424, 428, 430, 432, 435, 437, 442, 454, 464, 465, 467, 475, 693, 716, 780, 989, 997, 1001, 1025, 1099, 1102, 1106, 1107, 1109, 1110, 1113, 1114, 1117, 1119, 1123, 1129, 1131, 1132, 1140, 1141, 1145, 1148, 1154, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1182], "itemlistel": [212, 217, 234], "listitem": [212, 223, 230, 232, 234, 235, 237, 239, 243, 244], "numberofitem": [212, 214, 234], "itemlistordertyp": [212, 234, 242], "itemmetadatamap": [212, 217, 234], "keyword": [212, 228, 234, 1145, 1182], "additionaltyp": [212, 234], "wasgeneratedbi": [212, 234], "script": [212, 234, 247], "itemlistcollect": [212, 234, 238], "close": [212, 373, 394, 405, 406, 411, 417, 475, 488, 1106, 1130, 1138, 1181], "close_map": [212, 373, 405, 411, 417, 475, 476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 564, 566, 569, 572, 617, 673], "henc": 212, "mtor": 212, "pathwai": [212, 1165], "shop": 212, "bui": 212, "supermarket": 212, "singular_nam": [212, 228, 237, 240], "uncontrol": [212, 228], "dcterm": [212, 228, 476, 480, 485, 488, 502, 503, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 562, 564, 566, 569, 572, 617, 626, 627, 660, 665, 667, 835, 871, 913], "microdata": [212, 227], "rdfa": [212, 227], "better": [212, 227, 1101, 1118, 1129, 1141], "weaker": [212, 227], "itemlist": [213, 217, 223, 227, 228, 229, 230, 231, 232, 233, 234, 237, 239, 240, 241, 242, 245, 246, 247, 1167], "catalog": 213, "around": [213, 1104, 1105, 1106, 1107, 1129, 1135, 1172], "ascend": 214, "itemlistorderascend": 214, "descend": [214, 939, 953, 955, 956, 959, 1099, 1100, 1102, 1106, 1108, 1118, 1123, 1132, 1135, 1165, 1167, 1170, 1172], "itemlistorderdescend": 214, "unord": 214, "itemlistunord": 214, "enum_uri": 214, "elementid": [217, 234], "idtyp": [217, 234], "previousitem": [217, 234], "previou": [217, 234, 244, 1117, 1129], "proper": [217, 223, 230, 1177], "symbol": [217, 223, 230, 232, 233, 698, 1129, 1182], "url": [223, 234, 418, 485, 546, 613, 1035, 1067, 1106, 1110, 1119, 1145, 1166], "mgi": [223, 233], "lexicaltransformationpipelin": [249, 263, 264, 269, 279, 282, 284, 285, 291, 294, 308, 309, 318, 331, 341, 347, 348, 367], "lexicaltransform": [249, 250, 265, 279, 283, 291, 292, 294, 295, 310, 331, 346, 367, 369], "ontolexindex": [249, 250, 262, 263, 264, 265, 269, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292], "relationshiptoterm": [262, 265, 276, 277, 279, 284, 286, 287, 288, 289, 307, 310, 328, 329, 331, 347, 351, 356, 359, 362], "lexicalindex": [262, 265, 278, 279, 285, 307, 310, 330, 331, 348, 1180], "lexicalgroup": [263, 269, 278, 279, 287, 290, 308, 318, 330, 331, 356, 364], "transform": [264, 265, 273, 279, 282, 283, 292, 309, 310, 324, 331, 341, 346, 369, 993, 1001, 1113], "appli": [264, 265, 273, 279, 282, 283, 291, 292, 309, 310, 311, 321, 324, 331, 341, 346, 349, 367, 369, 389, 437, 817, 882, 895, 941, 953, 965, 993, 1001, 1106, 1115, 1118, 1127, 1128, 1137, 1174, 1180, 1192], "activ": [264, 265, 279, 309, 310, 331, 839, 845, 875, 882, 907, 919, 1115, 1118, 1129, 1174], "transformationtyp": [264, 279, 292, 309, 331, 369, 1001], "paramet": [264, 279, 283, 309, 331, 346, 1046, 1058, 1064, 1067, 1070, 1080, 1083, 1094, 1097, 1119, 1128, 1142, 1144, 1145, 1146, 1162, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1193], "fashion": [265, 279, 310, 331, 1106], "element_term": [269, 279, 318, 331], "synonym": [269, 273, 279, 311, 318, 322, 324, 331, 338, 339, 354, 355, 357, 365, 366, 373, 394, 406, 411, 413, 420, 437, 438, 440, 443, 450, 465, 472, 473, 475, 476, 480, 485, 488, 507, 509, 510, 511, 512, 521, 527, 530, 535, 540, 541, 545, 550, 584, 598, 600, 601, 606, 613, 694, 842, 873, 882, 911, 912, 989, 1000, 1001, 1103, 1106, 1109, 1111, 1127, 1137, 1145, 1166, 1176, 1180, 1192], "stem": [273, 324, 993, 1119, 1145], "wo": [273, 324, 993], "lemmat": [273, 324, 993], "contextu": [273, 324, 993, 1107, 1108], "reduct": [273, 324, 993, 1178], "its": [273, 324, 503, 939, 955, 956, 993, 1107, 1109, 1114, 1115, 1119, 1123, 1137, 1182], "wordordernorm": [273, 324, 993], "reorder": [273, 324, 993], "deplur": [273, 324, 993], "plural": [273, 324, 993], "singular": [273, 324, 993], "casenorm": [273, 324, 993], "lowercas": [273, 324, 993], "whitespacenorm": [273, 324, 993], "condens": [273, 324, 993], "white": [273, 324, 993], "termexpanson": [273, 324, 993], "fa": [282, 291, 341, 367], "transf": [283, 292, 346, 369], "mappingrul": [294, 295, 307, 308, 309, 310, 312, 316, 317, 318, 321, 322, 327, 328, 329, 330, 331, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371], "precondit": [311, 327, 331, 337, 342, 343, 344, 349, 353, 360, 361, 363, 368, 503], "postcondit": [311, 327, 331, 344, 350, 352, 363, 371, 503, 526], "onewai": [311, 331], "switch": [311, 331, 344, 1129], "invert": [311, 316, 331, 344, 352], "criteria": [311, 331, 350, 1173], "fire": [311, 331, 350], "condit": [311, 331, 349, 350, 1166, 1171], "mappingrulecollect": [311, 331, 340, 358, 1180], "ifabs": [311, 344], "minimum_confid": [312, 331], "tree_root": 312, "predicate_id": [316, 331, 988, 1001, 1040, 1067, 1114, 1129], "increas": [316, 331, 371, 1107, 1117], "neg": [316, 331, 371, 780, 781, 1172], "decreas": [316, 331, 371], "see_also": [316, 371, 388, 393, 396, 410, 412, 434, 436, 460, 476, 480, 488, 495, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596], "en": [316, 371, 1107, 1116, 1123, 1166, 1192], "wikipedia": [316, 371, 1099, 1118, 1126, 1129, 1171], "wiki": [316, 371, 477, 478], "logit": [316, 371], "upload": [316, 371, 477, 478, 1119, 1145], "wikimedia": [316, 371], "57": [316, 371], "pattern": [317, 331, 337, 342, 343, 353, 360, 361, 368, 476, 503, 509, 526, 532, 543, 1061, 1110, 1119, 1123, 1127, 1129, 1132, 1136, 1141, 1143, 1163, 1165], "subject_source_one_of": [317, 331], "object_source_one_of": [317, 331], "mapping_source_one_of": [317, 331], "subject_match_field_one_of": [317, 331], "object_match_field_one_of": [317, 331], "transformations_included_in": [317, 331], "predicate_id_one_of": [317, 331], "the_rul": [321, 331], "reg": [321, 331, 338, 339, 357], "ex": [321, 331, 338, 339, 357], "match_scop": [321, 331], "scope": [321, 331, 339, 406, 413, 437, 507, 717, 735, 842, 882, 912, 1102, 1115, 1166], "qualifi": [321, 322, 331], "app": [327, 344, 349, 350, 363], "mapping_rules_datamodel": 335, "domainrangeaxiom": [372, 384, 388, 394, 403, 419, 429, 437, 443, 448, 451, 457], "equivalentnodesset": [372, 388, 394, 437, 443, 445, 458], "logicaldefinitionaxiom": [372, 386, 388, 394, 425, 434, 437, 443, 448, 460, 1172], "disjointclassexpressionsaxiom": [372, 386, 394, 422, 423, 437, 443, 470, 471, 1172], "propertychainaxiom": [372, 382, 388, 394, 421, 437, 443, 451, 530, 545, 613, 628], "geneontologi": [372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 1110, 1178, 1192], "alias": [372, 373, 380, 382, 384, 385, 388, 389, 396, 403, 410, 411, 412, 417, 476, 480, 503, 509, 512, 521, 530, 535, 540, 545, 989, 1000, 1001, 1104, 1109, 1111, 1127, 1166, 1171, 1176, 1192], "graphdocu": [372, 373, 380, 381, 382, 384, 385, 388, 393, 394, 396, 402, 403, 405, 411, 417, 435, 437, 443, 448, 453, 1144, 1145, 1146, 1154], "pred": [373, 380, 384, 405, 406, 411, 412, 417, 437, 1104, 1107, 1165], "val": [373, 380, 405, 411, 417, 437, 1107], "xrefstr": [373, 380, 405, 411, 417, 437, 475], "valtyp": [373, 380, 405, 411, 417, 437], "lang": [373, 380, 405, 411, 417, 437, 1166], "synonympropertyvalu": [373, 380, 384, 394, 405, 412, 417, 437, 438, 440, 443, 450, 465, 467, 472, 473, 475, 1172], "synonymtypedefinit": [373, 380, 384, 388, 396, 405, 410, 411, 417, 436, 437, 441, 450], "websit": [373, 380, 394, 405, 411, 417, 418, 475, 1101], "weak": [373, 394, 405, 411, 417, 475, 1108], "seealso": [373, 394, 405, 411, 417, 475, 476, 480, 485, 488, 508, 509, 512, 521, 530, 535, 540, 541, 542, 545, 613, 1166], "agent": [380, 480, 484, 488, 506, 509, 510, 511, 512, 521, 526, 527, 530, 532, 533, 535, 540, 541, 542, 545, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668, 816, 828, 835, 839, 840, 842, 845, 881, 882, 885, 919, 1058, 1067, 1080], "link": [380, 1035, 1065, 1067, 1068, 1069, 1072, 1073, 1076, 1077, 1084, 1085, 1086, 1092, 1093, 1096, 1106, 1110, 1114, 1118, 1131, 1156], "plai": [380, 1129], "mutual": [381, 385, 422, 423, 437, 443, 445, 458, 470, 471, 1129], "classid": [381, 437, 471], "classexpress": [381, 386, 437, 471, 483, 488, 497, 530, 536, 537, 541, 545, 556, 561, 580, 585, 613, 615, 630, 643, 645, 661, 670], "existentialrestrictionexpress": [381, 393, 422, 433, 437, 455, 460, 471], "unionequivalentto": [381, 437], "disjointunion": [381, 437, 470, 1173], "unionequivalenttoexpress": [381, 386, 437], "ot": [381, 437, 471], "predicateid": [382, 403, 437], "domainclassid": [382, 437], "rangeclassid": [382, 437], "allvaluesfromedg": [382, 384, 388, 437], "subpropertyof": [384, 388, 431, 437], "equivalentto": [384, 437], "obj": [384, 437], "head": [384, 462], "tail": [384, 447, 1140], "cliqu": [385, 388, 432, 437, 443, 445, 458, 1172], "equivalentclass": [385, 393, 488, 489, 537, 613, 628, 630, 1113, 1114, 1129, 1167, 1173], "representativenodeid": [385, 437], "cliq": [385, 437], "nodeid": [385, 437], "fstring": [386, 393], "objectsomevaluesfrom": [386, 1166, 1175], "oboidentifierstr": [388, 396, 410, 412, 436, 437], "lbl": [388, 396, 410, 412, 437], "subsetdefinit": [388, 396, 412, 436, 437, 441], "ter": [388, 437], "owlcollab": [388, 396, 400, 410, 412, 413, 418, 436, 1106], "oboformat": [388, 396, 400, 410, 412, 413, 418, 436, 1106], "legaci": [388, 396, 410, 412, 418, 441], "0008150": [388, 389, 453, 1166], "go_0008150": [388, 389, 453], "objectpropertyassert": [388, 431, 1173], "frequent": [389, 1106, 1108], "differenti": [393, 437, 460, 1113], "objectintersectionof": 393, "89": [393, 434, 460], "somevaluesfrom": [393, 460, 537, 613, 628, 1102, 1108, 1166], "affect": [394, 437], "belong": [394, 437, 464, 476, 480, 488, 502, 509, 512, 521, 530, 535, 540, 541, 545, 612, 613, 1119, 1166], "definitionpropertyvalu": [394, 405, 426, 437, 440, 443, 450, 472, 473, 475], "xrefpropertyvalu": [394, 405, 437, 440, 443, 450, 472, 473, 475], "basicpropertyvalu": [394, 405, 437, 440, 443, 450, 472, 473, 475], "predef": [394, 437], "insubset": [394, 464, 476, 480, 488, 502, 509, 512, 521, 530, 535, 540, 541, 545, 612], "versioninfo": [394, 474, 533, 613, 674, 835, 918], "histor": [394, 424, 1107, 1108, 1109, 1114], "carri": [394, 424], "awar": [394, 424], "0000115": [394, 426, 476, 480, 488, 505, 509, 512, 521, 530, 535, 540, 541, 545, 575, 1115], "predefin": [394, 420], "propertytyp": [396, 404, 437], "propertytypeenum": [396, 437, 456], "namedindividu": [397, 476, 480, 484, 488, 506, 509, 510, 511, 512, 526, 527, 530, 532, 533, 535, 540, 541, 542, 545, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 663, 664, 665, 666, 668, 824, 827, 838, 842, 892, 1166], "prefixedid": 400, "unprefixedid": 400, "info": [401, 407, 824, 827, 835, 838, 882, 918, 988, 1001, 1035, 1040, 1047, 1051, 1058, 1060, 1067, 1080, 1100, 1107, 1110, 1124, 1129, 1135, 1137], "hasexactsynonym": [401, 406, 476, 480, 485, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 600, 1104, 1107, 1115], "hasnarrowsynonym": [401, 406, 476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 601, 1107], "hasbroadsynonym": [401, 406, 476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 598, 1107], "hasrelatedsynonym": [401, 406, 476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 606, 1104, 1107], "go_": [402, 437, 1166], "strongli": [402, 452], "r1": [403, 437], "rn": [403, 437], "chainpredicateid": [403, 437], "claus": [403, 421, 437], "prope": [403, 437], "broader": [406, 1106, 1129], "bu": 406, "subsetproperti": [410, 1166], "synonymtyp": [411, 412, 437, 438, 1107], "synonymtypeidentifierstr": [411, 437, 465], "isexact": [411, 437], "scopeenum": [411, 437], "commonli": [413, 1106, 1192], "plain": [413, 698, 1107], "pmid": [417, 1108, 1129], "12345": 417, "registri": [418, 1182], "bioregistri": 418, "usag": [419, 429, 437, 443, 451, 457, 1106, 1107, 1109, 1118, 1128, 1129, 1164, 1174], "propert": [419, 429, 443, 451, 457], "principl": [437, 448, 1035, 1060, 1093, 1117], "attach": [437, 448, 694, 1166, 1174], "metedata": [437, 448], "Not": [437, 448, 1117, 1140, 1157], "obographs_datamodel": 437, "expr": 437, "nodetypeenum": 437, "objec": [440, 443, 450, 472, 473, 475], "benchmark": 449, "scopesenum": 461, "namedobject": [476, 480, 485, 488, 509, 512, 521, 530, 533, 535, 540, 541, 542, 545, 552, 608, 613, 668], "hassynonym": [476, 480, 481, 485, 488, 509, 510, 511, 512, 521, 522, 527, 530, 535, 540, 541, 545, 550, 584, 598, 600, 601, 606, 613, 662], "haslifecycl": [476, 480, 481, 484, 488, 509, 512, 521, 522, 526, 530, 532, 535, 540, 541, 542, 545, 563, 578, 591, 592, 593, 596, 603, 613, 658, 665], "hasproven": [476, 480, 481, 485, 488, 509, 512, 521, 522, 530, 533, 535, 540, 541, 545, 564, 566, 567, 568, 569, 572, 576, 583, 610, 613, 617, 646, 664, 666], "hasmap": [476, 480, 481, 485, 488, 509, 512, 521, 522, 530, 535, 540, 541, 542, 545, 555, 559, 571, 588, 613, 635], "hascategori": [476, 480, 481, 488, 509, 512, 521, 522, 530, 535, 540, 541, 542, 545, 557, 562, 602, 612, 613], "hasuserinform": [476, 480, 481, 485, 488, 509, 512, 521, 522, 530, 533, 535, 540, 541, 542, 545, 560, 570, 577, 589, 599, 609, 613, 647, 655], "hasminimalmetadata": [476, 480, 481, 485, 488, 509, 512, 521, 522, 530, 535, 540, 541, 545, 575, 613, 625], "has_exact_synonym": [476, 480, 485, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 613, 662], "labeltyp": [476, 480, 485, 488, 505, 507, 509, 512, 521, 530, 535, 540, 541, 545, 598, 600, 601, 606, 613, 625, 662], "has_narrow_synonym": [476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 613, 662], "has_broad_synonym": [476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 613, 662], "has_related_synonym": [476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 613], "alternative_term": [476, 477, 480, 488, 507, 509, 510, 511, 512, 521, 527, 530, 535, 540, 541, 545, 584, 598, 600, 601, 613, 662], "isa_alternative_term": [476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 550, 613], "iedb_alternative_term": [476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 550, 613], "editor_preferred_term": [476, 480, 488, 507, 509, 512, 521, 528, 530, 535, 540, 541, 545, 550, 613], "obo_foundry_unique_label": [476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 550, 613], "has_obsolescence_reason": [476, 480, 488, 503, 509, 512, 521, 530, 532, 535, 540, 541, 545, 613, 641], "term_replaced_bi": [476, 477, 480, 484, 488, 499, 503, 509, 512, 521, 528, 530, 532, 535, 540, 541, 545, 613, 641], "has_alternative_id": [476, 480, 488, 499, 503, 509, 512, 521, 526, 530, 535, 540, 541, 545, 613, 641], "excluded_from_qc_check": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 542, 545, 590, 613], "excluded_subclassof": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 590, 613], "excluded_synonym": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 590, 613], "should_conform_to": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 542, 545, 590, 613], "created_bi": [476, 480, 485, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650], "creator": [476, 480, 485, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 567, 613, 650, 1174], "came": [476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 566, 613], "editor_not": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650], "narrativetext": [476, 480, 488, 505, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 575, 583, 613, 667], "term_editor": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650], "definition_sourc": [476, 480, 488, 506, 509, 512, 518, 521, 528, 530, 535, 540, 541, 545, 613, 650], "ontology_term_request": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650], "imported_from": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650], "term_tracker_item": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650], "broadmatch": [476, 480, 488, 504, 509, 512, 521, 530, 535, 540, 541, 542, 545, 613, 629], "closematch": [476, 480, 488, 504, 509, 512, 521, 530, 535, 540, 541, 542, 545, 613, 629, 694, 1129], "narrowmatch": [476, 480, 488, 504, 509, 512, 521, 530, 535, 540, 541, 542, 545, 613, 629], "database_cross_refer": [476, 480, 485, 488, 504, 509, 512, 521, 530, 535, 540, 541, 545, 613, 629], "curieliter": [476, 480, 485, 488, 504, 509, 512, 521, 530, 535, 540, 541, 545, 571, 613], "has_obo_namespac": [476, 480, 488, 502, 509, 512, 521, 530, 535, 540, 541, 545, 613], "in_subset": [476, 480, 485, 488, 502, 503, 505, 506, 507, 508, 509, 512, 521, 530, 535, 540, 541, 545, 550, 558, 563, 575, 576, 578, 584, 589, 596, 613, 625, 665], "conformsto": [476, 480, 488, 502, 509, 512, 521, 530, 535, 540, 541, 542, 545, 613, 614], "example_of_usag": [476, 477, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 613, 614], "curator_not": [476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 613, 650], "has_curation_statu": [476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 613, 614], "depicted_bi": [476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 613, 614], "page": [476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 613, 614, 1106, 1109], "transitiveproperti": [476, 484, 488, 510, 511, 512, 521, 526, 527, 530, 532, 533, 535, 540, 542, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 580, 582, 583, 584, 586, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 616, 617, 620, 621, 623, 624, 625, 635, 646, 647, 649, 652, 655, 657, 658, 663, 664, 665, 666, 668, 1166], "homosapien": [476, 484, 488, 510, 511, 512, 521, 526, 527, 532, 533, 540, 542, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668], "orcid": [476, 509, 1107], "omoschema": [476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 495, 497, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 526, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 554, 565, 579, 590, 591, 592, 593, 605, 608, 614, 628, 629, 630, 638, 641, 648, 650, 653, 656, 658, 674], "id_prefix": [476, 509, 936, 940, 1166], "disjoint_with": [476, 480, 485, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 600], "allotrop": [476, 477, 478, 480, 485, 488, 503, 505, 507, 508, 509, 512, 521, 530, 535, 540, 541, 545, 550, 558, 575, 578, 589, 625, 665], "permit": [476, 480, 485, 488, 503, 506, 507, 508, 509, 512, 521, 530, 535, 540, 541, 545, 550, 558, 563, 576, 578, 584, 589, 596, 665], "profil": [476, 480, 485, 488, 503, 505, 506, 507, 508, 509, 512, 521, 530, 535, 540, 541, 545, 550, 558, 563, 575, 576, 578, 584, 589, 596, 625, 665, 842, 872, 882, 1110, 1116, 1118, 1178], "0001847": [476, 480, 488, 507, 509, 511, 512, 521, 530, 535, 540, 541, 545], "9991118": [476, 480, 488, 507, 509, 510, 512, 521, 530, 535, 540, 541, 545], "0000111": [476, 480, 488, 507, 509, 512, 521, 530, 535, 540, 541, 545, 584], "uniquekei": [476, 480, 488, 507, 509, 512, 521, 527, 530, 535, 540, 541, 545], "0000589": [476, 480, 488, 507, 509, 512, 521, 527, 530, 535, 540, 541, 545], "obsoletion_related_properti": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 563, 578, 596, 603, 613, 665], "obsoleteaspect": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 563, 578, 603, 613, 665], "0000231": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 603, 1115], "isreplacedbi": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 665], "0100001": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 665, 1115, 1166], "owlc": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596], "owlapi": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 1173], "317": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596], "notobsoleteaspect": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 613], "hasalternativeid": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 596, 1115], "excluded_axiom": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 591, 592, 593, 613, 658], "hiddensynonym": [476, 480, 488, 503, 509, 512, 521, 530, 535, 540, 541, 545, 593], "2022": [476, 480, 485, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 567, 568, 1151], "04": [476, 480, 485, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 567, 568], "12": [476, 480, 485, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 567, 568], "deprecated_element_has_exact_replac": [476, 480, 485, 488, 506, 509, 512, 518, 519, 520, 521, 530, 535, 540, 541, 545, 567, 568, 624, 640], "provenance_properti": [476, 480, 485, 488, 506, 508, 509, 512, 521, 530, 533, 535, 540, 541, 545, 564, 566, 567, 568, 569, 570, 572, 573, 576, 583, 597, 610, 613, 646, 660, 664, 666], "wasattributedto": [476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 564, 569], "structured_pattern": [476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 564, 569], "orcid_regex": [476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 564, 569], "interpol": [476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 564, 569], "partial_match": [476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 564, 569], "pav": [476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 566, 572, 617, 673], "createdon": [476, 480, 488, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 566], "authoredon": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 572], "importedfrom": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 617], "0000116": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 583], "narr": [476, 480, 488, 505, 506, 509, 512, 521, 530, 533, 535, 540, 541, 545, 575, 583, 667], "0000117": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 664], "0000119": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 576], "0000234": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 646], "0000412": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 610], "0000233": [476, 480, 488, 506, 509, 512, 521, 530, 535, 540, 541, 545, 666], "informative_properti": [476, 480, 485, 488, 502, 508, 509, 512, 521, 530, 533, 535, 540, 541, 545, 557, 558, 560, 562, 574, 577, 589, 599, 604, 609, 613, 626, 627, 647], "sdo": [476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 609], "0000112": [476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 589], "0000232": [476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 570], "0000114": [476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 599], "foaf": [476, 480, 488, 508, 509, 512, 521, 530, 535, 540, 541, 545, 577, 647, 1116, 1192], "guidelin": [476, 485, 505, 509, 512, 521, 541, 625, 1100, 1127, 1141], "core_properti": [476, 480, 485, 488, 505, 509, 512, 521, 522, 530, 533, 535, 540, 541, 545, 575, 608, 613, 625], "aristotelian": [476, 505, 509, 512, 521, 541, 575, 1113], "logical_pred": [476, 480, 488, 489, 509, 512, 521, 522, 530, 533, 535, 536, 537, 540, 541, 542, 545, 549, 556, 561, 580, 581, 582, 585, 586, 595, 613, 615, 616, 631, 632, 633, 634, 643, 644, 645, 649, 651, 652, 654, 659, 661, 668, 670], "designates_typ": [476, 480, 488, 509, 512, 521, 522, 530, 533, 535, 540, 541, 542, 545, 668], "gitlab": [477, 478], "devop": [477, 478], "allotrope_framework_term_curation_style_guid": [477, 478], "pdf": [477, 478, 495], "changenot": [477, 613, 614], "reifi": [479, 613, 638, 648], "relational_rol": [479, 485, 551, 552, 553, 638, 648], "represents_relationship": [479, 485], "is_class_level": [480, 530, 535, 540, 545, 613], "is_metadata_tag": [480, 530, 535, 540, 545, 613], "annotatedproperti": [480, 485, 613, 653], "has_synonym_typ": [480, 485, 613], "root": [482, 613, 1106, 1129, 1166, 1170, 1172, 1179], "anonymousclassexpress": [482, 537, 613], "anonym": [483, 537, 613, 842, 848, 849, 882, 883, 1113, 1166], "annotatedtarget": [484, 485, 613, 653], "annotatedsourc": [485, 522, 613, 653], "is_inf": [485, 613], "has_axiom_label": [485, 542, 613, 650], "is_a_defining_property_chain_axiom": [485, 613], "is_a_defining_property_chain_axiom_where_second_argument_is_reflex": [485, 613], "date_retriev": [485, 613, 650], "external_ontologi": [485, 613], "reification_pred": [485, 551, 552, 553, 613], "dc": [485, 533, 660], "0010000": [485, 597], "0002581": [485, 618], "0002582": [485, 619], "hassynonymtyp": [485, 607], "never_in_taxon": [488, 613], "disconnected_from": [488, 613, 656], "has_rank": [488, 542, 613], "disjointwith": [488, 489, 530, 536, 537, 545, 613, 628], "intersectionof": [488, 489, 537, 613, 628], "complementof": [488, 489, 537, 613, 628], "oneof": [488, 489, 537, 613, 628], "unionof": [488, 489, 537, 613, 628], "has_ontology_root_term": [488, 533, 613, 614], "0002161": [488, 636, 939, 955], "shortcut_annotation_properti": [488, 579, 613], "taxslim": [488, 605], "propertyexpress": [488, 489, 497, 530, 535, 537, 545, 580, 613, 644], "match_aspect": [488, 489, 530, 537, 545, 555, 559, 571, 585, 586, 588, 613, 628, 629, 635, 654], "definitionconstraint": 495, "dcc": 495, "problem": [495, 1040, 1067, 1181, 1192], "definitionpres": 495, "s0": 495, "s1": 495, "harmon": 495, "genusdifferentiaform": 495, "s3": [495, 1124, 1135, 1182], "singlegenu": 495, "circular": [495, 1113], "s7": 495, "matchtextandlog": 495, "s11": 495, "305": 495, "philpap": 495, "archiv": 495, "sepgfw": 495, "annotationpropertymixin": [502, 503, 504, 505, 506, 507, 508, 613], "namedth": [502, 503, 504, 505, 506, 507, 508, 510, 511, 527, 541, 550, 555, 557, 559, 560, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 575, 576, 577, 578, 583, 584, 588, 589, 591, 592, 593, 596, 598, 599, 600, 601, 602, 603, 606, 608, 609, 610, 612, 613, 617, 625, 635, 646, 647, 655, 658, 664, 665, 666, 668], "slot_condit": [503, 526, 532], "any_of": [503, 677, 717], "none_of": [503, 526, 677, 717], "absolut": [505, 575, 613, 625], "whose": [507, 510, 511, 527, 550, 584, 598, 600, 601, 606, 613, 842, 882, 916, 1106, 1107, 1117, 1137], "four": 507, "subproperti": 507, "0000101": 512, "tidi": 517, "ncit": [518, 519, 520, 1107, 1166], "p378": 518, "p384": 519, "p383": 520, "temporal_interpret": [521, 530, 545, 613], "auto": [526, 532, 613, 1166, 1168, 1169, 1171, 1175, 1176, 1178, 1181], "classifi": [526, 532, 613, 1117], "classification_rul": [526, 532], "jsonobj": [526, 1176, 1180, 1193], "is_cycl": [530, 545, 613], "is_transit": [530, 545, 613, 1117], "equivalentproperti": [530, 535, 545, 613, 628, 630], "inverseof": [530, 535, 545, 613, 628], "0001900": [530, 545, 663], "licens": [533, 542, 613, 614], "versioniri": [533, 613, 674, 835, 917], "0000700": [533, 604], "version_properti": [533, 613, 672, 673], "onproperti": [536, 537, 613, 628], "allvaluesfrom": [537, 613, 628], "proteg": 574, "defaultlanguag": [613, 614], "distinctmemb": [613, 628], "hasvalu": [613, 628], "maxqualifiedcardin": [613, 628], "mincardin": [613, 628], "minqualifiedcardin": [613, 628], "ncit_definition_sourc": 613, "ncit_term_sourc": 613, "ncit_term_typ": 613, "oboinowl_id": 613, "oboinowl_ontologi": 613, "lifecycl": [613, 641, 1115], "onclass": [613, 628], "qualifiedcardin": [613, 628], "samea": [613, 628, 630, 1114], "definitionconstraintcompon": 613, "irityp": 613, "tidystr": 613, "urlliter": 613, "allotropepermittedprofil": 613, "allotroperequiredprofil": 613, "gopermittedprofil": 613, "gorecommendedprofil": 613, "gorequiredprofil": 613, "obipermittedprofil": 613, "obirequiredprofil": 613, "dce": 626, "OR": [676, 1102, 1171, 1182, 1193], "xor": 676, "ontosearch": [677, 692, 693, 695, 696, 704, 705, 706, 707, 708, 709, 710, 711, 716, 718, 719, 720, 722, 723, 724, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740], "all_of": [677, 717], "path_to": [677, 717], "searchbaseconfigur": [677, 692, 696, 706, 707, 708, 709, 710, 716, 717, 718, 719, 720, 722, 731, 736, 737, 739], "descendant_of": 685, "ancestor_of": 685, "proper_descendant_of": 685, "proper_ancestor_of": 685, "parent_of": 685, "child_of": 685, "queri": [692, 693, 711, 717, 736, 737, 740, 1103, 1104, 1106, 1108, 1111, 1114, 1115, 1116, 1117, 1123, 1124, 1128, 1130, 1131, 1133, 1135, 1137, 1140, 1148, 1162, 1163, 1165, 1166, 1170, 1172, 1176, 1181, 1182, 1192], "graphfunct": [692, 717, 740], "graph_pred": [692, 717], "search_term": [692, 693, 717, 1176], "searchterm": [693, 717, 737], "searchtermsyntax": [693, 717, 739, 1148, 1176, 1193], "searchproperti": [693, 717, 731, 1176], "batch": [693, 717, 722, 1141, 1163], "cursor": [693, 696, 717], "exce": [693, 717], "iterat": [693, 717], "is_parti": [693, 717, 718, 1176], "is_complet": [693, 717], "include_obsoletes_in_result": [693, 717], "is_fuzzi": [693, 717], "force_case_insensit": [693, 717], "insensit": [693, 710, 717], "complexqueri": [693, 704, 705, 706, 717, 724, 730], "pathexpress": [693, 711, 717, 736, 740], "searchresultset": [693, 695, 708, 709, 717, 733, 734], "searchconfigur": [693, 1148, 1170, 1176, 1193], "replacement_identifi": 694, "mapped_identifi": [694, 1176], "informative_text": 694, "low": [695, 717, 732, 1141], "object_sourc": [695, 717, 765, 780, 842, 882, 887, 889, 988, 1001, 1114, 1129, 1171], "object_source_vers": [695, 717], "object_match_field": [695, 717], "matches_full_search_term": [695, 717], "snippet": [695, 717], "searchresult": [696, 717, 723, 725, 726, 727, 728, 729, 732, 734, 738], "result_count": [696, 717], "plaintext": [698, 1193], "regular_express": [698, 1148, 1176, 1193], "regular": [698, 1061, 1129, 1176], "ecmascript": 698, "percent": 698, "lucen": 698, "solr": [698, 1137], "starts_with": 698, "searc": 698, "operat": [707, 709, 710, 716, 718, 719, 720, 722, 731, 737, 739], "search_datamodel": [712, 713, 714, 715, 721], "layer": [717, 735, 1109, 1135, 1162], "servic": [717, 735, 1102, 1106, 1151, 1152, 1158, 1164, 1167, 1182], "cover": [717, 735], "googl": [717, 735, 1123], "although": [717, 735, 1106, 1107, 1109, 1110, 1115, 1118, 1158], "could": [717, 735, 842, 882, 916, 1099, 1106, 1109, 1123, 1141], "booleanoper": 717, "orm": [742, 1128, 1152], "sim": [743, 761, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 785, 786, 787, 788, 789, 790, 791, 792, 794, 797, 798, 799, 800, 801, 802, 804, 807, 808, 809, 811, 1165], "match_sourc": [743, 780], "match_source_label": [743, 780], "match_target": [743, 780], "match_target_label": [743, 780], "match_subsum": [743, 780], "match_subsumer_label": [743, 780], "termpairwisesimilar": [743, 761, 771, 772, 773, 774, 777, 778, 780, 783, 793, 794, 795, 796, 799, 801, 803, 804, 805, 806, 1177], "termsetpairwisesimilar": [743, 761, 764, 775, 776, 780, 791, 792, 797, 802, 807, 1118, 1165], "subject_best_match": [743, 766, 780], "object_best_match": [743, 766, 780], "subject_termset": [764, 766, 780], "object_termset": [764, 766, 780], "pairwisesimilar": [765, 766, 780], "subject_id": [765, 780, 1040, 1067, 1099, 1114, 1129, 1171], "subject_sourc": [765, 780, 978, 988, 1001, 1114, 1129], "ancestor_id": [765, 780], "ancestor_label": [765, 780], "ancestor_sourc": [765, 780], "object_information_cont": [765, 780, 781], "negativelogvalu": [765, 772, 780, 781, 794, 804], "subject_information_cont": [765, 780, 781], "ancestor_information_cont": [765, 780, 781], "jaccard_similar": [765, 780, 799, 800], "zerotoon": [765, 778, 780, 783, 798, 808, 809], "intersect": [765, 780, 783], "cosine_similar": [765, 780, 800], "dot": [765, 777, 780], "embed": [765, 777, 780, 1118], "dice_similar": [765, 780, 800], "nonnegativefloat": [765, 780, 799], "geometr": [765, 780, 799], "content": [765, 780, 799, 1106, 1131, 1163, 1166, 1169, 1177], "bestmatch": [765, 766, 780, 785, 786, 787, 788, 789, 790, 792, 800, 801, 802], "decid": [765, 771, 1117, 1165, 1181], "ancesto": [765, 771], "information_cont": [765, 772, 780, 794, 799, 800, 804], "sqrt": [765, 799], "terminfo": [766, 779, 780, 784, 797, 807], "average_scor": [766, 780], "best_scor": [766, 780], "intersection_count": [780, 800], "overlap_coeffici": [780, 800], "subsumed_by_scor": [780, 800], "subsumes_scor": [780, 800], "union_count": [780, 800], "itemcount": [780, 782, 811], "summarystatisticsreport": [813, 816, 828, 835, 839, 842, 846, 863, 881, 882, 897, 920], "groupedstatist": [813, 835, 839, 840, 842, 846, 863, 881, 882, 897, 901, 920, 1179], "ungroupedstatist": [813, 815, 817, 825, 828, 835, 839, 840, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 866, 868, 869, 870, 872, 873, 874, 876, 877, 881, 882, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 897, 898, 899, 901, 903, 905, 908, 909, 911, 912, 915, 916, 920, 1179], "summarystatisticscalculationact": [813, 828, 840, 842, 845, 875, 882, 907, 919, 920], "was_associated_with": [813, 839, 882], "acted_on_behalf_of": [813, 839, 882], "summary_statist": [813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 915, 916, 917, 918, 919, 920], "contributorrol": [813, 828, 835, 840, 842, 881, 882], "filtered_count": [815, 825, 882], "change_summari": [815, 842, 882], "facetedcount": [815, 817, 842, 856, 857, 874, 876, 879, 880, 882, 887, 888, 889, 906, 912], "contributor_id": [817, 882], "contributor_nam": [817, 882], "normalization_com": [817, 882], "role_count": [817, 825, 882], "contributor_summari": [817, 842, 882], "summarystatisticcollect": [824, 827], "class_count": [824, 827, 838, 842, 867, 882], "anonymous_class_expression_count": [824, 827, 838, 842, 867, 882], "unsatisfiable_class_count": [824, 827, 838, 842, 867, 882], "class_count_excluding_deprec": [824, 827, 838], "class_count_with_definit": [824, 827, 838], "property_count": [824, 827, 838, 842, 867, 882], "object_property_count": [824, 827, 838, 842, 867, 882], "datatype_property_count": [824, 827, 838, 842, 867, 882], "annotation_property_count": [824, 827, 838, 842, 867, 882], "individual_count": [824, 827, 838, 842, 849, 867, 882], "named_individual_count": [824, 827, 838, 842, 849, 867, 882], "anonymous_individual_count": [824, 827, 838, 842, 867, 882], "untyped_entity_count": [824, 827, 838, 842, 867, 882], "description_logic_profil": [824, 827, 838, 842, 882], "owl_axiom_count": [824, 827, 838, 842, 867, 882], "rdf_triple_count": [824, 827, 838, 842, 867, 882], "subclass_of_axiom_count": [824, 827, 838, 842, 867, 882], "equivalentclasses_axiom_count": [824, 827, 838], "distinct_synonym_count": [824, 827, 838, 842, 867, 882], "synonym_statement_count": [824, 827, 838, 842, 867, 882], "mapping_count": [824, 827, 838, 842, 867, 882], "ontology_count": [824, 827, 838, 842, 867, 882], "globalstatist": [824, 838], "by_categori": [824, 827], "by_taxon": [824, 827], "by_ontologi": [824, 827], "by_subset": [824, 827], "count_statist": [824, 827, 838, 842, 847, 848, 849, 855, 858, 859, 860, 861, 868, 869, 870, 873, 877, 878, 882, 883, 886, 890, 892, 893, 894, 896, 898, 899, 903, 905, 908, 909, 911, 915, 916], "class_statistic_group": [824, 827, 838, 842, 848, 855, 860, 861, 869, 882, 890, 893, 915], "property_statistic_group": [824, 827, 838, 842, 847, 868, 870, 882, 894, 896, 903], "individual_statistic_group": [824, 827, 838, 842, 849, 882, 883, 892], "count_of": [824, 827, 838, 862, 904], "owl_statistic_group": [824, 827, 838, 842, 872, 877, 882, 899, 905, 908], "metadata_statistic_group": [824, 827, 838, 842, 856, 857, 873, 874, 876, 882, 886, 887, 888, 889, 911, 912], "edge_count_by_pred": [825, 842, 882], "entailed_edge_count_by_pred": [825, 842, 882], "synonym_statement_count_by_pred": [825, 842, 882], "class_count_by_subset": [825, 842, 882], "class_count_by_categori": [825, 842, 882], "mapping_statement_count_by_pred": [825, 842, 882], "mapping_statement_count_by_object_sourc": [825, 842, 882, 889], "mapping_statement_count_subject_by_object_sourc": [825, 842, 882], "contributorstatist": [825, 842, 864, 865, 866, 882, 895, 906], "changetypestatist": [825, 842, 854, 879, 880, 882], "facetstatist": [827, 838, 850, 851, 852, 853], "mf": [827, 828, 901], "bp": [827, 828, 901], "cc": [827, 828, 901], "sens": [827, 1106, 1109, 1113, 1140], "metagenomics_slim": 827, "compared_with": [828, 835, 840, 842, 882], "was_generated_bi": [828, 839, 840, 842, 882], "version_info": [835, 882], "started_at_tim": [839, 882], "ended_at_tim": [839, 882], "behalf": [839, 845, 882], "startedattim": [839, 907], "endedattim": [839, 875], "wasassociatedwith": [839, 919], "actedonbehalfof": [839, 845], "unsatisfi": [842, 882, 915, 939, 953, 1126, 1181], "deprecated_class_count": [842, 867, 882], "non_deprecated_class_count": [842, 867, 882], "merged_class_count": [842, 867, 882], "class_count_with_text_definit": [842, 867, 882], "class_count_without_text_definit": [842, 867, 882], "deprecated_object_property_count": [842, 867, 882], "non_deprecated_object_property_count": [842, 867, 882], "subset_count": [842, 867, 882], "slim": [842, 857, 882, 909, 1166], "equivalent_classes_axiom_count": [842, 867, 882], "exter": [842, 882], "notdeprec": [842, 893, 894], "hastextdefinit": [842, 860], "nothastextdefinit": [842, 861], "anonymousindividu": [842, 849], "el": [842, 872], "dl": [842, 872], "entailededg": [842, 876, 1152, 1162], "objectsourc": [842, 887, 889], "reportby_categori": 850, "reportby_ontologi": 851, "reportby_subset": 852, "reportby_taxon": 853, "reportclass_count_excluding_deprec": 858, "reportclass_count_with_definit": 859, "reportequivalentclasses_axiom_count": 878, "taxon_constraint": [921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969], "excluderedund": 922, "includeredund": 922, "includeneverinifredundantwithonlyin": 922, "excludeneverinifredundantwithonlyin": 922, "tc": [936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 958, 960, 961, 962, 963, 964, 968, 969], "come": [939, 953, 1100, 1105, 1106, 1117, 1132, 1134, 1140], "lead": [939, 953, 968, 1117], "cont": [939, 953], "only_in": [939, 941, 953], "state": [939, 953, 955, 956, 1117, 1166, 1181], "never_in": [939, 941, 953, 957], "present_in": [939, 941, 953], "present_in_ancestor_of": [939, 941, 953], "via_term": [939, 941, 953, 958], "contradict": [939, 968], "conflat": [939, 956], "0002160": [939, 956, 1131, 1166], "0002175": [939, 959], "taxonom": [940, 952, 953, 954], "higher": [940, 952, 953, 954, 1129, 1162, 1192], "ncbitaxon_union": 940, "subjectterm": [941, 942, 950, 952, 953, 954, 955, 956, 959, 960, 965, 968, 969], "predicateterm": [941, 942, 952, 953, 954, 957, 958], "evolutionari": [941, 953], "nev": [941, 953], "redundant_with_only_in": [941, 953], "redundant_with": [941, 953], "contradicted_bi": [941, 953], "conflict": [941, 949, 953], "taxo": [941, 953], "in_taxon": [941, 957], "configurationopt": 953, "ann": [978, 988, 989, 990, 991, 996, 997, 999, 1000, 1002, 1003, 1004, 1006, 1007, 1008, 1009, 1010, 1014, 1016, 1017, 1018, 1019, 1021, 1022, 1023, 1025], "subject_text_id": [978, 988, 991, 1001], "textualel": [978, 988, 999, 1001, 1014, 1016, 1022, 1023], "textannot": [978, 989, 990, 991, 996, 998, 1001, 1002, 1003, 1005, 1006, 1007, 1009, 1010, 1011, 1012, 1013, 1015, 1018, 1019, 1020, 1021, 1022, 1170, 1180], "bpa": [978, 988, 1011, 1012, 1018, 1019, 1021], "hasspan": [988, 991, 1001, 1018, 1019, 1020, 1021, 1022], "object_categori": [988, 1001], "match_str": [988, 1001, 1129], "is_longest_match": [988, 1001, 1129], "matches_whole_text": [988, 989, 1001, 1129], "match_typ": [988, 1001, 1129], "textannotationresultset": [988, 996, 1001], "annotatedclass": [988, 1011, 1012], "textannotationconfigur": [988, 997, 1000, 1001, 1004, 1007, 1008, 1017, 1025, 1180], "token_exclusion_list": [989, 1001], "include_alias": [989, 1001], "grounding_mod": 989, "source_text": [991, 1001], "parent_docu": [991, 1001], "upon": [1001, 1024, 1119, 1129, 1165], "tr": [1001, 1024, 1166], "validation_result": [1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1098], "vm": [1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1055, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1069, 1070, 1071, 1072, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1083, 1085, 1087, 1088, 1089, 1090, 1091, 1092, 1094, 1096, 1097], "namedresourc": [1028, 1043, 1066, 1067], "validationresult": [1028, 1035, 1040, 1043, 1047, 1050, 1055, 1059, 1067, 1068, 1069, 1073, 1076, 1077, 1081, 1084, 1085, 1086, 1093, 1181], "externalreferencevalidationresult": [1028, 1043, 1060, 1065, 1067, 1068, 1069, 1072, 1073, 1076, 1077, 1084, 1085, 1086, 1092, 1093, 1096], "time_check": [1035, 1067], "number_of_attempt": [1035, 1067], "http_response_cod": [1035, 1067], "constraintcompon": [1035, 1041, 1060, 1066, 1067, 1093], "sever": [1035, 1051, 1055, 1058, 1060, 1067, 1093, 1094, 1108, 1124], "severityopt": [1035, 1055, 1060, 1067, 1084], "object_str": [1035, 1060, 1067], "sourceconstraintcompon": [1035, 1060, 1093], "typeseveritykeyvalu": [1035, 1058, 1060, 1067, 1084, 1093, 1094], "resultsever": [1035, 1060, 1084], "severity_opt": [1035, 1051, 1055, 1060, 1084], "focusnod": [1035, 1060, 1086], "sourceshap": [1035, 1060, 1069], "related_map": [1035, 1060, 1077], "resultpath": [1035, 1060, 1077], "resultmessag": [1035, 1060, 1068], "mappingvalidationresult": [1035, 1047, 1050, 1060, 1062, 1063, 1067, 1068, 1074, 1075, 1078, 1079, 1087, 1088, 1090, 1091, 1181], "repairoper": [1035, 1040, 1048, 1050, 1060, 1067, 1068, 1071, 1081, 1089, 1181], "correct": [1040, 1062, 1063, 1067, 1068, 1074, 1075, 1078, 1079, 1087, 1088, 1090, 1091, 1100, 1115], "subject_info": [1040, 1067], "object_info": [1040, 1067], "suggested_pred": [1040, 1067], "suggested_modif": [1040, 1067], "repair": [1046, 1047, 1048, 1060, 1064, 1067, 1068, 1071, 1082, 1089, 1097, 1170, 1181], "validation_configur": [1046, 1058, 1067], "validationconfigur": [1046, 1055, 1067, 1070, 1080, 1083, 1094, 1097, 1181], "dry_run": [1046, 1067, 1181], "repairreport": [1047, 1049, 1067, 1082], "integr": [1047, 1106, 1129, 1148], "abl": [1047, 1107, 1109, 1118, 1176], "holder": [1049, 1067, 1082], "validationreport": [1049, 1060, 1067, 1082], "fatal": 1051, "violat": [1051, 1181], "type_severity_map": [1055, 1058, 1067], "conforms_to": 1055, "q4818718": 1055, "max_number_results_per_typ": [1058, 1067], "truncat": [1058, 1067, 1070, 1129], "schema_path": [1058, 1067], "prompt_info": [1058, 1067], "ai": [1058, 1067, 1080, 1106], "prompt": [1058, 1067, 1080], "repairconfigur": [1058, 1064, 1067, 1097, 1181], "aris": [1060, 1067, 1068, 1069, 1073, 1076, 1077, 1084, 1085, 1086, 1093], "datatypeconstraintcompon": [1061, 1124], "mincountconstraintcompon": [1061, 1124], "spe": 1061, "maxcountconstraintcompon": [1061, 1124], "deprecatedpropertycompon": [1061, 1124], "maxlengthconstraintcompon": 1061, "minlengthconstraintcompon": 1061, "patternconstraintcompon": 1061, "closedconstraintcompon": [1061, 1124], "ruleconstraintcompon": 1061, "validaton": 1067, "validationresulttyp": 1067, "parti": [1068, 1069, 1073, 1076, 1077, 1084, 1085, 1086, 1093], "focu": [1099, 1106, 1135, 1140], "code": [1099, 1101, 1102, 1106, 1116, 1119, 1123, 1126, 1128, 1131, 1133, 1137, 1140, 1141, 1143, 1145, 1152, 1166, 1170, 1182], "talk": [1099, 1102, 1130, 1172, 1180], "get_adapt": [1099, 1107, 1110, 1114, 1115, 1116, 1117, 1123, 1126, 1130, 1131, 1137, 1140, 1141, 1148, 1154, 1156, 1158, 1159, 1162, 1163, 1165, 1166, 1167, 1170, 1171, 1172, 1176, 1180, 1182], "0011103": 1099, "sympathet": 1099, "underli": [1099, 1115, 1117, 1135], "basic_ontology_imerfac": 1099, "doesn": [1099, 1109, 1110, 1113, 1117, 1118, 1129, 1158, 1192], "task": [1099, 1102, 1104, 1106, 1107, 1109, 1123], "often": [1099, 1102, 1106, 1107, 1109, 1113], "coupl": 1099, "notat": 1099, "sssom_map": [1099, 1114, 1170, 1171], "0005886": [1099, 1171], "cell_membran": [1099, 1171], "scalabl": 1099, "amen": 1099, "runoak": [1100, 1102, 1104, 1105, 1107, 1108, 1109, 1110, 1113, 1114, 1115, 1117, 1118, 1119, 1123, 1124, 1126, 1129, 1133, 1135, 1136, 1137, 1143, 1145, 1148, 1149, 1151, 1153, 1154, 1156, 1158, 1159, 1160, 1163, 1165, 1171, 1176, 1192], "global": 1100, "jupyt": [1100, 1102, 1127], "directori": [1100, 1129, 1139, 1159], "our": [1100, 1104, 1117, 1182], "eventu": 1100, "repositori": [1100, 1104, 1106, 1129, 1135, 1137, 1162, 1172], "easiest": [1100, 1124], "myontid": 1100, "chebi": [1100, 1115, 1129, 1131, 1140], "cystein": [1100, 1129], "almost": 1100, "disjunct": 1100, "handi": 1100, "memor": 1100, "devic": 1100, "l": [1100, 1129, 1176, 1193], "pameter": 1100, "bone": 1100, "forelimb": [1100, 1117], "pipe": 1100, "interneuron": [1100, 1129, 1130], "next": [1100, 1123, 1128, 1130], "0002405": 1100, "0002039": 1100, "0000893": 1100, "0001042": 1100, "0000935": 1100, "chainabl": 1100, "slack": [1100, 1101], "channel": [1100, 1101], "copi": [1100, 1105, 1115, 1123, 1174], "idea": [1101, 1123], "improv": [1101, 1105, 1129], "stylist": 1101, "suggest": [1101, 1120], "free": [1101, 1124, 1130], "repo": [1101, 1102, 1124, 1139], "workspac": 1101, "join": [1101, 1107], "technic": 1102, "site": [1102, 1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "academi": [1102, 1109, 1112], "command": [1102, 1104, 1106, 1107, 1108, 1109, 1110, 1111, 1113, 1114, 1115, 1117, 1118, 1119, 1123, 1127, 1128, 1135, 1145, 1152, 1154, 1159, 1160, 1164, 1174, 1182, 1192], "line": [1102, 1104, 1106, 1107, 1108, 1109, 1110, 1111, 1115, 1117, 1123, 1127, 1128, 1129, 1145, 1152, 1164, 1180, 1182, 1192], "5281": 1102, "zenodo": 1102, "7708963": 1102, "monarch": [1102, 1106], "video": 1102, "throughout": 1102, "chosen": 1102, "mirror": 1102, "companion": 1102, "odk": [1102, 1135], "homag": 1102, "oakland": 1102, "onc": [1102, 1135, 1192, 1193], "consult": [1102, 1126, 1135], "ontoport": [1102, 1106, 1128, 1149, 1180], "speak": 1102, "allianc": [1102, 1129], "expens": 1102, "excel": 1102, "bank": 1102, "brown": 1102, "fox": 1102, "synchron": 1102, "addition": [1102, 1116, 1117, 1131, 1182], "capabl": [1102, 1105, 1123, 1131, 1137, 1169], "particularli": [1102, 1117], "simpleobo_implement": 1102, "fast": [1102, 1105, 1119], "rigor": 1102, "major": 1102, "blocker": 1102, "maintain": 1102, "small": [1102, 1109, 1140], "consum": [1102, 1113], "compil": 1102, "sqlite3": [1102, 1105, 1128, 1182], "sparql_implement": [1102, 1161], "wider": [1102, 1129], "abil": [1102, 1104, 1123], "plan": [1102, 1140, 1162], "rust": [1102, 1118], "whelk": 1102, "viz": [1102, 1109, 1117, 1129, 1132, 1133], "variant": [1102, 1109], "runnabl": 1103, "am": 1103, "familiar": [1103, 1130], "me": [1103, 1123], "why": [1103, 1108, 1111, 1117, 1140], "bio": [1103, 1104, 1106, 1107, 1108, 1117], "portal": [1103, 1140], "matport": 1103, "triplestor": [1103, 1106, 1116, 1127, 1128, 1129, 1136], "chatgpt": [1103, 1123], "stai": 1103, "troubleshoot": [1103, 1127], "messag": 1103, "won": 1103, "long": [1103, 1118, 1140], "cach": [1103, 1129, 1135, 1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1166, 1172, 1173, 1180], "fine": [1104, 1116, 1140, 1141], "tune": [1104, 1163], "impress": 1104, "pure": [1104, 1115, 1118, 1170], "answer": [1104, 1108, 1123, 1140], "good": [1104, 1113, 1115, 1165, 1176], "interest": [1104, 1113, 1118, 1158], "fusion": 1104, "research": 1104, "ontogpt": [1104, 1106, 1120, 1180], "project": [1104, 1106, 1117, 1119, 1120, 1128, 1162, 1181], "theoret": [1104, 1132], "easili": 1104, "0000084": [1104, 1137], "lymphocyt": [1104, 1137], "immatur": 1104, "matur": 1104, "becaus": [1105, 1106, 1113, 1115, 1116, 1119, 1129, 1166, 1192], "ont": [1105, 1110, 1116, 1123, 1131, 1145, 1166, 1192], "lexmatch": [1105, 1114], "guidanc": 1105, "rdflib": [1105, 1134, 1156, 1157, 1161, 1163, 1182], "sparql_adapt": 1105, "known": [1105, 1106, 1109, 1110, 1113, 1117, 1118, 1152, 1165, 1166], "sql_adapt": 1105, "made": [1105, 1115, 1124, 1128, 1182, 1192], "manag": [1105, 1106, 1110, 1123, 1130, 1132, 1180, 1183], "purg": 1105, "stale": 1105, "rm": [1105, 1135], "necessari": [1105, 1109, 1115, 1117, 1129, 1141], "gz": [1105, 1135], "strive": 1105, "fill": 1105, "feedback": 1105, "deeper": 1106, "dive": 1106, "discret": 1106, "artefact": [1106, 1140], "0000948": [1106, 1110, 1116], "technologi": 1106, "uniform": [1106, 1108, 1131, 1192], "peopl": [1106, 1118, 1126, 1129, 1182], "usual": [1106, 1108], "literatur": 1106, "learn": [1106, 1111, 1126, 1127, 1129, 1130, 1151], "neo4j": 1106, "upper": [1106, 1117], "seen": [1106, 1113, 1117, 1129], "nuanc": 1106, "despit": 1106, "terminologi": [1106, 1107, 1109], "confusingli": 1106, "curat": [1106, 1109, 1111, 1127, 1129, 1165], "conceptu": 1106, "due": [1106, 1126, 1129], "emploi": 1106, "numer": [1106, 1110, 1137, 1158, 1162], "obscur": 1106, "finger": [1106, 1113, 1123, 1132, 1172], "vertex": 1106, "scoliosi": 1106, "vertebr": 1106, "overload": 1106, "programmat": [1106, 1123, 1126, 1128, 1129], "counterpart": [1106, 1113], "Of": 1106, "reachabl": 1106, "convers": [1106, 1120, 1127], "mucopolysaccharidosi": 1106, "lysosom": 1106, "storag": 1106, "singleton": [1106, 1166, 1170], "musculoskelet": 1106, "behind": [1106, 1131, 1140], "scene": [1106, 1131, 1140], "obook": [1106, 1109, 1112], "harold": 1106, "solbrig": 1106, "easi": [1106, 1118, 1123, 1136, 1192], "popular": [1106, 1119, 1184], "outsid": [1106, 1108, 1114, 1117, 1124, 1129, 1133, 1135], "genom": 1106, "sphere": 1106, "althono": 1106, "primer": [1106, 1112, 1166], "john": 1106, "characterist": [1106, 1113, 1117, 1118, 1137, 1166, 1173], "silent": 1106, "coher": [1106, 1126, 1170, 1181], "comprehens": [1106, 1129], "expos": [1106, 1114, 1166], "bioontologi": [1106, 1129], "framework": [1106, 1109, 1120], "agroport": 1106, "ecoport": 1106, "oppos": 1106, "isn": [1106, 1117], "tautologi": [1106, 1166], "strategi": [1106, 1111, 1178, 1180], "oborel": 1106, "ebi": [1106, 1155], "ac": 1106, "uk": 1106, "awai": [1106, 1135, 1170], "while": [1106, 1116, 1136, 1165], "measur": [1106, 1111, 1166, 1177], "wherea": [1106, 1108], "log2": [1106, 1177], "taken": [1106, 1108], "account": [1106, 1118, 1129], "observ": 1106, "realpython": 1106, "regardless": [1106, 1115, 1130, 1135, 1137, 1141], "worldview": 1106, "distinguish": [1107, 1158], "reflect": 1107, "occasion": 1107, "urea": 1107, "cycl": 1107, "ornithin": 1107, "biosynthesi": 1107, "boost": 1107, "below": 1107, "reli": [1107, 1165], "phrase": 1107, "pten": 1107, "risk": 1107, "breast": 1107, "cancer": 1107, "malign": 1107, "neoplasm": 1107, "funk": 1107, "2016": 1107, "neutral": [1107, 1176], "priorit": 1107, "manu": [1107, 1117, 1176], "scientif": 1107, "medic": 1107, "favor": [1107, 1130, 1132, 1179], "layperson": 1107, "vasilevski": 1107, "diagnosi": 1107, "70": 1107, "sweet": 1107, "mint": 1107, "variat": 1107, "area": 1107, "consensu": 1107, "english": [1107, 1116, 1166], "untyp": 1107, "entity_alias": [1107, 1166, 1170], "0001698": 1107, "fluid": 1107, "pericardi": 1107, "effus": 1107, "simplist": [1107, 1166], "alias_relationship": 1107, "exclude_label": 1107, "tabl": [1107, 1110, 1118, 1129, 1162, 1181], "obograph_datamodel": 1107, "spv": 1107, "synonym_property_valu": 1107, "0000": 1107, "0002": 1107, "6548": 1107, "5200": 1107, "ag": 1108, "onset": 1108, "challeng": [1108, 1131], "administr": 1108, "constitut": 1108, "pragmat": 1108, "emphas": 1108, "invari": 1108, "conting": 1108, "treatment": 1108, "beyond": [1108, 1166, 1192], "gruber": 1108, "todai": 1108, "biomed": [1108, 1129, 1151], "minimalist": 1108, "supplement": 1108, "lacrim": 1108, "gland": [1108, 1148], "morphologi": [1108, 1117, 1145], "wget": [1108, 1110, 1124, 1129, 1135], "0011482": 1108, "unif": 1108, "biologi": 1108, "inclus": 1109, "quickstart": 1109, "intro": 1109, "environment": 1109, "glacier": 1109, "lake": 1109, "ocean": 1109, "hierarch": [1109, 1129, 1166], "articl": 1109, "shown": 1109, "drawn": 1109, "patient": [1109, 1182], "rich": 1109, "introduct": [1109, 1111, 1127, 1128], "book": [1109, 1112], "xml": [1109, 1135, 1159, 1182], "manchest": [1109, 1182], "thesauri": 1109, "clinic": [1109, 1118], "rrf": 1109, "lightweight": [1109, 1130], "0005671": 1109, "bilater": 1109, "intracerebr": 1109, "calcif": 1109, "0005676": 1109, "rudimentari": 1109, "postaxi": 1109, "polydactyli": 1109, "0005678": 1109, "anterior": [1109, 1117], "atlanto": 1109, "occipit": 1109, "disloc": 1109, "oboacademi": 1109, "themselv": [1109, 1118, 1140, 1165, 1177], "compress": [1110, 1145, 1166], "uberon_0000948": 1110, "foundri": [1110, 1116, 1131, 1156, 1166], "under": [1110, 1114, 1118, 1129, 1162], "hood": [1110, 1114, 1162], "similarli": 1110, "curie_to_uri": [1110, 1166, 1170], "po": 1110, "po_": 1110, "poro": 1110, "poro_": 1110, "2002": 1110, "07": [1110, 1141], "2004": 1110, "02": 1110, "suffic": 1110, "soil_oi": 1110, "soil": [1110, 1116], "nt": [1110, 1116], "prefix_map": [1110, 1116, 1166, 1170], "soilprofil": [1110, 1116], "anzsoil": [1110, 1116], "def": [1110, 1116, 1129, 1130], "au": [1110, 1116], "asl": [1110, 1116], "uppercas": 1110, "pad": 1110, "7": [1110, 1127, 1128, 1171], "digit": [1110, 1113, 1131, 1176], "latest": 1110, "schemaorg": 1110, "explan": 1111, "nlp": 1111, "signatur": [1111, 1165, 1173, 1192], "accompani": [1111, 1192], "vector": 1111, "overview": [1113, 1129], "realli": 1113, "browser": [1113, 1133], "fingernail": 1113, "uberon_0009565": 1113, "dedic": 1113, "parthood": 1113, "autom": 1113, "amount": [1113, 1119, 1141, 1145], "deal": 1113, "mistak": 1113, "0009565": 1113, "0001705": 1113, "0002389": 1113, "definedclassid_label": 1113, "genusids_label": 1113, "restrictionspropertyid": 1113, "restrictionspropertyids_label": 1113, "restrictionsfillerid": 1113, "restrictionsfillerids_label": 1113, "0009567": 1113, "pedal": 1113, "0001466": 1113, "0011273": 1113, "0001463": 1113, "0011274": 1113, "0003622": 1113, "0011275": 1113, "0003623": 1113, "0011276": 1113, "0003624": 1113, "0011277": 1113, "0003625": 1113, "0011278": 1113, "0003631": 1113, "0011279": 1113, "0003632": 1113, "0011280": 1113, "0003633": 1113, "0011281": 1113, "0003634": 1113, "0011282": 1113, "0003635": 1113, "matrix": 1113, "intersection_of": 1113, "ahead": [1113, 1117], "prone": 1113, "templat": 1113, "dosdp": 1113, "ottr": 1113, "experienc": [1113, 1130], "aid": 1113, "creation": [1113, 1171], "saw": [1113, 1129], "At": [1113, 1129, 1140], "lattic": 1113, "brain": [1114, 1149], "0000008": 1114, "mapping_justif": 1114, "semapv": 1114, "unspecifiedmatch": 1114, "hba": 1114, "4005": 1114, "0000168": 1114, "mat": 1114, "0000098": 1114, "caloha": 1114, "0095": 1114, "dhba": 1114, "10155": 1114, "efo": 1114, "0000302": 1114, "interchang": [1115, 1192], "longer": 1115, "discov": 1115, "fairli": [1115, 1117, 1131, 1192], "myo": [1115, 1192], "123456": [1115, 1192], "is_obsolet": [1115, 1192], "0040180": 1115, "hyperkeratosi": 1115, "pilari": 1115, "0040193": 1115, "pinealoblastoma": 1115, "0040199": 1115, "midfac": 1115, "older": [1115, 1192], "obsoleteclass": [1115, 1192], "evalu": [1115, 1192], "entity_metadata": [1115, 1192], "0000005": [1115, 1192], "assist": 1115, "assembli": 1115, "ribosom": 1115, "subunit": 1115, "vivo": 1115, "assembl": 1115, "0042254": 1115, "0044183": 1115, "0051082": 1115, "chaperon": 1115, "molecular_funct": [1115, 1123, 1153, 1166], "molecular": 1115, "mondo": [1115, 1165, 1166], "extrem": [1115, 1116], "lost": 1115, "alt_id": [1115, 1166], "x1": 1115, "0000227": 1115, "stanza": [1115, 1166], "nodeobsolet": 1115, "guarante": [1116, 1159, 1168, 1192], "ontologymetadatamapp": [1116, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "vocab": 1116, "curie_convert": [1116, 1142, 1143, 1144, 1145, 1146], "use_skos_profil": 1116, "ontology_metamodel_mapp": [1116, 1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "void": 1116, "crack": 1116, "medium": 1116, "coars": 1116, "happen": 1116, "infrequ": 1116, "interer": 1116, "idiom": 1117, "perhap": 1117, "surprisingli": 1117, "heavili": 1117, "pe": 1117, "0002387": 1117, "0002103": 1117, "0006871": 1117, "0002551": 1117, "0001445": 1117, "0002470": 1117, "0008784": 1117, "0002102": 1117, "0006875": 1117, "0001442": 1117, "0008785": 1117, "hindlimb": 1117, "embryon": 1117, "footplat": 1117, "skeleton": 1117, "autopod": [1117, 1131], "region": 1117, "segment": 1117, "handplat": 1117, "triad": 1117, "0000002": 1117, "continu": [1117, 1129], "0000004": 1117, "0000040": 1117, "materi": [1117, 1129], "0000026": 1117, "appendag": [1117, 1129], "0000061": 1117, "anatom": [1117, 1129, 1166], "0000153": 1117, "bodi": [1117, 1129, 1165], "0000465": 1117, "0000468": 1117, "multicellular": 1117, "0000475": 1117, "subdivis": [1117, 1131], "0001062": [1117, 1131], "0002101": [1117, 1149, 1165, 1171], "deduct": [1117, 1181], "tell": 1117, "hope": [1117, 1135], "furthermor": 1117, "meaningless": 1117, "concret": 1117, "0012505": [1117, 1166], "endomembran": [1117, 1166], "0110165": [1117, 1166], "cellular": [1117, 1166], "has_part": [1117, 1166], "0043231": [1117, 1159, 1166, 1172], "intracellular": [1117, 1159, 1166], "bound": [1117, 1159, 1166], "organel": [1117, 1154, 1159, 1166, 1180], "0043227": 1117, "0043226": [1117, 1154, 1180], "0043229": 1117, "typedef": 1117, "0000051": [1117, 1166], "inverse_of": 1117, "0002131": 1117, "holds_over_chain": 1117, "simplifi": [1117, 1140, 1166, 1182], "demo": [1117, 1130], "len": [1117, 1167, 1172], "obograph_interfac": [1117, 1172], "graphtraversalmethod": [1117, 1172], "advantag": [1117, 1129, 1136, 1141], "include_entail": [1117, 1131, 1166, 1179], "_e": 1117, "target_curi": [1117, 1172], "liquid": 1117, "0001735": 1117, "hop_anc": 1117, "ent_anc": 1117, "9": [1117, 1129, 1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "recal": 1117, "mislead": 1117, "has_part_with_characterist": 1117, "odd": 1117, "imagin": 1117, "charg": 1117, "anticip": 1117, "care": [1117, 1140], "topic": 1117, "reader": 1117, "who": 1117, "wonder": 1117, "mention": 1117, "mesentericvein": 1117, "drain": 1117, "smallintestin": 1117, "vein": [1117, 1129, 1133], "closer": 1118, "music": 1118, "genr": 1118, "favorit": 1118, "newer": 1118, "theori": [1118, 1135, 1140], "j": 1118, "frac": 1118, "cap": 1118, "cup": 1118, "choic": [1118, 1165], "partof": 1118, "indirectli": 1118, "resnik": 1118, "kg": 1118, "leaf": [1118, 1166, 1170], "bia": 1118, "e1": 1118, "e2": 1118, "goal": [1118, 1124, 1181, 1192], "simplest": 1118, "max_": 1118, "t1": 1118, "t2": 1118, "averag": 1118, "bma": 1118, "sum_": 1118, "termset": 1118, "0010771": 1118, "0002169": 1118, "0005391": 1118, "0005389": 1118, "0005367": 1118, "substitut": 1118, "formul": [1118, 1166, 1175], "hot": 1118, "bit": [1118, 1129], "cosin": 1118, "numpi": 1118, "effici": [1118, 1129, 1135, 1181], "reduc": 1118, "dimension": 1118, "grape": 1118, "ml": 1118, "curategpt": [1118, 1120], "lord": 1118, "pubm": 1118, "nlm": 1118, "nih": 1118, "gov": 1118, "12603061": 1118, "koehler": 1118, "genet": 1118, "19800049": 1118, "healthcar": 1119, "interoper": 1119, "exchang": [1119, 1165], "codesystem": [1119, 1145, 1146], "agre": [1119, 1165], "server": [1119, 1123, 1141, 1145, 1156], "dump": [1119, 1142, 1143, 1144, 1145, 1146, 1169, 1170], "fhir_config_exampl": 1119, "code_system_id": [1119, 1145], "_the": 1119, "identif": [1119, 1145], "hl7": [1119, 1145], "code_system_url": [1119, 1145], "_canon": 1119, "native_uri_stem": [1119, 1145], "_a": 1119, "omim": [1119, 1145], "phenotypicseri": [1119, 1145], "include_all_pred": [1119, 1145], "maxim": [1119, 1145], "use_curies_native_concept": [1119, 1145], "_fhir": [1119, 1145], "convention": [1119, 1145], "use_curies_foreign_concept": [1119, 1145], "_typic": 1119, "predicate_period_replac": [1119, 1145], "_predic": 1119, "hapi": [1119, 1145], "caus": [1119, 1145], "underscor": [1119, 1126, 1145], "hp_": 1119, "obtain": [1120, 1172], "caveat": 1120, "discuss": 1120, "pypi": [1120, 1128], "talisman": 1120, "conjunct": 1120, "mixtral": 1120, "ollama": 1120, "litellm": 1120, "groq": 1120, "leverag": [1123, 1173, 1180], "extract": [1123, 1172, 1178, 1180], "autosuggest": 1123, "window": 1123, "datasett": 1123, "pipx": 1123, "inject": 1123, "proxi": [1123, 1166], "unpredict": 1123, "ey": [1123, 1153], "toe": 1123, "gpt": 1123, "jsonl": 1123, "turbo": 1123, "awesom": [1123, 1126], "gemini": 1123, "pro": [1123, 1137, 1140], "cd": [1123, 1129, 1130], "openai": 1123, "stabl": 1123, "model_nam": 1123, "model_id": 1123, "api_bas": 1123, "8000": 1123, "soup": 1123, "hardwar": 1123, "llama2": 1123, "bash": 1123, "8x7b": 1123, "32768": 1123, "yourself": 1124, "bucket": 1124, "amazonaw": [1124, 1135], "bbop": [1124, 1135], "pip": [1124, 1126, 1129], "caro": 1124, "0000003": [1124, 1166], "0000006": 1124, "validatorinterfac": [1124, 1170, 1181], "sqldatabas": [1124, 1162, 1173, 1181], "cmungal": 1124, "plug": [1126, 1129], "ins": 1126, "enabl": 1126, "nltk": 1126, "wouldn": 1126, "drop": 1126, "my_awesome_plugin": 1126, "unsat": 1126, "get_resource_from_shorthand": [1126, 1182], "discovered_plugin": 1126, "oakx_robot": 1126, "robot_implement": 1126, "robotimplement": 1126, "owl_noth": 1126, "oi": [1126, 1154, 1156], "is_coher": [1126, 1170, 1181], "congratul": 1126, "els": [1126, 1135], "usatisfi": 1126, "unsatisfiable_class": [1126, 1170, 1181], "someon": 1126, "rememb": 1126, "pollut": 1126, "pyproject": 1126, "toml": 1126, "setuptool": 1126, "6": [1127, 1128], "glossari": 1127, "faq": 1127, "graphviz": 1128, "docker": 1128, "rdbmss": 1128, "drosophila": 1129, "fruit": 1129, "fly": [1129, 1171], "mkdir": 1129, "virtual": 1129, "python3": [1129, 1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "venv": 1129, "bin": 1129, "pythonpath": 1129, "invok": [1129, 1133], "wing": [1129, 1133], "00004751": [1129, 1133], "shorter": 1129, "sound": 1129, "introduc": [1129, 1132], "00004754": 1129, "axillari": 1129, "00004759": 1129, "l1": 1129, "00004760": 1129, "l2": 1129, "00046009": 1129, "presumpt": 1129, "00046030": 1129, "00046031": 1129, "l3": 1129, "00004761": 1129, "00004762": 1129, "l4": 1129, "00004763": 1129, "l5": 1129, "00004764": 1129, "l6": 1129, "filenam": 1129, "got": 1129, "cuticl": 1129, "00004729": 1129, "00007000": 1129, "effect": 1129, "visit": [1129, 1135, 1166], "00007245": 1129, "cuticular": 1129, "00006015": 1129, "blade": 1129, "00007010": 1129, "tissu": 1129, "00004551": 1129, "thorax": 1129, "10000000": 1129, "00007016": 1129, "00007001": 1129, "00007013": 1129, "acellular": 1129, "unbound": 1129, "tempt": 1129, "partonomi": 1129, "sinc": [1129, 1166, 1171, 1182], "00047212": 1129, "longitudin": 1129, "brief": 1129, "referenti": 1129, "blazegraph": 1129, "tradeoff": 1129, "obviou": 1129, "15356": 1129, "sulfur": 1129, "amino": 1129, "acid": 1129, "propano": 1129, "sulfanyl": 1129, "beilstein": 1129, "1721406": 1129, "ca": [1129, 1177], "3374": 1129, "22": [1129, 1172], "33704": 1129, "alpha": [1129, 1136], "26167": 1129, "polar": 1129, "26834": 1129, "isa": [1129, 1166], "life": 1129, "apikei": [1129, 1149], "kill": 1129, "rout": 1129, "forebrain": 1129, "0000099": 1129, "pref": 1129, "11": [1129, 1180], "0001890": 1129, "16": 1129, "24": 1129, "breadth": 1129, "offer": [1129, 1136], "mapping_provid": 1129, "25181601": 1129, "unspecifi": 1129, "cdno": 1129, "17439666": 1129, "kegg": 1129, "c00736": 1129, "knapsack": 1129, "c00007323": 1129, "zp": 1129, "feel": 1130, "advis": 1130, "stick": 1130, "adaptor": 1130, "connector": 1130, "my_oak_demo": 1130, "4023017": 1130, "sst": 1130, "gabaerg": 1130, "cortic": 1130, "cerebr": 1130, "cortex": [1130, 1151], "somatostatin": 1130, "outgo": [1130, 1166], "0002292": 1130, "000015665": 1130, "0010011": 1130, "show_info": 1130, "term_id": [1130, 1131], "outgoing_relationship": [1130, 1166, 1170], "queryabl": 1131, "lov": 1131, "bspo": 1131, "0002544": 1131, "32523": 1131, "0005881": 1131, "compos": 1132, "philosophi": 1132, "illustr": [1132, 1138], "obographinterfac": [1132, 1133, 1170, 1172], "dao": 1132, "smarter": 1132, "network": [1133, 1140, 1141], "javascript": 1133, "npm": 1133, "yarn": 1133, "preview": 1133, "temp": 1133, "immedi": 1133, "test_obograph_util": 1133, "until": 1134, "v0": 1134, "wait": [1134, 1141], "pull": 1134, "1686": 1134, "gzip": 1135, "enter": 1135, "center": [1135, 1172], "0007011": 1135, "0002005": 1135, "nervou": [1135, 1145], "0002100": 1135, "soma": 1135, "0002607": 1135, "migratori": 1135, "neural": 1135, "crest": 1135, "0000029": 1135, "0000107": 1135, "autonom": 1135, "suffix": [1135, 1163, 1182], "shape": [1135, 1181], "semsql": [1135, 1162], "pwd": 1135, "ti": 1135, "odkful": 1135, "recip": 1135, "prerequisit": 1135, "rdftab": [1135, 1162], "riot": 1135, "maco": 1135, "homebrew": 1135, "brew": 1135, "jena": 1135, "seamlessli": 1135, "rdbm": 1135, "tester": 1136, "fraction": 1136, "dsl": 1136, "optimis": 1136, "obsolete_class": 1136, "classobsolet": 1136, "queue": 1136, "deploi": 1136, "inapplic": 1136, "memori": [1136, 1140, 1141, 1154], "toolkit": 1137, "modif": 1137, "filesystem": [1137, 1162], "basic_search": [1137, 1148, 1170, 1176], "outgoing_relationship_map": [1137, 1166, 1170], "receptor": 1137, "0000827": 1137, "0002215": 1137, "0002456": 1137, "mediat": 1137, "0000542": 1137, "logo": 1138, "jmcmurri": 1138, "master": 1138, "mostli": 1140, "pictur": 1140, "client": [1140, 1149, 1155, 1158], "0001825": 1140, "paranas": 1140, "sinu": 1140, "great": 1140, "latenc": [1140, 1141], "burden": 1140, "dron": 1140, "80": [1140, 1166], "demand": 1140, "terminolog": 1140, "unlik": 1140, "scalar": [1140, 1166], "dict": [1140, 1144, 1154, 1155, 1159, 1160, 1162, 1165, 1166, 1168, 1171, 1172, 1174, 1177, 1179, 1180, 1181], "autocomplet": 1140, "robust": 1141, "hsapdv": 1141, "0000013": 1141, "0000014": [1141, 1166], "anti": 1141, "carnegi": 1141, "08": 1141, "ineffici": [1141, 1172], "sizeabl": 1141, "iterator_util": 1141, "curie_it": 1141, "slightli": 1141, "boilerpl": 1141, "consider": 1141, "test_click": 1141, "data_model_convert": 1142, "datamodelconvert": [1142, 1143], "callabl": [1142, 1144, 1145, 1146, 1176, 1180, 1193], "enforce_canonical_ord": [1142, 1143, 1144, 1145, 1146, 1169], "kwarg": [1142, 1144, 1145, 1146, 1162, 1165, 1166, 1169, 1171, 1172, 1174, 1176, 1177, 1180, 1182, 1193], "obograph_util": [1143, 1164], "load_obograph_docu": 1143, "graph_doc": 1143, "obographtofhirconvert": [1143, 1145], "obographtooboformatconvert": [1143, 1146], "as_bytes_io": [1143, 1146], "obo_graph_to_cx_convert": 1144, "obographtocxconvert": 1144, "obo_graph_to_fhir_convert": 1145, "concept_": 1145, "conceptproperty_": 1145, "direct_predicate_map": 1145, "conceptdesignation_": 1145, "coding_": 1145, "scope_map": 1145, "my_prefix": 1145, "my_expans": 1145, "codingsystem": 1145, "linkml_runtim": [1145, 1162], "dumper": [1145, 1164, 1170], "json_dump": 1145, "loader": 1145, "json_load": 1145, "hp_test": 1145, "target_class": 1145, "code_system": 1145, "0012639": 1145, "anomali": [1145, 1166], "obo_graph_to_obo_format_convert": 1146, "use_shorthand": 1146, "bytesio": 1146, "obodocu": [1146, 1160], "aggregator_implement": 1148, "aggregatorimplement": [1148, 1152], "ontologyresourc": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182], "_multilingu": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "factori": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "exclude_owl_top_and_bottom": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "ontology_metadata_mapp": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "_convert": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "auto_relax_axiom": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "cache_lookup": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "property_cach": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "keyval_cach": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "keyvalcach": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "_edge_index": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "edge_index": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "edgeindex": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "_entailed_edge_index": [1148, 1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1165, 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181], "farm": 1148, "weav": 1148, "cfg": [1148, 1176, 1193], "agg": 1148, "parathyroid": 1148, "0000860": 1148, "hypoplasia": 1148, "0000680": 1148, "tentacl": 1149, "multiword": 1149, "octopu": 1149, "crucial": 1149, "funowl_implement": 1150, "funowlimplement": 1150, "functional_writ": [1150, 1157, 1159, 1160, 1162, 1173], "writer": [1150, 1157, 1159, 1160, 1162, 1173], "functionalwrit": [1150, 1157, 1159, 1160, 1162, 1173], "home": [1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "runner": [1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "pypoetri": [1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "virtualenv": [1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "5bvmowl": [1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "py3": [1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "lib": [1150, 1156, 1157, 1159, 1160, 1161, 1162, 1163, 1173], "ontology_docu": 1150, "ontologydocu": 1150, "_kwarg": [1150, 1151, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163], "hsolbrig": 1150, "gildaimplement": [1151, 1152], "grounder": 1151, "gyori2021": 1151, "benjamin": 1151, "gyori": 1151, "charl": 1151, "taplei": 1151, "hoyt": 1151, "albert": 1151, "steppi": 1151, "2021": 1151, "disambigu": 1151, "volum": 1151, "vbac034": 1151, "prontoimplement": [1152, 1159], "sqlimplement": [1152, 1162, 1182], "alchemi": 1152, "olsimplement": [1152, 1155], "simpleoboimplement": [1152, 1160], "obographimplement": [1152, 1154], "sparqlimplement": [1152, 1161, 1163], "ubergraphimplement": [1152, 1163], "relationgraphenum": [1152, 1163], "ontobeeimplement": [1152, 1156], "pantherdb": [1152, 1164], "pantherdbimplement": [1152, 1158], "use_llm": 1153, "mappergpt": 1153, "rhea": 1153, "obograph_implement": [1154, 1159], "obograph_docu": 1154, "_relationship_index_cach": [1154, 1159, 1160], "node_id": 1154, "embl": 1155, "oxo": 1155, "ols_implement": 1155, "label_cach": 1155, "_prefix_map": [1155, 1162], "focus_ontologi": 1155, "ontobee_implement": 1156, "sparql_wrapp": [1156, 1157, 1161, 1163], "sparqlwrapp": [1156, 1157, 1161, 1163], "_list_of_named_graph": [1156, 1157, 1161, 1163], "Or": [1156, 1159, 1166, 1192], "vaccin": 1156, "vo": 1156, "uncom": 1156, "owlery_implement": 1157, "owleryimplement": 1157, "phenoscap": 1157, "uniprotkb": [1158, 1171], "p04217": 1158, "pantherdb_implement": 1158, "_association_index": [1158, 1159, 1161, 1162, 1165, 1167], "association_index": [1158, 1159, 1161, 1162, 1165, 1167], "associationindex": [1158, 1159, 1161, 1162, 1165, 1167], "association_provider_interfac": [1158, 1159, 1161, 1162, 1165, 1167], "entitynorm": [1158, 1159, 1161, 1162, 1165, 1167], "_requests_sess": 1158, "requests_cach": 1158, "session": 1158, "cachedsess": 1158, "taxon_id": 1158, "use_protein_id": 1158, "assoc": [1158, 1165, 1167], "0005576": 1158, "pronto_implement": 1159, "wrapped_ontologi": 1159, "_alt_id_to_replacement_map": [1159, 1160], "slug": [1159, 1182], "fastobo": 1159, "simple_obo_implement": 1160, "obo_docu": 1160, "simple_obo_pars": 1160, "_uses_legacy_properti": 1160, "primarili": 1160, "abandon": 1160, "sqlitefil": 1162, "sqldb": 1162, "sql_implement": [1162, 1182], "engin": 1162, "_session": 1162, "_connect": 1162, "_ontology_metadata_model": 1162, "schemaview": 1162, "_information_content_cach": 1162, "_relationships_by_subject_index": 1162, "max_items_for_in_claus": 1162, "can_store_associ": 1162, "ontologyinterfac": [1162, 1166, 1169, 1182], "postgresql": 1162, "sqlalchemi": 1162, "classmethod": 1162, "sqla": 1162, "ever": 1162, "craft": 1162, "throttl": 1163, "overus": 1163, "larger": [1163, 1179], "hippocampu": [1163, 1180], "ubergraph_implement": 1163, "ug": 1163, "relationship_walk": 1164, "networkx_bridg": 1164, "slimmer_util": 1164, "apikey_manag": 1164, "associationproviderinterfac": [1165, 1170, 1182], "mpo": 1165, "gpad": 1165, "kgx": 1165, "augment": 1165, "inputspecif": [1165, 1182], "pombas": [1165, 1167], "amigo_implement": 1165, "10090": 1165, "mous": 1165, "property_filt": 1165, "subject_closure_pred": 1165, "predicate_closure_pred": 1165, "object_closure_pred": [1165, 1167, 1177], "include_modifi": 1165, "add_closure_field": 1165, "spac1142": [1165, 1167], "02c": [1165, 1167], "spac3h1": [1165, 1167], "06": [1165, 1167], "spac4g8": [1165, 1167], "0006620": [1165, 1167], "protein": [1165, 1167], "endoplasm": [1165, 1167], "reticulum": [1165, 1167], "sgt2": 1165, "associations_subject": [1165, 1170], "0045047": 1165, "spbc1271": 1165, "05c": 1165, "associations_subject_search": [1165, 1170], "subject_prefix": [1165, 1171], "include_similarity_object": 1165, "sort_by_similar": 1165, "semanticsimilarityinterfac": [1165, 1170, 1177], "association_pairwise_coassoci": [1165, 1170], "curies1": 1165, "curies2": 1165, "inputs_are_subject": 1165, "include_reciproc": 1165, "include_diagon": 1165, "include_ent": 1165, "0000910": 1165, "0006281": 1165, "0006412": 1165, "coassoc": 1165, "add_associ": [1165, 1170, 1182], "association_count": [1165, 1170], "association_subject_count": [1165, 1170], "num": 1165, "0051668": 1165, "map_associ": [1165, 1170], "subset_ent": 1165, "map2slim": 1165, "normalize_associ": [1165, 1170], "payload": [1166, 1180], "fit": [1166, 1192], "horsetail": 1166, "granular": 1166, "BE": 1166, "children": [1166, 1172], "rais": [1166, 1171, 1172, 1174], "transact": [1166, 1168, 1169, 1171, 1175, 1176, 1178, 1181], "commit": [1166, 1168, 1169, 1171, 1174, 1175, 1176, 1178, 1181], "default_prefix_map": 1166, "get_prefix_map": [1166, 1170], "go_0005634": 1166, "set_metamodel_map": [1166, 1170], "uri_to_curi": [1166, 1170], "use_uri_fallback": 1166, "entailed_edge_index": [1166, 1170], "default_languag": [1166, 1170], "null": 1166, "ontology_curi": [1166, 1170], "all_ontology_curi": [1166, 1170], "include_merg": 1166, "obsolesc": 1166, "obsoletes_migration_relationship": [1166, 1170], "all_obsolete_curi": [1166, 1170], "refus": 1166, "ontology_vers": [1166, 1170], "ontology_metadata_map": [1166, 1170], "filter_obsolet": 1166, "owl_object_properti": 1166, "metaclass": 1166, "all_entity_curi": [1166, 1170], "synonymtypeproperti": 1166, "owl2": 1166, "entity_declar": 1166, "pun": 1166, "defined_bi": [1166, 1170], "ignore_owl_th": 1166, "annotated_root": 1166, "0100026": 1166, "exhibit": 1166, "messi": 1166, "0003674": 1166, "0005575": 1166, "cellular_compon": 1166, "biological_process": 1166, "artifici": 1166, "ignore_owl_noth": 1166, "goslim_drosophila": 1166, "goslim_flybase_ribbon": 1166, "subset_curi": [1166, 1170], "all_subset_curi": [1166, 1170], "subset_memb": [1166, 1170], "0005635": 1166, "envelop": 1166, "terms_subset": [1166, 1170], "goslim_yeast": 1166, "goslim_chembl": 1166, "terms_categori": [1166, 1170], "curies_by_subset": [1166, 1170], "internation": 1166, "ph\u00e9notypiqu": 1166, "get_label_by_curi": [1166, 1170], "allow_non": 1166, "multilingual_label": [1166, 1170], "fenotypisch": 1166, "abnormaliteit": 1166, "get_labels_for_curi": [1166, 1170], "set_label": [1166, 1170], "curies_by_label": [1166, 1170], "circumst": 1166, "get_curies_by_label": [1166, 1170], "0016772": [1166, 1171], "31": 1166, "snip": 1166, "include_tbox": 1166, "include_abox": 1166, "exclude_blank": 1166, "incom": 1166, "relationships_metadata": [1166, 1170], "0009831": 1166, "0002516": 1166, "c9005": 1166, "hierarchical_par": [1166, 1170], "isa_onli": 1166, "fresh": 1166, "invoc": [1166, 1180], "rp": [1166, 1175], "incoming_relationship_map": [1166, 1170], "ref": 1166, "incoming_relationship": [1166, 1170], "all_relationship": [1166, 1170], "defn": 1166, "include_metadata": [1166, 1172], "goc": 1166, "go_cur": 1166, "isbn": 1166, "0198547684": 1166, "include_miss": 1166, "get_definition_by_curi": [1166, 1170], "simple_mappings_by_curi": [1166, 1170], "sophist": 1166, "mappingproviderinterfac": [1166, 1170, 1171], "simple_map": [1166, 1170], "lump": 1166, "aliases_by_curi": [1166, 1170], "entity_alias_map": [1166, 1170], "deem": 1166, "alias_map_by_curi": [1166, 1170], "alias_map": 1166, "entity_metadata_map": [1166, 1170], "entities_metadata_stat": [1166, 1170], "include_nested_metadata": 1166, "add_missing_property_valu": [1166, 1170], "metadata_map": 1166, "create_ent": [1166, 1170], "delete_ent": [1166, 1170], "thu": 1166, "portabl": 1166, "clone": [1166, 1170], "precompute_lookup": [1166, 1170], "precomput": 1166, "repeatedli": 1166, "class_enrichment_calculation_interfac": 1167, "classenrichmentcalculationinterfac": [1167, 1170], "membership": 1167, "enriched_class": [1167, 1170], "item_list": 1167, "hypothes": 1167, "filter_redund": 1167, "sort_bi": 1167, "signific": 1167, "threshold": 1167, "odds_ratio": 1167, "create_self_associ": [1167, 1170], "0031965": 1167, "0016020": [1167, 1180], "004": 1167, "differ_interfac": 1168, "differinterfac": [1168, 1170], "diffconfigur": 1168, "nodecr": 1168, "nodedelet": 1168, "nodemov": 1168, "noderenam": [1168, 1174], "predicatechang": 1168, "newtextdefinit": 1168, "nodetextdefinitionchang": 1168, "diff_summari": [1168, 1170], "compare_ontology_term_list": [1168, 1170], "dumper_interfac": 1169, "dumperinterfac": [1169, 1170], "stdout": 1169, "search_interfac": [1170, 1176], "searchinterfac": [1170, 1176], "multiterm_search": [1170, 1176], "subsetterinterfac": [1170, 1178], "extract_subset_ontologi": [1170, 1178], "gap_fill_relationship": [1170, 1178], "term_curies_without_definit": [1170, 1181], "validate_map": [1170, 1181], "relationgraphinterfac": [1170, 1175], "entailed_outgoing_relationship": [1170, 1175], "entailed_incoming_relationship": [1170, 1175], "entailed_relationships_between": [1170, 1175], "sssom_mappings_by_sourc": [1170, 1171], "all_sssom_map": [1170, 1171], "get_sssom_mappings_by_curi": [1170, 1171], "get_transitive_mappings_by_curi": [1170, 1171], "normalize_prefix": [1170, 1171], "create_normalization_map": [1170, 1171], "enable_transitive_query_cach": [1170, 1172], "disable_transitive_query_cach": [1170, 1172], "synonym_map_for_curi": [1170, 1172], "ancestor_graph": [1170, 1172], "descendant_graph": [1170, 1172], "descendant_count": [1170, 1172], "subgraph_from_travers": [1170, 1172], "extract_graph": [1170, 1172], "relationships_to_graph": [1170, 1172], "walk_up_relationship_graph": [1170, 1172], "logical_definit": [1170, 1172], "disjoint_class_expressions_axiom": [1170, 1172], "add_metadata": [1170, 1172], "as_obograph": [1170, 1172], "load_graph": [1170, 1172], "traversalconfigur": [1170, 1172], "textannotatorinterfac": [1170, 1180], "cache_directori": [1170, 1180], "rule_collect": [1170, 1180], "annotate_text": [1170, 1180], "annotate_fil": [1170, 1180], "annotate_tabular_fil": [1170, 1180], "summarystatisticsinterfac": [1170, 1179], "global_summary_statist": [1170, 1179], "branch_summary_statist": [1170, 1179], "metadata_property_summary_statist": [1170, 1179], "summary_statistic_descript": [1170, 1179], "auto_add_contributor_us": [1170, 1174], "ignore_invalid_chang": [1170, 1174], "apply_patch": [1170, 1174], "expand_chang": [1170, 1174], "undo": [1170, 1174], "reverse_chang": [1170, 1174], "cached_information_content_map": [1170, 1177], "most_recent_common_ancestor": [1170, 1177], "setwise_most_recent_common_ancestor": [1170, 1177], "multiset_most_recent_common_ancestor": [1170, 1177], "common_ancestor": [1170, 1177], "get_information_cont": [1170, 1177], "information_content_scor": [1170, 1177], "pairwise_similar": [1170, 1177], "all_by_all_pairwise_similar": [1170, 1177], "subclass_axiom": [1170, 1173], "equivalence_axiom": [1170, 1173], "annotation_assertion_axiom": [1170, 1173], "disjoint_pair": [1170, 1173], "is_disjoint": [1170, 1173], "is_satisfi": [1170, 1173], "reasoner_configur": [1170, 1173], "axiom_is_about": [1170, 1173], "axiom_refer": [1170, 1173], "property_characterist": [1170, 1173], "transitive_object_properti": [1170, 1173], "simple_subproperty_of_chain": [1170, 1173], "overridden": 1170, "mapping_provider_interfac": 1171, "sssom_util": 1171, "central": 1171, "ec": 1171, "subject_or_object_sourc": 1171, "target_prefix": 1171, "source_prefix": 1171, "prefix_alias_map": 1171, "uniprot": 1171, "p12345": 1171, "nmap": 1171, "cell_nucleu": 1171, "object_prefix": 1171, "expand_curi": 1172, "start_curi": 1172, "interact": 1172, "opposit": 1172, "downward": 1172, "up_dist": 1172, "down_dist": 1172, "27": 1172, "ldef": 1172, "0009892": 1172, "regul": 1172, "metabol": 1172, "decor": 1172, "notimplementederror": 1172, "impract": 1172, "owl_interfac": 1173, "_funowl_datamodel": 1173, "owleri": 1173, "py4j": 1173, "superclass": 1173, "reasonerconfigur": 1173, "criterion": 1173, "annotationassert": 1173, "disjointclass": 1173, "subobjectpropertyof": 1173, "equivalentobjectproperti": 1173, "disjointobjectproperti": 1173, "inverseobjectproperti": 1173, "objectpropertydomain": 1173, "objectpropertyrang": 1173, "functionalobjectproperti": 1173, "inversefunctionalobjectproperti": 1173, "reflexiveobjectproperti": 1173, "irreflexiveobjectproperti": 1173, "symmetricobjectproperti": 1173, "asymmetricobjectproperti": 1173, "transitiveobjectproperti": 1173, "subdatapropertyof": 1173, "equivalentdataproperti": 1173, "disjointdataproperti": 1173, "datapropertydomain": 1173, "datapropertyrang": 1173, "functionaldataproperti": 1173, "datatypedefinit": 1173, "haskei": 1173, "sameindividu": 1173, "differentindividu": 1173, "classassert": 1173, "negativeobjectpropertyassert": 1173, "datapropertyassert": 1173, "negativedatapropertyassert": 1173, "subannotationpropertyof": 1173, "annotationpropertydomain": 1173, "annotationpropertyrang": 1173, "super": 1173, "propag": 1174, "dct": 1174, "tbd": 1174, "curie_map": 1174, "namebecomessynonym": 1174, "newsynonym": 1174, "relation_graph_interfac": 1175, "honor": 1176, "sqldatabaseimplement": [1176, 1181], "fulfil": 1176, "inexact": 1176, "fma": 1176, "9712": 1176, "0007723": 1176, "interphalang": 1176, "joint": 1176, "0007729": 1176, "_if_miss": [1176, 1180, 1193], "alter": [1176, 1193], "semsim_interfac": 1177, "include_owl_th": 1177, "asymmetr": 1177, "subject_ancestor": 1177, "object_ancestor": 1177, "use_associ": 1177, "term_to_entities_map": 1177, "freq": 1177, "subsetter_interfac": 1178, "roll": 1178, "seed_curi": 1178, "subsetstrategi": 1178, "basi": 1178, "summary_statistics_interfac": 1179, "branch_nam": 1179, "branch_root": 1179, "metadata_properti": 1179, "summary_statistics_datamodel": 1179, "text_annotator_interfac": 1180, "occurr": 1180, "cr": 1180, "mitochondrion": 1180, "hippocamp": 1180, "obviat": 1180, "scispaci": 1180, "oger": 1180, "ner": 1180, "35": 1180, "42": 1180, "18": 1180, "26": 1180, "textiowrapp": 1180, "result_column": 1180, "matched_id": 1180, "result_label_column": 1180, "matched_label": 1180, "match_multipl": 1180, "include_unmatch": 1180, "validator_interfac": 1181, "overal": 1181, "ontologymetadata": 1181, "quickli": 1181, "checker": 1181, "exclude_noth": 1181, "tautolog": 1181, "bewild": 1182, "constantli": 1182, "trip": 1182, "ld": 1182, "huh": 1182, "moment": 1182, "bioportalimplement": 1182, "colon": 1182, "guess": 1182, "get_implementation_from_shorthand": 1182, "get_implementation_class_from_schem": 1182, "activest": 1183, "appdir": 1183, "standalon": 1191, "fundament": 1192, "wild": 1192, "solv": 1192, "whilst": 1192, "retain": 1192, "intuit": 1192, "myontologi": 1192, "get_implentation_from_shorthand": 1192, "iao_0100001": 1192, "preliminari": 1193, "search1": 1193, "search2": 1193, "search3": 1193, "subtract": 1193, "create_search_configur": 1193}, "objects": {"oaklib.converters.data_model_converter": [[1142, 0, 1, "", "DataModelConverter"]], "oaklib.converters.data_model_converter.DataModelConverter": [[1142, 1, 1, "", "convert"], [1142, 2, 1, "", "curie_converter"], [1142, 1, 1, "", "dump"], [1142, 2, 1, "", "enforce_canonical_ordering"], [1142, 2, 1, "", "labeler"]], "oaklib.converters.obo_graph_to_cx_converter": [[1144, 0, 1, "", "OboGraphToCXConverter"]], "oaklib.converters.obo_graph_to_cx_converter.OboGraphToCXConverter": [[1144, 1, 1, "", "convert"], [1144, 1, 1, "", "dump"]], "oaklib.converters.obo_graph_to_fhir_converter": [[1145, 0, 1, "", "OboGraphToFHIRConverter"]], "oaklib.converters.obo_graph_to_fhir_converter.OboGraphToFHIRConverter": [[1145, 1, 1, "", "code"], [1145, 1, 1, "", "convert"], [1145, 1, 1, "", "dump"]], "oaklib.converters.obo_graph_to_obo_format_converter": [[1146, 0, 1, "", "OboGraphToOboFormatConverter"]], "oaklib.converters.obo_graph_to_obo_format_converter.OboGraphToOboFormatConverter": [[1146, 1, 1, "", "as_bytes_io"], [1146, 1, 1, "", "convert"], [1146, 1, 1, "", "dump"], [1146, 1, 1, "", "dumps"]], "oaklib.datamodels": [[1193, 3, 0, "-", "search"]], "oaklib.datamodels.search": [[1193, 0, 1, "", "SearchConfiguration"], [1193, 4, 1, "", "create_search_configuration"]], "oaklib.datamodels.text_annotator": [[1180, 0, 1, "", "TextAnnotation"]], "oaklib.implementations.aggregator.aggregator_implementation": [[1148, 0, 1, "", "AggregatorImplementation"]], "oaklib.implementations.funowl.funowl_implementation": [[1150, 0, 1, "", "FunOwlImplementation"]], "oaklib.implementations.gilda": [[1151, 0, 1, "", "GildaImplementation"]], "oaklib.implementations.obograph.obograph_implementation": [[1154, 0, 1, "", "OboGraphImplementation"]], "oaklib.implementations.ols.ols_implementation": [[1155, 0, 1, "", "OlsImplementation"]], "oaklib.implementations.ontobee.ontobee_implementation": [[1156, 0, 1, "", "OntobeeImplementation"]], "oaklib.implementations.owlery.owlery_implementation": [[1157, 0, 1, "", "OwleryImplementation"]], "oaklib.implementations.pantherdb.pantherdb_implementation": [[1158, 0, 1, "", "PantherDBImplementation"]], "oaklib.implementations.pronto.pronto_implementation": [[1159, 0, 1, "", "ProntoImplementation"]], "oaklib.implementations.simpleobo.simple_obo_implementation": [[1160, 0, 1, "", "SimpleOboImplementation"]], "oaklib.implementations.sparql.sparql_implementation": [[1161, 0, 1, "", "SparqlImplementation"]], "oaklib.implementations.sqldb.sql_implementation": [[1162, 0, 1, "", "SqlImplementation"]], "oaklib.implementations.sqldb.sql_implementation.SqlImplementation": [[1162, 1, 1, "", "create"]], "oaklib.implementations.ubergraph.ubergraph_implementation": [[1163, 0, 1, "", "RelationGraphEnum"], [1163, 0, 1, "", "UbergraphImplementation"]], "oaklib.interfaces.association_provider_interface": [[1165, 0, 1, "", "AssociationProviderInterface"]], "oaklib.interfaces.association_provider_interface.AssociationProviderInterface": [[1165, 1, 1, "", "add_associations"], [1165, 1, 1, "", "association_counts"], [1165, 1, 1, "", "association_pairwise_coassociations"], [1165, 1, 1, "", "association_subject_counts"], [1165, 1, 1, "", "associations"], [1165, 1, 1, "", "associations_subject_search"], [1165, 1, 1, "", "associations_subjects"], [1165, 1, 1, "", "map_associations"], [1165, 1, 1, "", "normalize_association"], [1165, 1, 1, "", "normalize_associations"]], "oaklib.interfaces.basic_ontology_interface": [[1166, 0, 1, "", "BasicOntologyInterface"]], "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface": [[1166, 1, 1, "", "add_missing_property_values"], [1166, 1, 1, "", "alias_map_by_curie"], [1166, 1, 1, "", "aliases_by_curie"], [1166, 1, 1, "", "all_entity_curies"], [1166, 1, 1, "", "all_obsolete_curies"], [1166, 1, 1, "", "all_ontology_curies"], [1166, 1, 1, "", "all_relationships"], [1166, 1, 1, "", "all_subset_curies"], [1166, 2, 1, "", "auto_relax_axioms"], [1166, 2, 1, "", "autosave"], [1166, 2, 1, "", "cache_lookups"], [1166, 1, 1, "", "clone"], [1166, 1, 1, "", "comments"], [1166, 5, 1, "", "converter"], [1166, 1, 1, "", "create_entity"], [1166, 1, 1, "", "curie_to_uri"], [1166, 1, 1, "", "curies_by_label"], [1166, 1, 1, "", "curies_by_subset"], [1166, 1, 1, "", "dangling"], [1166, 5, 1, "", "default_language"], [1166, 1, 1, "", "defined_by"], [1166, 1, 1, "", "defined_bys"], [1166, 1, 1, "", "definition"], [1166, 1, 1, "", "definitions"], [1166, 1, 1, "", "delete_entity"], [1166, 5, 1, "", "edge_index"], [1166, 5, 1, "", "entailed_edge_index"], [1166, 1, 1, "", "entities"], [1166, 1, 1, "", "entities_metadata_statements"], [1166, 1, 1, "", "entity_alias_map"], [1166, 1, 1, "", "entity_aliases"], [1166, 1, 1, "", "entity_metadata_map"], [1166, 2, 1, "", "exclude_owl_top_and_bottom"], [1166, 1, 1, "", "get_curies_by_label"], [1166, 1, 1, "", "get_definition_by_curie"], [1166, 1, 1, "", "get_label_by_curie"], [1166, 1, 1, "", "get_labels_for_curies"], [1166, 1, 1, "", "get_prefix_map"], [1166, 1, 1, "", "hierarchical_parents"], [1166, 1, 1, "", "incoming_relationship_map"], [1166, 1, 1, "", "incoming_relationships"], [1166, 1, 1, "", "label"], [1166, 1, 1, "", "labels"], [1166, 1, 1, "", "languages"], [1166, 1, 1, "", "leafs"], [1166, 5, 1, "", "multilingual"], [1166, 1, 1, "", "multilingual_labels"], [1166, 1, 1, "", "obsoletes"], [1166, 1, 1, "", "obsoletes_migration_relationships"], [1166, 1, 1, "", "ontologies"], [1166, 1, 1, "", "ontology_curies"], [1166, 1, 1, "", "ontology_metadata_map"], [1166, 2, 1, "", "ontology_metamodel_mapper"], [1166, 1, 1, "", "ontology_versions"], [1166, 1, 1, "", "outgoing_relationship_map"], [1166, 1, 1, "", "outgoing_relationships"], [1166, 1, 1, "", "owl_type"], [1166, 1, 1, "", "owl_types"], [1166, 1, 1, "", "precompute_lookups"], [1166, 1, 1, "", "prefix_map"], [1166, 1, 1, "", "query"], [1166, 1, 1, "", "relationships"], [1166, 1, 1, "", "relationships_metadata"], [1166, 1, 1, "", "roots"], [1166, 1, 1, "", "save"], [1166, 1, 1, "", "set_label"], [1166, 1, 1, "", "set_metamodel_mappings"], [1166, 1, 1, "", "simple_mappings"], [1166, 1, 1, "", "simple_mappings_by_curie"], [1166, 1, 1, "", "singletons"], [1166, 2, 1, "", "strict"], [1166, 1, 1, "", "subset_curies"], [1166, 1, 1, "", "subset_members"], [1166, 1, 1, "", "subsets"], [1166, 1, 1, "", "terms_categories"], [1166, 1, 1, "", "terms_subsets"], [1166, 1, 1, "", "uri_to_curie"]], "oaklib.interfaces.class_enrichment_calculation_interface": [[1167, 0, 1, "", "ClassEnrichmentCalculationInterface"]], "oaklib.interfaces.class_enrichment_calculation_interface.ClassEnrichmentCalculationInterface": [[1167, 1, 1, "", "create_self_associations"], [1167, 1, 1, "", "enriched_classes"]], "oaklib.interfaces.differ_interface": [[1168, 0, 1, "", "DifferInterface"]], "oaklib.interfaces.differ_interface.DifferInterface": [[1168, 2, 1, "", "autosave"], [1168, 1, 1, "", "compare_ontology_term_lists"], [1168, 1, 1, "", "diff"], [1168, 1, 1, "", "diff_summary"], [1168, 2, 1, "", "exclude_owl_top_and_bottom"]], "oaklib.interfaces.dumper_interface": [[1169, 0, 1, "", "DumperInterface"]], "oaklib.interfaces.dumper_interface.DumperInterface": [[1169, 2, 1, "", "autosave"], [1169, 1, 1, "", "dump"], [1169, 2, 1, "", "exclude_owl_top_and_bottom"]], "oaklib.interfaces.mapping_provider_interface": [[1171, 0, 1, "", "MappingProviderInterface"]], "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface": [[1171, 1, 1, "", "all_sssom_mappings"], [1171, 2, 1, "", "autosave"], [1171, 1, 1, "", "create_normalization_map"], [1171, 2, 1, "", "exclude_owl_top_and_bottom"], [1171, 1, 1, "", "get_sssom_mappings_by_curie"], [1171, 1, 1, "", "get_transitive_mappings_by_curie"], [1171, 1, 1, "", "normalize"], [1171, 1, 1, "", "normalize_prefix"], [1171, 1, 1, "", "sssom_mappings"], [1171, 1, 1, "", "sssom_mappings_by_source"]], "oaklib.interfaces.obograph_interface": [[1172, 0, 1, "", "OboGraphInterface"], [1172, 0, 1, "", "TraversalConfiguration"]], "oaklib.interfaces.obograph_interface.OboGraphInterface": [[1172, 1, 1, "", "add_metadata"], [1172, 1, 1, "", "ancestor_graph"], [1172, 1, 1, "", "ancestors"], [1172, 1, 1, "", "as_obograph"], [1172, 1, 1, "", "descendant_count"], [1172, 1, 1, "", "descendant_graph"], [1172, 1, 1, "", "descendants"], [1172, 1, 1, "", "disable_transitive_query_cache"], [1172, 1, 1, "", "disjoint_class_expressions_axioms"], [1172, 1, 1, "", "edges"], [1172, 1, 1, "", "enable_transitive_query_cache"], [1172, 1, 1, "", "extract_graph"], [1172, 1, 1, "", "load_graph"], [1172, 1, 1, "", "logical_definitions"], [1172, 1, 1, "", "node"], [1172, 1, 1, "", "nodes"], [1172, 1, 1, "", "paths"], [1172, 1, 1, "", "relationships_to_graph"], [1172, 1, 1, "", "subgraph_from_traversal"], [1172, 1, 1, "", "synonym_map_for_curies"], [1172, 1, 1, "", "walk_up_relationship_graph"]], "oaklib.interfaces.owl_interface": [[1173, 0, 1, "", "OwlInterface"]], "oaklib.interfaces.owl_interface.OwlInterface": [[1173, 1, 1, "", "annotation_assertion_axioms"], [1173, 1, 1, "", "axiom_is_about"], [1173, 1, 1, "", "axiom_references"], [1173, 1, 1, "", "disjoint_pairs"], [1173, 1, 1, "", "equivalence_axioms"], [1173, 1, 1, "", "is_disjoint"], [1173, 1, 1, "", "is_satisfiable"], [1173, 1, 1, "", "property_characteristics"], [1173, 1, 1, "", "reasoner_configurations"], [1173, 1, 1, "", "simple_subproperty_of_chains"], [1173, 1, 1, "", "subclass_axioms"], [1173, 1, 1, "", "transitive_object_properties"]], "oaklib.interfaces.patcher_interface": [[1174, 0, 1, "", "PatcherInterface"]], "oaklib.interfaces.patcher_interface.PatcherInterface": [[1174, 1, 1, "", "apply_patch"], [1174, 2, 1, "", "auto_add_contributor_using"], [1174, 1, 1, "", "expand_change"], [1174, 1, 1, "", "expand_changes"], [1174, 2, 1, "", "ignore_invalid_changes"], [1174, 1, 1, "", "migrate_curies"], [1174, 1, 1, "", "reverse_changes"], [1174, 1, 1, "", "save"], [1174, 1, 1, "", "undo"]], "oaklib.interfaces.relation_graph_interface": [[1175, 0, 1, "", "RelationGraphInterface"]], "oaklib.interfaces.relation_graph_interface.RelationGraphInterface": [[1175, 2, 1, "", "autosave"], [1175, 1, 1, "", "entailed_incoming_relationships"], [1175, 1, 1, "", "entailed_outgoing_relationships"], [1175, 1, 1, "", "entailed_relationships_between"], [1175, 2, 1, "", "exclude_owl_top_and_bottom"]], "oaklib.interfaces.search_interface": [[1176, 0, 1, "", "SearchConfiguration"], [1176, 0, 1, "", "SearchInterface"]], "oaklib.interfaces.search_interface.SearchInterface": [[1176, 2, 1, "", "autosave"], [1176, 1, 1, "", "basic_search"], [1176, 2, 1, "", "exclude_owl_top_and_bottom"], [1176, 1, 1, "", "multiterm_search"]], "oaklib.interfaces.semsim_interface": [[1177, 0, 1, "", "SemanticSimilarityInterface"]], "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface": [[1177, 1, 1, "", "all_by_all_pairwise_similarity"], [1177, 2, 1, "", "cached_information_content_map"], [1177, 1, 1, "", "common_ancestors"], [1177, 1, 1, "", "get_information_content"], [1177, 1, 1, "", "information_content_scores"], [1177, 1, 1, "", "most_recent_common_ancestors"], [1177, 1, 1, "", "multiset_most_recent_common_ancestors"], [1177, 1, 1, "", "pairwise_similarity"], [1177, 1, 1, "", "setwise_most_recent_common_ancestors"]], "oaklib.interfaces.subsetter_interface": [[1178, 0, 1, "", "SubsetterInterface"]], "oaklib.interfaces.subsetter_interface.SubsetterInterface": [[1178, 2, 1, "", "autosave"], [1178, 2, 1, "", "exclude_owl_top_and_bottom"], [1178, 1, 1, "", "extract_subset_ontology"], [1178, 1, 1, "", "gap_fill_relationships"]], "oaklib.interfaces.summary_statistics_interface": [[1179, 0, 1, "", "SummaryStatisticsInterface"]], "oaklib.interfaces.summary_statistics_interface.SummaryStatisticsInterface": [[1179, 1, 1, "", "branch_summary_statistics"], [1179, 1, 1, "", "global_summary_statistics"], [1179, 1, 1, "", "metadata_property_summary_statistics"], [1179, 1, 1, "", "summary_statistic_description"]], "oaklib.interfaces.text_annotator_interface": [[1180, 0, 1, "", "TextAnnotatorInterface"]], "oaklib.interfaces.text_annotator_interface.TextAnnotatorInterface": [[1180, 1, 1, "", "annotate_file"], [1180, 1, 1, "", "annotate_tabular_file"], [1180, 1, 1, "", "annotate_text"], [1180, 2, 1, "", "cache_directory"], [1180, 2, 1, "", "lexical_index"], [1180, 2, 1, "", "rule_collection"]], "oaklib.interfaces.validator_interface": [[1181, 0, 1, "", "ValidatorInterface"]], "oaklib.interfaces.validator_interface.ValidatorInterface": [[1181, 2, 1, "", "autosave"], [1181, 2, 1, "", "exclude_owl_top_and_bottom"], [1181, 1, 1, "", "is_coherent"], [1181, 1, 1, "", "repair"], [1181, 1, 1, "", "term_curies_without_definitions"], [1181, 1, 1, "", "unsatisfiable_classes"], [1181, 1, 1, "", "validate"], [1181, 1, 1, "", "validate_mappings"]], "oaklib": [[1182, 3, 0, "-", "selector"]], "oaklib.selector": [[1182, 4, 1, "", "add_associations"], [1182, 4, 1, "", "get_adapter"], [1182, 4, 1, "", "get_implementation_class_from_scheme"], [1182, 4, 1, "", "get_implementation_from_shorthand"], [1182, 4, 1, "", "get_resource_from_shorthand"]], "oaklib.utilities": [[1183, 3, 0, "-", "apikey_manager"], [1187, 3, 0, "-", "obograph_utils"], [1189, 3, 0, "-", "table_filler"], [1190, 3, 0, "-", "taxon"]], "oaklib.utilities.graph": [[1184, 3, 0, "-", "networkx_bridge"], [1185, 3, 0, "-", "relationship_walker"]], "oaklib.utilities.lexical": [[1186, 3, 0, "-", "lexical_indexer"]], "oaklib.utilities.subsets": [[1188, 3, 0, "-", "slimmer_utils"]], "semsql.sqla.semsql": [[1162, 0, 1, "", "Edge"], [1162, 0, 1, "", "EntailedEdge"], [1162, 0, 1, "", "Statements"]], "runoak-aliases": [[0, 6, 1, "cmdoption-runoak-aliases-obo-model", "--no-obo-model"], [0, 6, 1, "cmdoption-runoak-aliases-obo-model", "--obo-model"], [0, 6, 1, "cmdoption-runoak-aliases-o", "--output"], [0, 6, 1, "cmdoption-runoak-aliases-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-aliases-O", "-O"], [0, 6, 1, "cmdoption-runoak-aliases-o", "-o"], [0, 6, 1, "cmdoption-runoak-aliases-arg-TERMS", "TERMS"]], "runoak-ancestors": [[0, 6, 1, "cmdoption-runoak-ancestors-M", "--graph-traversal-method"], [0, 6, 1, "cmdoption-runoak-ancestors-statistics", "--no-statistics"], [0, 6, 1, "cmdoption-runoak-ancestors-o", "--output"], [0, 6, 1, "cmdoption-runoak-ancestors-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-ancestors-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-ancestors-statistics", "--statistics"], [0, 6, 1, "cmdoption-runoak-ancestors-M", "-M"], [0, 6, 1, "cmdoption-runoak-ancestors-O", "-O"], [0, 6, 1, "cmdoption-runoak-ancestors-o", "-o"], [0, 6, 1, "cmdoption-runoak-ancestors-p", "-p"], [0, 6, 1, "cmdoption-runoak-ancestors-arg-TERMS", "TERMS"]], "runoak-annotate": [[0, 6, 1, "cmdoption-runoak-annotate-C", "--configuration-file"], [0, 6, 1, "cmdoption-runoak-annotate-x", "--exclude-tokens"], [0, 6, 1, "cmdoption-runoak-annotate-include-aliases", "--include-aliases"], [0, 6, 1, "cmdoption-runoak-annotate-L", "--lexical-index-file"], [0, 6, 1, "cmdoption-runoak-annotate-A", "--match-column"], [0, 6, 1, "cmdoption-runoak-annotate-W", "--matches-whole-text"], [0, 6, 1, "cmdoption-runoak-annotate-m", "--model"], [0, 6, 1, "cmdoption-runoak-annotate-W", "--no-W"], [0, 6, 1, "cmdoption-runoak-annotate-include-aliases", "--no-include-aliases"], [0, 6, 1, "cmdoption-runoak-annotate-W", "--no-matches-whole-text"], [0, 6, 1, "cmdoption-runoak-annotate-o", "--output"], [0, 6, 1, "cmdoption-runoak-annotate-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-annotate-R", "--rules-file"], [0, 6, 1, "cmdoption-runoak-annotate-text-file", "--text-file"], [0, 6, 1, "cmdoption-runoak-annotate-A", "-A"], [0, 6, 1, "cmdoption-runoak-annotate-C", "-C"], [0, 6, 1, "cmdoption-runoak-annotate-L", "-L"], [0, 6, 1, "cmdoption-runoak-annotate-O", "-O"], [0, 6, 1, "cmdoption-runoak-annotate-R", "-R"], [0, 6, 1, "cmdoption-runoak-annotate-W", "-W"], [0, 6, 1, "cmdoption-runoak-annotate-m", "-m"], [0, 6, 1, "cmdoption-runoak-annotate-o", "-o"], [0, 6, 1, "cmdoption-runoak-annotate-x", "-x"], [0, 6, 1, "cmdoption-runoak-annotate-arg-WORDS", "WORDS"]], "runoak-apply-obsolete": [[0, 6, 1, "cmdoption-runoak-apply-obsolete-expand", "--expand"], [0, 6, 1, "cmdoption-runoak-apply-obsolete-ignore-invalid-changes", "--ignore-invalid-changes"], [0, 6, 1, "cmdoption-runoak-apply-obsolete-expand", "--no-expand"], [0, 6, 1, "cmdoption-runoak-apply-obsolete-ignore-invalid-changes", "--no-ignore-invalid-changes"], [0, 6, 1, "cmdoption-runoak-apply-obsolete-o", "--output"], [0, 6, 1, "cmdoption-runoak-apply-obsolete-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-apply-obsolete-O", "-O"], [0, 6, 1, "cmdoption-runoak-apply-obsolete-o", "-o"], [0, 6, 1, "cmdoption-runoak-apply-obsolete-arg-TERMS", "TERMS"]], "runoak-apply-taxon-constraints": [[0, 6, 1, "cmdoption-runoak-apply-taxon-constraints-E", "--evolution-file"], [0, 6, 1, "cmdoption-runoak-apply-taxon-constraints-M", "--graph-traversal-method"], [0, 6, 1, "cmdoption-runoak-apply-taxon-constraints-o", "--output"], [0, 6, 1, "cmdoption-runoak-apply-taxon-constraints-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-apply-taxon-constraints-E", "-E"], [0, 6, 1, "cmdoption-runoak-apply-taxon-constraints-M", "-M"], [0, 6, 1, "cmdoption-runoak-apply-taxon-constraints-o", "-o"], [0, 6, 1, "cmdoption-runoak-apply-taxon-constraints-p", "-p"], [0, 6, 1, "cmdoption-runoak-apply-taxon-constraints-arg-CONSTRAINTS", "CONSTRAINTS"]], "runoak-apply": [[0, 6, 1, "cmdoption-runoak-apply-changes-format", "--changes-format"], [0, 6, 1, "cmdoption-runoak-apply-changes-input", "--changes-input"], [0, 6, 1, "cmdoption-runoak-apply-changes-output", "--changes-output"], [0, 6, 1, "cmdoption-runoak-apply-contributor", "--contributor"], [0, 6, 1, "cmdoption-runoak-apply-dry-run", "--dry-run"], [0, 6, 1, "cmdoption-runoak-apply-expand", "--expand"], [0, 6, 1, "cmdoption-runoak-apply-ignore-invalid-changes", "--ignore-invalid-changes"], [0, 6, 1, "cmdoption-runoak-apply-dry-run", "--no-dry-run"], [0, 6, 1, "cmdoption-runoak-apply-expand", "--no-expand"], [0, 6, 1, "cmdoption-runoak-apply-ignore-invalid-changes", "--no-ignore-invalid-changes"], [0, 6, 1, "cmdoption-runoak-apply-overwrite", "--no-overwrite"], [0, 6, 1, "cmdoption-runoak-apply-o", "--output"], [0, 6, 1, "cmdoption-runoak-apply-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-apply-overwrite", "--overwrite"], [0, 6, 1, "cmdoption-runoak-apply-O", "-O"], [0, 6, 1, "cmdoption-runoak-apply-o", "-o"], [0, 6, 1, "cmdoption-runoak-apply-arg-COMMANDS", "COMMANDS"]], "runoak-associations-counts": [[0, 6, 1, "cmdoption-runoak-associations-counts-add-closure-fields", "--add-closure-fields"], [0, 6, 1, "cmdoption-runoak-associations-counts-association-predicates", "--association-predicates"], [0, 6, 1, "cmdoption-runoak-associations-counts-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-associations-counts-F", "--filter"], [0, 6, 1, "cmdoption-runoak-associations-counts-group-by", "--group-by"], [0, 6, 1, "cmdoption-runoak-associations-counts-L", "--limit"], [0, 6, 1, "cmdoption-runoak-associations-counts-min-facet-count", "--min-facet-count"], [0, 6, 1, "cmdoption-runoak-associations-counts-add-closure-fields", "--no-add-closure-fields"], [0, 6, 1, "cmdoption-runoak-associations-counts-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-associations-counts-o", "--output"], [0, 6, 1, "cmdoption-runoak-associations-counts-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-associations-counts-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-associations-counts-Q", "--terms-role"], [0, 6, 1, "cmdoption-runoak-associations-counts-F", "-F"], [0, 6, 1, "cmdoption-runoak-associations-counts-L", "-L"], [0, 6, 1, "cmdoption-runoak-associations-counts-O", "-O"], [0, 6, 1, "cmdoption-runoak-associations-counts-Q", "-Q"], [0, 6, 1, "cmdoption-runoak-associations-counts-o", "-o"], [0, 6, 1, "cmdoption-runoak-associations-counts-p", "-p"], [0, 6, 1, "cmdoption-runoak-associations-counts-arg-TERMS", "TERMS"]], "runoak-associations-matrix": [[0, 6, 1, "cmdoption-runoak-associations-matrix-association-predicates", "--association-predicates"], [0, 6, 1, "cmdoption-runoak-associations-matrix-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-associations-matrix-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-associations-matrix-o", "--output"], [0, 6, 1, "cmdoption-runoak-associations-matrix-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-associations-matrix-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-associations-matrix-Q", "--terms-role"], [0, 6, 1, "cmdoption-runoak-associations-matrix-O", "-O"], [0, 6, 1, "cmdoption-runoak-associations-matrix-Q", "-Q"], [0, 6, 1, "cmdoption-runoak-associations-matrix-o", "-o"], [0, 6, 1, "cmdoption-runoak-associations-matrix-p", "-p"], [0, 6, 1, "cmdoption-runoak-associations-matrix-arg-TERMS", "TERMS"]], "runoak-associations": [[0, 6, 1, "cmdoption-runoak-associations-add-closure-fields", "--add-closure-fields"], [0, 6, 1, "cmdoption-runoak-associations-association-predicates", "--association-predicates"], [0, 6, 1, "cmdoption-runoak-associations-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-associations-if-absent", "--if-absent"], [0, 6, 1, "cmdoption-runoak-associations-add-closure-fields", "--no-add-closure-fields"], [0, 6, 1, "cmdoption-runoak-associations-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-associations-o", "--output"], [0, 6, 1, "cmdoption-runoak-associations-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-associations-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-associations-S", "--set-value"], [0, 6, 1, "cmdoption-runoak-associations-Q", "--terms-role"], [0, 6, 1, "cmdoption-runoak-associations-O", "-O"], [0, 6, 1, "cmdoption-runoak-associations-Q", "-Q"], [0, 6, 1, "cmdoption-runoak-associations-S", "-S"], [0, 6, 1, "cmdoption-runoak-associations-o", "-o"], [0, 6, 1, "cmdoption-runoak-associations-p", "-p"], [0, 6, 1, "cmdoption-runoak-associations-arg-TERMS", "TERMS"]], "runoak-axioms": [[0, 6, 1, "cmdoption-runoak-axioms-about", "--about"], [0, 6, 1, "cmdoption-runoak-axioms-axiom-type", "--axiom-type"], [0, 6, 1, "cmdoption-runoak-axioms-o", "--output"], [0, 6, 1, "cmdoption-runoak-axioms-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-axioms-references", "--references"], [0, 6, 1, "cmdoption-runoak-axioms-O", "-O"], [0, 6, 1, "cmdoption-runoak-axioms-o", "-o"], [0, 6, 1, "cmdoption-runoak-axioms-arg-TERMS", "TERMS"]], "runoak-cache-clear": [[0, 6, 1, "cmdoption-runoak-cache-clear-days-old", "--days-old"]], "runoak-definitions": [[0, 6, 1, "cmdoption-runoak-definitions-additional-metadata", "--additional-metadata"], [0, 6, 1, "cmdoption-runoak-definitions-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-definitions-D", "--display"], [0, 6, 1, "cmdoption-runoak-definitions-if-absent", "--if-absent"], [0, 6, 1, "cmdoption-runoak-definitions-additional-metadata", "--no-additional-metadata"], [0, 6, 1, "cmdoption-runoak-definitions-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-definitions-o", "--output"], [0, 6, 1, "cmdoption-runoak-definitions-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-definitions-S", "--set-value"], [0, 6, 1, "cmdoption-runoak-definitions-D", "-D"], [0, 6, 1, "cmdoption-runoak-definitions-O", "-O"], [0, 6, 1, "cmdoption-runoak-definitions-S", "-S"], [0, 6, 1, "cmdoption-runoak-definitions-o", "-o"], [0, 6, 1, "cmdoption-runoak-definitions-arg-TERMS", "TERMS"]], "runoak-descendants": [[0, 6, 1, "cmdoption-runoak-descendants-D", "--display"], [0, 6, 1, "cmdoption-runoak-descendants-M", "--graph-traversal-method"], [0, 6, 1, "cmdoption-runoak-descendants-o", "--output"], [0, 6, 1, "cmdoption-runoak-descendants-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-descendants-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-descendants-D", "-D"], [0, 6, 1, "cmdoption-runoak-descendants-M", "-M"], [0, 6, 1, "cmdoption-runoak-descendants-O", "-O"], [0, 6, 1, "cmdoption-runoak-descendants-o", "-o"], [0, 6, 1, "cmdoption-runoak-descendants-p", "-p"], [0, 6, 1, "cmdoption-runoak-descendants-arg-TERMS", "TERMS"]], "runoak-diff-associations": [[0, 6, 1, "cmdoption-runoak-diff-associations-g", "--associations"], [0, 6, 1, "cmdoption-runoak-diff-associations-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-diff-associations-group-by", "--group-by"], [0, 6, 1, "cmdoption-runoak-diff-associations-new-date", "--new-date"], [0, 6, 1, "cmdoption-runoak-diff-associations-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-diff-associations-old-date", "--old-date"], [0, 6, 1, "cmdoption-runoak-diff-associations-X", "--other-associations"], [0, 6, 1, "cmdoption-runoak-diff-associations-o", "--output"], [0, 6, 1, "cmdoption-runoak-diff-associations-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-diff-associations-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-diff-associations-O", "-O"], [0, 6, 1, "cmdoption-runoak-diff-associations-X", "-X"], [0, 6, 1, "cmdoption-runoak-diff-associations-g", "-g"], [0, 6, 1, "cmdoption-runoak-diff-associations-o", "-o"], [0, 6, 1, "cmdoption-runoak-diff-associations-p", "-p"]], "runoak-diff-terms": [[0, 6, 1, "cmdoption-runoak-diff-terms-other-ontology", "--other-ontology"], [0, 6, 1, "cmdoption-runoak-diff-terms-o", "--output"], [0, 6, 1, "cmdoption-runoak-diff-terms-o", "-o"], [0, 6, 1, "cmdoption-runoak-diff-terms-arg-TERMS", "TERMS"]], "runoak-diff-via-mappings": [[0, 6, 1, "cmdoption-runoak-diff-via-mappings-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-bidirectional", "--bidirectional"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-filter-category-identical", "--filter-category-identical"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-include-identity-mappings", "--include-identity-mappings"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-intra", "--intra"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-mapping-input", "--mapping-input"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-bidirectional", "--no-bidirectional"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-filter-category-identical", "--no-filter-category-identical"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-include-identity-mappings", "--no-include-identity-mappings"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-intra", "--no-intra"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-X", "--other-input"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-other-input-type", "--other-input-type"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-o", "--output"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-S", "--source"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-O", "-O"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-S", "-S"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-X", "-X"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-o", "-o"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-p", "-p"], [0, 6, 1, "cmdoption-runoak-diff-via-mappings-arg-TERMS", "TERMS"]], "runoak-diff": [[0, 6, 1, "cmdoption-runoak-diff-change-type", "--change-type"], [0, 6, 1, "cmdoption-runoak-diff-group-by-defined-by", "--group-by-defined-by"], [0, 6, 1, "cmdoption-runoak-diff-group-by-obo-namespace", "--group-by-obo-namespace"], [0, 6, 1, "cmdoption-runoak-diff-group-by-prefix", "--group-by-prefix"], [0, 6, 1, "cmdoption-runoak-diff-group-by-property", "--group-by-property"], [0, 6, 1, "cmdoption-runoak-diff-group-by-defined-by", "--no-group-by-defined-by"], [0, 6, 1, "cmdoption-runoak-diff-group-by-obo-namespace", "--no-group-by-obo-namespace"], [0, 6, 1, "cmdoption-runoak-diff-group-by-prefix", "--no-group-by-prefix"], [0, 6, 1, "cmdoption-runoak-diff-simple", "--no-simple"], [0, 6, 1, "cmdoption-runoak-diff-statistics", "--no-statistics"], [0, 6, 1, "cmdoption-runoak-diff-X", "--other-ontology"], [0, 6, 1, "cmdoption-runoak-diff-o", "--output"], [0, 6, 1, "cmdoption-runoak-diff-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-diff-simple", "--simple"], [0, 6, 1, "cmdoption-runoak-diff-statistics", "--statistics"], [0, 6, 1, "cmdoption-runoak-diff-O", "-O"], [0, 6, 1, "cmdoption-runoak-diff-X", "-X"], [0, 6, 1, "cmdoption-runoak-diff-o", "-o"]], "runoak-disjoints": [[0, 6, 1, "cmdoption-runoak-disjoints-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-disjoints-named-classes-only", "--named-classes-only"], [0, 6, 1, "cmdoption-runoak-disjoints-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-disjoints-named-classes-only", "--no-named-classes-only"], [0, 6, 1, "cmdoption-runoak-disjoints-o", "--output"], [0, 6, 1, "cmdoption-runoak-disjoints-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-disjoints-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-disjoints-O", "-O"], [0, 6, 1, "cmdoption-runoak-disjoints-o", "-o"], [0, 6, 1, "cmdoption-runoak-disjoints-p", "-p"], [0, 6, 1, "cmdoption-runoak-disjoints-arg-TERMS", "TERMS"]], "runoak-dump": [[0, 6, 1, "cmdoption-runoak-dump-c", "--config-file"], [0, 6, 1, "cmdoption-runoak-dump-enforce-canonical-ordering", "--enforce-canonical-ordering"], [0, 6, 1, "cmdoption-runoak-dump-enforce-canonical-ordering", "--no-enforce-canonical-ordering"], [0, 6, 1, "cmdoption-runoak-dump-o", "--output"], [0, 6, 1, "cmdoption-runoak-dump-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-dump-O", "-O"], [0, 6, 1, "cmdoption-runoak-dump-c", "-c"], [0, 6, 1, "cmdoption-runoak-dump-o", "-o"], [0, 6, 1, "cmdoption-runoak-dump-arg-TERMS", "TERMS"]], "runoak-enrichment": [[0, 6, 1, "cmdoption-runoak-enrichment-allow-labels", "--allow-labels"], [0, 6, 1, "cmdoption-runoak-enrichment-association-predicates", "--association-predicates"], [0, 6, 1, "cmdoption-runoak-enrichment-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-enrichment-B", "--background-file"], [0, 6, 1, "cmdoption-runoak-enrichment-cutoff", "--cutoff"], [0, 6, 1, "cmdoption-runoak-enrichment-filter-redundant", "--filter-redundant"], [0, 6, 1, "cmdoption-runoak-enrichment-allow-labels", "--no-allow-labels"], [0, 6, 1, "cmdoption-runoak-enrichment-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-enrichment-filter-redundant", "--no-filter-redundant"], [0, 6, 1, "cmdoption-runoak-enrichment-ontology-only", "--no-ontology-only"], [0, 6, 1, "cmdoption-runoak-enrichment-ontology-only", "--ontology-only"], [0, 6, 1, "cmdoption-runoak-enrichment-o", "--output"], [0, 6, 1, "cmdoption-runoak-enrichment-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-enrichment-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-enrichment-U", "--sample-file"], [0, 6, 1, "cmdoption-runoak-enrichment-B", "-B"], [0, 6, 1, "cmdoption-runoak-enrichment-O", "-O"], [0, 6, 1, "cmdoption-runoak-enrichment-U", "-U"], [0, 6, 1, "cmdoption-runoak-enrichment-o", "-o"], [0, 6, 1, "cmdoption-runoak-enrichment-p", "-p"], [0, 6, 1, "cmdoption-runoak-enrichment-arg-TERMS", "TERMS"]], "runoak-expand-subsets": [[0, 6, 1, "cmdoption-runoak-expand-subsets-o", "--output"], [0, 6, 1, "cmdoption-runoak-expand-subsets-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-expand-subsets-o", "-o"], [0, 6, 1, "cmdoption-runoak-expand-subsets-p", "-p"], [0, 6, 1, "cmdoption-runoak-expand-subsets-arg-SUBSETS", "SUBSETS"]], "runoak-extract": [[0, 6, 1, "cmdoption-runoak-extract-dangling", "--dangling"], [0, 6, 1, "cmdoption-runoak-extract-include-metadata", "--include-metadata"], [0, 6, 1, "cmdoption-runoak-extract-dangling", "--no-dangling"], [0, 6, 1, "cmdoption-runoak-extract-include-metadata", "--no-include-metadata"], [0, 6, 1, "cmdoption-runoak-extract-o", "--output"], [0, 6, 1, "cmdoption-runoak-extract-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-extract-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-extract-O", "-O"], [0, 6, 1, "cmdoption-runoak-extract-o", "-o"], [0, 6, 1, "cmdoption-runoak-extract-p", "-p"], [0, 6, 1, "cmdoption-runoak-extract-arg-TERMS", "TERMS"]], "runoak-fill-table": [[0, 6, 1, "cmdoption-runoak-fill-table-allow-missing", "--allow-missing"], [0, 6, 1, "cmdoption-runoak-fill-table-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-fill-table-comment", "--comment"], [0, 6, 1, "cmdoption-runoak-fill-table-delimiter", "--delimiter"], [0, 6, 1, "cmdoption-runoak-fill-table-missing-value-token", "--missing-value-token"], [0, 6, 1, "cmdoption-runoak-fill-table-allow-missing", "--no-allow-missing"], [0, 6, 1, "cmdoption-runoak-fill-table-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-fill-table-o", "--output"], [0, 6, 1, "cmdoption-runoak-fill-table-relation", "--relation"], [0, 6, 1, "cmdoption-runoak-fill-table-relation-file", "--relation-file"], [0, 6, 1, "cmdoption-runoak-fill-table-schema", "--schema"], [0, 6, 1, "cmdoption-runoak-fill-table-o", "-o"], [0, 6, 1, "cmdoption-runoak-fill-table-arg-TABLE_FILE", "TABLE_FILE"]], "runoak-generate-definitions": [[0, 6, 1, "cmdoption-runoak-generate-definitions-apply-patch", "--apply-patch"], [0, 6, 1, "cmdoption-runoak-generate-definitions-apply-patch", "--no-apply-patch"], [0, 6, 1, "cmdoption-runoak-generate-definitions-o", "--output"], [0, 6, 1, "cmdoption-runoak-generate-definitions-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-generate-definitions-patch", "--patch"], [0, 6, 1, "cmdoption-runoak-generate-definitions-patch-format", "--patch-format"], [0, 6, 1, "cmdoption-runoak-generate-definitions-style-hints", "--style-hints"], [0, 6, 1, "cmdoption-runoak-generate-definitions-O", "-O"], [0, 6, 1, "cmdoption-runoak-generate-definitions-o", "-o"], [0, 6, 1, "cmdoption-runoak-generate-definitions-arg-TERMS", "TERMS"]], "runoak-generate-disjoints": [[0, 6, 1, "cmdoption-runoak-generate-disjoints-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-exclude-existing", "--exclude-existing"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-M", "--min-descendants"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-exclude-existing", "--no-exclude-existing"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-o", "--output"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-M", "-M"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-O", "-O"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-o", "-o"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-p", "-p"], [0, 6, 1, "cmdoption-runoak-generate-disjoints-arg-TERMS", "TERMS"]], "runoak-generate-logical-definitions": [[0, 6, 1, "cmdoption-runoak-generate-logical-definitions-analyze", "--analyze"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-fill", "--fill"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-analyze", "--no-analyze"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-fill", "--no-fill"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-parse", "--no-parse"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-show-extract", "--no-show-extract"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-unmelt", "--no-unmelt"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-o", "--output"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-parse", "--parse"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-P", "--patterns-file"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-show-extract", "--show-extract"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-unmelt", "--unmelt"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-O", "-O"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-P", "-P"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-o", "-o"], [0, 6, 1, "cmdoption-runoak-generate-logical-definitions-arg-TERMS", "TERMS"]], "runoak-generate-synonyms": [[0, 6, 1, "cmdoption-runoak-generate-synonyms-apply-patch", "--apply-patch"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-apply-patch", "--no-apply-patch"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-o", "--output"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-patch", "--patch"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-patch-format", "--patch-format"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-R", "--rules-file"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-O", "-O"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-R", "-R"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-o", "-o"], [0, 6, 1, "cmdoption-runoak-generate-synonyms-arg-TERMS", "TERMS"]], "runoak-info": [[0, 6, 1, "cmdoption-runoak-info-D", "--display"], [0, 6, 1, "cmdoption-runoak-info-o", "--output"], [0, 6, 1, "cmdoption-runoak-info-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-info-D", "-D"], [0, 6, 1, "cmdoption-runoak-info-O", "-O"], [0, 6, 1, "cmdoption-runoak-info-o", "-o"], [0, 6, 1, "cmdoption-runoak-info-arg-TERMS", "TERMS"]], "runoak-information-content": [[0, 6, 1, "cmdoption-runoak-information-content-use-associations", "--no-use-associations"], [0, 6, 1, "cmdoption-runoak-information-content-o", "--output"], [0, 6, 1, "cmdoption-runoak-information-content-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-information-content-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-information-content-use-associations", "--use-associations"], [0, 6, 1, "cmdoption-runoak-information-content-O", "-O"], [0, 6, 1, "cmdoption-runoak-information-content-o", "-o"], [0, 6, 1, "cmdoption-runoak-information-content-p", "-p"], [0, 6, 1, "cmdoption-runoak-information-content-arg-TERMS", "TERMS"]], "runoak-labels": [[0, 6, 1, "cmdoption-runoak-labels-all-languages", "--all-languages"], [0, 6, 1, "cmdoption-runoak-labels-D", "--display"], [0, 6, 1, "cmdoption-runoak-labels-if-absent", "--if-absent"], [0, 6, 1, "cmdoption-runoak-labels-all-languages", "--no-all-languages"], [0, 6, 1, "cmdoption-runoak-labels-pivot-languages", "--no-pivot-languages"], [0, 6, 1, "cmdoption-runoak-labels-o", "--output"], [0, 6, 1, "cmdoption-runoak-labels-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-labels-pivot-languages", "--pivot-languages"], [0, 6, 1, "cmdoption-runoak-labels-S", "--set-value"], [0, 6, 1, "cmdoption-runoak-labels-D", "-D"], [0, 6, 1, "cmdoption-runoak-labels-O", "-O"], [0, 6, 1, "cmdoption-runoak-labels-S", "-S"], [0, 6, 1, "cmdoption-runoak-labels-o", "-o"], [0, 6, 1, "cmdoption-runoak-labels-arg-TERMS", "TERMS"]], "runoak-leafs": [[0, 6, 1, "cmdoption-runoak-leafs-filter-obsoletes", "--filter-obsoletes"], [0, 6, 1, "cmdoption-runoak-leafs-filter-obsoletes", "--no-filter-obsoletes"], [0, 6, 1, "cmdoption-runoak-leafs-o", "--output"], [0, 6, 1, "cmdoption-runoak-leafs-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-leafs-o", "-o"], [0, 6, 1, "cmdoption-runoak-leafs-p", "-p"]], "runoak-lexmatch": [[0, 6, 1, "cmdoption-runoak-lexmatch-add-labels", "--add-labels"], [0, 6, 1, "cmdoption-runoak-lexmatch-ensure-strict-prefixes", "--ensure-strict-prefixes"], [0, 6, 1, "cmdoption-runoak-lexmatch-L", "--lexical-index-file"], [0, 6, 1, "cmdoption-runoak-lexmatch-add-labels", "--no-add-labels"], [0, 6, 1, "cmdoption-runoak-lexmatch-ensure-strict-prefixes", "--no-ensure-strict-prefixes"], [0, 6, 1, "cmdoption-runoak-lexmatch-recreate", "--no-recreate"], [0, 6, 1, "cmdoption-runoak-lexmatch-o", "--output"], [0, 6, 1, "cmdoption-runoak-lexmatch-recreate", "--recreate"], [0, 6, 1, "cmdoption-runoak-lexmatch-R", "--rules-file"], [0, 6, 1, "cmdoption-runoak-lexmatch-L", "-L"], [0, 6, 1, "cmdoption-runoak-lexmatch-R", "-R"], [0, 6, 1, "cmdoption-runoak-lexmatch-o", "-o"], [0, 6, 1, "cmdoption-runoak-lexmatch-arg-TERMS", "TERMS"]], "runoak-lint": [[0, 6, 1, "cmdoption-runoak-lint-dry-run", "--dry-run"], [0, 6, 1, "cmdoption-runoak-lint-dry-run", "--no-dry-run"], [0, 6, 1, "cmdoption-runoak-lint-o", "--output"], [0, 6, 1, "cmdoption-runoak-lint-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-lint-report-format", "--report-format"], [0, 6, 1, "cmdoption-runoak-lint-O", "-O"], [0, 6, 1, "cmdoption-runoak-lint-o", "-o"]], "runoak-logical-definitions": [[0, 6, 1, "cmdoption-runoak-logical-definitions-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-logical-definitions-if-absent", "--if-absent"], [0, 6, 1, "cmdoption-runoak-logical-definitions-matrix-axes", "--matrix-axes"], [0, 6, 1, "cmdoption-runoak-logical-definitions-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-logical-definitions-unmelt", "--no-unmelt"], [0, 6, 1, "cmdoption-runoak-logical-definitions-o", "--output"], [0, 6, 1, "cmdoption-runoak-logical-definitions-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-logical-definitions-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-logical-definitions-S", "--set-value"], [0, 6, 1, "cmdoption-runoak-logical-definitions-unmelt", "--unmelt"], [0, 6, 1, "cmdoption-runoak-logical-definitions-O", "-O"], [0, 6, 1, "cmdoption-runoak-logical-definitions-S", "-S"], [0, 6, 1, "cmdoption-runoak-logical-definitions-o", "-o"], [0, 6, 1, "cmdoption-runoak-logical-definitions-p", "-p"], [0, 6, 1, "cmdoption-runoak-logical-definitions-arg-TERMS", "TERMS"]], "runoak-mappings": [[0, 6, 1, "cmdoption-runoak-mappings-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-mappings-mapper", "--mapper"], [0, 6, 1, "cmdoption-runoak-mappings-M", "--maps-to-source"], [0, 6, 1, "cmdoption-runoak-mappings-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-mappings-o", "--output"], [0, 6, 1, "cmdoption-runoak-mappings-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-mappings-M", "-M"], [0, 6, 1, "cmdoption-runoak-mappings-O", "-O"], [0, 6, 1, "cmdoption-runoak-mappings-o", "-o"], [0, 6, 1, "cmdoption-runoak-mappings-arg-TERMS", "TERMS"]], "runoak-migrate-curies": [[0, 6, 1, "cmdoption-runoak-migrate-curies-replace", "--no-replace"], [0, 6, 1, "cmdoption-runoak-migrate-curies-o", "--output"], [0, 6, 1, "cmdoption-runoak-migrate-curies-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-migrate-curies-replace", "--replace"], [0, 6, 1, "cmdoption-runoak-migrate-curies-O", "-O"], [0, 6, 1, "cmdoption-runoak-migrate-curies-o", "-o"], [0, 6, 1, "cmdoption-runoak-migrate-curies-arg-CURIE_PAIRS", "CURIE_PAIRS"]], "runoak-normalize": [[0, 6, 1, "cmdoption-runoak-normalize-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-normalize-M", "--maps-to-source"], [0, 6, 1, "cmdoption-runoak-normalize-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-normalize-o", "--output"], [0, 6, 1, "cmdoption-runoak-normalize-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-normalize-M", "-M"], [0, 6, 1, "cmdoption-runoak-normalize-O", "-O"], [0, 6, 1, "cmdoption-runoak-normalize-o", "-o"], [0, 6, 1, "cmdoption-runoak-normalize-arg-TERMS", "TERMS"]], "runoak-obsoletes": [[0, 6, 1, "cmdoption-runoak-obsoletes-include-merged", "--include-merged"], [0, 6, 1, "cmdoption-runoak-obsoletes-include-merged", "--no-include-merged"], [0, 6, 1, "cmdoption-runoak-obsoletes-show-migration-relationships", "--no-show-migration-relationships"], [0, 6, 1, "cmdoption-runoak-obsoletes-o", "--output"], [0, 6, 1, "cmdoption-runoak-obsoletes-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-obsoletes-show-migration-relationships", "--show-migration-relationships"], [0, 6, 1, "cmdoption-runoak-obsoletes-O", "-O"], [0, 6, 1, "cmdoption-runoak-obsoletes-o", "-o"], [0, 6, 1, "cmdoption-runoak-obsoletes-arg-TERMS", "TERMS"]], "runoak-ontologies": [[0, 6, 1, "cmdoption-runoak-ontologies-o", "--output"], [0, 6, 1, "cmdoption-runoak-ontologies-o", "-o"]], "runoak-ontology-metadata": [[0, 6, 1, "cmdoption-runoak-ontology-metadata-all", "--all"], [0, 6, 1, "cmdoption-runoak-ontology-metadata-all", "--no-all"], [0, 6, 1, "cmdoption-runoak-ontology-metadata-o", "--output"], [0, 6, 1, "cmdoption-runoak-ontology-metadata-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-ontology-metadata-O", "-O"], [0, 6, 1, "cmdoption-runoak-ontology-metadata-o", "-o"], [0, 6, 1, "cmdoption-runoak-ontology-metadata-arg-ONTOLOGIES", "ONTOLOGIES"]], "runoak-ontology-versions": [[0, 6, 1, "cmdoption-runoak-ontology-versions-all", "--all"], [0, 6, 1, "cmdoption-runoak-ontology-versions-all", "--no-all"], [0, 6, 1, "cmdoption-runoak-ontology-versions-o", "--output"], [0, 6, 1, "cmdoption-runoak-ontology-versions-o", "-o"], [0, 6, 1, "cmdoption-runoak-ontology-versions-arg-ONTOLOGIES", "ONTOLOGIES"]], "runoak-paths": [[0, 6, 1, "cmdoption-runoak-paths-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-paths-C", "--configure"], [0, 6, 1, "cmdoption-runoak-paths-directed", "--directed"], [0, 6, 1, "cmdoption-runoak-paths-exclude-predicates", "--exclude-predicates"], [0, 6, 1, "cmdoption-runoak-paths-include-predicates", "--include-predicates"], [0, 6, 1, "cmdoption-runoak-paths-narrow", "--narrow"], [0, 6, 1, "cmdoption-runoak-paths-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-paths-directed", "--no-directed"], [0, 6, 1, "cmdoption-runoak-paths-include-predicates", "--no-include-predicates"], [0, 6, 1, "cmdoption-runoak-paths-narrow", "--no-narrow"], [0, 6, 1, "cmdoption-runoak-paths-viz", "--no-viz"], [0, 6, 1, "cmdoption-runoak-paths-o", "--output"], [0, 6, 1, "cmdoption-runoak-paths-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-paths-predicate-weights", "--predicate-weights"], [0, 6, 1, "cmdoption-runoak-paths-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-paths-S", "--stylemap"], [0, 6, 1, "cmdoption-runoak-paths-target", "--target"], [0, 6, 1, "cmdoption-runoak-paths-viz", "--viz"], [0, 6, 1, "cmdoption-runoak-paths-C", "-C"], [0, 6, 1, "cmdoption-runoak-paths-O", "-O"], [0, 6, 1, "cmdoption-runoak-paths-S", "-S"], [0, 6, 1, "cmdoption-runoak-paths-o", "-o"], [0, 6, 1, "cmdoption-runoak-paths-p", "-p"], [0, 6, 1, "cmdoption-runoak-paths-arg-TERMS", "TERMS"]], "runoak-prefixes": [[0, 6, 1, "cmdoption-runoak-prefixes-used-only", "--no-used-only"], [0, 6, 1, "cmdoption-runoak-prefixes-o", "--output"], [0, 6, 1, "cmdoption-runoak-prefixes-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-prefixes-used-only", "--used-only"], [0, 6, 1, "cmdoption-runoak-prefixes-O", "-O"], [0, 6, 1, "cmdoption-runoak-prefixes-o", "-o"], [0, 6, 1, "cmdoption-runoak-prefixes-arg-TERMS", "TERMS"]], "runoak-query": [[0, 6, 1, "cmdoption-runoak-query-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-query-L", "--label-fields"], [0, 6, 1, "cmdoption-runoak-query-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-query-o", "--output"], [0, 6, 1, "cmdoption-runoak-query-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-query-P", "--prefixes"], [0, 6, 1, "cmdoption-runoak-query-q", "--query"], [0, 6, 1, "cmdoption-runoak-query-L", "-L"], [0, 6, 1, "cmdoption-runoak-query-O", "-O"], [0, 6, 1, "cmdoption-runoak-query-P", "-P"], [0, 6, 1, "cmdoption-runoak-query-o", "-o"], [0, 6, 1, "cmdoption-runoak-query-q", "-q"]], "runoak-relationships": [[0, 6, 1, "cmdoption-runoak-relationships-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-relationships-direction", "--direction"], [0, 6, 1, "cmdoption-runoak-relationships-if-absent", "--if-absent"], [0, 6, 1, "cmdoption-runoak-relationships-include-abox", "--include-abox"], [0, 6, 1, "cmdoption-runoak-relationships-include-entailed", "--include-entailed"], [0, 6, 1, "cmdoption-runoak-relationships-include-metadata", "--include-metadata"], [0, 6, 1, "cmdoption-runoak-relationships-include-tbox", "--include-tbox"], [0, 6, 1, "cmdoption-runoak-relationships-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-relationships-include-abox", "--no-include-abox"], [0, 6, 1, "cmdoption-runoak-relationships-include-entailed", "--no-include-entailed"], [0, 6, 1, "cmdoption-runoak-relationships-include-metadata", "--no-include-metadata"], [0, 6, 1, "cmdoption-runoak-relationships-include-tbox", "--no-include-tbox"], [0, 6, 1, "cmdoption-runoak-relationships-o", "--output"], [0, 6, 1, "cmdoption-runoak-relationships-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-relationships-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-relationships-S", "--set-value"], [0, 6, 1, "cmdoption-runoak-relationships-O", "-O"], [0, 6, 1, "cmdoption-runoak-relationships-S", "-S"], [0, 6, 1, "cmdoption-runoak-relationships-o", "-o"], [0, 6, 1, "cmdoption-runoak-relationships-p", "-p"], [0, 6, 1, "cmdoption-runoak-relationships-arg-TERMS", "TERMS"]], "runoak-rollup": [[0, 6, 1, "cmdoption-runoak-rollup-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-rollup-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-rollup-object-group", "--object-group"], [0, 6, 1, "cmdoption-runoak-rollup-o", "--output"], [0, 6, 1, "cmdoption-runoak-rollup-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-rollup-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-rollup-O", "-O"], [0, 6, 1, "cmdoption-runoak-rollup-o", "-o"], [0, 6, 1, "cmdoption-runoak-rollup-p", "-p"], [0, 6, 1, "cmdoption-runoak-rollup-arg-TERMS", "TERMS"]], "runoak-roots": [[0, 6, 1, "cmdoption-runoak-roots-A", "--annotated-roots"], [0, 6, 1, "cmdoption-runoak-roots-P", "--has-prefix"], [0, 6, 1, "cmdoption-runoak-roots-A", "--no-A"], [0, 6, 1, "cmdoption-runoak-roots-A", "--no-annotated-roots"], [0, 6, 1, "cmdoption-runoak-roots-o", "--output"], [0, 6, 1, "cmdoption-runoak-roots-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-roots-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-roots-A", "-A"], [0, 6, 1, "cmdoption-runoak-roots-O", "-O"], [0, 6, 1, "cmdoption-runoak-roots-P", "-P"], [0, 6, 1, "cmdoption-runoak-roots-o", "-o"], [0, 6, 1, "cmdoption-runoak-roots-p", "-p"]], "runoak-search": [[0, 6, 1, "cmdoption-runoak-search-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-search-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-search-o", "--output"], [0, 6, 1, "cmdoption-runoak-search-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-search-O", "-O"], [0, 6, 1, "cmdoption-runoak-search-o", "-o"], [0, 6, 1, "cmdoption-runoak-search-arg-TERMS", "TERMS"]], "runoak-set-apikey": [[0, 6, 1, "cmdoption-runoak-set-apikey-e", "--endpoint"], [0, 6, 1, "cmdoption-runoak-set-apikey-e", "-e"], [0, 6, 1, "cmdoption-runoak-set-apikey-arg-KEYVAL", "KEYVAL"]], "runoak-siblings": [[0, 6, 1, "cmdoption-runoak-siblings-o", "--output"], [0, 6, 1, "cmdoption-runoak-siblings-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-siblings-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-siblings-O", "-O"], [0, 6, 1, "cmdoption-runoak-siblings-o", "-o"], [0, 6, 1, "cmdoption-runoak-siblings-p", "-p"], [0, 6, 1, "cmdoption-runoak-siblings-arg-TERMS", "TERMS"]], "runoak-similarity-pair": [[0, 6, 1, "cmdoption-runoak-similarity-pair-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-similarity-pair-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-similarity-pair-o", "--output"], [0, 6, 1, "cmdoption-runoak-similarity-pair-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-similarity-pair-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-similarity-pair-O", "-O"], [0, 6, 1, "cmdoption-runoak-similarity-pair-o", "-o"], [0, 6, 1, "cmdoption-runoak-similarity-pair-p", "-p"], [0, 6, 1, "cmdoption-runoak-similarity-pair-arg-TERMS", "TERMS"]], "runoak-similarity": [[0, 6, 1, "cmdoption-runoak-similarity-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-similarity-information-content-file", "--information-content-file"], [0, 6, 1, "cmdoption-runoak-similarity-main-score-field", "--main-score-field"], [0, 6, 1, "cmdoption-runoak-similarity-min-ancestor-information-content", "--min-ancestor-information-content"], [0, 6, 1, "cmdoption-runoak-similarity-min-jaccard-similarity", "--min-jaccard-similarity"], [0, 6, 1, "cmdoption-runoak-similarity-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-similarity-o", "--output"], [0, 6, 1, "cmdoption-runoak-similarity-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-similarity-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-similarity-set1-file", "--set1-file"], [0, 6, 1, "cmdoption-runoak-similarity-set2-file", "--set2-file"], [0, 6, 1, "cmdoption-runoak-similarity-O", "-O"], [0, 6, 1, "cmdoption-runoak-similarity-o", "-o"], [0, 6, 1, "cmdoption-runoak-similarity-p", "-p"], [0, 6, 1, "cmdoption-runoak-similarity-arg-TERMS", "TERMS"]], "runoak-singletons": [[0, 6, 1, "cmdoption-runoak-singletons-filter-obsoletes", "--filter-obsoletes"], [0, 6, 1, "cmdoption-runoak-singletons-filter-obsoletes", "--no-filter-obsoletes"], [0, 6, 1, "cmdoption-runoak-singletons-o", "--output"], [0, 6, 1, "cmdoption-runoak-singletons-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-singletons-o", "-o"], [0, 6, 1, "cmdoption-runoak-singletons-p", "-p"]], "runoak-statistics": [[0, 6, 1, "cmdoption-runoak-statistics-X", "--compare-with"], [0, 6, 1, "cmdoption-runoak-statistics-group-by-defined-by", "--group-by-defined-by"], [0, 6, 1, "cmdoption-runoak-statistics-group-by-obo-namespace", "--group-by-obo-namespace"], [0, 6, 1, "cmdoption-runoak-statistics-group-by-prefix", "--group-by-prefix"], [0, 6, 1, "cmdoption-runoak-statistics-group-by-property", "--group-by-property"], [0, 6, 1, "cmdoption-runoak-statistics-P", "--has-prefix"], [0, 6, 1, "cmdoption-runoak-statistics-include-residuals", "--include-residuals"], [0, 6, 1, "cmdoption-runoak-statistics-group-by-defined-by", "--no-group-by-defined-by"], [0, 6, 1, "cmdoption-runoak-statistics-group-by-obo-namespace", "--no-group-by-obo-namespace"], [0, 6, 1, "cmdoption-runoak-statistics-group-by-prefix", "--no-group-by-prefix"], [0, 6, 1, "cmdoption-runoak-statistics-include-residuals", "--no-include-residuals"], [0, 6, 1, "cmdoption-runoak-statistics-o", "--output"], [0, 6, 1, "cmdoption-runoak-statistics-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-statistics-O", "-O"], [0, 6, 1, "cmdoption-runoak-statistics-P", "-P"], [0, 6, 1, "cmdoption-runoak-statistics-X", "-X"], [0, 6, 1, "cmdoption-runoak-statistics-o", "-o"], [0, 6, 1, "cmdoption-runoak-statistics-arg-BRANCHES", "BRANCHES"]], "runoak-subsets": [[0, 6, 1, "cmdoption-runoak-subsets-o", "--output"], [0, 6, 1, "cmdoption-runoak-subsets-o", "-o"]], "runoak-synonymize": [[0, 6, 1, "cmdoption-runoak-synonymize-apply-patch", "--apply-patch"], [0, 6, 1, "cmdoption-runoak-synonymize-apply-patch", "--no-apply-patch"], [0, 6, 1, "cmdoption-runoak-synonymize-o", "--output"], [0, 6, 1, "cmdoption-runoak-synonymize-patch", "--patch"], [0, 6, 1, "cmdoption-runoak-synonymize-R", "--rules-file"], [0, 6, 1, "cmdoption-runoak-synonymize-R", "-R"], [0, 6, 1, "cmdoption-runoak-synonymize-o", "-o"], [0, 6, 1, "cmdoption-runoak-synonymize-arg-TERMS", "TERMS"]], "runoak-taxon-constraints": [[0, 6, 1, "cmdoption-runoak-taxon-constraints-A", "--all"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-direct", "--direct"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-M", "--graph-traversal-method"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-include-redundant", "--include-redundant"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-A", "--no-A"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-A", "--no-all"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-direct", "--no-direct"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-include-redundant", "--no-include-redundant"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-o", "--output"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-A", "-A"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-M", "-M"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-O", "-O"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-o", "-o"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-p", "-p"], [0, 6, 1, "cmdoption-runoak-taxon-constraints-arg-TERMS", "TERMS"]], "runoak-term-categories": [[0, 6, 1, "cmdoption-runoak-term-categories-category-system", "--category-system"], [0, 6, 1, "cmdoption-runoak-term-categories-o", "--output"], [0, 6, 1, "cmdoption-runoak-term-categories-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-term-categories-O", "-O"], [0, 6, 1, "cmdoption-runoak-term-categories-o", "-o"], [0, 6, 1, "cmdoption-runoak-term-categories-arg-TERMS", "TERMS"]], "runoak-term-metadata": [[0, 6, 1, "cmdoption-runoak-term-metadata-additional-metadata", "--additional-metadata"], [0, 6, 1, "cmdoption-runoak-term-metadata-additional-metadata", "--no-additional-metadata"], [0, 6, 1, "cmdoption-runoak-term-metadata-o", "--output"], [0, 6, 1, "cmdoption-runoak-term-metadata-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-term-metadata-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-term-metadata-O", "-O"], [0, 6, 1, "cmdoption-runoak-term-metadata-o", "-o"], [0, 6, 1, "cmdoption-runoak-term-metadata-p", "-p"], [0, 6, 1, "cmdoption-runoak-term-metadata-arg-TERMS", "TERMS"]], "runoak-term-subsets": [[0, 6, 1, "cmdoption-runoak-term-subsets-o", "--output"], [0, 6, 1, "cmdoption-runoak-term-subsets-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-term-subsets-O", "-O"], [0, 6, 1, "cmdoption-runoak-term-subsets-o", "-o"], [0, 6, 1, "cmdoption-runoak-term-subsets-arg-TERMS", "TERMS"]], "runoak-terms": [[0, 6, 1, "cmdoption-runoak-terms-filter-obsoletes", "--filter-obsoletes"], [0, 6, 1, "cmdoption-runoak-terms-filter-obsoletes", "--no-filter-obsoletes"], [0, 6, 1, "cmdoption-runoak-terms-o", "--output"], [0, 6, 1, "cmdoption-runoak-terms-owl-type", "--owl-type"], [0, 6, 1, "cmdoption-runoak-terms-o", "-o"]], "runoak-termset-similarity": [[0, 6, 1, "cmdoption-runoak-termset-similarity-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-termset-similarity-information-content-file", "--information-content-file"], [0, 6, 1, "cmdoption-runoak-termset-similarity-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-termset-similarity-o", "--output"], [0, 6, 1, "cmdoption-runoak-termset-similarity-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-termset-similarity-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-termset-similarity-O", "-O"], [0, 6, 1, "cmdoption-runoak-termset-similarity-o", "-o"], [0, 6, 1, "cmdoption-runoak-termset-similarity-p", "-p"], [0, 6, 1, "cmdoption-runoak-termset-similarity-arg-TERMS", "TERMS"]], "runoak-transform": [[0, 6, 1, "cmdoption-runoak-transform-c", "--config-file"], [0, 6, 1, "cmdoption-runoak-transform-o", "--output"], [0, 6, 1, "cmdoption-runoak-transform-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-transform-t", "--transform"], [0, 6, 1, "cmdoption-runoak-transform-O", "-O"], [0, 6, 1, "cmdoption-runoak-transform-c", "-c"], [0, 6, 1, "cmdoption-runoak-transform-o", "-o"], [0, 6, 1, "cmdoption-runoak-transform-t", "-t"], [0, 6, 1, "cmdoption-runoak-transform-arg-TERMS", "TERMS"]], "runoak-tree": [[0, 6, 1, "cmdoption-runoak-tree-add-mrcas", "--add-mrcas"], [0, 6, 1, "cmdoption-runoak-tree-C", "--configure"], [0, 6, 1, "cmdoption-runoak-tree-D", "--display"], [0, 6, 1, "cmdoption-runoak-tree-down", "--down"], [0, 6, 1, "cmdoption-runoak-tree-gap-fill", "--gap-fill"], [0, 6, 1, "cmdoption-runoak-tree-max-hops", "--max-hops"], [0, 6, 1, "cmdoption-runoak-tree-add-mrcas", "--no-add-mrcas"], [0, 6, 1, "cmdoption-runoak-tree-down", "--no-down"], [0, 6, 1, "cmdoption-runoak-tree-gap-fill", "--no-gap-fill"], [0, 6, 1, "cmdoption-runoak-tree-o", "--output"], [0, 6, 1, "cmdoption-runoak-tree-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-tree-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-tree-root", "--root"], [0, 6, 1, "cmdoption-runoak-tree-skip", "--skip"], [0, 6, 1, "cmdoption-runoak-tree-S", "--stylemap"], [0, 6, 1, "cmdoption-runoak-tree-C", "-C"], [0, 6, 1, "cmdoption-runoak-tree-D", "-D"], [0, 6, 1, "cmdoption-runoak-tree-O", "-O"], [0, 6, 1, "cmdoption-runoak-tree-S", "-S"], [0, 6, 1, "cmdoption-runoak-tree-o", "-o"], [0, 6, 1, "cmdoption-runoak-tree-p", "-p"], [0, 6, 1, "cmdoption-runoak-tree-arg-TERMS", "TERMS"]], "runoak-validate-definitions": [[0, 6, 1, "cmdoption-runoak-validate-definitions-skip-text-annotation", "--no-skip-text-annotation"], [0, 6, 1, "cmdoption-runoak-validate-definitions-o", "--output"], [0, 6, 1, "cmdoption-runoak-validate-definitions-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-validate-definitions-skip-text-annotation", "--skip-text-annotation"], [0, 6, 1, "cmdoption-runoak-validate-definitions-O", "-O"], [0, 6, 1, "cmdoption-runoak-validate-definitions-o", "-o"], [0, 6, 1, "cmdoption-runoak-validate-definitions-arg-TERMS", "TERMS"]], "runoak-validate-mappings": [[0, 6, 1, "cmdoption-runoak-validate-mappings-adapter-mapping", "--adapter-mapping"], [0, 6, 1, "cmdoption-runoak-validate-mappings-autolabel", "--autolabel"], [0, 6, 1, "cmdoption-runoak-validate-mappings-C", "--configuration-file"], [0, 6, 1, "cmdoption-runoak-validate-mappings-autolabel", "--no-autolabel"], [0, 6, 1, "cmdoption-runoak-validate-mappings-o", "--output"], [0, 6, 1, "cmdoption-runoak-validate-mappings-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-validate-mappings-C", "-C"], [0, 6, 1, "cmdoption-runoak-validate-mappings-O", "-O"], [0, 6, 1, "cmdoption-runoak-validate-mappings-o", "-o"], [0, 6, 1, "cmdoption-runoak-validate-mappings-arg-TERMS", "TERMS"]], "runoak-validate-multiple": [[0, 6, 1, "cmdoption-runoak-validate-multiple-cutoff", "--cutoff"], [0, 6, 1, "cmdoption-runoak-validate-multiple-o", "--output"], [0, 6, 1, "cmdoption-runoak-validate-multiple-s", "--schema"], [0, 6, 1, "cmdoption-runoak-validate-multiple-o", "-o"], [0, 6, 1, "cmdoption-runoak-validate-multiple-s", "-s"], [0, 6, 1, "cmdoption-runoak-validate-multiple-arg-DBS", "DBS"]], "runoak-validate": [[0, 6, 1, "cmdoption-runoak-validate-cutoff", "--cutoff"], [0, 6, 1, "cmdoption-runoak-validate-skip-ontology-rules", "--no-skip-ontology-rules"], [0, 6, 1, "cmdoption-runoak-validate-skip-structural-validation", "--no-skip-structural-validation"], [0, 6, 1, "cmdoption-runoak-validate-o", "--output"], [0, 6, 1, "cmdoption-runoak-validate-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-validate-R", "--rule"], [0, 6, 1, "cmdoption-runoak-validate-skip-ontology-rules", "--skip-ontology-rules"], [0, 6, 1, "cmdoption-runoak-validate-skip-structural-validation", "--skip-structural-validation"], [0, 6, 1, "cmdoption-runoak-validate-O", "-O"], [0, 6, 1, "cmdoption-runoak-validate-R", "-R"], [0, 6, 1, "cmdoption-runoak-validate-o", "-o"], [0, 6, 1, "cmdoption-runoak-validate-arg-TERMS", "TERMS"]], "runoak-viz": [[0, 6, 1, "cmdoption-runoak-viz-add-mrcas", "--add-mrcas"], [0, 6, 1, "cmdoption-runoak-viz-C", "--configure"], [0, 6, 1, "cmdoption-runoak-viz-down", "--down"], [0, 6, 1, "cmdoption-runoak-viz-gap-fill", "--gap-fill"], [0, 6, 1, "cmdoption-runoak-viz-max-hops", "--max-hops"], [0, 6, 1, "cmdoption-runoak-viz-meta", "--meta"], [0, 6, 1, "cmdoption-runoak-viz-add-mrcas", "--no-add-mrcas"], [0, 6, 1, "cmdoption-runoak-viz-down", "--no-down"], [0, 6, 1, "cmdoption-runoak-viz-gap-fill", "--no-gap-fill"], [0, 6, 1, "cmdoption-runoak-viz-meta", "--no-meta"], [0, 6, 1, "cmdoption-runoak-viz-view", "--no-view"], [0, 6, 1, "cmdoption-runoak-viz-o", "--output"], [0, 6, 1, "cmdoption-runoak-viz-O", "--output-type"], [0, 6, 1, "cmdoption-runoak-viz-p", "--predicates"], [0, 6, 1, "cmdoption-runoak-viz-S", "--stylemap"], [0, 6, 1, "cmdoption-runoak-viz-view", "--view"], [0, 6, 1, "cmdoption-runoak-viz-C", "-C"], [0, 6, 1, "cmdoption-runoak-viz-O", "-O"], [0, 6, 1, "cmdoption-runoak-viz-S", "-S"], [0, 6, 1, "cmdoption-runoak-viz-o", "-o"], [0, 6, 1, "cmdoption-runoak-viz-p", "-p"], [0, 6, 1, "cmdoption-runoak-viz-arg-TERMS", "TERMS"]], "runoak": [[0, 6, 1, "cmdoption-runoak-a", "--add"], [0, 6, 1, "cmdoption-runoak-g", "--associations"], [0, 6, 1, "cmdoption-runoak-G", "--associations-type"], [0, 6, 1, "cmdoption-runoak-autosave", "--autosave"], [0, 6, 1, "cmdoption-runoak-import-depth", "--import-depth"], [0, 6, 1, "cmdoption-runoak-i", "--input"], [0, 6, 1, "cmdoption-runoak-I", "--input-type"], [0, 6, 1, "cmdoption-runoak-merge", "--merge"], [0, 6, 1, "cmdoption-runoak-metamodel-mappings", "--metamodel-mappings"], [0, 6, 1, "cmdoption-runoak-named-prefix-map", "--named-prefix-map"], [0, 6, 1, "cmdoption-runoak-autosave", "--no-autosave"], [0, 6, 1, "cmdoption-runoak-merge", "--no-merge"], [0, 6, 1, "cmdoption-runoak-q", "--no-quiet"], [0, 6, 1, "cmdoption-runoak-stacktrace", "--no-stacktrace"], [0, 6, 1, "cmdoption-runoak-other-languages", "--other-languages"], [0, 6, 1, "cmdoption-runoak-l", "--preferred-language"], [0, 6, 1, "cmdoption-runoak-prefix", "--prefix"], [0, 6, 1, "cmdoption-runoak-q", "--quiet"], [0, 6, 1, "cmdoption-runoak-requests-cache-db", "--requests-cache-db"], [0, 6, 1, "cmdoption-runoak-save-as", "--save-as"], [0, 6, 1, "cmdoption-runoak-stacktrace", "--stacktrace"], [0, 6, 1, "cmdoption-runoak-v", "--verbose"], [0, 6, 1, "cmdoption-runoak-W", "--wrap-adapter"], [0, 6, 1, "cmdoption-runoak-G", "-G"], [0, 6, 1, "cmdoption-runoak-I", "-I"], [0, 6, 1, "cmdoption-runoak-W", "-W"], [0, 6, 1, "cmdoption-runoak-a", "-a"], [0, 6, 1, "cmdoption-runoak-g", "-g"], [0, 6, 1, "cmdoption-runoak-i", "-i"], [0, 6, 1, "cmdoption-runoak-l", "-l"], [0, 6, 1, "cmdoption-runoak-q", "-q"], [0, 6, 1, "cmdoption-runoak-v", "-v"]]}, "objtypes": {"0": "py:class", "1": "py:method", "2": "py:attribute", "3": "py:module", "4": "py:function", "5": "py:property", "6": "std:cmdoption"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "method", "Python method"], "2": ["py", "attribute", "Python attribute"], "3": ["py", "module", "Python module"], "4": ["py", "function", "Python function"], "5": ["py", "property", "Python property"], "6": ["std", "cmdoption", "program option"]}, "titleterms": {"command": [0, 1100, 1129, 1132, 1133, 1136, 1137, 1141, 1143, 1148, 1149, 1151, 1153, 1156, 1158, 1165, 1171, 1176], "line": [0, 1100, 1133, 1136, 1137, 1141, 1143, 1148, 1149, 1151, 1153, 1156, 1158, 1165, 1171, 1176], "gener": [0, 2, 1102, 1113, 1114], "guidelin": [0, 2], "common": 0, "pattern": [0, 2, 1113], "term": [0, 290, 364, 541, 942, 1100, 1129], "list": [0, 234, 1100], "predic": [0, 75, 182, 286, 351, 648, 957, 958, 1077, 1129], "runoak": 0, "alias": [0, 212, 213, 381, 386, 393, 394, 405, 433, 441, 443, 447, 460, 462, 472, 473, 488, 522, 541, 578, 781, 1107], "ancestor": [0, 1104, 1117, 1129, 1135], "annot": [0, 386, 393, 479, 554, 847, 849, 855, 856, 857, 860, 861, 862, 868, 869, 870, 873, 874, 876, 883, 886, 887, 888, 889, 890, 892, 893, 894, 896, 898, 899, 904, 911, 912, 915, 996, 1001, 1024, 1102, 1108, 1116, 1123, 1129, 1151, 1153, 1158, 1180], "appli": [0, 1136], "obsolet": [0, 1115, 1192], "taxon": [0, 940, 953, 966, 967, 1190], "constraint": [0, 953, 967], "associ": [0, 3, 31, 32, 46, 1108, 1165], "count": 0, "matrix": 0, "axiom": [0, 1, 372, 485, 1115], "cach": [0, 1105], "clear": 0, "l": 0, "definit": [0, 426, 575, 1113, 1123], "descend": 0, "diff": [0, 162, 163], "via": [0, 1123], "map": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1110, 1114, 1123, 1149, 1153, 1158, 1171], "disjoint": 0, "dump": 0, "enrich": [0, 118, 125, 1158, 1167], "expand": 0, "subset": [0, 1, 46, 125, 163, 234, 279, 331, 437, 464, 477, 478, 499, 500, 501, 528, 529, 540, 613, 717, 780, 882, 953, 1001, 1067, 1178, 1188], "extract": 0, "fill": 0, "tabl": [0, 1127], "logic": [0, 1113, 1115], "synonym": [0, 289, 321, 362, 363, 467, 662, 1104, 1107], "info": [0, 1002, 1068], "inform": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1118], "content": [0, 202, 1103, 1111, 1118, 1120, 1127, 1128, 1143, 1152, 1164, 1170], "label": [0, 1, 147, 165, 439, 625, 784, 885, 954, 1100, 1116, 1192], "languag": [0, 626, 1107, 1109, 1123], "leaf": 0, "lexmatch": 0, "lint": 0, "migrat": 0, "curi": [0, 1, 6, 95, 135, 204, 252, 297, 375, 490, 678, 745, 818, 923, 971, 1029, 1100, 1110, 1192], "normal": 0, "ontologi": [0, 1, 162, 163, 533, 534, 613, 835, 897, 1100, 1102, 1104, 1105, 1109, 1116, 1124, 1127, 1135, 1136, 1140, 1155, 1166, 1182, 1185, 1188, 1192], "metadata": [0, 534, 613, 1107, 1115, 1124, 1192], "version": [0, 474, 917, 1124], "path": 0, "prefix": [0, 1, 354, 452, 453, 476, 509, 902, 936, 940, 1110], "queri": [0, 1100, 1102, 1110, 1113, 1129], "relationship": [0, 1, 287, 356, 1117, 1131, 1192], "rollup": 0, "root": 0, "search": [0, 717, 735, 1102, 1107, 1129, 1149, 1163, 1176, 1193], "set": [0, 1100], "apikei": 0, "sibl": 0, "similar": [0, 780, 801, 1118, 1177], "pair": 0, "singleton": 0, "statist": [0, 882, 910, 1104, 1129, 1135, 1179], "categori": [0, 161, 228, 557, 707, 997, 1062], "termset": 0, "transform": [0, 291, 367], "tree": [0, 1129], "valid": [0, 476, 509, 936, 940, 1067, 1113, 1123, 1124, 1135, 1153, 1181], "multipl": [0, 1124], "viz": 0, "concept": [1, 1109, 1118, 1130, 1131], "element": [1, 276, 328], "import": [1, 611], "within": 1, "uri": [1, 28, 113, 159, 225, 274, 325, 415, 547, 702, 768, 843, 944, 994, 1056, 1110, 1192], "identifi": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1110], "edg": [1, 384, 431, 1116, 1117], "format": [1, 1102, 1104, 1105, 1109, 1146], "statement": 1, "name": [1, 241, 282, 341], "contribut": [2, 1101, 1102], "report": [2, 953, 1049], "issu": [2, 1126], "give": 2, "feedback": 2, "document": [2, 1127, 1148, 1156, 1164], "code": [2, 1100, 1130, 1132, 1149, 1151, 1153, 1154, 1155, 1157, 1158, 1159, 1160, 1161, 1162, 1163], "understand": [2, 1105], "design": [2, 1099, 1100, 1113], "us": [2, 1099, 1100, 1102, 1105, 1107, 1113, 1117, 1123, 1124, 1129, 1165, 1171], "pleas": 2, "make": [2, 1100], "pull": 2, "request": 2, "all": [2, 1102], "alwai": 2, "write": [2, 1126], "test": [2, 322, 365, 1126], "how": [2, 1100, 1101, 1102, 1104, 1105, 1120, 1123, 1124, 1126, 1133], "plugin": [2, 1123, 1126, 1134], "new": [2, 1126, 1130], "subcommand": 2, "notebook": [2, 1139], "add": 2, "adapt": [2, 1123, 1148, 1149, 1150, 1151, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1182], "implement": [2, 1118, 1126, 1140, 1152, 1163], "util": [2, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191], "function": [2, 1182], "datamodel": [2, 125, 202, 331, 336, 437, 717, 735, 882, 953, 1001, 1067, 1134, 1176, 1187, 1193], "releas": [2, 1126], "pypi": [2, 1126, 1129], "class": [3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 36, 37, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 153, 157, 161, 163, 166, 167, 168, 170, 171, 174, 175, 176, 177, 180, 181, 183, 184, 185, 186, 188, 189, 192, 193, 194, 198, 199, 212, 213, 217, 223, 227, 228, 229, 230, 231, 232, 233, 234, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 262, 263, 264, 265, 269, 276, 277, 278, 279, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 327, 328, 329, 330, 331, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 526, 527, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 559, 560, 561, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 579, 580, 582, 583, 584, 585, 586, 587, 588, 589, 591, 592, 593, 594, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 627, 635, 636, 637, 638, 644, 645, 646, 647, 648, 649, 652, 655, 657, 658, 659, 660, 661, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 677, 692, 693, 695, 696, 704, 705, 706, 707, 708, 709, 710, 711, 716, 717, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 761, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 864, 865, 866, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 879, 880, 881, 882, 883, 885, 886, 887, 888, 889, 890, 892, 893, 894, 895, 896, 897, 898, 899, 901, 902, 903, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1055, 1058, 1059, 1060, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1142, 1167], "inherit": [3, 17, 22, 39, 40, 47, 48, 49, 50, 51, 52, 54, 55, 56, 60, 61, 63, 67, 68, 69, 70, 71, 75, 76, 80, 81, 87, 166, 167, 168, 170, 171, 173, 175, 176, 177, 181, 185, 186, 188, 189, 191, 193, 194, 196, 199, 249, 264, 265, 294, 309, 310, 372, 373, 380, 381, 382, 385, 393, 403, 405, 411, 417, 476, 480, 481, 482, 483, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 521, 522, 527, 530, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 588, 589, 590, 591, 592, 593, 595, 596, 597, 598, 599, 600, 601, 603, 604, 608, 609, 610, 614, 615, 616, 625, 626, 627, 628, 629, 631, 632, 633, 634, 635, 641, 643, 644, 645, 646, 647, 649, 650, 651, 652, 653, 654, 656, 658, 659, 660, 661, 662, 664, 665, 666, 668, 670, 672, 673, 674, 761, 765, 766, 772, 777, 778, 781, 782, 783, 794, 798, 799, 800, 804, 808, 809, 811, 824, 827, 828, 838, 840, 842, 847, 848, 849, 855, 858, 859, 860, 861, 867, 868, 869, 870, 873, 877, 878, 883, 886, 890, 892, 893, 894, 896, 898, 899, 903, 905, 908, 909, 911, 915, 916, 936, 939, 940, 942, 988, 1028, 1035, 1040, 1041, 1043, 1047, 1048, 1049, 1050, 1059, 1060], "slot": [3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 140, 148, 153, 157, 161, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 212, 213, 214, 217, 223, 227, 228, 229, 230, 231, 232, 233, 234, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 262, 263, 264, 265, 269, 273, 276, 277, 278, 279, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 327, 328, 329, 330, 331, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 404, 405, 406, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 488, 489, 497, 499, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 526, 527, 528, 529, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 677, 685, 692, 693, 694, 695, 696, 698, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 761, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1051, 1055, 1058, 1059, 1060, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097], "usag": [3, 23, 24, 41, 42, 93, 153, 164, 165, 173, 179, 182, 191, 196, 197, 212, 217, 223, 250, 262, 264, 265, 269, 295, 307, 309, 310, 311, 316, 317, 318, 321, 322, 373, 380, 382, 384, 385, 386, 388, 393, 394, 396, 402, 403, 410, 411, 412, 417, 476, 479, 480, 481, 484, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 512, 521, 522, 526, 532, 533, 535, 536, 537, 540, 542, 630, 677, 693, 695, 743, 764, 765, 813, 815, 817, 824, 825, 827, 835, 838, 839, 842, 936, 939, 940, 941, 978, 988, 991, 1028, 1043, 1047, 1050, 1055, 1058, 1060, 1100, 1133, 1143, 1148], "schema": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 232, 233, 235, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 710, 711, 712, 713, 714, 715, 716, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1124], "sourc": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1108], "linkml": [3, 4, 17, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 109, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 140, 148, 153, 157, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 212, 213, 214, 217, 223, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 262, 263, 264, 265, 269, 273, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 324, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 397, 402, 403, 404, 405, 406, 410, 411, 412, 417, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 495, 497, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 518, 519, 520, 521, 522, 526, 527, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 676, 677, 685, 692, 693, 694, 695, 696, 698, 704, 705, 706, 707, 708, 709, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 743, 761, 764, 765, 766, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 879, 880, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 922, 936, 939, 940, 941, 942, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 978, 988, 989, 990, 991, 993, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1051, 1055, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097], "direct": [3, 4, 17, 20, 21, 22, 23, 24, 92, 93, 94, 122, 153, 157, 212, 213, 217, 223, 249, 250, 262, 263, 264, 265, 269, 294, 295, 307, 308, 309, 310, 311, 312, 316, 317, 318, 321, 322, 372, 373, 380, 381, 382, 384, 385, 386, 388, 389, 393, 394, 396, 402, 403, 405, 410, 411, 412, 417, 476, 479, 480, 481, 482, 483, 484, 485, 488, 489, 497, 502, 503, 504, 505, 506, 507, 508, 509, 512, 521, 522, 526, 530, 532, 533, 535, 536, 537, 540, 541, 542, 545, 677, 692, 693, 695, 696, 743, 761, 764, 765, 766, 813, 815, 816, 817, 824, 825, 827, 828, 835, 838, 839, 840, 842, 936, 939, 940, 941, 942, 978, 988, 989, 990, 991, 1028, 1035, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1055, 1058, 1059, 1060, 1117], "associationchang": 4, "comment": [4, 6, 19, 28, 37, 60, 77, 84, 95, 107, 113, 135, 151, 159, 204, 213, 220, 225, 228, 252, 268, 274, 297, 315, 325, 352, 375, 382, 386, 389, 399, 405, 415, 422, 424, 431, 434, 441, 452, 460, 490, 507, 531, 547, 560, 563, 575, 596, 603, 625, 665, 678, 691, 702, 737, 745, 760, 768, 785, 818, 825, 834, 843, 889, 901, 923, 935, 944, 948, 956, 965, 971, 984, 994, 1029, 1045, 1056], "type": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 25, 26, 27, 28, 29, 46, 91, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 110, 111, 112, 113, 114, 125, 134, 135, 136, 137, 138, 139, 141, 142, 143, 144, 145, 146, 147, 149, 150, 151, 154, 155, 156, 158, 159, 160, 163, 200, 203, 204, 205, 206, 207, 208, 209, 210, 211, 215, 216, 218, 219, 220, 221, 222, 224, 225, 226, 234, 245, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 266, 267, 268, 270, 271, 272, 274, 275, 279, 292, 293, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 313, 314, 315, 319, 320, 323, 325, 326, 331, 369, 370, 374, 375, 376, 377, 378, 379, 383, 387, 390, 391, 392, 395, 398, 399, 400, 408, 409, 413, 414, 415, 416, 418, 437, 468, 469, 486, 487, 490, 491, 492, 493, 494, 496, 498, 513, 514, 515, 516, 517, 523, 524, 525, 531, 538, 539, 543, 544, 546, 547, 548, 613, 668, 669, 675, 678, 679, 680, 681, 682, 683, 684, 686, 687, 688, 689, 690, 691, 697, 699, 700, 701, 702, 703, 717, 741, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 762, 763, 767, 768, 769, 770, 780, 810, 814, 818, 819, 820, 821, 822, 823, 826, 829, 830, 831, 832, 833, 834, 836, 837, 841, 843, 844, 882, 914, 921, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 937, 938, 943, 944, 945, 953, 970, 971, 972, 973, 974, 975, 976, 977, 979, 980, 981, 982, 983, 984, 985, 986, 987, 992, 994, 995, 1001, 1026, 1027, 1029, 1030, 1031, 1032, 1033, 1034, 1036, 1037, 1038, 1039, 1042, 1044, 1045, 1052, 1053, 1054, 1056, 1057, 1067, 1093, 1095], "boolean": [5, 91, 134, 203, 251, 296, 374, 486, 675, 744, 814, 921, 970, 1027, 1100, 1193], "date": [7, 40, 96, 136, 205, 253, 298, 376, 491, 572, 679, 746, 819, 924, 972, 1030, 1105], "dateordatetim": [8, 97, 137, 206, 254, 299, 377, 492, 680, 747, 820, 925, 973, 1031], "datetim": [9, 98, 138, 207, 255, 300, 378, 493, 681, 748, 821, 926, 974, 1032], "decim": [10, 99, 139, 208, 256, 301, 379, 494, 682, 749, 822, 927, 975, 1033], "doubl": [11, 100, 141, 209, 257, 302, 383, 496, 683, 750, 823, 928, 976, 1034], "float": [12, 101, 143, 210, 258, 303, 387, 498, 684, 751, 826, 929, 977, 1036], "integ": [13, 102, 144, 211, 259, 304, 390, 513, 686, 752, 829, 930, 979, 1037], "jsonpath": [14, 103, 145, 215, 260, 305, 391, 515, 687, 754, 830, 931, 980, 1038], "jsonpoint": [15, 104, 146, 216, 261, 306, 392, 516, 688, 755, 831, 932, 981, 1039], "ncname": [16, 105, 149, 218, 266, 313, 395, 524, 689, 756, 832, 933, 982, 1042], "negatedassoci": 17, "nodeidentifi": [18, 106, 150, 219, 267, 314, 398, 525, 690, 758, 833, 934, 983, 1044], "objectidentifi": [19, 107, 151, 220, 268, 315, 399, 531, 691, 760, 834, 935, 984, 1045], "pairwisecoassoci": 20, "parserconfigur": 21, "positiveornegativeassoci": 22, "propertyvalu": [23, 405], "rollupgroup": 24, "sparqlpath": [25, 110, 155, 221, 270, 319, 408, 538, 699, 762, 836, 937, 986, 1052], "string": [26, 111, 156, 222, 271, 320, 409, 539, 700, 763, 837, 938, 987, 1053], "time": [27, 112, 158, 224, 272, 323, 414, 544, 701, 767, 841, 943, 992, 1054], "uriorcuri": [29, 114, 160, 226, 275, 326, 416, 548, 703, 769, 844, 945, 995, 1057], "aggregator_knowledge_sourc": 30, "applic": [30, 32, 33, 34, 36, 37, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 161, 166, 167, 168, 170, 171, 174, 175, 176, 177, 180, 181, 183, 184, 185, 186, 188, 189, 192, 193, 194, 198, 199, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 419, 420, 421, 422, 423, 424, 425, 426, 427, 429, 430, 431, 432, 433, 434, 435, 436, 438, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 460, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 510, 511, 527, 549, 550, 551, 552, 553, 554, 555, 556, 557, 559, 560, 561, 562, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 575, 576, 577, 578, 579, 580, 582, 583, 584, 585, 586, 587, 588, 589, 591, 592, 593, 594, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 627, 635, 636, 637, 638, 644, 645, 646, 647, 648, 649, 652, 655, 657, 658, 659, 660, 661, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 704, 705, 706, 707, 708, 709, 710, 711, 716, 718, 719, 720, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 771, 772, 773, 774, 775, 776, 777, 778, 779, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 845, 846, 847, 848, 849, 854, 855, 856, 857, 860, 861, 863, 864, 865, 866, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 879, 880, 881, 883, 885, 886, 887, 888, 889, 890, 892, 893, 894, 895, 896, 897, 898, 899, 901, 902, 903, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097], "properti": [30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 115, 116, 117, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 161, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 227, 228, 229, 230, 231, 232, 233, 235, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 276, 277, 278, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 327, 328, 329, 330, 332, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 470, 471, 472, 473, 474, 475, 510, 511, 518, 519, 520, 527, 535, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 670, 671, 672, 673, 674, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 736, 737, 738, 739, 740, 771, 772, 773, 774, 775, 776, 777, 778, 779, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 811, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 911, 912, 913, 915, 916, 917, 918, 919, 920, 946, 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 968, 969, 996, 997, 998, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1025, 1062, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096, 1097, 1116], "associations_for_subjects_in_common": 33, "closure_delta": 34, "closure_information_content_delta": 35, "closure_pred": 36, "core_tripl": 38, "creation_d": [39, 568], "denormalized_slot": 41, "mixin": [41, 42, 164, 165, 173, 179, 182, 191, 196, 197, 481, 489, 497, 502, 503, 504, 505, 506, 507, 508, 526, 532, 536, 537, 630, 978], "diff_slot": 42, "evidence_typ": 43, "group_object": 44, "include_association_attribut": 45, "oak": [46, 1099, 1100, 1102, 1107, 1108, 1109, 1111, 1113, 1114, 1123, 1127, 1129, 1164, 1192], "data": [46, 234, 1099, 1107, 1108, 1118, 1171], "model": [46, 234, 1008, 1099, 1107, 1108, 1113, 1118, 1123, 1162, 1171], "enumer": [46, 125, 163, 234, 279, 331, 437, 613, 717, 780, 882, 953, 1001, 1067], "is_creat": 47, "is_delet": 48, "is_gener": 49, "is_migr": 50, "is_speci": 51, "modification_d": 52, "negat": 53, "new_dat": 54, "new_object": 55, "new_pred": 56, "number_subject_unique_to_entity1": 57, "number_subject_unique_to_entity2": 58, "number_subjects_in_common": 59, "object": [60, 179, 638, 1073], "object1": 61, "object1_label": 62, "object2": 63, "object2_label": 64, "object_closur": 65, "object_closure_label": 66, "object_label": [67, 726, 795, 1012], "old_dat": 68, "old_object": 69, "old_object_obsolet": 70, "old_pred": 71, "original_object": 72, "original_pred": 73, "original_subject": 74, "predicate_label": 76, "preserve_negated_associ": 77, "primary_knowledge_sourc": 78, "property_valu": 79, "publication_is_ad": 80, "publication_is_delet": 81, "public": 82, "sub_group": 83, "subject": [84, 197, 965, 1086], "subject_closur": 85, "subject_closure_label": 86, "subject_label": [87, 805, 1019], "subjects_in_common": 88, "summary_group": 89, "supporting_object": 90, "classenrichmentconfigur": 92, "classenrichmentresult": 93, "classenrichmentresultset": 94, "posit": [108, 152, 243, 985], "enum": [109, 140, 148, 214, 273, 324, 397, 404, 406, 495, 676, 685, 694, 698, 922, 993, 1051, 1061], "sortfieldenum": 109, "permiss": [109, 140, 148, 214, 273, 324, 397, 401, 404, 406, 407, 495, 676, 685, 694, 698, 922, 993, 1051, 1061], "valu": [109, 140, 148, 214, 273, 324, 397, 401, 404, 406, 407, 495, 676, 685, 694, 698, 922, 993, 1051, 1061], "ancestor_of_more_informative_result": 115, "background_count": 116, "background_tot": 117, "class_id": 119, "class_label": 120, "descendant_of_more_informative_result": 121, "false_discovery_r": 123, "fold_enrich": 124, "p_valu": 126, "p_value_adjust": 127, "p_value_cutoff": 128, "probabl": 129, "rank": [130, 732], "result": [131, 183, 734, 1050, 1067, 1082, 1098, 1100, 1129], "sample_count": 132, "sample_tot": 133, "diffcategori": 140, "entityrefer": 142, "mappingcardinalityenum": 148, "relationaldiff": 153, "structurediffresultset": 157, "cross": [162, 163, 1114], "is_funct": 164, "left_object_id": 166, "left_object_is_funct": 167, "left_object_label": 168, "left_object_nam": 169, "left_predicate_id": 170, "left_predicate_label": 171, "left_predicate_nam": 172, "left_sid": 173, "left_sourc": 174, "left_subject_id": 175, "left_subject_is_funct": 176, "left_subject_label": 177, "left_subject_nam": 178, "object_mapping_cardin": 180, "object_mapping_pred": 181, "right_intermediate_id": 184, "right_object_id": 185, "right_object_label": 186, "right_object_nam": 187, "right_predicate_id": 188, "right_predicate_label": 189, "right_predicate_nam": 190, "right_sid": 191, "right_sourc": 192, "right_subject_id": 193, "right_subject_label": 194, "right_subject_nam": 195, "side": 196, "subject_mapping_cardin": 198, "subject_mapping_pred": 199, "funowl": [201, 1150, 1182], "itemlist": [212, 236, 238], "itemlistcollect": 213, "itemlistordertyp": 214, "listitem": 217, "thing": [223, 542], "additionaltyp": 227, "descript": [229, 327, 871, 950], "elementid": 230, "id": [231, 436, 476, 509, 608, 779, 881, 936, 940, 952, 999, 1066, 1100], "idtyp": 232, "exampl": [232, 245, 1100, 1102, 1110, 1117, 1126, 1130, 1132, 1135, 1136, 1137, 1140, 1149, 1151, 1153, 1158, 1159, 1182], "item": [234, 235], "itemlistel": 237, "itemmetadatamap": 239, "keyword": 240, "numberofitem": 242, "previousitem": 244, "url": [246, 671, 1096], "wasgeneratedbi": 247, "kgcl": [248, 1136], "activ": [249, 294], "ani": [250, 295, 484, 1102, 1115], "lexicalgroup": [262, 307], "lexicalindex": [263, 308], "lexicaltransform": [264, 309], "lexicaltransformationpipelin": [265, 310], "relationshiptoterm": [269, 318], "transformationtyp": [273, 324, 993], "element_term": [277, 329], "group": [278, 330], "lexic": [279, 280, 333, 1100, 1102, 1186], "index": [279, 280, 281, 333, 334], "lexican": [281, 334], "param": [283, 346], "pipelin": [284, 285, 347, 348], "mappingrul": 311, "mappingrulecollect": 312, "postcondit": [316, 349], "precondit": [317, 350], "rule": [331, 335, 336, 358], "input": [332, 1100, 1159], "mapping_source_one_of": 337, "match": [338, 629], "match_scop": 339, "minimum_confid": 340, "object_match_field_one_of": 342, "object_source_one_of": 343, "onewai": 344, "output": 345, "predicate_id": [352, 1015, 1078], "predicate_id_one_of": 353, "qualifi": 355, "replac": 357, "subject_match_field_one_of": 360, "subject_source_one_of": 361, "the_rul": 366, "transformations_included_in": 368, "weight": 371, "see": [371, 400, 413, 418, 434, 436, 460, 477, 478, 495, 596, 1100], "also": [371, 400, 413, 418, 434, 436, 460, 477, 478, 495, 596], "basicpropertyvalu": [373, 420], "definitionpropertyvalu": 380, "disjointclassexpressionsaxiom": [381, 428], "domainrangeaxiom": [382, 430], "equivalentnodesset": [385, 432], "existentialrestrictionexpress": 386, "graph": [388, 435, 1100, 1102, 1107, 1113, 1117, 1129, 1133, 1143, 1144, 1145, 1146, 1147, 1154, 1175, 1184, 1185], "graphdocu": 389, "logicaldefinitionaxiom": [393, 442], "meta": [394, 443], "node": [396, 446, 1043], "nodetypeenum": 397, "oboidentifierstr": 400, "predsenum": 401, "prefixdeclar": 402, "propertychainaxiom": [403, 454, 649], "propertytypeenum": 404, "scopeenum": 406, "scopesenum": 407, "subsetdefinit": [410, 463], "synonympropertyvalu": 411, "synonymtypedefinit": [412, 466], "synonymtypeidentifierstr": 413, "xrefpropertyvalu": 417, "xrefstr": 418, "allvaluesfromedg": 419, "chainpredicateid": 421, "classexpress": [422, 489], "classid": 423, "definedclassid": 425, "deprec": [427, 578], "domainclassid": 429, "fillerid": 433, "genusid": 434, "obograph": [437, 1132, 1172, 1187], "isexact": 438, "lang": 440, "lbl": 441, "namespac": 444, "nodeid": 445, "obj": 447, "obographs_datamodel": 448, "obographs_linkml_model": 449, "pred": 450, "predicateid": 451, "propertyid": 455, "propertytyp": 456, "rangeclassid": 457, "representativenodeid": 458, "representitivenodeid": 459, "restrict": [460, 537], "scope": 461, "sub": 462, "synonymtyp": 465, "unionequivalentto": 470, "unionequivalenttoexpress": 471, "val": 472, "valtyp": 473, "xref": 475, "agent": [476, 813, 846], "allotropepermittedprofil": 477, "allotroperequiredprofil": 478, "annotationproperti": 480, "annotationpropertymixin": 481, "anonym": 482, "anonymousclassexpress": 483, "curieliter": 487, "definitionconstraintcompon": 495, "express": 497, "gopermittedprofil": 499, "gorecommendedprofil": 500, "gorequiredprofil": 501, "hascategori": 502, "haslifecycl": 503, "hasmap": 504, "hasminimalmetadata": 505, "hasproven": 506, "hassynonym": 507, "hasuserinform": 508, "homosapien": 509, "iedb_alternative_term": 510, "isa_alternative_term": 511, "imag": [512, 609], "irityp": 514, "labeltyp": 517, "ncit_definition_sourc": 518, "ncit_term_sourc": 519, "ncit_term_typ": 520, "namedindividu": 521, "namedobject": 522, "narrativetext": 523, "notobsoleteaspect": 526, "obo_foundry_unique_label": 527, "todo": [527, 549, 552, 553, 561, 568, 576, 580, 582, 585, 595, 603, 615, 616, 649, 652, 654, 655, 659, 666, 693, 771, 957, 1047, 1059], "obipermittedprofil": 528, "obirequiredprofil": 529, "objectproperti": 530, "obsoleteaspect": 532, "propertyexpress": 536, "tidystr": 543, "transitiveproperti": 545, "urlliter": 546, "allvaluesfrom": 549, "alternative_term": 550, "annotatedproperti": 551, "annotatedsourc": 552, "annotatedtarget": 553, "broadmatch": 555, "cardin": 556, "changenot": 558, "closematch": 559, "complementof": 561, "conformsto": 562, "consid": 563, "contributor": 564, "core_properti": 565, "creat": [566, 1126, 1130], "created_bi": 567, "creator": 569, "curator_not": 570, "database_cross_refer": 571, "date_retriev": 573, "defaultlanguag": 574, "definition_sourc": 576, "depicted_bi": 577, "disconnected_from": 579, "disjointwith": 580, "distinctmemb": 581, "domain": 582, "editor_not": 583, "editor_preferred_term": 584, "equivalentclass": 585, "equivalentproperti": 586, "evid": 587, "exactmatch": 588, "example_of_usag": 589, "excluded_axiom": 590, "excluded_from_qc_check": 591, "excluded_subclassof": 592, "excluded_synonym": 593, "external_ontologi": 594, "hasvalu": 595, "has_alternative_id": 596, "has_axiom_label": 597, "has_broad_synonym": 598, "has_curation_statu": 599, "has_exact_synonym": 600, "has_narrow_synonym": 601, "has_obo_namespac": 602, "has_obsolescence_reason": 603, "has_ontology_root_term": 604, "has_rank": 605, "has_related_synonym": 606, "has_synonym_typ": 607, "imported_from": 610, "in_subset": 612, "informative_properti": 614, "intersectionof": 615, "inverseof": 616, "isdefinedbi": 617, "is_a_defining_property_chain_axiom": 618, "is_a_defining_property_chain_axiom_where_second_argument_is_reflex": 619, "is_class_level": 620, "is_cycl": 621, "is_inf": 622, "is_metadata_tag": 623, "is_transit": 624, "licens": 627, "logical_pred": 628, "match_aspect": 630, "maxqualifiedcardin": 631, "member": 632, "mincardin": 633, "minqualifiedcardin": 634, "narrowmatch": 635, "never_in_taxon": 636, "note": [637, 1117, 1156], "oboinowl_id": 639, "oboinowl_ontologi": 640, "obsoletion_related_properti": 641, "omo": [642, 1192], "onclass": 643, "onproperti": 644, "oneof": 645, "ontology_term_request": 646, "page": 647, "provenance_properti": 650, "qualifiedcardin": 651, "rang": 652, "reification_pred": 653, "samea": 654, "seealso": 655, "shortcut_annotation_properti": 656, "shorthand": 657, "should_conform_to": 658, "somevaluesfrom": 659, "subclassof": 661, "temporal_interpret": 663, "term_editor": 664, "term_replaced_bi": 665, "term_tracker_item": 666, "titl": [667, 913], "unionof": 670, "versioniri": 672, "versioninfo": 673, "version_properti": 674, "booleanoper": 676, "complexqueri": 677, "graphfunct": 685, "pathexpress": 692, "searchbaseconfigur": 693, "searchproperti": 694, "searchresult": 695, "searchresultset": 696, "searchterm": 697, "searchtermsyntax": 698, "all_of": 704, "any_of": 705, "atom": 706, "configur": 708, "cursor": 709, "force_case_insensit": 710, "graph_pred": 711, "include_alias": [712, 1000], "include_definit": 713, "include_id": 714, "include_label": 715, "include_obsoletes_in_result": 716, "is_complet": 718, "is_fuzzi": 719, "is_parti": 720, "is_regular_express": 721, "limit": [722, 1004], "matches_full_search_term": 723, "none_of": 724, "object_id": [725, 793, 1011, 1074], "object_match_field": 727, "object_sourc": [728, 796, 1013], "object_source_vers": 729, "path_to": 730, "result_count": 733, "search_term": [736, 737], "snippet": 738, "syntax": [739, 1182, 1193], "travers": [740, 1117, 1185], "semsql": 742, "bestmatch": 743, "itemcount": 753, "negativelogvalu": 757, "nonnegativefloat": 759, "pairwisesimilar": 761, "terminfo": 764, "termpairwisesimilar": 765, "termsetpairwisesimilar": 766, "zerotoon": 770, "ancestor_id": 771, "ancestor_information_cont": 772, "ancestor_label": 773, "ancestor_sourc": 774, "average_scor": 775, "best_scor": 776, "cosine_similar": 777, "dice_similar": 778, "semant": [780, 1177], "information_cont": 781, "intersection_count": 782, "jaccard_similar": 783, "match_sourc": 785, "match_source_label": 786, "match_subsum": 787, "match_subsumer_label": 788, "match_target": 789, "match_target_label": 790, "metric": 791, "object_best_match": 792, "object_information_cont": 794, "object_termset": 797, "overlap_coeffici": 798, "phenodigm_scor": 799, "score": 800, "subject_best_match": 802, "subject_id": [803, 1087], "subject_information_cont": 804, "subject_sourc": [806, 1020], "subject_termset": 807, "subsumed_by_scor": 808, "subsumes_scor": 809, "union_count": 811, "sssom": [812, 1114, 1129], "changetypestatist": 815, "contributorrol": 816, "contributorstatist": 817, "facetstatist": 824, "specif": [824, 827, 838], "facetedcount": 825, "globalstatist": 827, "groupedstatist": 828, "summarystatisticcollect": 838, "summarystatisticscalculationact": 839, "summarystatisticsreport": 840, "ungroupedstatist": 842, "acted_on_behalf_of": 845, "annotation_property_count": 847, "anonymous_class_expression_count": 848, "anonymous_individual_count": 849, "by_categori": 850, "by_ontologi": 851, "by_subset": 852, "by_taxon": 853, "change_summari": 854, "class_count": 855, "class_count_by_categori": 856, "class_count_by_subset": 857, "class_count_excluding_deprec": 858, "class_count_with_definit": 859, "class_count_with_text_definit": 860, "class_count_without_text_definit": 861, "class_statistic_group": 862, "compared_with": 863, "contributor_id": 864, "contributor_nam": 865, "contributor_summari": 866, "count_statist": 867, "datatype_property_count": 868, "deprecated_class_count": 869, "deprecated_object_property_count": 870, "description_logic_profil": 872, "distinct_synonym_count": 873, "edge_count_by_pred": 874, "ended_at_tim": 875, "entailed_edge_count_by_pred": 876, "equivalent_classes_axiom_count": 877, "equivalentclasses_axiom_count": 878, "facet": 879, "filtered_count": 880, "summari": [882, 910, 1179], "individual_count": 883, "individual_statistic_group": 884, "mapping_count": 886, "mapping_statement_count_by_object_sourc": 887, "mapping_statement_count_by_pred": 888, "mapping_statement_count_subject_by_object_sourc": 889, "merged_class_count": 890, "metadata_statistic_group": 891, "named_individual_count": 892, "non_deprecated_class_count": 893, "non_deprecated_object_property_count": 894, "normalization_com": 895, "object_property_count": 896, "ontology_count": 898, "owl_axiom_count": 899, "owl_statistic_group": 900, "partit": 901, "property_count": 903, "property_statistic_group": 904, "rdf_triple_count": 905, "role_count": 906, "started_at_tim": 907, "subclass_of_axiom_count": 908, "subset_count": 909, "synonym_statement_count": 911, "synonym_statement_count_by_pred": 912, "unsatisfiable_class_count": 915, "untyped_entity_count": 916, "version_info": 918, "was_associated_with": 919, "was_generated_bi": 920, "configurationopt": 922, "predicateterm": 936, "subjectterm": 939, "taxonconstraint": 941, "assert": 946, "candid": 947, "contradicted_bi": 949, "evolutionari": 951, "never_in": 955, "only_in": 956, "present_in": 959, "present_in_ancestor_of": 960, "redund": 961, "redundant_with": 962, "redundant_with_only_in": 963, "unsatisfi": 968, "via_term": 969, "hasspan": 978, "textannot": 988, "textannotationconfigur": 989, "textannotationresultset": 990, "textualel": 991, "confid": [998, 1063], "text": [1001, 1023, 1024, 1102, 1107, 1180], "is_longest_match": 1003, "match_str": 1005, "match_typ": 1006, "matches_whole_text": 1007, "object_alias": 1009, "object_categori": 1010, "parent_docu": 1014, "source_text": 1016, "subject_end": 1018, "subject_start": 1021, "subject_text_id": 1022, "token_exclusion_list": 1025, "constraintcompon": 1028, "externalreferencevalidationresult": 1035, "mappingvalidationresult": 1040, "namedresourc": 1041, "repairconfigur": 1046, "repairoper": 1047, "repairreport": 1048, "severityopt": 1051, "typeseveritykeyvalu": 1055, "validationconfigur": 1058, "validationreport": 1059, "validationresult": 1060, "validationresulttyp": 1061, "dry_run": 1064, "http_response_cod": 1065, "instanti": 1069, "max_number_results_per_typ": 1070, "modifi": 1071, "number_of_attempt": 1072, "object_info": 1075, "object_str": 1076, "problem": 1079, "prompt_info": 1080, "repair": 1081, "schema_path": 1083, "sever": 1084, "subject_info": 1088, "success": 1089, "suggested_modif": 1090, "suggested_pred": 1091, "time_check": 1092, "type_severity_map": 1094, "validation_configur": 1097, "validaton": 1098, "faq": [1099, 1100, 1101, 1102, 1103, 1104, 1105], "architectur": [1099, 1140], "what": [1099, 1100, 1102, 1104, 1109, 1126], "i": [1099, 1100, 1101, 1102, 1104, 1105, 1109, 1117, 1126], "an": [1099, 1100, 1104, 1109, 1124, 1126, 1135], "interfac": [1099, 1105, 1126, 1132, 1140, 1163, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1176, 1177, 1180, 1181], "iter": [1099, 1141], "why": [1099, 1100, 1102, 1105, 1109], "doe": [1099, 1100, 1102], "them": [1099, 1104], "so": 1099, "much": 1099, "do": [1100, 1101, 1102, 1104, 1105], "get": [1100, 1105, 1129], "help": [1100, 1102], "more": [1100, 1112, 1117, 1126], "want": [1100, 1105, 1109], "pass": 1100, "option": [1100, 1105], "error": [1100, 1105], "when": 1100, "p": 1100, "mean": 1100, "can": [1100, 1101, 1102], "entiti": [1100, 1110, 1115, 1118, 1192], "combin": [1100, 1193], "chain": [1100, 1129], "togeth": [1100, 1141], "unix": 1100, "style": 1100, "symbol": 1100, "visual": [1100, 1129, 1133], "subgraph": 1100, "over": [1100, 1102], "arch": 1100, "philosophi": 1100, "principl": 1100, "The": [1100, 1111, 1113], "isn": 1100, "t": [1100, 1102, 1105], "work": [1100, 1124, 1129, 1133, 1134, 1184, 1188], "wai": 1100, "expect": 1100, "stai": 1101, "involv": 1101, "ar": 1102, "tutori": [1102, 1128], "runnabl": 1102, "am": 1102, "familiar": 1102, "both": 1102, "python": [1102, 1114, 1130, 1135, 1137], "where": [1102, 1117], "should": [1102, 1115, 1117], "start": [1102, 1129], "find": 1102, "confus": 1102, "guid": [1102, 1111, 1120], "me": 1102, "call": [1102, 1141], "instal": [1102, 1123, 1124, 1129, 1130, 1133], "don": [1102, 1105], "know": 1102, "just": 1102, "bio": 1102, "access": [1102, 1104, 1109, 1127], "portal": [1102, 1192], "matport": 1102, "bioport": [1102, 1105, 1129, 1149, 1182], "triplestor": [1102, 1131], "ontobe": [1102, 1129, 1156, 1182], "ubergraph": [1102, 1118, 1129, 1131, 1163], "local": [1102, 1129], "file": [1102, 1105, 1119, 1129, 1135, 1136, 1159], "obo": [1102, 1104, 1105, 1107, 1113, 1124, 1129, 1136, 1143, 1144, 1145, 1146, 1147, 1154, 1159, 1160], "support": [1102, 1108], "owl": [1102, 1104, 1105, 1113, 1134, 1140, 1147, 1173, 1192], "reason": [1102, 1113, 1117], "we": 1104, "need": 1104, "now": 1104, "have": 1104, "chatgpt": 1104, "": 1104, "troubleshoot": 1105, "No": 1105, "messag": 1105, "api": [1105, 1149], "kei": [1105, 1149], "my": 1105, "won": 1105, "pars": 1105, "take": 1105, "too": 1105, "long": 1105, "load": 1105, "sqlite": [1105, 1124, 1135, 1182], "out": 1105, "method": 1105, "glossari": 1106, "case": [1107, 1116], "mine": 1107, "nlp": 1107, "differ": [1107, 1168], "commun": 1107, "approach": [1107, 1118, 1192], "repres": 1107, "represent": 1107, "simpl": [1107, 1160], "core": [1107, 1109], "hpo": 1107, "basic": [1107, 1109, 1129, 1130, 1131, 1137, 1166], "full": 1107, "curat": 1108, "background": [1108, 1118], "select": [1108, 1123], "further": [1108, 1110, 1113, 1114, 1115, 1116, 1118], "read": [1108, 1110, 1113, 1114, 1115, 1116, 1118], "would": 1109, "one": [1109, 1126], "standard": [1109, 1115], "prefixmap": [1110, 1192], "non": 1110, "default": [1110, 1118], "structur": 1110, "learn": 1112, "genu": 1113, "differentia": 1113, "form": 1113, "uberon": [1113, 1114], "nail": 1113, "analyz": 1113, "refer": 1114, "In": 1114, "look": [1115, 1116], "up": [1115, 1116], "convent": 1115, "signatur": 1115, "accompani": 1115, "provid": [1115, 1165, 1171], "addit": 1115, "context": 1115, "human": 1115, "machin": 1115, "merg": 1115, "primari": 1116, "custom": 1116, "multilingu": 1116, "other": [1116, 1129, 1135, 1140], "explor": 1117, "relat": [1117, 1175], "strategi": 1117, "entail": 1117, "yield": 1117, "than": 1117, "which": 1117, "A": 1117, "comput": 1118, "between": [1118, 1192], "jaccard": 1118, "aggreg": [1118, 1148], "measur": 1118, "compar": 1118, "vector": 1118, "base": 1118, "semsimian": 1118, "fhir": [1119, 1145], "convers": 1119, "cli": 1119, "config": 1119, "To": 1120, "larg": 1123, "llm": [1123, 1153], "framework": 1123, "ontogpt": 1123, "curategpt": 1123, "talisman": 1123, "conjunct": 1123, "exist": 1123, "tool": 1123, "suggest": 1123, "altern": [1123, 1124], "mixtral": 1123, "ollama": 1123, "litellm": 1123, "groq": 1123, "step": [1124, 1129], "1": [1124, 1129], "obtain": 1124, "2": [1124, 1130], "oaklib": [1124, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190], "3": [1124, 1131], "individu": 1124, "caveat": 1124, "your": [1124, 1135], "own": [1124, 1135], "thi": [1124, 1133], "analysi": 1124, "discuss": 1126, "tracker": 1126, "project": [1126, 1130], "selector": [1126, 1159, 1182], "kit": 1127, "indic": 1127, "part": [1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136], "from": [1129, 1143], "run": 1129, "librari": [1129, 1164], "introduct": [1129, 1137], "fetch": [1129, 1135], "abbrevi": 1129, "advanc": 1129, "paramet": 1129, "backend": [1129, 1131], "ontoport": 1129, "ol": [1129, 1155, 1182], "next": 1129, "poetri": 1130, "first": 1130, "extend": 1130, "connect": [1131, 1163], "oper": 1131, "4": 1132, "5": 1133, "graphviz": 1133, "obographviz": 1133, "programmat": 1133, "6": 1134, "With": [1134, 1135], "owlinterfac": 1134, "robot": 1134, "7": 1135, "download": 1135, "readi": 1135, "made": 1135, "build": 1135, "docker": 1135, "without": 1135, "rdbmss": 1135, "orm": [1135, 1162], "8": 1136, "chang": 1136, "about": [1136, 1154, 1157, 1159, 1160, 1163, 1192], "sqlite3": 1136, "jupyt": 1139, "partial": 1140, "complet": 1140, "best": 1141, "practic": 1141, "extern": 1141, "servic": [1141, 1155], "weav": 1141, "chunk": 1141, "abstract": 1142, "convert": [1143, 1144, 1145, 1146, 1147], "cx": 1144, "gilda": 1151, "initi": [1154, 1159, 1160, 1162], "lookup": 1155, "owleri": 1157, "pantherdb": 1158, "pronto": [1159, 1182], "sparql": 1161, "sql": 1162, "databas": 1162, "alchemi": 1162, "calcul": 1167, "dumper": 1169, "patcher": 1174, "scheme": 1182, "prontolib": 1182, "obosqlit": 1182, "apikey_manag": 1183, "networkx_bridg": 1184, "networkx": 1184, "relationship_walk": 1185, "lexical_index": 1186, "obograph_util": 1187, "slimmer_util": 1188, "slim": 1188, "table_fil": 1189, "layer": 1192, "rdf": 1192, "challeng": 1192}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "sphinx.ext.todo": 2, "sphinx.ext.intersphinx": 1, "sphinx": 60}, "alltitles": {"Command Line": [[0, "command-line"], [1136, "command-line"], [1141, "command-line"], [1156, "command-line"], [1176, "command-line"]], "General Guidelines": [[0, "general-guidelines"]], "Common Patterns": [[0, "common-patterns"]], "Term Lists": [[0, "term-lists"]], "Predicates": [[0, "predicates"]], "Commands": [[0, "commands"], [1132, "commands"]], "runoak": [[0, "runoak"]], "aliases": [[0, "runoak-aliases"]], "ancestors": [[0, "runoak-ancestors"]], "annotate": [[0, "runoak-annotate"]], "apply": [[0, "runoak-apply"]], "apply-obsolete": [[0, "runoak-apply-obsolete"]], "apply-taxon-constraints": [[0, "runoak-apply-taxon-constraints"]], "associations": [[0, "runoak-associations"]], "associations-counts": [[0, "runoak-associations-counts"]], "associations-matrix": [[0, "runoak-associations-matrix"]], "axioms": [[0, "runoak-axioms"]], "cache-clear": [[0, "runoak-cache-clear"]], "cache-ls": [[0, "runoak-cache-ls"]], "definitions": [[0, "runoak-definitions"]], "descendants": [[0, "runoak-descendants"]], "diff": [[0, "runoak-diff"]], "diff-associations": [[0, "runoak-diff-associations"]], "diff-terms": [[0, "runoak-diff-terms"]], "diff-via-mappings": [[0, "runoak-diff-via-mappings"]], "disjoints": [[0, "runoak-disjoints"]], "dump": [[0, "runoak-dump"]], "enrichment": [[0, "runoak-enrichment"]], "expand-subsets": [[0, "runoak-expand-subsets"]], "extract": [[0, "runoak-extract"]], "fill-table": [[0, "runoak-fill-table"]], "generate-definitions": [[0, "runoak-generate-definitions"]], "generate-disjoints": [[0, "runoak-generate-disjoints"]], "generate-logical-definitions": [[0, "runoak-generate-logical-definitions"]], "generate-synonyms": [[0, "runoak-generate-synonyms"]], "info": [[0, "runoak-info"]], "information-content": [[0, "runoak-information-content"]], "labels": [[0, "runoak-labels"]], "languages": [[0, "runoak-languages"]], "leafs": [[0, "runoak-leafs"]], "lexmatch": [[0, "runoak-lexmatch"]], "lint": [[0, "runoak-lint"]], "logical-definitions": [[0, "runoak-logical-definitions"]], "mappings": [[0, "runoak-mappings"]], "migrate-curies": [[0, "runoak-migrate-curies"]], "normalize": [[0, "runoak-normalize"]], "obsoletes": [[0, "runoak-obsoletes"]], "ontologies": [[0, "runoak-ontologies"]], "ontology-metadata": [[0, "runoak-ontology-metadata"]], "ontology-versions": [[0, "runoak-ontology-versions"]], "paths": [[0, "runoak-paths"]], "prefixes": [[0, "runoak-prefixes"]], "query": [[0, "runoak-query"]], "relationships": [[0, "runoak-relationships"]], "rollup": [[0, "runoak-rollup"]], "roots": [[0, "runoak-roots"]], "search": [[0, "runoak-search"]], "set-apikey": [[0, "runoak-set-apikey"]], "siblings": [[0, "runoak-siblings"]], "similarity": [[0, "runoak-similarity"]], "similarity-pair": [[0, "runoak-similarity-pair"]], "singletons": [[0, "runoak-singletons"]], "statistics": [[0, "runoak-statistics"]], "subsets": [[0, "runoak-subsets"]], "synonymize": [[0, "runoak-synonymize"]], "taxon-constraints": [[0, "runoak-taxon-constraints"], [967, "taxon-constraints"]], "term-categories": [[0, "runoak-term-categories"]], "term-metadata": [[0, "runoak-term-metadata"]], "term-subsets": [[0, "runoak-term-subsets"]], "terms": [[0, "runoak-terms"]], "termset-similarity": [[0, "runoak-termset-similarity"]], "transform": [[0, "runoak-transform"]], "tree": [[0, "runoak-tree"]], "validate": [[0, "runoak-validate"]], "validate-definitions": [[0, "runoak-validate-definitions"]], "validate-mappings": [[0, "runoak-validate-mappings"]], "validate-multiple": [[0, "runoak-validate-multiple"]], "viz": [[0, "runoak-viz"]], "Ontology Concepts": [[1, "ontology-concepts"]], "Ontology": [[1, "ontology"]], "Ontology Element": [[1, "ontology-element"]], "Imports and Ontologies within Ontologies": [[1, "imports-and-ontologies-within-ontologies"]], "URIs and CURIEs and identifiers": [[1, "uris-and-curies-and-identifiers"]], "Prefix Maps": [[1, "prefix-maps"]], "Relationships / Edges": [[1, "relationships-edges"]], "Mappings": [[1, "mappings"], [3, "mappings"], [4, "mappings"], [17, "mappings"], [20, "mappings"], [21, "mappings"], [22, "mappings"], [23, "mappings"], [24, "mappings"], [92, "mappings"], [93, "mappings"], [94, "mappings"], [153, "mappings"], [157, "mappings"], [212, "mappings"], [213, "mappings"], [217, "mappings"], [223, "mappings"], [249, "mappings"], [250, "mappings"], [262, "mappings"], [263, "mappings"], [264, "mappings"], [265, "mappings"], [269, "mappings"], [294, "mappings"], [295, "mappings"], [307, "mappings"], [308, "mappings"], [309, "mappings"], [310, "mappings"], [311, "mappings"], [312, "mappings"], [316, "mappings"], [317, "mappings"], [318, "mappings"], [321, "mappings"], [322, "mappings"], [372, "mappings"], [373, "mappings"], [380, "mappings"], [381, "mappings"], [382, "mappings"], [384, "mappings"], [385, "mappings"], [386, "mappings"], [388, "mappings"], [389, "mappings"], [393, "mappings"], [394, "mappings"], [396, "mappings"], [402, "mappings"], [403, "mappings"], [405, "mappings"], [410, "mappings"], [411, "mappings"], [412, "mappings"], [417, "mappings"], [476, "mappings"], [479, "mappings"], [480, "mappings"], [481, "mappings"], [482, "mappings"], [483, "mappings"], [484, "mappings"], [485, "mappings"], [488, "mappings"], [489, "mappings"], [497, "mappings"], [502, "mappings"], [503, "mappings"], [504, "mappings"], [505, "mappings"], [506, "mappings"], [507, "mappings"], [508, "mappings"], [509, "mappings"], [512, "mappings"], [521, "mappings"], [522, "mappings"], [526, "mappings"], [530, "mappings"], [532, "mappings"], [533, "mappings"], [535, "mappings"], [536, "mappings"], [537, "mappings"], [540, "mappings"], [541, "mappings"], [542, "mappings"], [545, "mappings"], [677, "mappings"], [692, "mappings"], [693, "mappings"], [695, "mappings"], [696, "mappings"], [743, "mappings"], [761, "mappings"], [764, "mappings"], [765, "mappings"], [766, "mappings"], [813, "mappings"], [815, "mappings"], [816, "mappings"], [817, "mappings"], [824, "mappings"], [825, "mappings"], [827, "mappings"], [828, "mappings"], [835, "mappings"], [838, "mappings"], [839, "mappings"], [840, "mappings"], [842, "mappings"], [936, "mappings"], [939, "mappings"], [940, "mappings"], [941, "mappings"], [942, "mappings"], [978, "mappings"], [988, "mappings"], [989, "mappings"], [990, "mappings"], [991, "mappings"], [1028, "mappings"], [1035, "mappings"], [1040, "mappings"], [1041, "mappings"], [1043, "mappings"], [1046, "mappings"], [1047, "mappings"], [1048, "mappings"], [1049, "mappings"], [1050, "mappings"], [1055, "mappings"], [1058, "mappings"], [1059, "mappings"], [1060, "mappings"], [1149, "mappings"]], "Ontology Format": [[1, "ontology-format"]], "Statements and Axioms": [[1, "statements-and-axioms"]], "Subsets": [[1, "subsets"], [46, "subsets"], [125, "subsets"], [163, "subsets"], [234, "subsets"], [279, "subsets"], [331, "subsets"], [437, "subsets"], [613, "subsets"], [717, "subsets"], [780, "subsets"], [882, "subsets"], [953, "subsets"], [1001, "subsets"], [1067, "subsets"]], "Labels/Names": [[1, "labels-names"]], "Contribution Guidelines": [[2, "contribution-guidelines"]], "Reporting issues and giving general feedback": [[2, "reporting-issues-and-giving-general-feedback"]], "Contributing documentation": [[2, "contributing-documentation"]], "Contributing code": [[2, "contributing-code"]], "Understand design patterns used": [[2, "understand-design-patterns-used"]], "Please make a Pull Request for all contributions.": [[2, "please-make-a-pull-request-for-all-contributions"]], "Always write tests": [[2, "always-write-tests"]], "How to contribute a plugin": [[2, "how-to-contribute-a-plugin"]], "How to contribute a new subcommand": [[2, "how-to-contribute-a-new-subcommand"]], "How to contribute to a notebook or add a new notebook": [[2, "how-to-contribute-to-a-notebook-or-add-a-new-notebook"]], "How to contribute a new adapter/implementation": [[2, "how-to-contribute-a-new-adapter-implementation"]], "How to contribute a new utility function": [[2, "how-to-contribute-a-new-utility-function"]], "How to contribute a datamodel": [[2, "how-to-contribute-a-datamodel"]], "Release to PyPI": [[2, "release-to-pypi"], [1126, "release-to-pypi"]], "Class: Association": [[3, "class-association"]], "Inheritance": [[3, "inheritance"], [17, "inheritance"], [22, "inheritance"], [39, "inheritance"], [40, "inheritance"], [47, "inheritance"], [48, "inheritance"], [49, "inheritance"], [50, "inheritance"], [51, "inheritance"], [52, "inheritance"], [54, "inheritance"], [55, "inheritance"], [56, "inheritance"], [60, "inheritance"], [61, "inheritance"], [63, "inheritance"], [67, "inheritance"], [68, "inheritance"], [69, "inheritance"], [70, "inheritance"], [71, "inheritance"], [75, "inheritance"], [76, "inheritance"], [80, "inheritance"], [81, "inheritance"], [87, "inheritance"], [166, "inheritance"], [167, "inheritance"], [168, "inheritance"], [170, "inheritance"], [171, "inheritance"], [173, "inheritance"], [175, "inheritance"], [176, "inheritance"], [177, "inheritance"], [181, "inheritance"], [185, "inheritance"], [186, "inheritance"], [188, "inheritance"], [189, "inheritance"], [191, "inheritance"], [193, "inheritance"], [194, "inheritance"], [196, "inheritance"], [199, "inheritance"], [249, "inheritance"], [264, "inheritance"], [265, "inheritance"], [294, "inheritance"], [309, "inheritance"], [310, "inheritance"], [372, "inheritance"], [373, "inheritance"], [380, "inheritance"], [381, "inheritance"], [382, "inheritance"], [385, "inheritance"], [393, "inheritance"], [403, "inheritance"], [405, "inheritance"], [411, "inheritance"], [417, "inheritance"], [476, "inheritance"], [480, "inheritance"], [481, "inheritance"], [482, "inheritance"], [483, "inheritance"], [488, "inheritance"], [489, "inheritance"], [497, "inheritance"], [502, "inheritance"], [503, "inheritance"], [504, "inheritance"], [505, "inheritance"], [506, "inheritance"], [507, "inheritance"], [508, "inheritance"], [509, "inheritance"], [510, "inheritance"], [511, "inheritance"], [512, "inheritance"], [521, "inheritance"], [522, "inheritance"], [527, "inheritance"], [530, "inheritance"], [533, "inheritance"], [535, "inheritance"], [536, "inheritance"], [537, "inheritance"], [540, "inheritance"], [541, "inheritance"], [542, "inheritance"], [545, "inheritance"], [549, "inheritance"], [550, "inheritance"], [551, "inheritance"], [552, "inheritance"], [553, "inheritance"], [555, "inheritance"], [556, "inheritance"], [557, "inheritance"], [558, "inheritance"], [559, "inheritance"], [560, "inheritance"], [561, "inheritance"], [562, "inheritance"], [563, "inheritance"], [564, "inheritance"], [565, "inheritance"], [566, "inheritance"], [567, "inheritance"], [568, "inheritance"], [569, "inheritance"], [570, "inheritance"], [571, "inheritance"], [572, "inheritance"], [573, "inheritance"], [574, "inheritance"], [575, "inheritance"], [576, "inheritance"], [577, "inheritance"], [578, "inheritance"], [579, "inheritance"], [580, "inheritance"], [581, "inheritance"], [582, "inheritance"], [583, "inheritance"], [584, "inheritance"], [585, "inheritance"], [586, "inheritance"], [588, "inheritance"], [589, "inheritance"], [590, "inheritance"], [591, "inheritance"], [592, "inheritance"], [593, "inheritance"], [595, "inheritance"], [596, "inheritance"], [597, "inheritance"], [598, "inheritance"], [599, "inheritance"], [600, "inheritance"], [601, "inheritance"], [603, "inheritance"], [604, "inheritance"], [608, "inheritance"], [609, "inheritance"], [610, "inheritance"], [614, "inheritance"], [615, "inheritance"], [616, "inheritance"], [625, "inheritance"], [626, "inheritance"], [627, "inheritance"], [628, "inheritance"], [629, "inheritance"], [631, "inheritance"], [632, "inheritance"], [633, "inheritance"], [634, "inheritance"], [635, "inheritance"], [641, "inheritance"], [643, "inheritance"], [644, "inheritance"], [645, "inheritance"], [646, "inheritance"], [647, "inheritance"], [649, "inheritance"], [650, "inheritance"], [651, "inheritance"], [652, "inheritance"], [653, "inheritance"], [654, "inheritance"], [656, "inheritance"], [658, "inheritance"], [659, "inheritance"], [660, "inheritance"], [661, "inheritance"], [662, "inheritance"], [664, "inheritance"], [665, "inheritance"], [666, "inheritance"], [668, "inheritance"], [670, "inheritance"], [672, "inheritance"], [673, "inheritance"], [674, "inheritance"], [761, "inheritance"], [765, "inheritance"], [766, "inheritance"], [772, "inheritance"], [777, "inheritance"], [778, "inheritance"], [781, "inheritance"], [782, "inheritance"], [783, "inheritance"], [794, "inheritance"], [798, "inheritance"], [799, "inheritance"], [800, "inheritance"], [804, "inheritance"], [808, "inheritance"], [809, "inheritance"], [811, "inheritance"], [824, "inheritance"], [827, "inheritance"], [828, "inheritance"], [838, "inheritance"], [840, "inheritance"], [842, "inheritance"], [847, "inheritance"], [848, "inheritance"], [849, "inheritance"], [855, "inheritance"], [858, "inheritance"], [859, "inheritance"], [860, "inheritance"], [861, "inheritance"], [867, "inheritance"], [868, "inheritance"], [869, "inheritance"], [870, "inheritance"], [873, "inheritance"], [877, "inheritance"], [878, "inheritance"], [883, "inheritance"], [886, "inheritance"], [890, "inheritance"], [892, "inheritance"], [893, "inheritance"], [894, "inheritance"], [896, "inheritance"], [898, "inheritance"], [899, "inheritance"], [903, "inheritance"], [905, "inheritance"], [908, "inheritance"], [909, "inheritance"], [911, "inheritance"], [915, "inheritance"], [916, "inheritance"], [936, "inheritance"], [939, "inheritance"], [940, "inheritance"], [942, "inheritance"], [988, "inheritance"], [1028, "inheritance"], [1035, "inheritance"], [1040, "inheritance"], [1041, "inheritance"], [1043, "inheritance"], [1047, "inheritance"], [1048, "inheritance"], [1049, "inheritance"], [1050, "inheritance"], [1059, "inheritance"], [1060, "inheritance"]], "Slots": [[3, "slots"], [4, "slots"], [17, "slots"], [20, "slots"], [21, "slots"], [22, "slots"], [23, "slots"], [24, "slots"], [46, "slots"], [92, "slots"], [93, "slots"], [94, "slots"], [125, "slots"], [140, "slots"], [148, "slots"], [153, "slots"], [157, "slots"], [163, "slots"], [212, "slots"], [213, "slots"], [214, "slots"], [217, "slots"], [223, "slots"], [234, "slots"], [249, "slots"], [250, "slots"], [262, "slots"], [263, "slots"], [264, "slots"], [265, "slots"], [269, "slots"], [273, "slots"], [279, "slots"], [294, "slots"], [295, "slots"], [307, "slots"], [308, "slots"], [309, "slots"], [310, "slots"], [311, "slots"], [312, "slots"], [316, "slots"], [317, "slots"], [318, "slots"], [321, "slots"], [322, "slots"], [324, "slots"], [331, "slots"], [372, "slots"], [373, "slots"], [380, "slots"], [381, "slots"], [382, "slots"], [384, "slots"], [385, "slots"], [386, "slots"], [388, "slots"], [389, "slots"], [393, "slots"], [394, "slots"], [396, "slots"], [402, "slots"], [403, "slots"], [404, "slots"], [405, "slots"], [406, "slots"], [410, "slots"], [411, "slots"], [412, "slots"], [417, "slots"], [437, "slots"], [476, "slots"], [479, "slots"], [480, "slots"], [481, "slots"], [482, "slots"], [483, "slots"], [484, "slots"], [485, "slots"], [488, "slots"], [489, "slots"], [497, "slots"], [502, "slots"], [503, "slots"], [504, "slots"], [505, "slots"], [506, "slots"], [507, "slots"], [508, "slots"], [509, "slots"], [512, "slots"], [521, "slots"], [522, "slots"], [526, "slots"], [530, "slots"], [532, "slots"], [533, "slots"], [535, "slots"], [536, "slots"], [537, "slots"], [540, "slots"], [541, "slots"], [542, "slots"], [545, "slots"], [613, "slots"], [677, "slots"], [685, "slots"], [692, "slots"], [693, "slots"], [694, "slots"], [695, "slots"], [696, "slots"], [698, "slots"], [717, "slots"], [743, "slots"], [761, "slots"], [764, "slots"], [765, "slots"], [766, "slots"], [780, "slots"], [813, "slots"], [815, "slots"], [816, "slots"], [817, "slots"], [824, "slots"], [825, "slots"], [827, "slots"], [828, "slots"], [835, "slots"], [838, "slots"], [839, "slots"], [840, "slots"], [842, "slots"], [882, "slots"], [936, "slots"], [939, "slots"], [940, "slots"], [941, "slots"], [942, "slots"], [953, "slots"], [978, "slots"], [988, "slots"], [989, "slots"], [990, "slots"], [991, "slots"], [1001, "slots"], [1028, "slots"], [1035, "slots"], [1040, "slots"], [1041, "slots"], [1043, "slots"], [1046, "slots"], [1047, "slots"], [1048, "slots"], [1049, "slots"], [1050, "slots"], [1051, "slots"], [1055, "slots"], [1058, "slots"], [1059, "slots"], [1060, "slots"], [1067, "slots"]], "Usages": [[3, "usages"], [23, "usages"], [24, "usages"], [93, "usages"], [153, "usages"], [212, "usages"], [217, "usages"], [223, "usages"], [250, "usages"], [262, "usages"], [264, "usages"], [265, "usages"], [269, "usages"], [295, "usages"], [307, "usages"], [309, "usages"], [310, "usages"], [311, "usages"], [316, "usages"], [317, "usages"], [318, "usages"], [321, "usages"], [322, "usages"], [373, "usages"], [380, "usages"], [382, "usages"], [384, "usages"], [385, "usages"], [386, "usages"], [388, "usages"], [393, "usages"], [394, "usages"], [396, "usages"], [402, "usages"], [403, "usages"], [410, "usages"], [411, "usages"], [412, "usages"], [417, "usages"], [476, "usages"], [479, "usages"], [480, "usages"], [484, "usages"], [488, "usages"], [489, "usages"], [512, "usages"], [521, "usages"], [522, "usages"], [526, "usages"], [532, "usages"], [533, "usages"], [535, "usages"], [536, "usages"], [540, "usages"], [542, "usages"], [677, "usages"], [693, "usages"], [695, "usages"], [743, "usages"], [764, "usages"], [765, "usages"], [813, "usages"], [815, "usages"], [817, "usages"], [824, "usages"], [825, "usages"], [827, "usages"], [835, "usages"], [838, "usages"], [839, "usages"], [842, "usages"], [936, "usages"], [939, "usages"], [940, "usages"], [941, "usages"], [988, "usages"], [991, "usages"], [1028, "usages"], [1043, "usages"], [1047, "usages"], [1050, "usages"], [1055, "usages"], [1058, "usages"], [1060, "usages"]], "Identifier and Mapping Information": [[3, "identifier-and-mapping-information"], [4, "identifier-and-mapping-information"], [5, "identifier-and-mapping-information"], [6, "identifier-and-mapping-information"], [7, "identifier-and-mapping-information"], [8, "identifier-and-mapping-information"], [9, "identifier-and-mapping-information"], [10, "identifier-and-mapping-information"], [11, "identifier-and-mapping-information"], [12, "identifier-and-mapping-information"], [13, "identifier-and-mapping-information"], [14, "identifier-and-mapping-information"], [15, "identifier-and-mapping-information"], [16, "identifier-and-mapping-information"], [17, "identifier-and-mapping-information"], [18, "identifier-and-mapping-information"], [19, "identifier-and-mapping-information"], [20, "identifier-and-mapping-information"], [21, "identifier-and-mapping-information"], [22, "identifier-and-mapping-information"], [23, "identifier-and-mapping-information"], [24, "identifier-and-mapping-information"], [25, "identifier-and-mapping-information"], [26, "identifier-and-mapping-information"], [27, "identifier-and-mapping-information"], [28, "identifier-and-mapping-information"], [29, "identifier-and-mapping-information"], [30, "identifier-and-mapping-information"], [32, "identifier-and-mapping-information"], [33, "identifier-and-mapping-information"], [34, "identifier-and-mapping-information"], [35, "identifier-and-mapping-information"], [36, "identifier-and-mapping-information"], [37, "identifier-and-mapping-information"], [38, "identifier-and-mapping-information"], [39, "identifier-and-mapping-information"], [40, "identifier-and-mapping-information"], [41, "identifier-and-mapping-information"], [42, "identifier-and-mapping-information"], [43, "identifier-and-mapping-information"], [44, "identifier-and-mapping-information"], [45, "identifier-and-mapping-information"], [47, "identifier-and-mapping-information"], [48, "identifier-and-mapping-information"], [49, "identifier-and-mapping-information"], [50, "identifier-and-mapping-information"], [51, "identifier-and-mapping-information"], [52, "identifier-and-mapping-information"], [53, "identifier-and-mapping-information"], [54, "identifier-and-mapping-information"], [55, "identifier-and-mapping-information"], [56, "identifier-and-mapping-information"], [57, "identifier-and-mapping-information"], [58, "identifier-and-mapping-information"], [59, "identifier-and-mapping-information"], [60, "identifier-and-mapping-information"], [61, "identifier-and-mapping-information"], [62, "identifier-and-mapping-information"], [63, "identifier-and-mapping-information"], [64, "identifier-and-mapping-information"], [65, "identifier-and-mapping-information"], [66, "identifier-and-mapping-information"], [67, "identifier-and-mapping-information"], [68, "identifier-and-mapping-information"], [69, "identifier-and-mapping-information"], [70, "identifier-and-mapping-information"], [71, "identifier-and-mapping-information"], [72, "identifier-and-mapping-information"], [73, "identifier-and-mapping-information"], [74, "identifier-and-mapping-information"], [75, "identifier-and-mapping-information"], [76, "identifier-and-mapping-information"], [77, "identifier-and-mapping-information"], [78, "identifier-and-mapping-information"], [79, "identifier-and-mapping-information"], [80, "identifier-and-mapping-information"], [81, "identifier-and-mapping-information"], [82, "identifier-and-mapping-information"], [83, "identifier-and-mapping-information"], [84, "identifier-and-mapping-information"], [85, "identifier-and-mapping-information"], [86, "identifier-and-mapping-information"], [87, "identifier-and-mapping-information"], [88, "identifier-and-mapping-information"], [89, "identifier-and-mapping-information"], [90, "identifier-and-mapping-information"], [91, "identifier-and-mapping-information"], [92, "identifier-and-mapping-information"], [93, "identifier-and-mapping-information"], [94, "identifier-and-mapping-information"], [95, "identifier-and-mapping-information"], [96, "identifier-and-mapping-information"], [97, "identifier-and-mapping-information"], [98, "identifier-and-mapping-information"], [99, "identifier-and-mapping-information"], [100, "identifier-and-mapping-information"], [101, "identifier-and-mapping-information"], [102, "identifier-and-mapping-information"], [103, "identifier-and-mapping-information"], [104, "identifier-and-mapping-information"], [105, "identifier-and-mapping-information"], [106, "identifier-and-mapping-information"], [107, "identifier-and-mapping-information"], [108, "identifier-and-mapping-information"], [109, "identifier-and-mapping-information"], [110, "identifier-and-mapping-information"], [111, "identifier-and-mapping-information"], [112, "identifier-and-mapping-information"], [113, "identifier-and-mapping-information"], [114, "identifier-and-mapping-information"], [115, "identifier-and-mapping-information"], [116, "identifier-and-mapping-information"], [117, "identifier-and-mapping-information"], [119, "identifier-and-mapping-information"], [120, "identifier-and-mapping-information"], [121, "identifier-and-mapping-information"], [122, "identifier-and-mapping-information"], [123, "identifier-and-mapping-information"], [124, "identifier-and-mapping-information"], [126, "identifier-and-mapping-information"], [127, "identifier-and-mapping-information"], [128, "identifier-and-mapping-information"], [129, "identifier-and-mapping-information"], [130, "identifier-and-mapping-information"], [131, "identifier-and-mapping-information"], [132, "identifier-and-mapping-information"], [133, "identifier-and-mapping-information"], [134, "identifier-and-mapping-information"], [135, "identifier-and-mapping-information"], [136, "identifier-and-mapping-information"], [137, "identifier-and-mapping-information"], [138, "identifier-and-mapping-information"], [139, "identifier-and-mapping-information"], [140, "identifier-and-mapping-information"], [141, "identifier-and-mapping-information"], [142, "identifier-and-mapping-information"], [143, "identifier-and-mapping-information"], [144, "identifier-and-mapping-information"], [145, "identifier-and-mapping-information"], [146, "identifier-and-mapping-information"], [147, "identifier-and-mapping-information"], [148, "identifier-and-mapping-information"], [149, "identifier-and-mapping-information"], [150, "identifier-and-mapping-information"], [151, "identifier-and-mapping-information"], [152, "identifier-and-mapping-information"], [153, "identifier-and-mapping-information"], [154, "identifier-and-mapping-information"], [155, "identifier-and-mapping-information"], [156, "identifier-and-mapping-information"], [157, "identifier-and-mapping-information"], [158, "identifier-and-mapping-information"], [159, "identifier-and-mapping-information"], [160, "identifier-and-mapping-information"], [161, "identifier-and-mapping-information"], [164, "identifier-and-mapping-information"], [165, "identifier-and-mapping-information"], [166, "identifier-and-mapping-information"], [167, "identifier-and-mapping-information"], [168, "identifier-and-mapping-information"], [169, "identifier-and-mapping-information"], [170, "identifier-and-mapping-information"], [171, "identifier-and-mapping-information"], [172, "identifier-and-mapping-information"], [173, "identifier-and-mapping-information"], [174, "identifier-and-mapping-information"], [175, "identifier-and-mapping-information"], [176, "identifier-and-mapping-information"], [177, "identifier-and-mapping-information"], [178, "identifier-and-mapping-information"], [179, "identifier-and-mapping-information"], [180, "identifier-and-mapping-information"], [181, "identifier-and-mapping-information"], [182, "identifier-and-mapping-information"], [183, "identifier-and-mapping-information"], [184, "identifier-and-mapping-information"], [185, "identifier-and-mapping-information"], [186, "identifier-and-mapping-information"], [187, "identifier-and-mapping-information"], [188, "identifier-and-mapping-information"], [189, "identifier-and-mapping-information"], [190, "identifier-and-mapping-information"], [191, "identifier-and-mapping-information"], [192, "identifier-and-mapping-information"], [193, "identifier-and-mapping-information"], [194, "identifier-and-mapping-information"], [195, "identifier-and-mapping-information"], [196, "identifier-and-mapping-information"], [197, "identifier-and-mapping-information"], [198, "identifier-and-mapping-information"], [199, "identifier-and-mapping-information"], [203, "identifier-and-mapping-information"], [204, "identifier-and-mapping-information"], [205, "identifier-and-mapping-information"], [206, "identifier-and-mapping-information"], [207, "identifier-and-mapping-information"], [208, "identifier-and-mapping-information"], [209, "identifier-and-mapping-information"], [210, "identifier-and-mapping-information"], [211, "identifier-and-mapping-information"], [212, "identifier-and-mapping-information"], [213, "identifier-and-mapping-information"], [214, "identifier-and-mapping-information"], [215, "identifier-and-mapping-information"], [216, "identifier-and-mapping-information"], [217, "identifier-and-mapping-information"], [218, "identifier-and-mapping-information"], [219, "identifier-and-mapping-information"], [220, "identifier-and-mapping-information"], [221, "identifier-and-mapping-information"], [222, "identifier-and-mapping-information"], [223, "identifier-and-mapping-information"], [224, "identifier-and-mapping-information"], [225, "identifier-and-mapping-information"], [226, "identifier-and-mapping-information"], [227, "identifier-and-mapping-information"], [228, "identifier-and-mapping-information"], [229, "identifier-and-mapping-information"], [230, "identifier-and-mapping-information"], [231, "identifier-and-mapping-information"], [232, "identifier-and-mapping-information"], [233, "identifier-and-mapping-information"], [235, "identifier-and-mapping-information"], [237, "identifier-and-mapping-information"], [238, "identifier-and-mapping-information"], [239, "identifier-and-mapping-information"], [240, "identifier-and-mapping-information"], [241, "identifier-and-mapping-information"], [242, "identifier-and-mapping-information"], [243, "identifier-and-mapping-information"], [244, "identifier-and-mapping-information"], [245, "identifier-and-mapping-information"], [246, "identifier-and-mapping-information"], [247, "identifier-and-mapping-information"], [249, "identifier-and-mapping-information"], [250, "identifier-and-mapping-information"], [251, "identifier-and-mapping-information"], [252, "identifier-and-mapping-information"], [253, "identifier-and-mapping-information"], [254, "identifier-and-mapping-information"], [255, "identifier-and-mapping-information"], [256, "identifier-and-mapping-information"], [257, "identifier-and-mapping-information"], [258, "identifier-and-mapping-information"], [259, "identifier-and-mapping-information"], [260, "identifier-and-mapping-information"], [261, "identifier-and-mapping-information"], [262, "identifier-and-mapping-information"], [263, "identifier-and-mapping-information"], [264, "identifier-and-mapping-information"], [265, "identifier-and-mapping-information"], [266, "identifier-and-mapping-information"], [267, "identifier-and-mapping-information"], [268, "identifier-and-mapping-information"], [269, "identifier-and-mapping-information"], [270, "identifier-and-mapping-information"], [271, "identifier-and-mapping-information"], [272, "identifier-and-mapping-information"], [273, "identifier-and-mapping-information"], [274, "identifier-and-mapping-information"], [275, "identifier-and-mapping-information"], [276, "identifier-and-mapping-information"], [277, "identifier-and-mapping-information"], [278, "identifier-and-mapping-information"], [282, "identifier-and-mapping-information"], [283, "identifier-and-mapping-information"], [284, "identifier-and-mapping-information"], [285, "identifier-and-mapping-information"], [286, "identifier-and-mapping-information"], [287, "identifier-and-mapping-information"], [288, "identifier-and-mapping-information"], [289, "identifier-and-mapping-information"], [290, "identifier-and-mapping-information"], [291, "identifier-and-mapping-information"], [292, "identifier-and-mapping-information"], [294, "identifier-and-mapping-information"], [295, "identifier-and-mapping-information"], [296, "identifier-and-mapping-information"], [297, "identifier-and-mapping-information"], [298, "identifier-and-mapping-information"], [299, "identifier-and-mapping-information"], [300, "identifier-and-mapping-information"], [301, "identifier-and-mapping-information"], [302, "identifier-and-mapping-information"], [303, "identifier-and-mapping-information"], [304, "identifier-and-mapping-information"], [305, "identifier-and-mapping-information"], [306, "identifier-and-mapping-information"], [307, "identifier-and-mapping-information"], [308, "identifier-and-mapping-information"], [309, "identifier-and-mapping-information"], [310, "identifier-and-mapping-information"], [311, "identifier-and-mapping-information"], [312, "identifier-and-mapping-information"], [313, "identifier-and-mapping-information"], [314, "identifier-and-mapping-information"], [315, "identifier-and-mapping-information"], [316, "identifier-and-mapping-information"], [317, "identifier-and-mapping-information"], [318, "identifier-and-mapping-information"], [319, "identifier-and-mapping-information"], [320, "identifier-and-mapping-information"], [321, "identifier-and-mapping-information"], [322, "identifier-and-mapping-information"], [323, "identifier-and-mapping-information"], [324, "identifier-and-mapping-information"], [325, "identifier-and-mapping-information"], [326, "identifier-and-mapping-information"], [327, "identifier-and-mapping-information"], [328, "identifier-and-mapping-information"], [329, "identifier-and-mapping-information"], [330, "identifier-and-mapping-information"], [332, "identifier-and-mapping-information"], [337, "identifier-and-mapping-information"], [338, "identifier-and-mapping-information"], [339, "identifier-and-mapping-information"], [340, "identifier-and-mapping-information"], [341, "identifier-and-mapping-information"], [342, "identifier-and-mapping-information"], [343, "identifier-and-mapping-information"], [344, "identifier-and-mapping-information"], [345, "identifier-and-mapping-information"], [346, "identifier-and-mapping-information"], [347, "identifier-and-mapping-information"], [348, "identifier-and-mapping-information"], [349, "identifier-and-mapping-information"], [350, "identifier-and-mapping-information"], [351, "identifier-and-mapping-information"], [352, "identifier-and-mapping-information"], [353, "identifier-and-mapping-information"], [354, "identifier-and-mapping-information"], [355, "identifier-and-mapping-information"], [356, "identifier-and-mapping-information"], [357, "identifier-and-mapping-information"], [358, "identifier-and-mapping-information"], [359, "identifier-and-mapping-information"], [360, "identifier-and-mapping-information"], [361, "identifier-and-mapping-information"], [362, "identifier-and-mapping-information"], [363, "identifier-and-mapping-information"], [364, "identifier-and-mapping-information"], [365, "identifier-and-mapping-information"], [366, "identifier-and-mapping-information"], [367, "identifier-and-mapping-information"], [368, "identifier-and-mapping-information"], [369, "identifier-and-mapping-information"], [371, "identifier-and-mapping-information"], [372, "identifier-and-mapping-information"], [373, "identifier-and-mapping-information"], [374, "identifier-and-mapping-information"], [375, "identifier-and-mapping-information"], [376, "identifier-and-mapping-information"], [377, "identifier-and-mapping-information"], [378, "identifier-and-mapping-information"], [379, "identifier-and-mapping-information"], [380, "identifier-and-mapping-information"], [381, "identifier-and-mapping-information"], [382, "identifier-and-mapping-information"], [383, "identifier-and-mapping-information"], [384, "identifier-and-mapping-information"], [385, "identifier-and-mapping-information"], [386, "identifier-and-mapping-information"], [387, "identifier-and-mapping-information"], [388, "identifier-and-mapping-information"], [389, "identifier-and-mapping-information"], [390, "identifier-and-mapping-information"], [391, "identifier-and-mapping-information"], [392, "identifier-and-mapping-information"], [393, "identifier-and-mapping-information"], [394, "identifier-and-mapping-information"], [395, "identifier-and-mapping-information"], [396, "identifier-and-mapping-information"], [397, "identifier-and-mapping-information"], [398, "identifier-and-mapping-information"], [399, "identifier-and-mapping-information"], [400, "identifier-and-mapping-information"], [401, "identifier-and-mapping-information"], [402, "identifier-and-mapping-information"], [403, "identifier-and-mapping-information"], [404, "identifier-and-mapping-information"], [405, "identifier-and-mapping-information"], [406, "identifier-and-mapping-information"], [407, "identifier-and-mapping-information"], [408, "identifier-and-mapping-information"], [409, "identifier-and-mapping-information"], [410, "identifier-and-mapping-information"], [411, "identifier-and-mapping-information"], [412, "identifier-and-mapping-information"], [413, "identifier-and-mapping-information"], [414, "identifier-and-mapping-information"], [415, "identifier-and-mapping-information"], [416, "identifier-and-mapping-information"], [417, "identifier-and-mapping-information"], [418, "identifier-and-mapping-information"], [419, "identifier-and-mapping-information"], [420, "identifier-and-mapping-information"], [421, "identifier-and-mapping-information"], [422, "identifier-and-mapping-information"], [423, "identifier-and-mapping-information"], [424, "identifier-and-mapping-information"], [425, "identifier-and-mapping-information"], [426, "identifier-and-mapping-information"], [427, "identifier-and-mapping-information"], [428, "identifier-and-mapping-information"], [429, "identifier-and-mapping-information"], [430, "identifier-and-mapping-information"], [431, "identifier-and-mapping-information"], [432, "identifier-and-mapping-information"], [433, "identifier-and-mapping-information"], [434, "identifier-and-mapping-information"], [435, "identifier-and-mapping-information"], [436, "identifier-and-mapping-information"], [438, "identifier-and-mapping-information"], [439, "identifier-and-mapping-information"], [440, "identifier-and-mapping-information"], [441, "identifier-and-mapping-information"], [442, "identifier-and-mapping-information"], [443, "identifier-and-mapping-information"], [444, "identifier-and-mapping-information"], [445, "identifier-and-mapping-information"], [446, "identifier-and-mapping-information"], [447, "identifier-and-mapping-information"], [450, "identifier-and-mapping-information"], [451, "identifier-and-mapping-information"], [452, "identifier-and-mapping-information"], [453, "identifier-and-mapping-information"], [454, "identifier-and-mapping-information"], [455, "identifier-and-mapping-information"], [456, "identifier-and-mapping-information"], [457, "identifier-and-mapping-information"], [458, "identifier-and-mapping-information"], [459, "identifier-and-mapping-information"], [460, "identifier-and-mapping-information"], [461, "identifier-and-mapping-information"], [462, "identifier-and-mapping-information"], [463, "identifier-and-mapping-information"], [464, "identifier-and-mapping-information"], [465, "identifier-and-mapping-information"], [466, "identifier-and-mapping-information"], [467, "identifier-and-mapping-information"], [468, "identifier-and-mapping-information"], [470, "identifier-and-mapping-information"], [471, "identifier-and-mapping-information"], [472, "identifier-and-mapping-information"], [473, "identifier-and-mapping-information"], [474, "identifier-and-mapping-information"], [475, "identifier-and-mapping-information"], [476, "identifier-and-mapping-information"], [477, "identifier-and-mapping-information"], [478, "identifier-and-mapping-information"], [479, "identifier-and-mapping-information"], [480, "identifier-and-mapping-information"], [481, "identifier-and-mapping-information"], [482, "identifier-and-mapping-information"], [483, "identifier-and-mapping-information"], [484, "identifier-and-mapping-information"], [485, "identifier-and-mapping-information"], [486, "identifier-and-mapping-information"], [487, "identifier-and-mapping-information"], [488, "identifier-and-mapping-information"], [489, "identifier-and-mapping-information"], [490, "identifier-and-mapping-information"], [491, "identifier-and-mapping-information"], [492, "identifier-and-mapping-information"], [493, "identifier-and-mapping-information"], [494, "identifier-and-mapping-information"], [495, "identifier-and-mapping-information"], [496, "identifier-and-mapping-information"], [497, "identifier-and-mapping-information"], [498, "identifier-and-mapping-information"], [499, "identifier-and-mapping-information"], [500, "identifier-and-mapping-information"], [501, "identifier-and-mapping-information"], [502, "identifier-and-mapping-information"], [503, "identifier-and-mapping-information"], [504, "identifier-and-mapping-information"], [505, "identifier-and-mapping-information"], [506, "identifier-and-mapping-information"], [507, "identifier-and-mapping-information"], [508, "identifier-and-mapping-information"], [509, "identifier-and-mapping-information"], [510, "identifier-and-mapping-information"], [511, "identifier-and-mapping-information"], [512, "identifier-and-mapping-information"], [513, "identifier-and-mapping-information"], [514, "identifier-and-mapping-information"], [515, "identifier-and-mapping-information"], [516, "identifier-and-mapping-information"], [517, "identifier-and-mapping-information"], [518, "identifier-and-mapping-information"], [519, "identifier-and-mapping-information"], [520, "identifier-and-mapping-information"], [521, "identifier-and-mapping-information"], [522, "identifier-and-mapping-information"], [523, "identifier-and-mapping-information"], [524, "identifier-and-mapping-information"], [525, "identifier-and-mapping-information"], [526, "identifier-and-mapping-information"], [527, "identifier-and-mapping-information"], [528, "identifier-and-mapping-information"], [529, "identifier-and-mapping-information"], [530, "identifier-and-mapping-information"], [531, "identifier-and-mapping-information"], [532, "identifier-and-mapping-information"], [533, "identifier-and-mapping-information"], [535, "identifier-and-mapping-information"], [536, "identifier-and-mapping-information"], [537, "identifier-and-mapping-information"], [538, "identifier-and-mapping-information"], [539, "identifier-and-mapping-information"], [540, "identifier-and-mapping-information"], [541, "identifier-and-mapping-information"], [542, "identifier-and-mapping-information"], [543, "identifier-and-mapping-information"], [544, "identifier-and-mapping-information"], [545, "identifier-and-mapping-information"], [546, "identifier-and-mapping-information"], [547, "identifier-and-mapping-information"], [548, "identifier-and-mapping-information"], [549, "identifier-and-mapping-information"], [550, "identifier-and-mapping-information"], [551, "identifier-and-mapping-information"], [552, "identifier-and-mapping-information"], [553, "identifier-and-mapping-information"], [554, "identifier-and-mapping-information"], [555, "identifier-and-mapping-information"], [556, "identifier-and-mapping-information"], [557, "identifier-and-mapping-information"], [558, "identifier-and-mapping-information"], [559, "identifier-and-mapping-information"], [560, "identifier-and-mapping-information"], [561, "identifier-and-mapping-information"], [562, "identifier-and-mapping-information"], [563, "identifier-and-mapping-information"], [564, "identifier-and-mapping-information"], [565, "identifier-and-mapping-information"], [566, "identifier-and-mapping-information"], [567, "identifier-and-mapping-information"], [568, "identifier-and-mapping-information"], [569, "identifier-and-mapping-information"], [570, "identifier-and-mapping-information"], [571, "identifier-and-mapping-information"], [572, "identifier-and-mapping-information"], [573, "identifier-and-mapping-information"], [574, "identifier-and-mapping-information"], [575, "identifier-and-mapping-information"], [576, "identifier-and-mapping-information"], [577, "identifier-and-mapping-information"], [578, "identifier-and-mapping-information"], [579, "identifier-and-mapping-information"], [580, "identifier-and-mapping-information"], [581, "identifier-and-mapping-information"], [582, "identifier-and-mapping-information"], [583, "identifier-and-mapping-information"], [584, "identifier-and-mapping-information"], [585, "identifier-and-mapping-information"], [586, "identifier-and-mapping-information"], [587, "identifier-and-mapping-information"], [588, "identifier-and-mapping-information"], [589, "identifier-and-mapping-information"], [590, "identifier-and-mapping-information"], [591, "identifier-and-mapping-information"], [592, "identifier-and-mapping-information"], [593, "identifier-and-mapping-information"], [594, "identifier-and-mapping-information"], [595, "identifier-and-mapping-information"], [596, "identifier-and-mapping-information"], [597, "identifier-and-mapping-information"], [598, "identifier-and-mapping-information"], [599, "identifier-and-mapping-information"], [600, "identifier-and-mapping-information"], [601, "identifier-and-mapping-information"], [602, "identifier-and-mapping-information"], [603, "identifier-and-mapping-information"], [604, "identifier-and-mapping-information"], [605, "identifier-and-mapping-information"], [606, "identifier-and-mapping-information"], [607, "identifier-and-mapping-information"], [608, "identifier-and-mapping-information"], [609, "identifier-and-mapping-information"], [610, "identifier-and-mapping-information"], [611, "identifier-and-mapping-information"], [612, "identifier-and-mapping-information"], [614, "identifier-and-mapping-information"], [615, "identifier-and-mapping-information"], [616, "identifier-and-mapping-information"], [617, "identifier-and-mapping-information"], [618, "identifier-and-mapping-information"], [619, "identifier-and-mapping-information"], [620, "identifier-and-mapping-information"], [621, "identifier-and-mapping-information"], [622, "identifier-and-mapping-information"], [623, "identifier-and-mapping-information"], [624, "identifier-and-mapping-information"], [625, "identifier-and-mapping-information"], [626, "identifier-and-mapping-information"], [627, "identifier-and-mapping-information"], [628, "identifier-and-mapping-information"], [629, "identifier-and-mapping-information"], [630, "identifier-and-mapping-information"], [631, "identifier-and-mapping-information"], [632, "identifier-and-mapping-information"], [633, "identifier-and-mapping-information"], [634, "identifier-and-mapping-information"], [635, "identifier-and-mapping-information"], [636, "identifier-and-mapping-information"], [637, "identifier-and-mapping-information"], [638, "identifier-and-mapping-information"], [639, "identifier-and-mapping-information"], [640, "identifier-and-mapping-information"], [641, "identifier-and-mapping-information"], [643, "identifier-and-mapping-information"], [644, "identifier-and-mapping-information"], [645, "identifier-and-mapping-information"], [646, "identifier-and-mapping-information"], [647, "identifier-and-mapping-information"], [648, "identifier-and-mapping-information"], [649, "identifier-and-mapping-information"], [650, "identifier-and-mapping-information"], [651, "identifier-and-mapping-information"], [652, "identifier-and-mapping-information"], [653, "identifier-and-mapping-information"], [654, "identifier-and-mapping-information"], [655, "identifier-and-mapping-information"], [656, "identifier-and-mapping-information"], [657, "identifier-and-mapping-information"], [658, "identifier-and-mapping-information"], [659, "identifier-and-mapping-information"], [660, "identifier-and-mapping-information"], [661, "identifier-and-mapping-information"], [662, "identifier-and-mapping-information"], [663, "identifier-and-mapping-information"], [664, "identifier-and-mapping-information"], [665, "identifier-and-mapping-information"], [666, "identifier-and-mapping-information"], [667, "identifier-and-mapping-information"], [668, "identifier-and-mapping-information"], [670, "identifier-and-mapping-information"], [671, "identifier-and-mapping-information"], [672, "identifier-and-mapping-information"], [673, "identifier-and-mapping-information"], [674, "identifier-and-mapping-information"], [675, "identifier-and-mapping-information"], [676, "identifier-and-mapping-information"], [677, "identifier-and-mapping-information"], [678, "identifier-and-mapping-information"], [679, "identifier-and-mapping-information"], [680, "identifier-and-mapping-information"], [681, "identifier-and-mapping-information"], [682, "identifier-and-mapping-information"], [683, "identifier-and-mapping-information"], [684, "identifier-and-mapping-information"], [685, "identifier-and-mapping-information"], [686, "identifier-and-mapping-information"], [687, "identifier-and-mapping-information"], [688, "identifier-and-mapping-information"], [689, "identifier-and-mapping-information"], [690, "identifier-and-mapping-information"], [691, "identifier-and-mapping-information"], [692, "identifier-and-mapping-information"], [693, "identifier-and-mapping-information"], [694, "identifier-and-mapping-information"], [695, "identifier-and-mapping-information"], [696, "identifier-and-mapping-information"], [697, "identifier-and-mapping-information"], [698, "identifier-and-mapping-information"], [699, "identifier-and-mapping-information"], [700, "identifier-and-mapping-information"], [701, "identifier-and-mapping-information"], [702, "identifier-and-mapping-information"], [703, "identifier-and-mapping-information"], [704, "identifier-and-mapping-information"], [705, "identifier-and-mapping-information"], [706, "identifier-and-mapping-information"], [707, "identifier-and-mapping-information"], [708, "identifier-and-mapping-information"], [709, "identifier-and-mapping-information"], [710, "identifier-and-mapping-information"], [711, "identifier-and-mapping-information"], [712, "identifier-and-mapping-information"], [713, "identifier-and-mapping-information"], [714, "identifier-and-mapping-information"], [715, "identifier-and-mapping-information"], [716, "identifier-and-mapping-information"], [718, "identifier-and-mapping-information"], [719, "identifier-and-mapping-information"], [720, "identifier-and-mapping-information"], [721, "identifier-and-mapping-information"], [722, "identifier-and-mapping-information"], [723, "identifier-and-mapping-information"], [724, "identifier-and-mapping-information"], [725, "identifier-and-mapping-information"], [726, "identifier-and-mapping-information"], [727, "identifier-and-mapping-information"], [728, "identifier-and-mapping-information"], [729, "identifier-and-mapping-information"], [730, "identifier-and-mapping-information"], [731, "identifier-and-mapping-information"], [732, "identifier-and-mapping-information"], [733, "identifier-and-mapping-information"], [734, "identifier-and-mapping-information"], [736, "identifier-and-mapping-information"], [737, "identifier-and-mapping-information"], [738, "identifier-and-mapping-information"], [739, "identifier-and-mapping-information"], [740, "identifier-and-mapping-information"], [743, "identifier-and-mapping-information"], [744, "identifier-and-mapping-information"], [745, "identifier-and-mapping-information"], [746, "identifier-and-mapping-information"], [747, "identifier-and-mapping-information"], [748, "identifier-and-mapping-information"], [749, "identifier-and-mapping-information"], [750, "identifier-and-mapping-information"], [751, "identifier-and-mapping-information"], [752, "identifier-and-mapping-information"], [753, "identifier-and-mapping-information"], [754, "identifier-and-mapping-information"], [755, "identifier-and-mapping-information"], [756, "identifier-and-mapping-information"], [757, "identifier-and-mapping-information"], [758, "identifier-and-mapping-information"], [759, "identifier-and-mapping-information"], [760, "identifier-and-mapping-information"], [761, "identifier-and-mapping-information"], [762, "identifier-and-mapping-information"], [763, "identifier-and-mapping-information"], [764, "identifier-and-mapping-information"], [765, "identifier-and-mapping-information"], [766, "identifier-and-mapping-information"], [767, "identifier-and-mapping-information"], [768, "identifier-and-mapping-information"], [769, "identifier-and-mapping-information"], [770, "identifier-and-mapping-information"], [771, "identifier-and-mapping-information"], [772, "identifier-and-mapping-information"], [773, "identifier-and-mapping-information"], [774, "identifier-and-mapping-information"], [775, "identifier-and-mapping-information"], [776, "identifier-and-mapping-information"], [777, "identifier-and-mapping-information"], [778, "identifier-and-mapping-information"], [779, "identifier-and-mapping-information"], [781, "identifier-and-mapping-information"], [782, "identifier-and-mapping-information"], [783, "identifier-and-mapping-information"], [784, "identifier-and-mapping-information"], [785, "identifier-and-mapping-information"], [786, "identifier-and-mapping-information"], [787, "identifier-and-mapping-information"], [788, "identifier-and-mapping-information"], [789, "identifier-and-mapping-information"], [790, "identifier-and-mapping-information"], [791, "identifier-and-mapping-information"], [792, "identifier-and-mapping-information"], [793, "identifier-and-mapping-information"], [794, "identifier-and-mapping-information"], [795, "identifier-and-mapping-information"], [796, "identifier-and-mapping-information"], [797, "identifier-and-mapping-information"], [798, "identifier-and-mapping-information"], [799, "identifier-and-mapping-information"], [800, "identifier-and-mapping-information"], [801, "identifier-and-mapping-information"], [802, "identifier-and-mapping-information"], [803, "identifier-and-mapping-information"], [804, "identifier-and-mapping-information"], [805, "identifier-and-mapping-information"], [806, "identifier-and-mapping-information"], [807, "identifier-and-mapping-information"], [808, "identifier-and-mapping-information"], [809, "identifier-and-mapping-information"], [811, "identifier-and-mapping-information"], [813, "identifier-and-mapping-information"], [814, "identifier-and-mapping-information"], [815, "identifier-and-mapping-information"], [816, "identifier-and-mapping-information"], [817, "identifier-and-mapping-information"], [818, "identifier-and-mapping-information"], [819, "identifier-and-mapping-information"], [820, "identifier-and-mapping-information"], [821, "identifier-and-mapping-information"], [822, "identifier-and-mapping-information"], [823, "identifier-and-mapping-information"], [824, "identifier-and-mapping-information"], [825, "identifier-and-mapping-information"], [826, "identifier-and-mapping-information"], [827, "identifier-and-mapping-information"], [828, "identifier-and-mapping-information"], [829, "identifier-and-mapping-information"], [830, "identifier-and-mapping-information"], [831, "identifier-and-mapping-information"], [832, "identifier-and-mapping-information"], [833, "identifier-and-mapping-information"], [834, "identifier-and-mapping-information"], [835, "identifier-and-mapping-information"], [836, "identifier-and-mapping-information"], [837, "identifier-and-mapping-information"], [838, "identifier-and-mapping-information"], [839, "identifier-and-mapping-information"], [840, "identifier-and-mapping-information"], [841, "identifier-and-mapping-information"], [842, "identifier-and-mapping-information"], [843, "identifier-and-mapping-information"], [844, "identifier-and-mapping-information"], [845, "identifier-and-mapping-information"], [846, "identifier-and-mapping-information"], [847, "identifier-and-mapping-information"], [848, "identifier-and-mapping-information"], [849, "identifier-and-mapping-information"], [850, "identifier-and-mapping-information"], [851, "identifier-and-mapping-information"], [852, "identifier-and-mapping-information"], [853, "identifier-and-mapping-information"], [854, "identifier-and-mapping-information"], [855, "identifier-and-mapping-information"], [856, "identifier-and-mapping-information"], [857, "identifier-and-mapping-information"], [858, "identifier-and-mapping-information"], [859, "identifier-and-mapping-information"], [860, "identifier-and-mapping-information"], [861, "identifier-and-mapping-information"], [862, "identifier-and-mapping-information"], [863, "identifier-and-mapping-information"], [864, "identifier-and-mapping-information"], [865, "identifier-and-mapping-information"], [866, "identifier-and-mapping-information"], [867, "identifier-and-mapping-information"], [868, "identifier-and-mapping-information"], [869, "identifier-and-mapping-information"], [870, "identifier-and-mapping-information"], [871, "identifier-and-mapping-information"], [872, "identifier-and-mapping-information"], [873, "identifier-and-mapping-information"], [874, "identifier-and-mapping-information"], [875, "identifier-and-mapping-information"], [876, "identifier-and-mapping-information"], [877, "identifier-and-mapping-information"], [878, "identifier-and-mapping-information"], [879, "identifier-and-mapping-information"], [880, "identifier-and-mapping-information"], [881, "identifier-and-mapping-information"], [883, "identifier-and-mapping-information"], [884, "identifier-and-mapping-information"], [885, "identifier-and-mapping-information"], [886, "identifier-and-mapping-information"], [887, "identifier-and-mapping-information"], [888, "identifier-and-mapping-information"], [889, "identifier-and-mapping-information"], [890, "identifier-and-mapping-information"], [891, "identifier-and-mapping-information"], [892, "identifier-and-mapping-information"], [893, "identifier-and-mapping-information"], [894, "identifier-and-mapping-information"], [895, "identifier-and-mapping-information"], [896, "identifier-and-mapping-information"], [897, "identifier-and-mapping-information"], [898, "identifier-and-mapping-information"], [899, "identifier-and-mapping-information"], [900, "identifier-and-mapping-information"], [901, "identifier-and-mapping-information"], [902, "identifier-and-mapping-information"], [903, "identifier-and-mapping-information"], [904, "identifier-and-mapping-information"], [905, "identifier-and-mapping-information"], [906, "identifier-and-mapping-information"], [907, "identifier-and-mapping-information"], [908, "identifier-and-mapping-information"], [909, "identifier-and-mapping-information"], [911, "identifier-and-mapping-information"], [912, "identifier-and-mapping-information"], [913, "identifier-and-mapping-information"], [915, "identifier-and-mapping-information"], [916, "identifier-and-mapping-information"], [917, "identifier-and-mapping-information"], [918, "identifier-and-mapping-information"], [919, "identifier-and-mapping-information"], [920, "identifier-and-mapping-information"], [921, "identifier-and-mapping-information"], [922, "identifier-and-mapping-information"], [923, "identifier-and-mapping-information"], [924, "identifier-and-mapping-information"], [925, "identifier-and-mapping-information"], [926, "identifier-and-mapping-information"], [927, "identifier-and-mapping-information"], [928, "identifier-and-mapping-information"], [929, "identifier-and-mapping-information"], [930, "identifier-and-mapping-information"], [931, "identifier-and-mapping-information"], [932, "identifier-and-mapping-information"], [933, "identifier-and-mapping-information"], [934, "identifier-and-mapping-information"], [935, "identifier-and-mapping-information"], [936, "identifier-and-mapping-information"], [937, "identifier-and-mapping-information"], [938, "identifier-and-mapping-information"], [939, "identifier-and-mapping-information"], [940, "identifier-and-mapping-information"], [941, "identifier-and-mapping-information"], [942, "identifier-and-mapping-information"], [943, "identifier-and-mapping-information"], [944, "identifier-and-mapping-information"], [945, "identifier-and-mapping-information"], [946, "identifier-and-mapping-information"], [947, "identifier-and-mapping-information"], [948, "identifier-and-mapping-information"], [949, "identifier-and-mapping-information"], [950, "identifier-and-mapping-information"], [951, "identifier-and-mapping-information"], [952, "identifier-and-mapping-information"], [954, "identifier-and-mapping-information"], [955, "identifier-and-mapping-information"], [956, "identifier-and-mapping-information"], [957, "identifier-and-mapping-information"], [958, "identifier-and-mapping-information"], [959, "identifier-and-mapping-information"], [960, "identifier-and-mapping-information"], [961, "identifier-and-mapping-information"], [962, "identifier-and-mapping-information"], [963, "identifier-and-mapping-information"], [964, "identifier-and-mapping-information"], [965, "identifier-and-mapping-information"], [966, "identifier-and-mapping-information"], [968, "identifier-and-mapping-information"], [969, "identifier-and-mapping-information"], [970, "identifier-and-mapping-information"], [971, "identifier-and-mapping-information"], [972, "identifier-and-mapping-information"], [973, "identifier-and-mapping-information"], [974, "identifier-and-mapping-information"], [975, "identifier-and-mapping-information"], [976, "identifier-and-mapping-information"], [977, "identifier-and-mapping-information"], [978, "identifier-and-mapping-information"], [979, "identifier-and-mapping-information"], [980, "identifier-and-mapping-information"], [981, "identifier-and-mapping-information"], [982, "identifier-and-mapping-information"], [983, "identifier-and-mapping-information"], [984, "identifier-and-mapping-information"], [985, "identifier-and-mapping-information"], [986, "identifier-and-mapping-information"], [987, "identifier-and-mapping-information"], [988, "identifier-and-mapping-information"], [989, "identifier-and-mapping-information"], [990, "identifier-and-mapping-information"], [991, "identifier-and-mapping-information"], [992, "identifier-and-mapping-information"], [993, "identifier-and-mapping-information"], [994, "identifier-and-mapping-information"], [995, "identifier-and-mapping-information"], [996, "identifier-and-mapping-information"], [997, "identifier-and-mapping-information"], [998, "identifier-and-mapping-information"], [999, "identifier-and-mapping-information"], [1000, "identifier-and-mapping-information"], [1002, "identifier-and-mapping-information"], [1003, "identifier-and-mapping-information"], [1004, "identifier-and-mapping-information"], [1005, "identifier-and-mapping-information"], [1006, "identifier-and-mapping-information"], [1007, "identifier-and-mapping-information"], [1008, "identifier-and-mapping-information"], [1009, "identifier-and-mapping-information"], [1010, "identifier-and-mapping-information"], [1011, "identifier-and-mapping-information"], [1012, "identifier-and-mapping-information"], [1013, "identifier-and-mapping-information"], [1014, "identifier-and-mapping-information"], [1015, "identifier-and-mapping-information"], [1016, "identifier-and-mapping-information"], [1017, "identifier-and-mapping-information"], [1018, "identifier-and-mapping-information"], [1019, "identifier-and-mapping-information"], [1020, "identifier-and-mapping-information"], [1021, "identifier-and-mapping-information"], [1022, "identifier-and-mapping-information"], [1023, "identifier-and-mapping-information"], [1025, "identifier-and-mapping-information"], [1027, "identifier-and-mapping-information"], [1028, "identifier-and-mapping-information"], [1029, "identifier-and-mapping-information"], [1030, "identifier-and-mapping-information"], [1031, "identifier-and-mapping-information"], [1032, "identifier-and-mapping-information"], [1033, "identifier-and-mapping-information"], [1034, "identifier-and-mapping-information"], [1035, "identifier-and-mapping-information"], [1036, "identifier-and-mapping-information"], [1037, "identifier-and-mapping-information"], [1038, "identifier-and-mapping-information"], [1039, "identifier-and-mapping-information"], [1040, "identifier-and-mapping-information"], [1041, "identifier-and-mapping-information"], [1042, "identifier-and-mapping-information"], [1043, "identifier-and-mapping-information"], [1044, "identifier-and-mapping-information"], [1045, "identifier-and-mapping-information"], [1046, "identifier-and-mapping-information"], [1047, "identifier-and-mapping-information"], [1048, "identifier-and-mapping-information"], [1049, "identifier-and-mapping-information"], [1050, "identifier-and-mapping-information"], [1051, "identifier-and-mapping-information"], [1052, "identifier-and-mapping-information"], [1053, "identifier-and-mapping-information"], [1054, "identifier-and-mapping-information"], [1055, "identifier-and-mapping-information"], [1056, "identifier-and-mapping-information"], [1057, "identifier-and-mapping-information"], [1058, "identifier-and-mapping-information"], [1059, "identifier-and-mapping-information"], [1060, "identifier-and-mapping-information"], [1061, "identifier-and-mapping-information"], [1062, "identifier-and-mapping-information"], [1063, "identifier-and-mapping-information"], [1064, "identifier-and-mapping-information"], [1065, "identifier-and-mapping-information"], [1066, "identifier-and-mapping-information"], [1068, "identifier-and-mapping-information"], [1069, "identifier-and-mapping-information"], [1070, "identifier-and-mapping-information"], [1071, "identifier-and-mapping-information"], [1072, "identifier-and-mapping-information"], [1073, "identifier-and-mapping-information"], [1074, "identifier-and-mapping-information"], [1075, "identifier-and-mapping-information"], [1076, "identifier-and-mapping-information"], [1077, "identifier-and-mapping-information"], [1078, "identifier-and-mapping-information"], [1079, "identifier-and-mapping-information"], [1080, "identifier-and-mapping-information"], [1081, "identifier-and-mapping-information"], [1082, "identifier-and-mapping-information"], [1083, "identifier-and-mapping-information"], [1084, "identifier-and-mapping-information"], [1085, "identifier-and-mapping-information"], [1086, "identifier-and-mapping-information"], [1087, "identifier-and-mapping-information"], [1088, "identifier-and-mapping-information"], [1089, "identifier-and-mapping-information"], [1090, "identifier-and-mapping-information"], [1091, "identifier-and-mapping-information"], [1092, "identifier-and-mapping-information"], [1093, "identifier-and-mapping-information"], [1094, "identifier-and-mapping-information"], [1096, "identifier-and-mapping-information"], [1097, "identifier-and-mapping-information"]], "Schema Source": [[3, "schema-source"], [4, "schema-source"], [5, "schema-source"], [6, "schema-source"], [7, "schema-source"], [8, "schema-source"], [9, "schema-source"], [10, "schema-source"], [11, "schema-source"], [12, "schema-source"], [13, "schema-source"], [14, "schema-source"], [15, "schema-source"], [16, "schema-source"], [17, "schema-source"], [18, "schema-source"], [19, "schema-source"], [20, "schema-source"], [21, "schema-source"], [22, "schema-source"], [23, "schema-source"], [24, "schema-source"], [25, "schema-source"], [26, "schema-source"], [27, "schema-source"], [28, "schema-source"], [29, "schema-source"], [30, "schema-source"], [32, "schema-source"], [33, "schema-source"], [34, "schema-source"], [35, "schema-source"], [36, "schema-source"], [37, "schema-source"], [38, "schema-source"], [39, "schema-source"], [40, "schema-source"], [41, "schema-source"], [42, "schema-source"], [43, "schema-source"], [44, "schema-source"], [45, "schema-source"], [47, "schema-source"], [48, "schema-source"], [49, "schema-source"], [50, "schema-source"], [51, "schema-source"], [52, "schema-source"], [53, "schema-source"], [54, "schema-source"], [55, "schema-source"], [56, "schema-source"], [57, "schema-source"], [58, "schema-source"], [59, "schema-source"], [60, "schema-source"], [61, "schema-source"], [62, "schema-source"], [63, "schema-source"], [64, "schema-source"], [65, "schema-source"], [66, "schema-source"], [67, "schema-source"], [68, "schema-source"], [69, "schema-source"], [70, "schema-source"], [71, "schema-source"], [72, "schema-source"], [73, "schema-source"], [74, "schema-source"], [75, "schema-source"], [76, "schema-source"], [77, "schema-source"], [78, "schema-source"], [79, "schema-source"], [80, "schema-source"], [81, "schema-source"], [82, "schema-source"], [83, "schema-source"], [84, "schema-source"], [85, "schema-source"], [86, "schema-source"], [87, "schema-source"], [88, "schema-source"], [89, "schema-source"], [90, "schema-source"], [91, "schema-source"], [92, "schema-source"], [93, "schema-source"], [94, "schema-source"], [95, "schema-source"], [96, "schema-source"], [97, "schema-source"], [98, "schema-source"], [99, "schema-source"], [100, "schema-source"], [101, "schema-source"], [102, "schema-source"], [103, "schema-source"], [104, "schema-source"], [105, "schema-source"], [106, "schema-source"], [107, "schema-source"], [108, "schema-source"], [109, "schema-source"], [110, "schema-source"], [111, "schema-source"], [112, "schema-source"], [113, "schema-source"], [114, "schema-source"], [115, "schema-source"], [116, "schema-source"], [117, "schema-source"], [119, "schema-source"], [120, "schema-source"], [121, "schema-source"], [122, "schema-source"], [123, "schema-source"], [124, "schema-source"], [126, "schema-source"], [127, "schema-source"], [128, "schema-source"], [129, "schema-source"], [130, "schema-source"], [131, "schema-source"], [132, "schema-source"], [133, "schema-source"], [134, "schema-source"], [135, "schema-source"], [136, "schema-source"], [137, "schema-source"], [138, "schema-source"], [139, "schema-source"], [140, "schema-source"], [141, "schema-source"], [142, "schema-source"], [143, "schema-source"], [144, "schema-source"], [145, "schema-source"], [146, "schema-source"], [147, "schema-source"], [148, "schema-source"], [149, "schema-source"], [150, "schema-source"], [151, "schema-source"], [152, "schema-source"], [153, "schema-source"], [154, "schema-source"], [155, "schema-source"], [156, "schema-source"], [157, "schema-source"], [158, "schema-source"], [159, "schema-source"], [160, "schema-source"], [161, "schema-source"], [164, "schema-source"], [165, "schema-source"], [166, "schema-source"], [167, "schema-source"], [168, "schema-source"], [170, "schema-source"], [171, "schema-source"], [173, "schema-source"], [174, "schema-source"], [175, "schema-source"], [176, "schema-source"], [177, "schema-source"], [179, "schema-source"], [180, "schema-source"], [181, "schema-source"], [182, "schema-source"], [183, "schema-source"], [184, "schema-source"], [185, "schema-source"], [186, "schema-source"], [188, "schema-source"], [189, "schema-source"], [191, "schema-source"], [192, "schema-source"], [193, "schema-source"], [194, "schema-source"], [196, "schema-source"], [197, "schema-source"], [198, "schema-source"], [199, "schema-source"], [203, "schema-source"], [204, "schema-source"], [205, "schema-source"], [206, "schema-source"], [207, "schema-source"], [208, "schema-source"], [209, "schema-source"], [210, "schema-source"], [211, "schema-source"], [212, "schema-source"], [213, "schema-source"], [214, "schema-source"], [215, "schema-source"], [216, "schema-source"], [217, "schema-source"], [218, "schema-source"], [219, "schema-source"], [220, "schema-source"], [221, "schema-source"], [222, "schema-source"], [223, "schema-source"], [224, "schema-source"], [225, "schema-source"], [226, "schema-source"], [227, "schema-source"], [228, "schema-source"], [230, "schema-source"], [232, "schema-source"], [233, "schema-source"], [235, "schema-source"], [237, "schema-source"], [238, "schema-source"], [239, "schema-source"], [240, "schema-source"], [242, "schema-source"], [243, "schema-source"], [244, "schema-source"], [245, "schema-source"], [246, "schema-source"], [247, "schema-source"], [249, "schema-source"], [250, "schema-source"], [251, "schema-source"], [252, "schema-source"], [253, "schema-source"], [254, "schema-source"], [255, "schema-source"], [256, "schema-source"], [257, "schema-source"], [258, "schema-source"], [259, "schema-source"], [260, "schema-source"], [261, "schema-source"], [262, "schema-source"], [263, "schema-source"], [264, "schema-source"], [265, "schema-source"], [266, "schema-source"], [267, "schema-source"], [268, "schema-source"], [269, "schema-source"], [270, "schema-source"], [271, "schema-source"], [272, "schema-source"], [273, "schema-source"], [274, "schema-source"], [275, "schema-source"], [276, "schema-source"], [277, "schema-source"], [278, "schema-source"], [282, "schema-source"], [283, "schema-source"], [284, "schema-source"], [285, "schema-source"], [286, "schema-source"], [287, "schema-source"], [288, "schema-source"], [289, "schema-source"], [290, "schema-source"], [291, "schema-source"], [292, "schema-source"], [294, "schema-source"], [295, "schema-source"], [296, "schema-source"], [297, "schema-source"], [298, "schema-source"], [299, "schema-source"], [300, "schema-source"], [301, "schema-source"], [302, "schema-source"], [303, "schema-source"], [304, "schema-source"], [305, "schema-source"], [306, "schema-source"], [307, "schema-source"], [308, "schema-source"], [309, "schema-source"], [310, "schema-source"], [311, "schema-source"], [312, "schema-source"], [313, "schema-source"], [314, "schema-source"], [315, "schema-source"], [316, "schema-source"], [317, "schema-source"], [318, "schema-source"], [319, "schema-source"], [320, "schema-source"], [321, "schema-source"], [322, "schema-source"], [323, "schema-source"], [324, "schema-source"], [325, "schema-source"], [326, "schema-source"], [327, "schema-source"], [328, "schema-source"], [329, "schema-source"], [330, "schema-source"], [332, "schema-source"], [337, "schema-source"], [338, "schema-source"], [339, "schema-source"], [340, "schema-source"], [341, "schema-source"], [342, "schema-source"], [343, "schema-source"], [344, "schema-source"], [345, "schema-source"], [346, "schema-source"], [347, "schema-source"], [348, "schema-source"], [349, "schema-source"], [350, "schema-source"], [351, "schema-source"], [352, "schema-source"], [353, "schema-source"], [355, "schema-source"], [356, "schema-source"], [357, "schema-source"], [358, "schema-source"], [359, "schema-source"], [360, "schema-source"], [361, "schema-source"], [362, "schema-source"], [363, "schema-source"], [364, "schema-source"], [365, "schema-source"], [366, "schema-source"], [367, "schema-source"], [368, "schema-source"], [369, "schema-source"], [371, "schema-source"], [372, "schema-source"], [373, "schema-source"], [374, "schema-source"], [375, "schema-source"], [376, "schema-source"], [377, "schema-source"], [378, "schema-source"], [379, "schema-source"], [380, "schema-source"], [381, "schema-source"], [382, "schema-source"], [383, "schema-source"], [384, "schema-source"], [385, "schema-source"], [386, "schema-source"], [387, "schema-source"], [388, "schema-source"], [389, "schema-source"], [390, "schema-source"], [391, "schema-source"], [392, "schema-source"], [393, "schema-source"], [394, "schema-source"], [395, "schema-source"], [396, "schema-source"], [397, "schema-source"], [398, "schema-source"], [399, "schema-source"], [400, "schema-source"], [401, "schema-source"], [402, "schema-source"], [403, "schema-source"], [404, "schema-source"], [405, "schema-source"], [406, "schema-source"], [407, "schema-source"], [408, "schema-source"], [409, "schema-source"], [410, "schema-source"], [411, "schema-source"], [412, "schema-source"], [413, "schema-source"], [414, "schema-source"], [415, "schema-source"], [416, "schema-source"], [417, "schema-source"], [418, "schema-source"], [419, "schema-source"], [420, "schema-source"], [421, "schema-source"], [422, "schema-source"], [423, "schema-source"], [424, "schema-source"], [425, "schema-source"], [426, "schema-source"], [427, "schema-source"], [428, "schema-source"], [429, "schema-source"], [430, "schema-source"], [431, "schema-source"], [432, "schema-source"], [433, "schema-source"], [434, "schema-source"], [435, "schema-source"], [436, "schema-source"], [438, "schema-source"], [440, "schema-source"], [441, "schema-source"], [442, "schema-source"], [443, "schema-source"], [444, "schema-source"], [445, "schema-source"], [446, "schema-source"], [447, "schema-source"], [450, "schema-source"], [451, "schema-source"], [452, "schema-source"], [453, "schema-source"], [454, "schema-source"], [455, "schema-source"], [456, "schema-source"], [457, "schema-source"], [458, "schema-source"], [459, "schema-source"], [460, "schema-source"], [461, "schema-source"], [462, "schema-source"], [463, "schema-source"], [464, "schema-source"], [465, "schema-source"], [466, "schema-source"], [467, "schema-source"], [468, "schema-source"], [470, "schema-source"], [471, "schema-source"], [472, "schema-source"], [473, "schema-source"], [474, "schema-source"], [475, "schema-source"], [476, "schema-source"], [477, "schema-source"], [478, "schema-source"], [479, "schema-source"], [480, "schema-source"], [481, "schema-source"], [482, "schema-source"], [483, "schema-source"], [484, "schema-source"], [485, "schema-source"], [486, "schema-source"], [487, "schema-source"], [488, "schema-source"], [489, "schema-source"], [490, "schema-source"], [491, "schema-source"], [492, "schema-source"], [493, "schema-source"], [494, "schema-source"], [495, "schema-source"], [496, "schema-source"], [497, "schema-source"], [498, "schema-source"], [499, "schema-source"], [500, "schema-source"], [501, "schema-source"], [502, "schema-source"], [503, "schema-source"], [504, "schema-source"], [505, "schema-source"], [506, "schema-source"], [507, "schema-source"], [508, "schema-source"], [509, "schema-source"], [510, "schema-source"], [511, "schema-source"], [512, "schema-source"], [513, "schema-source"], [514, "schema-source"], [515, "schema-source"], [516, "schema-source"], [517, "schema-source"], [518, "schema-source"], [519, "schema-source"], [520, "schema-source"], [521, "schema-source"], [522, "schema-source"], [523, "schema-source"], [524, "schema-source"], [525, "schema-source"], [526, "schema-source"], [527, "schema-source"], [528, "schema-source"], [529, "schema-source"], [530, "schema-source"], [531, "schema-source"], [532, "schema-source"], [533, "schema-source"], [535, "schema-source"], [536, "schema-source"], [537, "schema-source"], [538, "schema-source"], [539, "schema-source"], [540, "schema-source"], [541, "schema-source"], [542, "schema-source"], [543, "schema-source"], [544, "schema-source"], [545, "schema-source"], [546, "schema-source"], [547, "schema-source"], [548, "schema-source"], [549, "schema-source"], [550, "schema-source"], [551, "schema-source"], [552, "schema-source"], [553, "schema-source"], [554, "schema-source"], [555, "schema-source"], [556, "schema-source"], [557, "schema-source"], [558, "schema-source"], [559, "schema-source"], [560, "schema-source"], [561, "schema-source"], [562, "schema-source"], [563, "schema-source"], [564, "schema-source"], [565, "schema-source"], [566, "schema-source"], [567, "schema-source"], [568, "schema-source"], [569, "schema-source"], [570, "schema-source"], [571, "schema-source"], [572, "schema-source"], [573, "schema-source"], [574, "schema-source"], [575, "schema-source"], [576, "schema-source"], [577, "schema-source"], [578, "schema-source"], [579, "schema-source"], [580, "schema-source"], [581, "schema-source"], [582, "schema-source"], [583, "schema-source"], [584, "schema-source"], [585, "schema-source"], [586, "schema-source"], [587, "schema-source"], [588, "schema-source"], [589, "schema-source"], [590, "schema-source"], [591, "schema-source"], [592, "schema-source"], [593, "schema-source"], [594, "schema-source"], [595, "schema-source"], [596, "schema-source"], [597, "schema-source"], [598, "schema-source"], [599, "schema-source"], [600, "schema-source"], [601, "schema-source"], [602, "schema-source"], [603, "schema-source"], [604, "schema-source"], [605, "schema-source"], [606, "schema-source"], [607, "schema-source"], [608, "schema-source"], [609, "schema-source"], [610, "schema-source"], [611, "schema-source"], [612, "schema-source"], [614, "schema-source"], [615, "schema-source"], [616, "schema-source"], [617, "schema-source"], [618, "schema-source"], [619, "schema-source"], [620, "schema-source"], [621, "schema-source"], [622, "schema-source"], [623, "schema-source"], [624, "schema-source"], [625, "schema-source"], [626, "schema-source"], [627, "schema-source"], [628, "schema-source"], [629, "schema-source"], [630, "schema-source"], [631, "schema-source"], [632, "schema-source"], [633, "schema-source"], [634, "schema-source"], [635, "schema-source"], [636, "schema-source"], [637, "schema-source"], [638, "schema-source"], [639, "schema-source"], [640, "schema-source"], [641, "schema-source"], [643, "schema-source"], [644, "schema-source"], [645, "schema-source"], [646, "schema-source"], [647, "schema-source"], [648, "schema-source"], [649, "schema-source"], [650, "schema-source"], [651, "schema-source"], [652, "schema-source"], [653, "schema-source"], [654, "schema-source"], [655, "schema-source"], [656, "schema-source"], [657, "schema-source"], [658, "schema-source"], [659, "schema-source"], [660, "schema-source"], [661, "schema-source"], [662, "schema-source"], [663, "schema-source"], [664, "schema-source"], [665, "schema-source"], [666, "schema-source"], [667, "schema-source"], [668, "schema-source"], [670, "schema-source"], [671, "schema-source"], [672, "schema-source"], [673, "schema-source"], [674, "schema-source"], [675, "schema-source"], [676, "schema-source"], [677, "schema-source"], [678, "schema-source"], [679, "schema-source"], [680, "schema-source"], [681, "schema-source"], [682, "schema-source"], [683, "schema-source"], [684, "schema-source"], [685, "schema-source"], [686, "schema-source"], [687, "schema-source"], [688, "schema-source"], [689, "schema-source"], [690, "schema-source"], [691, "schema-source"], [692, "schema-source"], [693, "schema-source"], [694, "schema-source"], [695, "schema-source"], [696, "schema-source"], [697, "schema-source"], [698, "schema-source"], [699, "schema-source"], [700, "schema-source"], [701, "schema-source"], [702, "schema-source"], [703, "schema-source"], [704, "schema-source"], [705, "schema-source"], [706, "schema-source"], [707, "schema-source"], [708, "schema-source"], [710, "schema-source"], [711, "schema-source"], [712, "schema-source"], [713, "schema-source"], [714, "schema-source"], [715, "schema-source"], [716, "schema-source"], [718, "schema-source"], [719, "schema-source"], [720, "schema-source"], [721, "schema-source"], [722, "schema-source"], [723, "schema-source"], [724, "schema-source"], [725, "schema-source"], [726, "schema-source"], [727, "schema-source"], [728, "schema-source"], [729, "schema-source"], [730, "schema-source"], [731, "schema-source"], [732, "schema-source"], [733, "schema-source"], [734, "schema-source"], [736, "schema-source"], [737, "schema-source"], [738, "schema-source"], [739, "schema-source"], [740, "schema-source"], [743, "schema-source"], [744, "schema-source"], [745, "schema-source"], [746, "schema-source"], [747, "schema-source"], [748, "schema-source"], [749, "schema-source"], [750, "schema-source"], [751, "schema-source"], [752, "schema-source"], [753, "schema-source"], [754, "schema-source"], [755, "schema-source"], [756, "schema-source"], [757, "schema-source"], [758, "schema-source"], [759, "schema-source"], [760, "schema-source"], [761, "schema-source"], [762, "schema-source"], [763, "schema-source"], [764, "schema-source"], [765, "schema-source"], [766, "schema-source"], [767, "schema-source"], [768, "schema-source"], [769, "schema-source"], [770, "schema-source"], [771, "schema-source"], [772, "schema-source"], [773, "schema-source"], [774, "schema-source"], [775, "schema-source"], [776, "schema-source"], [777, "schema-source"], [778, "schema-source"], [779, "schema-source"], [781, "schema-source"], [782, "schema-source"], [783, "schema-source"], [784, "schema-source"], [785, "schema-source"], [786, "schema-source"], [787, "schema-source"], [788, "schema-source"], [789, "schema-source"], [790, "schema-source"], [791, "schema-source"], [792, "schema-source"], [793, "schema-source"], [794, "schema-source"], [795, "schema-source"], [796, "schema-source"], [797, "schema-source"], [798, "schema-source"], [799, "schema-source"], [800, "schema-source"], [801, "schema-source"], [802, "schema-source"], [803, "schema-source"], [804, "schema-source"], [805, "schema-source"], [806, "schema-source"], [807, "schema-source"], [808, "schema-source"], [809, "schema-source"], [811, "schema-source"], [813, "schema-source"], [814, "schema-source"], [815, "schema-source"], [816, "schema-source"], [817, "schema-source"], [818, "schema-source"], [819, "schema-source"], [820, "schema-source"], [821, "schema-source"], [822, "schema-source"], [823, "schema-source"], [824, "schema-source"], [825, "schema-source"], [826, "schema-source"], [827, "schema-source"], [828, "schema-source"], [829, "schema-source"], [830, "schema-source"], [831, "schema-source"], [832, "schema-source"], [833, "schema-source"], [834, "schema-source"], [835, "schema-source"], [836, "schema-source"], [837, "schema-source"], [838, "schema-source"], [839, "schema-source"], [840, "schema-source"], [841, "schema-source"], [842, "schema-source"], [843, "schema-source"], [844, "schema-source"], [845, "schema-source"], [846, "schema-source"], [847, "schema-source"], [848, "schema-source"], [849, "schema-source"], [850, "schema-source"], [851, "schema-source"], [852, "schema-source"], [853, "schema-source"], [854, "schema-source"], [855, "schema-source"], [856, "schema-source"], [857, "schema-source"], [858, "schema-source"], [859, "schema-source"], [860, "schema-source"], [861, "schema-source"], [862, "schema-source"], [863, "schema-source"], [864, "schema-source"], [865, "schema-source"], [866, "schema-source"], [867, "schema-source"], [868, "schema-source"], [869, "schema-source"], [870, "schema-source"], [871, "schema-source"], [872, "schema-source"], [873, "schema-source"], [874, "schema-source"], [875, "schema-source"], [876, "schema-source"], [877, "schema-source"], [878, "schema-source"], [883, "schema-source"], [884, "schema-source"], [885, "schema-source"], [886, "schema-source"], [887, "schema-source"], [888, "schema-source"], [889, "schema-source"], [890, "schema-source"], [891, "schema-source"], [892, "schema-source"], [893, "schema-source"], [894, "schema-source"], [895, "schema-source"], [896, "schema-source"], [897, "schema-source"], [898, "schema-source"], [899, "schema-source"], [900, "schema-source"], [901, "schema-source"], [902, "schema-source"], [903, "schema-source"], [904, "schema-source"], [905, "schema-source"], [906, "schema-source"], [907, "schema-source"], [908, "schema-source"], [909, "schema-source"], [911, "schema-source"], [912, "schema-source"], [913, "schema-source"], [915, "schema-source"], [916, "schema-source"], [917, "schema-source"], [918, "schema-source"], [919, "schema-source"], [920, "schema-source"], [921, "schema-source"], [922, "schema-source"], [923, "schema-source"], [924, "schema-source"], [925, "schema-source"], [926, "schema-source"], [927, "schema-source"], [928, "schema-source"], [929, "schema-source"], [930, "schema-source"], [931, "schema-source"], [932, "schema-source"], [933, "schema-source"], [934, "schema-source"], [935, "schema-source"], [936, "schema-source"], [937, "schema-source"], [938, "schema-source"], [939, "schema-source"], [940, "schema-source"], [941, "schema-source"], [942, "schema-source"], [943, "schema-source"], [944, "schema-source"], [945, "schema-source"], [946, "schema-source"], [947, "schema-source"], [948, "schema-source"], [949, "schema-source"], [950, "schema-source"], [951, "schema-source"], [952, "schema-source"], [954, "schema-source"], [955, "schema-source"], [956, "schema-source"], [957, "schema-source"], [958, "schema-source"], [959, "schema-source"], [960, "schema-source"], [961, "schema-source"], [962, "schema-source"], [963, "schema-source"], [964, "schema-source"], [965, "schema-source"], [966, "schema-source"], [968, "schema-source"], [969, "schema-source"], [970, "schema-source"], [971, "schema-source"], [972, "schema-source"], [973, "schema-source"], [974, "schema-source"], [975, "schema-source"], [976, "schema-source"], [977, "schema-source"], [978, "schema-source"], [979, "schema-source"], [980, "schema-source"], [981, "schema-source"], [982, "schema-source"], [983, "schema-source"], [984, "schema-source"], [985, "schema-source"], [986, "schema-source"], [987, "schema-source"], [988, "schema-source"], [989, "schema-source"], [990, "schema-source"], [991, "schema-source"], [992, "schema-source"], [993, "schema-source"], [994, "schema-source"], [995, "schema-source"], [996, "schema-source"], [997, "schema-source"], [998, "schema-source"], [999, "schema-source"], [1000, "schema-source"], [1002, "schema-source"], [1003, "schema-source"], [1004, "schema-source"], [1005, "schema-source"], [1006, "schema-source"], [1008, "schema-source"], [1009, "schema-source"], [1010, "schema-source"], [1011, "schema-source"], [1012, "schema-source"], [1013, "schema-source"], [1014, "schema-source"], [1015, "schema-source"], [1016, "schema-source"], [1017, "schema-source"], [1018, "schema-source"], [1019, "schema-source"], [1020, "schema-source"], [1021, "schema-source"], [1022, "schema-source"], [1023, "schema-source"], [1025, "schema-source"], [1027, "schema-source"], [1028, "schema-source"], [1029, "schema-source"], [1030, "schema-source"], [1031, "schema-source"], [1032, "schema-source"], [1033, "schema-source"], [1034, "schema-source"], [1035, "schema-source"], [1036, "schema-source"], [1037, "schema-source"], [1038, "schema-source"], [1039, "schema-source"], [1040, "schema-source"], [1041, "schema-source"], [1042, "schema-source"], [1043, "schema-source"], [1044, "schema-source"], [1045, "schema-source"], [1046, "schema-source"], [1047, "schema-source"], [1048, "schema-source"], [1049, "schema-source"], [1050, "schema-source"], [1051, "schema-source"], [1052, "schema-source"], [1053, "schema-source"], [1054, "schema-source"], [1055, "schema-source"], [1056, "schema-source"], [1057, "schema-source"], [1058, "schema-source"], [1059, "schema-source"], [1060, "schema-source"], [1061, "schema-source"], [1062, "schema-source"], [1063, "schema-source"], [1064, "schema-source"], [1065, "schema-source"], [1066, "schema-source"], [1068, "schema-source"], [1069, "schema-source"], [1070, "schema-source"], [1071, "schema-source"], [1072, "schema-source"], [1073, "schema-source"], [1074, "schema-source"], [1075, "schema-source"], [1076, "schema-source"], [1077, "schema-source"], [1078, "schema-source"], [1079, "schema-source"], [1080, "schema-source"], [1081, "schema-source"], [1082, "schema-source"], [1083, "schema-source"], [1084, "schema-source"], [1085, "schema-source"], [1086, "schema-source"], [1087, "schema-source"], [1088, "schema-source"], [1089, "schema-source"], [1090, "schema-source"], [1091, "schema-source"], [1092, "schema-source"], [1093, "schema-source"], [1094, "schema-source"], [1096, "schema-source"], [1097, "schema-source"]], "LinkML Source": [[3, "linkml-source"], [4, "linkml-source"], [17, "linkml-source"], [20, "linkml-source"], [21, "linkml-source"], [22, "linkml-source"], [23, "linkml-source"], [24, "linkml-source"], [30, "linkml-source"], [32, "linkml-source"], [33, "linkml-source"], [34, "linkml-source"], [35, "linkml-source"], [36, "linkml-source"], [37, "linkml-source"], [38, "linkml-source"], [39, "linkml-source"], [40, "linkml-source"], [41, "linkml-source"], [42, "linkml-source"], [43, "linkml-source"], [44, "linkml-source"], [45, "linkml-source"], [47, "linkml-source"], [48, "linkml-source"], [49, "linkml-source"], [50, "linkml-source"], [51, "linkml-source"], [52, "linkml-source"], [53, "linkml-source"], [54, "linkml-source"], [55, "linkml-source"], [56, "linkml-source"], [57, "linkml-source"], [58, "linkml-source"], [59, "linkml-source"], [60, "linkml-source"], [61, "linkml-source"], [62, "linkml-source"], [63, "linkml-source"], [64, "linkml-source"], [65, "linkml-source"], [66, "linkml-source"], [67, "linkml-source"], [68, "linkml-source"], [69, "linkml-source"], [70, "linkml-source"], [71, "linkml-source"], [72, "linkml-source"], [73, "linkml-source"], [74, "linkml-source"], [75, "linkml-source"], [76, "linkml-source"], [77, "linkml-source"], [78, "linkml-source"], [79, "linkml-source"], [80, "linkml-source"], [81, "linkml-source"], [82, "linkml-source"], [83, "linkml-source"], [84, "linkml-source"], [85, "linkml-source"], [86, "linkml-source"], [87, "linkml-source"], [88, "linkml-source"], [89, "linkml-source"], [90, "linkml-source"], [92, "linkml-source"], [93, "linkml-source"], [94, "linkml-source"], [109, "linkml-source"], [115, "linkml-source"], [116, "linkml-source"], [117, "linkml-source"], [119, "linkml-source"], [120, "linkml-source"], [121, "linkml-source"], [122, "linkml-source"], [123, "linkml-source"], [124, "linkml-source"], [126, "linkml-source"], [127, "linkml-source"], [128, "linkml-source"], [129, "linkml-source"], [130, "linkml-source"], [131, "linkml-source"], [132, "linkml-source"], [133, "linkml-source"], [140, "linkml-source"], [148, "linkml-source"], [153, "linkml-source"], [157, "linkml-source"], [161, "linkml-source"], [164, "linkml-source"], [165, "linkml-source"], [166, "linkml-source"], [167, "linkml-source"], [168, "linkml-source"], [170, "linkml-source"], [171, "linkml-source"], [173, "linkml-source"], [174, "linkml-source"], [175, "linkml-source"], [176, "linkml-source"], [177, "linkml-source"], [179, "linkml-source"], [180, "linkml-source"], [181, "linkml-source"], [182, "linkml-source"], [183, "linkml-source"], [184, "linkml-source"], [185, "linkml-source"], [186, "linkml-source"], [188, "linkml-source"], [189, "linkml-source"], [191, "linkml-source"], [192, "linkml-source"], [193, "linkml-source"], [194, "linkml-source"], [196, "linkml-source"], [197, "linkml-source"], [198, "linkml-source"], [199, "linkml-source"], [212, "linkml-source"], [213, "linkml-source"], [214, "linkml-source"], [217, "linkml-source"], [223, "linkml-source"], [227, "linkml-source"], [228, "linkml-source"], [229, "linkml-source"], [230, "linkml-source"], [231, "linkml-source"], [232, "linkml-source"], [233, "linkml-source"], [235, "linkml-source"], [237, "linkml-source"], [238, "linkml-source"], [239, "linkml-source"], [240, "linkml-source"], [241, "linkml-source"], [242, "linkml-source"], [243, "linkml-source"], [244, "linkml-source"], [245, "linkml-source"], [246, "linkml-source"], [247, "linkml-source"], [249, "linkml-source"], [250, "linkml-source"], [262, "linkml-source"], [263, "linkml-source"], [264, "linkml-source"], [265, "linkml-source"], [269, "linkml-source"], [273, "linkml-source"], [276, "linkml-source"], [277, "linkml-source"], [278, "linkml-source"], [282, "linkml-source"], [283, "linkml-source"], [284, "linkml-source"], [285, "linkml-source"], [286, "linkml-source"], [287, "linkml-source"], [288, "linkml-source"], [289, "linkml-source"], [290, "linkml-source"], [291, "linkml-source"], [292, "linkml-source"], [294, "linkml-source"], [295, "linkml-source"], [307, "linkml-source"], [308, "linkml-source"], [309, "linkml-source"], [310, "linkml-source"], [311, "linkml-source"], [312, "linkml-source"], [316, "linkml-source"], [317, "linkml-source"], [318, "linkml-source"], [321, "linkml-source"], [322, "linkml-source"], [324, "linkml-source"], [327, "linkml-source"], [328, "linkml-source"], [329, "linkml-source"], [330, "linkml-source"], [332, "linkml-source"], [337, "linkml-source"], [338, "linkml-source"], [339, "linkml-source"], [340, "linkml-source"], [341, "linkml-source"], [342, "linkml-source"], [343, "linkml-source"], [344, "linkml-source"], [345, "linkml-source"], [346, "linkml-source"], [347, "linkml-source"], [348, "linkml-source"], [349, "linkml-source"], [350, "linkml-source"], [351, "linkml-source"], [352, "linkml-source"], [353, "linkml-source"], [354, "linkml-source"], [355, "linkml-source"], [356, "linkml-source"], [357, "linkml-source"], [358, "linkml-source"], [359, "linkml-source"], [360, "linkml-source"], [361, "linkml-source"], [362, "linkml-source"], [363, "linkml-source"], [364, "linkml-source"], [365, "linkml-source"], [366, "linkml-source"], [367, "linkml-source"], [368, "linkml-source"], [369, "linkml-source"], [371, "linkml-source"], [372, "linkml-source"], [373, "linkml-source"], [380, "linkml-source"], [381, "linkml-source"], [382, "linkml-source"], [384, "linkml-source"], [385, "linkml-source"], [386, "linkml-source"], [388, "linkml-source"], [389, "linkml-source"], [393, "linkml-source"], [394, "linkml-source"], [396, "linkml-source"], [397, "linkml-source"], [402, "linkml-source"], [403, "linkml-source"], [404, "linkml-source"], [405, "linkml-source"], [406, "linkml-source"], [410, "linkml-source"], [411, "linkml-source"], [412, "linkml-source"], [417, "linkml-source"], [419, "linkml-source"], [420, "linkml-source"], [421, "linkml-source"], [422, "linkml-source"], [423, "linkml-source"], [424, "linkml-source"], [425, "linkml-source"], [426, "linkml-source"], [427, "linkml-source"], [428, "linkml-source"], [429, "linkml-source"], [430, "linkml-source"], [431, "linkml-source"], [432, "linkml-source"], [433, "linkml-source"], [434, "linkml-source"], [435, "linkml-source"], [436, "linkml-source"], [438, "linkml-source"], [440, "linkml-source"], [441, "linkml-source"], [442, "linkml-source"], [443, "linkml-source"], [444, "linkml-source"], [445, "linkml-source"], [446, "linkml-source"], [447, "linkml-source"], [450, "linkml-source"], [451, "linkml-source"], [452, "linkml-source"], [453, "linkml-source"], [454, "linkml-source"], [455, "linkml-source"], [456, "linkml-source"], [457, "linkml-source"], [458, "linkml-source"], [460, "linkml-source"], [462, "linkml-source"], [463, "linkml-source"], [464, "linkml-source"], [465, "linkml-source"], [466, "linkml-source"], [467, "linkml-source"], [468, "linkml-source"], [470, "linkml-source"], [471, "linkml-source"], [472, "linkml-source"], [473, "linkml-source"], [474, "linkml-source"], [475, "linkml-source"], [476, "linkml-source"], [479, "linkml-source"], [480, "linkml-source"], [481, "linkml-source"], [482, "linkml-source"], [483, "linkml-source"], [484, "linkml-source"], [485, "linkml-source"], [488, "linkml-source"], [489, "linkml-source"], [495, "linkml-source"], [497, "linkml-source"], [502, "linkml-source"], [503, "linkml-source"], [504, "linkml-source"], [505, "linkml-source"], [506, "linkml-source"], [507, "linkml-source"], [508, "linkml-source"], [509, "linkml-source"], [510, "linkml-source"], [511, "linkml-source"], [512, "linkml-source"], [518, "linkml-source"], [519, "linkml-source"], [520, "linkml-source"], [521, "linkml-source"], [522, "linkml-source"], [526, "linkml-source"], [527, "linkml-source"], [530, "linkml-source"], [532, "linkml-source"], [533, "linkml-source"], [535, "linkml-source"], [536, "linkml-source"], [537, "linkml-source"], [540, "linkml-source"], [541, "linkml-source"], [542, "linkml-source"], [545, "linkml-source"], [549, "linkml-source"], [550, "linkml-source"], [551, "linkml-source"], [552, "linkml-source"], [553, "linkml-source"], [554, "linkml-source"], [555, "linkml-source"], [556, "linkml-source"], [557, "linkml-source"], [558, "linkml-source"], [559, "linkml-source"], [560, "linkml-source"], [561, "linkml-source"], [562, "linkml-source"], [563, "linkml-source"], [564, "linkml-source"], [565, "linkml-source"], [566, "linkml-source"], [567, "linkml-source"], [568, "linkml-source"], [569, "linkml-source"], [570, "linkml-source"], [571, "linkml-source"], [572, "linkml-source"], [573, "linkml-source"], [574, "linkml-source"], [575, "linkml-source"], [576, "linkml-source"], [577, "linkml-source"], [578, "linkml-source"], [579, "linkml-source"], [580, "linkml-source"], [581, "linkml-source"], [582, "linkml-source"], [583, "linkml-source"], [584, "linkml-source"], [585, "linkml-source"], [586, "linkml-source"], [587, "linkml-source"], [588, "linkml-source"], [589, "linkml-source"], [590, "linkml-source"], [591, "linkml-source"], [592, "linkml-source"], [593, "linkml-source"], [594, "linkml-source"], [595, "linkml-source"], [596, "linkml-source"], [597, "linkml-source"], [598, "linkml-source"], [599, "linkml-source"], [600, "linkml-source"], [601, "linkml-source"], [602, "linkml-source"], [603, "linkml-source"], [604, "linkml-source"], [605, "linkml-source"], [606, "linkml-source"], [607, "linkml-source"], [608, "linkml-source"], [609, "linkml-source"], [610, "linkml-source"], [611, "linkml-source"], [612, "linkml-source"], [614, "linkml-source"], [615, "linkml-source"], [616, "linkml-source"], [617, "linkml-source"], [618, "linkml-source"], [619, "linkml-source"], [620, "linkml-source"], [621, "linkml-source"], [622, "linkml-source"], [623, "linkml-source"], [624, "linkml-source"], [625, "linkml-source"], [626, "linkml-source"], [627, "linkml-source"], [628, "linkml-source"], [629, "linkml-source"], [630, "linkml-source"], [631, "linkml-source"], [632, "linkml-source"], [633, "linkml-source"], [634, "linkml-source"], [635, "linkml-source"], [636, "linkml-source"], [637, "linkml-source"], [638, "linkml-source"], [639, "linkml-source"], [640, "linkml-source"], [641, "linkml-source"], [643, "linkml-source"], [644, "linkml-source"], [645, "linkml-source"], [646, "linkml-source"], [647, "linkml-source"], [648, "linkml-source"], [649, "linkml-source"], [650, "linkml-source"], [651, "linkml-source"], [652, "linkml-source"], [653, "linkml-source"], [654, "linkml-source"], [655, "linkml-source"], [656, "linkml-source"], [657, "linkml-source"], [658, "linkml-source"], [659, "linkml-source"], [660, "linkml-source"], [661, "linkml-source"], [662, "linkml-source"], [663, "linkml-source"], [664, "linkml-source"], [665, "linkml-source"], [666, "linkml-source"], [667, "linkml-source"], [668, "linkml-source"], [670, "linkml-source"], [671, "linkml-source"], [672, "linkml-source"], [673, "linkml-source"], [674, "linkml-source"], [676, "linkml-source"], [677, "linkml-source"], [685, "linkml-source"], [692, "linkml-source"], [693, "linkml-source"], [694, "linkml-source"], [695, "linkml-source"], [696, "linkml-source"], [698, "linkml-source"], [704, "linkml-source"], [705, "linkml-source"], [706, "linkml-source"], [707, "linkml-source"], [708, "linkml-source"], [709, "linkml-source"], [710, "linkml-source"], [711, "linkml-source"], [716, "linkml-source"], [718, "linkml-source"], [719, "linkml-source"], [720, "linkml-source"], [722, "linkml-source"], [723, "linkml-source"], [724, "linkml-source"], [725, "linkml-source"], [726, "linkml-source"], [727, "linkml-source"], [728, "linkml-source"], [729, "linkml-source"], [730, "linkml-source"], [731, "linkml-source"], [732, "linkml-source"], [733, "linkml-source"], [734, "linkml-source"], [736, "linkml-source"], [737, "linkml-source"], [738, "linkml-source"], [739, "linkml-source"], [740, "linkml-source"], [743, "linkml-source"], [761, "linkml-source"], [764, "linkml-source"], [765, "linkml-source"], [766, "linkml-source"], [771, "linkml-source"], [772, "linkml-source"], [773, "linkml-source"], [774, "linkml-source"], [775, "linkml-source"], [776, "linkml-source"], [777, "linkml-source"], [778, "linkml-source"], [779, "linkml-source"], [781, "linkml-source"], [782, "linkml-source"], [783, "linkml-source"], [784, "linkml-source"], [785, "linkml-source"], [786, "linkml-source"], [787, "linkml-source"], [788, "linkml-source"], [789, "linkml-source"], [790, "linkml-source"], [791, "linkml-source"], [792, "linkml-source"], [793, "linkml-source"], [794, "linkml-source"], [795, "linkml-source"], [796, "linkml-source"], [797, "linkml-source"], [798, "linkml-source"], [799, "linkml-source"], [800, "linkml-source"], [801, "linkml-source"], [802, "linkml-source"], [803, "linkml-source"], [804, "linkml-source"], [805, "linkml-source"], [806, "linkml-source"], [807, "linkml-source"], [808, "linkml-source"], [809, "linkml-source"], [811, "linkml-source"], [813, "linkml-source"], [815, "linkml-source"], [816, "linkml-source"], [817, "linkml-source"], [825, "linkml-source"], [828, "linkml-source"], [835, "linkml-source"], [839, "linkml-source"], [840, "linkml-source"], [842, "linkml-source"], [845, "linkml-source"], [846, "linkml-source"], [847, "linkml-source"], [848, "linkml-source"], [849, "linkml-source"], [854, "linkml-source"], [855, "linkml-source"], [856, "linkml-source"], [857, "linkml-source"], [860, "linkml-source"], [861, "linkml-source"], [862, "linkml-source"], [863, "linkml-source"], [864, "linkml-source"], [865, "linkml-source"], [866, "linkml-source"], [867, "linkml-source"], [868, "linkml-source"], [869, "linkml-source"], [870, "linkml-source"], [871, "linkml-source"], [872, "linkml-source"], [873, "linkml-source"], [874, "linkml-source"], [875, "linkml-source"], [876, "linkml-source"], [877, "linkml-source"], [879, "linkml-source"], [880, "linkml-source"], [881, "linkml-source"], [883, "linkml-source"], [884, "linkml-source"], [885, "linkml-source"], [886, "linkml-source"], [887, "linkml-source"], [888, "linkml-source"], [889, "linkml-source"], [890, "linkml-source"], [891, "linkml-source"], [892, "linkml-source"], [893, "linkml-source"], [894, "linkml-source"], [895, "linkml-source"], [896, "linkml-source"], [897, "linkml-source"], [898, "linkml-source"], [899, "linkml-source"], [900, "linkml-source"], [901, "linkml-source"], [902, "linkml-source"], [903, "linkml-source"], [904, "linkml-source"], [905, "linkml-source"], [906, "linkml-source"], [907, "linkml-source"], [908, "linkml-source"], [909, "linkml-source"], [911, "linkml-source"], [912, "linkml-source"], [913, "linkml-source"], [915, "linkml-source"], [916, "linkml-source"], [917, "linkml-source"], [918, "linkml-source"], [919, "linkml-source"], [920, "linkml-source"], [922, "linkml-source"], [936, "linkml-source"], [939, "linkml-source"], [940, "linkml-source"], [941, "linkml-source"], [942, "linkml-source"], [946, "linkml-source"], [947, "linkml-source"], [948, "linkml-source"], [949, "linkml-source"], [950, "linkml-source"], [951, "linkml-source"], [952, "linkml-source"], [954, "linkml-source"], [955, "linkml-source"], [956, "linkml-source"], [957, "linkml-source"], [958, "linkml-source"], [959, "linkml-source"], [960, "linkml-source"], [961, "linkml-source"], [962, "linkml-source"], [963, "linkml-source"], [964, "linkml-source"], [965, "linkml-source"], [966, "linkml-source"], [968, "linkml-source"], [969, "linkml-source"], [978, "linkml-source"], [988, "linkml-source"], [989, "linkml-source"], [990, "linkml-source"], [991, "linkml-source"], [993, "linkml-source"], [996, "linkml-source"], [997, "linkml-source"], [998, "linkml-source"], [999, "linkml-source"], [1000, "linkml-source"], [1002, "linkml-source"], [1003, "linkml-source"], [1004, "linkml-source"], [1005, "linkml-source"], [1006, "linkml-source"], [1007, "linkml-source"], [1008, "linkml-source"], [1009, "linkml-source"], [1010, "linkml-source"], [1011, "linkml-source"], [1012, "linkml-source"], [1013, "linkml-source"], [1014, "linkml-source"], [1015, "linkml-source"], [1016, "linkml-source"], [1017, "linkml-source"], [1018, "linkml-source"], [1019, "linkml-source"], [1020, "linkml-source"], [1021, "linkml-source"], [1022, "linkml-source"], [1023, "linkml-source"], [1025, "linkml-source"], [1028, "linkml-source"], [1035, "linkml-source"], [1040, "linkml-source"], [1041, "linkml-source"], [1043, "linkml-source"], [1046, "linkml-source"], [1047, "linkml-source"], [1048, "linkml-source"], [1049, "linkml-source"], [1050, "linkml-source"], [1051, "linkml-source"], [1055, "linkml-source"], [1058, "linkml-source"], [1059, "linkml-source"], [1060, "linkml-source"], [1061, "linkml-source"], [1062, "linkml-source"], [1063, "linkml-source"], [1064, "linkml-source"], [1065, "linkml-source"], [1066, "linkml-source"], [1068, "linkml-source"], [1069, "linkml-source"], [1070, "linkml-source"], [1071, "linkml-source"], [1072, "linkml-source"], [1073, "linkml-source"], [1074, "linkml-source"], [1075, "linkml-source"], [1076, "linkml-source"], [1077, "linkml-source"], [1078, "linkml-source"], [1079, "linkml-source"], [1080, "linkml-source"], [1081, "linkml-source"], [1082, "linkml-source"], [1083, "linkml-source"], [1084, "linkml-source"], [1085, "linkml-source"], [1086, "linkml-source"], [1087, "linkml-source"], [1088, "linkml-source"], [1089, "linkml-source"], [1090, "linkml-source"], [1091, "linkml-source"], [1092, "linkml-source"], [1093, "linkml-source"], [1094, "linkml-source"], [1096, "linkml-source"], [1097, "linkml-source"]], "Direct": [[3, "direct"], [4, "direct"], [17, "direct"], [20, "direct"], [21, "direct"], [22, "direct"], [23, "direct"], [24, "direct"], [92, "direct"], [93, "direct"], [94, "direct"], [153, "direct"], [157, "direct"], [212, "direct"], [213, "direct"], [217, "direct"], [223, "direct"], [249, "direct"], [250, "direct"], [262, "direct"], [263, "direct"], [264, "direct"], [265, "direct"], [269, "direct"], [294, "direct"], [295, "direct"], [307, "direct"], [308, "direct"], [309, "direct"], [310, "direct"], [311, "direct"], [312, "direct"], [316, "direct"], [317, "direct"], [318, "direct"], [321, "direct"], [322, "direct"], [372, "direct"], [373, "direct"], [380, "direct"], [381, "direct"], [382, "direct"], [384, "direct"], [385, "direct"], [386, "direct"], [388, "direct"], [389, "direct"], [393, "direct"], [394, "direct"], [396, "direct"], [402, "direct"], [403, "direct"], [405, "direct"], [410, "direct"], [411, "direct"], [412, "direct"], [417, "direct"], [476, "direct"], [479, "direct"], [480, "direct"], [481, "direct"], [482, "direct"], [483, "direct"], [484, "direct"], [485, "direct"], [488, "direct"], [489, "direct"], [497, "direct"], [502, "direct"], [503, "direct"], [504, "direct"], [505, "direct"], [506, "direct"], [507, "direct"], [508, "direct"], [509, "direct"], [512, "direct"], [521, "direct"], [522, "direct"], [526, "direct"], [530, "direct"], [532, "direct"], [533, "direct"], [535, "direct"], [536, "direct"], [537, "direct"], [540, "direct"], [541, "direct"], [542, "direct"], [545, "direct"], [677, "direct"], [692, "direct"], [693, "direct"], [695, "direct"], [696, "direct"], [743, "direct"], [761, "direct"], [764, "direct"], [765, "direct"], [766, "direct"], [813, "direct"], [815, "direct"], [816, "direct"], [817, "direct"], [824, "direct"], [825, "direct"], [827, "direct"], [828, "direct"], [835, "direct"], [838, "direct"], [839, "direct"], [840, "direct"], [842, "direct"], [936, "direct"], [939, "direct"], [940, "direct"], [941, "direct"], [942, "direct"], [978, "direct"], [988, "direct"], [989, "direct"], [990, "direct"], [991, "direct"], [1028, "direct"], [1035, "direct"], [1040, "direct"], [1041, "direct"], [1043, "direct"], [1046, "direct"], [1047, "direct"], [1048, "direct"], [1049, "direct"], [1050, "direct"], [1055, "direct"], [1058, "direct"], [1059, "direct"], [1060, "direct"]], "Class: AssociationChange": [[4, "class-associationchange"]], "Comments": [[4, "comments"], [6, "comments"], [19, "comments"], [28, "comments"], [60, "comments"], [77, "comments"], [84, "comments"], [95, "comments"], [107, "comments"], [113, "comments"], [135, "comments"], [151, "comments"], [159, "comments"], [204, "comments"], [213, "comments"], [220, "comments"], [225, "comments"], [228, "comments"], [252, "comments"], [268, "comments"], [274, "comments"], [297, "comments"], [315, "comments"], [325, "comments"], [352, "comments"], [375, "comments"], [382, "comments"], [386, "comments"], [389, "comments"], [399, "comments"], [405, "comments"], [415, "comments"], [422, "comments"], [424, "comments"], [431, "comments"], [434, "comments"], [441, "comments"], [452, "comments"], [460, "comments"], [490, "comments"], [507, "comments"], [531, "comments"], [547, "comments"], [560, "comments"], [563, "comments"], [575, "comments"], [596, "comments"], [603, "comments"], [625, "comments"], [665, "comments"], [678, "comments"], [691, "comments"], [702, "comments"], [737, "comments"], [745, "comments"], [760, "comments"], [768, "comments"], [785, "comments"], [818, "comments"], [825, "comments"], [834, "comments"], [843, "comments"], [889, "comments"], [901, "comments"], [923, "comments"], [935, "comments"], [944, "comments"], [956, "comments"], [965, "comments"], [971, "comments"], [984, "comments"], [994, "comments"], [1029, "comments"], [1045, "comments"], [1056, "comments"]], "Type: Boolean": [[5, "type-boolean"], [91, "type-boolean"], [134, "type-boolean"], [203, "type-boolean"], [251, "type-boolean"], [296, "type-boolean"], [374, "type-boolean"], [486, "type-boolean"], [675, "type-boolean"], [744, "type-boolean"], [814, "type-boolean"], [921, "type-boolean"], [970, "type-boolean"], [1027, "type-boolean"]], "Type: Curie": [[6, "type-curie"], [95, "type-curie"], [135, "type-curie"], [204, "type-curie"], [252, "type-curie"], [297, "type-curie"], [375, "type-curie"], [490, "type-curie"], [678, "type-curie"], [745, "type-curie"], [818, "type-curie"], [923, "type-curie"], [971, "type-curie"], [1029, "type-curie"]], "Type: Date": [[7, "type-date"], [96, "type-date"], [136, "type-date"], [205, "type-date"], [253, "type-date"], [298, "type-date"], [376, "type-date"], [491, "type-date"], [679, "type-date"], [746, "type-date"], [819, "type-date"], [924, "type-date"], [972, "type-date"], [1030, "type-date"]], "Type: DateOrDatetime": [[8, "type-dateordatetime"], [97, "type-dateordatetime"], [137, "type-dateordatetime"], [206, "type-dateordatetime"], [254, "type-dateordatetime"], [299, "type-dateordatetime"], [377, "type-dateordatetime"], [492, "type-dateordatetime"], [680, "type-dateordatetime"], [747, "type-dateordatetime"], [820, "type-dateordatetime"], [925, "type-dateordatetime"], [973, "type-dateordatetime"], [1031, "type-dateordatetime"]], "Type: Datetime": [[9, "type-datetime"], [98, "type-datetime"], [138, "type-datetime"], [207, "type-datetime"], [255, "type-datetime"], [300, "type-datetime"], [378, "type-datetime"], [493, "type-datetime"], [681, "type-datetime"], [748, "type-datetime"], [821, "type-datetime"], [926, "type-datetime"], [974, "type-datetime"], [1032, "type-datetime"]], "Type: Decimal": [[10, "type-decimal"], [99, "type-decimal"], [139, "type-decimal"], [208, "type-decimal"], [256, "type-decimal"], [301, "type-decimal"], [379, "type-decimal"], [494, "type-decimal"], [682, "type-decimal"], [749, "type-decimal"], [822, "type-decimal"], [927, "type-decimal"], [975, "type-decimal"], [1033, "type-decimal"]], "Type: Double": [[11, "type-double"], [100, "type-double"], [141, "type-double"], [209, "type-double"], [257, "type-double"], [302, "type-double"], [383, "type-double"], [496, "type-double"], [683, "type-double"], [750, "type-double"], [823, "type-double"], [928, "type-double"], [976, "type-double"], [1034, "type-double"]], "Type: Float": [[12, "type-float"], [101, "type-float"], [143, "type-float"], [210, "type-float"], [258, "type-float"], [303, "type-float"], [387, "type-float"], [498, "type-float"], [684, "type-float"], [751, "type-float"], [826, "type-float"], [929, "type-float"], [977, "type-float"], [1036, "type-float"]], "Type: Integer": [[13, "type-integer"], [102, "type-integer"], [144, "type-integer"], [211, "type-integer"], [259, "type-integer"], [304, "type-integer"], [390, "type-integer"], [513, "type-integer"], [686, "type-integer"], [752, "type-integer"], [829, "type-integer"], [930, "type-integer"], [979, "type-integer"], [1037, "type-integer"]], "Type: Jsonpath": [[14, "type-jsonpath"], [103, "type-jsonpath"], [145, "type-jsonpath"], [215, "type-jsonpath"], [260, "type-jsonpath"], [305, "type-jsonpath"], [391, "type-jsonpath"], [515, "type-jsonpath"], [687, "type-jsonpath"], [754, "type-jsonpath"], [830, "type-jsonpath"], [931, "type-jsonpath"], [980, "type-jsonpath"], [1038, "type-jsonpath"]], "Type: Jsonpointer": [[15, "type-jsonpointer"], [104, "type-jsonpointer"], [146, "type-jsonpointer"], [216, "type-jsonpointer"], [261, "type-jsonpointer"], [306, "type-jsonpointer"], [392, "type-jsonpointer"], [516, "type-jsonpointer"], [688, "type-jsonpointer"], [755, "type-jsonpointer"], [831, "type-jsonpointer"], [932, "type-jsonpointer"], [981, "type-jsonpointer"], [1039, "type-jsonpointer"]], "Type: Ncname": [[16, "type-ncname"], [105, "type-ncname"], [149, "type-ncname"], [218, "type-ncname"], [266, "type-ncname"], [313, "type-ncname"], [395, "type-ncname"], [524, "type-ncname"], [689, "type-ncname"], [756, "type-ncname"], [832, "type-ncname"], [933, "type-ncname"], [982, "type-ncname"], [1042, "type-ncname"]], "Class: NegatedAssociation": [[17, "class-negatedassociation"]], "Type: Nodeidentifier": [[18, "type-nodeidentifier"], [106, "type-nodeidentifier"], [150, "type-nodeidentifier"], [219, "type-nodeidentifier"], [267, "type-nodeidentifier"], [314, "type-nodeidentifier"], [398, "type-nodeidentifier"], [525, "type-nodeidentifier"], [690, "type-nodeidentifier"], [758, "type-nodeidentifier"], [833, "type-nodeidentifier"], [934, "type-nodeidentifier"], [983, "type-nodeidentifier"], [1044, "type-nodeidentifier"]], "Type: Objectidentifier": [[19, "type-objectidentifier"], [107, "type-objectidentifier"], [151, "type-objectidentifier"], [220, "type-objectidentifier"], [268, "type-objectidentifier"], [315, "type-objectidentifier"], [399, "type-objectidentifier"], [531, "type-objectidentifier"], [691, "type-objectidentifier"], [760, "type-objectidentifier"], [834, "type-objectidentifier"], [935, "type-objectidentifier"], [984, "type-objectidentifier"], [1045, "type-objectidentifier"]], "Class: PairwiseCoAssociation": [[20, "class-pairwisecoassociation"]], "Class: ParserConfiguration": [[21, "class-parserconfiguration"]], "Class: PositiveOrNegativeAssociation": [[22, "class-positiveornegativeassociation"]], "Class: PropertyValue": [[23, "class-propertyvalue"], [405, "class-propertyvalue"]], "Class: RollupGroup": [[24, "class-rollupgroup"]], "Type: Sparqlpath": [[25, "type-sparqlpath"], [110, "type-sparqlpath"], [155, "type-sparqlpath"], [221, "type-sparqlpath"], [270, "type-sparqlpath"], [319, "type-sparqlpath"], [408, "type-sparqlpath"], [538, "type-sparqlpath"], [699, "type-sparqlpath"], [762, "type-sparqlpath"], [836, "type-sparqlpath"], [937, "type-sparqlpath"], [986, "type-sparqlpath"], [1052, "type-sparqlpath"]], "Type: String": [[26, "type-string"], [111, "type-string"], [156, "type-string"], [222, "type-string"], [271, "type-string"], [320, "type-string"], [409, "type-string"], [539, "type-string"], [700, "type-string"], [763, "type-string"], [837, "type-string"], [938, "type-string"], [987, "type-string"], [1053, "type-string"]], "Type: Time": [[27, "type-time"], [112, "type-time"], [158, "type-time"], [224, "type-time"], [272, "type-time"], [323, "type-time"], [414, "type-time"], [544, "type-time"], [701, "type-time"], [767, "type-time"], [841, "type-time"], [943, "type-time"], [992, "type-time"], [1054, "type-time"]], "Type: Uri": [[28, "type-uri"], [113, "type-uri"], [159, "type-uri"], [225, "type-uri"], [274, "type-uri"], [325, "type-uri"], [415, "type-uri"], [547, "type-uri"], [702, "type-uri"], [768, "type-uri"], [843, "type-uri"], [944, "type-uri"], [994, "type-uri"], [1056, "type-uri"]], "Type: Uriorcurie": [[29, "type-uriorcurie"], [114, "type-uriorcurie"], [160, "type-uriorcurie"], [226, "type-uriorcurie"], [275, "type-uriorcurie"], [326, "type-uriorcurie"], [416, "type-uriorcurie"], [548, "type-uriorcurie"], [703, "type-uriorcurie"], [769, "type-uriorcurie"], [844, "type-uriorcurie"], [945, "type-uriorcurie"], [995, "type-uriorcurie"], [1057, "type-uriorcurie"]], "Slot: aggregator_knowledge_source": [[30, "slot-aggregator-knowledge-source"]], "Applicable Classes": [[30, "applicable-classes"], [32, "applicable-classes"], [33, "applicable-classes"], [34, "applicable-classes"], [36, "applicable-classes"], [37, "applicable-classes"], [43, "applicable-classes"], [44, "applicable-classes"], [45, "applicable-classes"], [47, "applicable-classes"], [48, "applicable-classes"], [49, "applicable-classes"], [50, "applicable-classes"], [51, "applicable-classes"], [53, "applicable-classes"], [54, "applicable-classes"], [55, "applicable-classes"], [56, "applicable-classes"], [57, "applicable-classes"], [58, "applicable-classes"], [59, "applicable-classes"], [60, "applicable-classes"], [61, "applicable-classes"], [62, "applicable-classes"], [63, "applicable-classes"], [64, "applicable-classes"], [65, "applicable-classes"], [66, "applicable-classes"], [67, "applicable-classes"], [68, "applicable-classes"], [69, "applicable-classes"], [70, "applicable-classes"], [71, "applicable-classes"], [75, "applicable-classes"], [76, "applicable-classes"], [77, "applicable-classes"], [78, "applicable-classes"], [79, "applicable-classes"], [80, "applicable-classes"], [81, "applicable-classes"], [82, "applicable-classes"], [83, "applicable-classes"], [84, "applicable-classes"], [85, "applicable-classes"], [86, "applicable-classes"], [87, "applicable-classes"], [88, "applicable-classes"], [89, "applicable-classes"], [90, "applicable-classes"], [115, "applicable-classes"], [116, "applicable-classes"], [117, "applicable-classes"], [119, "applicable-classes"], [120, "applicable-classes"], [121, "applicable-classes"], [122, "applicable-classes"], [123, "applicable-classes"], [124, "applicable-classes"], [126, "applicable-classes"], [127, "applicable-classes"], [128, "applicable-classes"], [129, "applicable-classes"], [130, "applicable-classes"], [131, "applicable-classes"], [132, "applicable-classes"], [133, "applicable-classes"], [161, "applicable-classes"], [166, "applicable-classes"], [167, "applicable-classes"], [168, "applicable-classes"], [170, "applicable-classes"], [171, "applicable-classes"], [174, "applicable-classes"], [175, "applicable-classes"], [176, "applicable-classes"], [177, "applicable-classes"], [180, "applicable-classes"], [181, "applicable-classes"], [183, "applicable-classes"], [184, "applicable-classes"], [185, "applicable-classes"], [186, "applicable-classes"], [188, "applicable-classes"], [189, "applicable-classes"], [192, "applicable-classes"], [193, "applicable-classes"], [194, "applicable-classes"], [198, "applicable-classes"], [199, "applicable-classes"], [227, "applicable-classes"], [228, "applicable-classes"], [229, "applicable-classes"], [230, "applicable-classes"], [231, "applicable-classes"], [232, "applicable-classes"], [233, "applicable-classes"], [235, "applicable-classes"], [237, "applicable-classes"], [238, "applicable-classes"], [239, "applicable-classes"], [240, "applicable-classes"], [241, "applicable-classes"], [242, "applicable-classes"], [243, "applicable-classes"], [244, "applicable-classes"], [245, "applicable-classes"], [246, "applicable-classes"], [247, "applicable-classes"], [276, "applicable-classes"], [277, "applicable-classes"], [278, "applicable-classes"], [282, "applicable-classes"], [283, "applicable-classes"], [284, "applicable-classes"], [285, "applicable-classes"], [286, "applicable-classes"], [287, "applicable-classes"], [288, "applicable-classes"], [289, "applicable-classes"], [290, "applicable-classes"], [291, "applicable-classes"], [292, "applicable-classes"], [327, "applicable-classes"], [328, "applicable-classes"], [329, "applicable-classes"], [330, "applicable-classes"], [332, "applicable-classes"], [337, "applicable-classes"], [338, "applicable-classes"], [339, "applicable-classes"], [340, "applicable-classes"], [341, "applicable-classes"], [342, "applicable-classes"], [343, "applicable-classes"], [344, "applicable-classes"], [345, "applicable-classes"], [346, "applicable-classes"], [347, "applicable-classes"], [348, "applicable-classes"], [349, "applicable-classes"], [350, "applicable-classes"], [351, "applicable-classes"], [352, "applicable-classes"], [353, "applicable-classes"], [354, "applicable-classes"], [355, "applicable-classes"], [356, "applicable-classes"], [357, "applicable-classes"], [358, "applicable-classes"], [359, "applicable-classes"], [360, "applicable-classes"], [361, "applicable-classes"], [362, "applicable-classes"], [363, "applicable-classes"], [364, "applicable-classes"], [365, "applicable-classes"], [366, "applicable-classes"], [367, "applicable-classes"], [368, "applicable-classes"], [369, "applicable-classes"], [371, "applicable-classes"], [419, "applicable-classes"], [420, "applicable-classes"], [421, "applicable-classes"], [422, "applicable-classes"], [423, "applicable-classes"], [424, "applicable-classes"], [425, "applicable-classes"], [426, "applicable-classes"], [427, "applicable-classes"], [429, "applicable-classes"], [430, "applicable-classes"], [431, "applicable-classes"], [432, "applicable-classes"], [433, "applicable-classes"], [434, "applicable-classes"], [435, "applicable-classes"], [436, "applicable-classes"], [438, "applicable-classes"], [440, "applicable-classes"], [441, "applicable-classes"], [442, "applicable-classes"], [443, "applicable-classes"], [444, "applicable-classes"], [445, "applicable-classes"], [446, "applicable-classes"], [447, "applicable-classes"], [450, "applicable-classes"], [451, "applicable-classes"], [452, "applicable-classes"], [453, "applicable-classes"], [454, "applicable-classes"], [455, "applicable-classes"], [456, "applicable-classes"], [457, "applicable-classes"], [458, "applicable-classes"], [460, "applicable-classes"], [462, "applicable-classes"], [463, "applicable-classes"], [464, "applicable-classes"], [465, "applicable-classes"], [466, "applicable-classes"], [467, "applicable-classes"], [468, "applicable-classes"], [470, "applicable-classes"], [471, "applicable-classes"], [472, "applicable-classes"], [473, "applicable-classes"], [474, "applicable-classes"], [475, "applicable-classes"], [510, "applicable-classes"], [511, "applicable-classes"], [527, "applicable-classes"], [549, "applicable-classes"], [550, "applicable-classes"], [551, "applicable-classes"], [552, "applicable-classes"], [553, "applicable-classes"], [554, "applicable-classes"], [555, "applicable-classes"], [556, "applicable-classes"], [557, "applicable-classes"], [559, "applicable-classes"], [560, "applicable-classes"], [561, "applicable-classes"], [562, "applicable-classes"], [563, "applicable-classes"], [564, "applicable-classes"], [566, "applicable-classes"], [567, "applicable-classes"], [568, "applicable-classes"], [569, "applicable-classes"], [570, "applicable-classes"], [571, "applicable-classes"], [572, "applicable-classes"], [573, "applicable-classes"], [575, "applicable-classes"], [576, "applicable-classes"], [577, "applicable-classes"], [578, "applicable-classes"], [579, "applicable-classes"], [580, "applicable-classes"], [582, "applicable-classes"], [583, "applicable-classes"], [584, "applicable-classes"], [585, "applicable-classes"], [586, "applicable-classes"], [587, "applicable-classes"], [588, "applicable-classes"], [589, "applicable-classes"], [591, "applicable-classes"], [592, "applicable-classes"], [593, "applicable-classes"], [594, "applicable-classes"], [596, "applicable-classes"], [597, "applicable-classes"], [598, "applicable-classes"], [599, "applicable-classes"], [600, "applicable-classes"], [601, "applicable-classes"], [602, "applicable-classes"], [603, "applicable-classes"], [604, "applicable-classes"], [605, "applicable-classes"], [606, "applicable-classes"], [607, "applicable-classes"], [608, "applicable-classes"], [609, "applicable-classes"], [610, "applicable-classes"], [611, "applicable-classes"], [612, "applicable-classes"], [615, "applicable-classes"], [616, "applicable-classes"], [617, "applicable-classes"], [618, "applicable-classes"], [619, "applicable-classes"], [620, "applicable-classes"], [621, "applicable-classes"], [622, "applicable-classes"], [623, "applicable-classes"], [624, "applicable-classes"], [625, "applicable-classes"], [627, "applicable-classes"], [635, "applicable-classes"], [636, "applicable-classes"], [637, "applicable-classes"], [638, "applicable-classes"], [644, "applicable-classes"], [645, "applicable-classes"], [646, "applicable-classes"], [647, "applicable-classes"], [648, "applicable-classes"], [649, "applicable-classes"], [652, "applicable-classes"], [655, "applicable-classes"], [657, "applicable-classes"], [658, "applicable-classes"], [659, "applicable-classes"], [660, "applicable-classes"], [661, "applicable-classes"], [663, "applicable-classes"], [664, "applicable-classes"], [665, "applicable-classes"], [666, "applicable-classes"], [667, "applicable-classes"], [668, "applicable-classes"], [670, "applicable-classes"], [671, "applicable-classes"], [672, "applicable-classes"], [673, "applicable-classes"], [704, "applicable-classes"], [705, "applicable-classes"], [706, "applicable-classes"], [707, "applicable-classes"], [708, "applicable-classes"], [709, "applicable-classes"], [710, "applicable-classes"], [711, "applicable-classes"], [716, "applicable-classes"], [718, "applicable-classes"], [719, "applicable-classes"], [720, "applicable-classes"], [722, "applicable-classes"], [723, "applicable-classes"], [724, "applicable-classes"], [725, "applicable-classes"], [726, "applicable-classes"], [727, "applicable-classes"], [728, "applicable-classes"], [729, "applicable-classes"], [730, "applicable-classes"], [731, "applicable-classes"], [732, "applicable-classes"], [733, "applicable-classes"], [734, "applicable-classes"], [736, "applicable-classes"], [737, "applicable-classes"], [738, "applicable-classes"], [739, "applicable-classes"], [740, "applicable-classes"], [771, "applicable-classes"], [772, "applicable-classes"], [773, "applicable-classes"], [774, "applicable-classes"], [775, "applicable-classes"], [776, "applicable-classes"], [777, "applicable-classes"], [778, "applicable-classes"], [779, "applicable-classes"], [783, "applicable-classes"], [784, "applicable-classes"], [785, "applicable-classes"], [786, "applicable-classes"], [787, "applicable-classes"], [788, "applicable-classes"], [789, "applicable-classes"], [790, "applicable-classes"], [791, "applicable-classes"], [792, "applicable-classes"], [793, "applicable-classes"], [794, "applicable-classes"], [795, "applicable-classes"], [796, "applicable-classes"], [797, "applicable-classes"], [799, "applicable-classes"], [800, "applicable-classes"], [801, "applicable-classes"], [802, "applicable-classes"], [803, "applicable-classes"], [804, "applicable-classes"], [805, "applicable-classes"], [806, "applicable-classes"], [807, "applicable-classes"], [845, "applicable-classes"], [846, "applicable-classes"], [847, "applicable-classes"], [848, "applicable-classes"], [849, "applicable-classes"], [854, "applicable-classes"], [855, "applicable-classes"], [856, "applicable-classes"], [857, "applicable-classes"], [860, "applicable-classes"], [861, "applicable-classes"], [863, "applicable-classes"], [864, "applicable-classes"], [865, "applicable-classes"], [866, "applicable-classes"], [868, "applicable-classes"], [869, "applicable-classes"], [870, "applicable-classes"], [871, "applicable-classes"], [872, "applicable-classes"], [873, "applicable-classes"], [874, "applicable-classes"], [875, "applicable-classes"], [876, "applicable-classes"], [877, "applicable-classes"], [879, "applicable-classes"], [880, "applicable-classes"], [881, "applicable-classes"], [883, "applicable-classes"], [885, "applicable-classes"], [886, "applicable-classes"], [887, "applicable-classes"], [888, "applicable-classes"], [889, "applicable-classes"], [890, "applicable-classes"], [892, "applicable-classes"], [893, "applicable-classes"], [894, "applicable-classes"], [895, "applicable-classes"], [896, "applicable-classes"], [897, "applicable-classes"], [898, "applicable-classes"], [899, "applicable-classes"], [901, "applicable-classes"], [902, "applicable-classes"], [903, "applicable-classes"], [905, "applicable-classes"], [906, "applicable-classes"], [907, "applicable-classes"], [908, "applicable-classes"], [909, "applicable-classes"], [911, "applicable-classes"], [912, "applicable-classes"], [913, "applicable-classes"], [915, "applicable-classes"], [916, "applicable-classes"], [917, "applicable-classes"], [918, "applicable-classes"], [919, "applicable-classes"], [920, "applicable-classes"], [946, "applicable-classes"], [947, "applicable-classes"], [948, "applicable-classes"], [949, "applicable-classes"], [950, "applicable-classes"], [951, "applicable-classes"], [952, "applicable-classes"], [954, "applicable-classes"], [955, "applicable-classes"], [956, "applicable-classes"], [957, "applicable-classes"], [958, "applicable-classes"], [959, "applicable-classes"], [960, "applicable-classes"], [961, "applicable-classes"], [962, "applicable-classes"], [963, "applicable-classes"], [964, "applicable-classes"], [965, "applicable-classes"], [966, "applicable-classes"], [968, "applicable-classes"], [969, "applicable-classes"], [996, "applicable-classes"], [997, "applicable-classes"], [998, "applicable-classes"], [999, "applicable-classes"], [1000, "applicable-classes"], [1002, "applicable-classes"], [1003, "applicable-classes"], [1004, "applicable-classes"], [1005, "applicable-classes"], [1006, "applicable-classes"], [1007, "applicable-classes"], [1008, "applicable-classes"], [1009, "applicable-classes"], [1010, "applicable-classes"], [1011, "applicable-classes"], [1012, "applicable-classes"], [1013, "applicable-classes"], [1014, "applicable-classes"], [1015, "applicable-classes"], [1016, "applicable-classes"], [1017, "applicable-classes"], [1018, "applicable-classes"], [1019, "applicable-classes"], [1020, "applicable-classes"], [1021, "applicable-classes"], [1022, "applicable-classes"], [1023, "applicable-classes"], [1025, "applicable-classes"], [1062, "applicable-classes"], [1063, "applicable-classes"], [1064, "applicable-classes"], [1065, "applicable-classes"], [1066, "applicable-classes"], [1068, "applicable-classes"], [1069, "applicable-classes"], [1070, "applicable-classes"], [1071, "applicable-classes"], [1072, "applicable-classes"], [1073, "applicable-classes"], [1074, "applicable-classes"], [1075, "applicable-classes"], [1076, "applicable-classes"], [1077, "applicable-classes"], [1078, "applicable-classes"], [1079, "applicable-classes"], [1080, "applicable-classes"], [1081, "applicable-classes"], [1082, "applicable-classes"], [1083, "applicable-classes"], [1084, "applicable-classes"], [1085, "applicable-classes"], [1086, "applicable-classes"], [1087, "applicable-classes"], [1088, "applicable-classes"], [1089, "applicable-classes"], [1090, "applicable-classes"], [1091, "applicable-classes"], [1092, "applicable-classes"], [1093, "applicable-classes"], [1094, "applicable-classes"], [1096, "applicable-classes"], [1097, "applicable-classes"]], "Properties": [[30, "properties"], [32, "properties"], [33, "properties"], [34, "properties"], [35, "properties"], [36, "properties"], [37, "properties"], [38, "properties"], [39, "properties"], [40, "properties"], [41, "properties"], [42, "properties"], [43, "properties"], [44, "properties"], [45, "properties"], [47, "properties"], [48, "properties"], [49, "properties"], [50, "properties"], [51, "properties"], [52, "properties"], [53, "properties"], [54, "properties"], [55, "properties"], [56, "properties"], [57, "properties"], [58, "properties"], [59, "properties"], [60, "properties"], [61, "properties"], [62, "properties"], [63, "properties"], [64, "properties"], [65, "properties"], [66, "properties"], [67, "properties"], [68, "properties"], [69, "properties"], [70, "properties"], [71, "properties"], [72, "properties"], [73, "properties"], [74, "properties"], [75, "properties"], [76, "properties"], [77, "properties"], [78, "properties"], [79, "properties"], [80, "properties"], [81, "properties"], [82, "properties"], [83, "properties"], [84, "properties"], [85, "properties"], [86, "properties"], [87, "properties"], [88, "properties"], [89, "properties"], [90, "properties"], [115, "properties"], [116, "properties"], [117, "properties"], [119, "properties"], [120, "properties"], [121, "properties"], [122, "properties"], [123, "properties"], [124, "properties"], [126, "properties"], [127, "properties"], [128, "properties"], [129, "properties"], [130, "properties"], [131, "properties"], [132, "properties"], [133, "properties"], [161, "properties"], [164, "properties"], [165, "properties"], [166, "properties"], [167, "properties"], [168, "properties"], [169, "properties"], [170, "properties"], [171, "properties"], [172, "properties"], [173, "properties"], [174, "properties"], [175, "properties"], [176, "properties"], [177, "properties"], [178, "properties"], [179, "properties"], [180, "properties"], [181, "properties"], [182, "properties"], [183, "properties"], [184, "properties"], [185, "properties"], [186, "properties"], [187, "properties"], [188, "properties"], [189, "properties"], [190, "properties"], [191, "properties"], [192, "properties"], [193, "properties"], [194, "properties"], [195, "properties"], [196, "properties"], [197, "properties"], [198, "properties"], [199, "properties"], [227, "properties"], [228, "properties"], [229, "properties"], [230, "properties"], [231, "properties"], [232, "properties"], [233, "properties"], [235, "properties"], [237, "properties"], [238, "properties"], [239, "properties"], [240, "properties"], [241, "properties"], [242, "properties"], [243, "properties"], [244, "properties"], [245, "properties"], [246, "properties"], [247, "properties"], [276, "properties"], [277, "properties"], [278, "properties"], [282, "properties"], [283, "properties"], [284, "properties"], [285, "properties"], [286, "properties"], [287, "properties"], [288, "properties"], [289, "properties"], [290, "properties"], [291, "properties"], [292, "properties"], [327, "properties"], [328, "properties"], [329, "properties"], [330, "properties"], [332, "properties"], [337, "properties"], [338, "properties"], [339, "properties"], [340, "properties"], [341, "properties"], [342, "properties"], [343, "properties"], [344, "properties"], [345, "properties"], [346, "properties"], [347, "properties"], [348, "properties"], [349, "properties"], [350, "properties"], [351, "properties"], [352, "properties"], [353, "properties"], [354, "properties"], [355, "properties"], [356, "properties"], [357, "properties"], [358, "properties"], [359, "properties"], [360, "properties"], [361, "properties"], [362, "properties"], [363, "properties"], [364, "properties"], [365, "properties"], [366, "properties"], [367, "properties"], [368, "properties"], [369, "properties"], [371, "properties"], [419, "properties"], [420, "properties"], [421, "properties"], [422, "properties"], [423, "properties"], [424, "properties"], [425, "properties"], [426, "properties"], [427, "properties"], [428, "properties"], [429, "properties"], [430, "properties"], [431, "properties"], [432, "properties"], [433, "properties"], [434, "properties"], [435, "properties"], [436, "properties"], [438, "properties"], [439, "properties"], [440, "properties"], [441, "properties"], [442, "properties"], [443, "properties"], [444, "properties"], [445, "properties"], [446, "properties"], [447, "properties"], [450, "properties"], [451, "properties"], [452, "properties"], [453, "properties"], [454, "properties"], [455, "properties"], [456, "properties"], [457, "properties"], [458, "properties"], [459, "properties"], [460, "properties"], [461, "properties"], [462, "properties"], [463, "properties"], [464, "properties"], [465, "properties"], [466, "properties"], [467, "properties"], [468, "properties"], [470, "properties"], [471, "properties"], [472, "properties"], [473, "properties"], [474, "properties"], [475, "properties"], [510, "properties"], [511, "properties"], [518, "properties"], [519, "properties"], [520, "properties"], [527, "properties"], [549, "properties"], [550, "properties"], [551, "properties"], [552, "properties"], [553, "properties"], [554, "properties"], [555, "properties"], [556, "properties"], [557, "properties"], [558, "properties"], [559, "properties"], [560, "properties"], [561, "properties"], [562, "properties"], [563, "properties"], [564, "properties"], [565, "properties"], [566, "properties"], [567, "properties"], [568, "properties"], [569, "properties"], [570, "properties"], [571, "properties"], [572, "properties"], [573, "properties"], [574, "properties"], [575, "properties"], [576, "properties"], [577, "properties"], [578, "properties"], [579, "properties"], [580, "properties"], [581, "properties"], [582, "properties"], [583, "properties"], [584, "properties"], [585, "properties"], [586, "properties"], [587, "properties"], [588, "properties"], [589, "properties"], [590, "properties"], [591, "properties"], [592, "properties"], [593, "properties"], [594, "properties"], [595, "properties"], [596, "properties"], [597, "properties"], [598, "properties"], [599, "properties"], [600, "properties"], [601, "properties"], [602, "properties"], [603, "properties"], [604, "properties"], [605, "properties"], [606, "properties"], [607, "properties"], [608, "properties"], [609, "properties"], [610, "properties"], [611, "properties"], [612, "properties"], [614, "properties"], [615, "properties"], [616, "properties"], [617, "properties"], [618, "properties"], [619, "properties"], [620, "properties"], [621, "properties"], [622, "properties"], [623, "properties"], [624, "properties"], [625, "properties"], [626, "properties"], [627, "properties"], [628, "properties"], [629, "properties"], [630, "properties"], [631, "properties"], [632, "properties"], [633, "properties"], [634, "properties"], [635, "properties"], [636, "properties"], [637, "properties"], [638, "properties"], [639, "properties"], [640, "properties"], [641, "properties"], [643, "properties"], [644, "properties"], [645, "properties"], [646, "properties"], [647, "properties"], [648, "properties"], [649, "properties"], [650, "properties"], [651, "properties"], [652, "properties"], [653, "properties"], [654, "properties"], [655, "properties"], [656, "properties"], [657, "properties"], [658, "properties"], [659, "properties"], [660, "properties"], [661, "properties"], [662, "properties"], [663, "properties"], [664, "properties"], [665, "properties"], [666, "properties"], [667, "properties"], [668, "properties"], [670, "properties"], [671, "properties"], [672, "properties"], [673, "properties"], [674, "properties"], [704, "properties"], [705, "properties"], [706, "properties"], [707, "properties"], [708, "properties"], [709, "properties"], [710, "properties"], [711, "properties"], [712, "properties"], [713, "properties"], [714, "properties"], [715, "properties"], [716, "properties"], [718, "properties"], [719, "properties"], [720, "properties"], [721, "properties"], [722, "properties"], [723, "properties"], [724, "properties"], [725, "properties"], [726, "properties"], [727, "properties"], [728, "properties"], [729, "properties"], [730, "properties"], [731, "properties"], [732, "properties"], [733, "properties"], [734, "properties"], [736, "properties"], [737, "properties"], [738, "properties"], [739, "properties"], [740, "properties"], [771, "properties"], [772, "properties"], [773, "properties"], [774, "properties"], [775, "properties"], [776, "properties"], [777, "properties"], [778, "properties"], [779, "properties"], [781, "properties"], [782, "properties"], [783, "properties"], [784, "properties"], [785, "properties"], [786, "properties"], [787, "properties"], [788, "properties"], [789, "properties"], [790, "properties"], [791, "properties"], [792, "properties"], [793, "properties"], [794, "properties"], [795, "properties"], [796, "properties"], [797, "properties"], [798, "properties"], [799, "properties"], [800, "properties"], [801, "properties"], [802, "properties"], [803, "properties"], [804, "properties"], [805, "properties"], [806, "properties"], [807, "properties"], [808, "properties"], [809, "properties"], [811, "properties"], [845, "properties"], [846, "properties"], [847, "properties"], [848, "properties"], [849, "properties"], [850, "properties"], [851, "properties"], [852, "properties"], [853, "properties"], [854, "properties"], [855, "properties"], [856, "properties"], [857, "properties"], [858, "properties"], [859, "properties"], [860, "properties"], [861, "properties"], [862, "properties"], [863, "properties"], [864, "properties"], [865, "properties"], [866, "properties"], [867, "properties"], [868, "properties"], [869, "properties"], [870, "properties"], [871, "properties"], [872, "properties"], [873, "properties"], [874, "properties"], [875, "properties"], [876, "properties"], [877, "properties"], [878, "properties"], [879, "properties"], [880, "properties"], [881, "properties"], [883, "properties"], [884, "properties"], [885, "properties"], [886, "properties"], [887, "properties"], [888, "properties"], [889, "properties"], [890, "properties"], [891, "properties"], [892, "properties"], [893, "properties"], [894, "properties"], [895, "properties"], [896, "properties"], [897, "properties"], [898, "properties"], [899, "properties"], [900, "properties"], [901, "properties"], [902, "properties"], [903, "properties"], [904, "properties"], [905, "properties"], [906, "properties"], [907, "properties"], [908, "properties"], [909, "properties"], [911, "properties"], [912, "properties"], [913, "properties"], [915, "properties"], [916, "properties"], [917, "properties"], [918, "properties"], [919, "properties"], [920, "properties"], [946, "properties"], [947, "properties"], [948, "properties"], [949, "properties"], [950, "properties"], [951, "properties"], [952, "properties"], [954, "properties"], [955, "properties"], [956, "properties"], [957, "properties"], [958, "properties"], [959, "properties"], [960, "properties"], [961, "properties"], [962, "properties"], [963, "properties"], [964, "properties"], [965, "properties"], [966, "properties"], [968, "properties"], [969, "properties"], [996, "properties"], [997, "properties"], [998, "properties"], [999, "properties"], [1000, "properties"], [1002, "properties"], [1003, "properties"], [1004, "properties"], [1005, "properties"], [1006, "properties"], [1007, "properties"], [1008, "properties"], [1009, "properties"], [1010, "properties"], [1011, "properties"], [1012, "properties"], [1013, "properties"], [1014, "properties"], [1015, "properties"], [1016, "properties"], [1017, "properties"], [1018, "properties"], [1019, "properties"], [1020, "properties"], [1021, "properties"], [1022, "properties"], [1023, "properties"], [1025, "properties"], [1062, "properties"], [1063, "properties"], [1064, "properties"], [1065, "properties"], [1066, "properties"], [1068, "properties"], [1069, "properties"], [1070, "properties"], [1071, "properties"], [1072, "properties"], [1073, "properties"], [1074, "properties"], [1075, "properties"], [1076, "properties"], [1077, "properties"], [1078, "properties"], [1079, "properties"], [1080, "properties"], [1081, "properties"], [1082, "properties"], [1083, "properties"], [1084, "properties"], [1085, "properties"], [1086, "properties"], [1087, "properties"], [1088, "properties"], [1089, "properties"], [1090, "properties"], [1091, "properties"], [1092, "properties"], [1093, "properties"], [1094, "properties"], [1096, "properties"], [1097, "properties"]], "association": [[31, "association"]], "Slot: associations": [[32, "slot-associations"]], "Slot: associations_for_subjects_in_common": [[33, "slot-associations-for-subjects-in-common"]], "Slot: closure_delta": [[34, "slot-closure-delta"]], "Slot: closure_information_content_delta": [[35, "slot-closure-information-content-delta"]], "Slot: closure_predicates": [[36, "slot-closure-predicates"]], "Slot: comments": [[37, "slot-comments"], [424, "slot-comments"], [948, "slot-comments"]], "Slot: core_triple": [[38, "slot-core-triple"]], "Slot: creation_date": [[39, "slot-creation-date"], [568, "slot-creation-date"]], "Slot: date": [[40, "slot-date"], [572, "slot-date"]], "Slot: denormalized_slot": [[41, "slot-denormalized-slot"]], "Mixin Usage": [[41, "mixin-usage"], [42, "mixin-usage"], [164, "mixin-usage"], [165, "mixin-usage"], [173, "mixin-usage"], [179, "mixin-usage"], [182, "mixin-usage"], [191, "mixin-usage"], [196, "mixin-usage"], [197, "mixin-usage"], [481, "mixin-usage"], [489, "mixin-usage"], [497, "mixin-usage"], [502, "mixin-usage"], [503, "mixin-usage"], [504, "mixin-usage"], [505, "mixin-usage"], [506, "mixin-usage"], [507, "mixin-usage"], [508, "mixin-usage"], [526, "mixin-usage"], [532, "mixin-usage"], [536, "mixin-usage"], [537, "mixin-usage"], [630, "mixin-usage"], [978, "mixin-usage"]], "Slot: diff_slot": [[42, "slot-diff-slot"]], "Slot: evidence_type": [[43, "slot-evidence-type"]], "Slot: group_object": [[44, "slot-group-object"]], "Slot: include_association_attributes": [[45, "slot-include-association-attributes"]], "OAK Association Data Model": [[46, "oak-association-data-model"]], "Classes": [[46, "classes"], [125, "classes"], [163, "classes"], [234, "classes"], [279, "classes"], [331, "classes"], [437, "classes"], [613, "classes"], [717, "classes"], [780, "classes"], [882, "classes"], [953, "classes"], [1001, "classes"], [1067, "classes"]], "Enumerations": [[46, "enumerations"], [125, "enumerations"], [163, "enumerations"], [234, "enumerations"], [279, "enumerations"], [331, "enumerations"], [437, "enumerations"], [613, "enumerations"], [717, "enumerations"], [780, "enumerations"], [882, "enumerations"], [953, "enumerations"], [1001, "enumerations"], [1067, "enumerations"]], "Types": [[46, "types"], [125, "types"], [163, "types"], [234, "types"], [279, "types"], [331, "types"], [437, "types"], [613, "types"], [717, "types"], [780, "types"], [882, "types"], [953, "types"], [1001, "types"], [1067, "types"]], "Slot: is_creation": [[47, "slot-is-creation"]], "Slot: is_deletion": [[48, "slot-is-deletion"]], "Slot: is_generalization": [[49, "slot-is-generalization"]], "Slot: is_migration": [[50, "slot-is-migration"]], "Slot: is_specialization": [[51, "slot-is-specialization"]], "Slot: modification_date": [[52, "slot-modification-date"]], "Slot: negated": [[53, "slot-negated"]], "Slot: new_date": [[54, "slot-new-date"]], "Slot: new_object": [[55, "slot-new-object"]], "Slot: new_predicate": [[56, "slot-new-predicate"]], "Slot: number_subject_unique_to_entity1": [[57, "slot-number-subject-unique-to-entity1"]], "Slot: number_subject_unique_to_entity2": [[58, "slot-number-subject-unique-to-entity2"]], "Slot: number_subjects_in_common": [[59, "slot-number-subjects-in-common"]], "Slot: object": [[60, "slot-object"], [179, "slot-object"], [638, "slot-object"], [1073, "slot-object"]], "Slot: object1": [[61, "slot-object1"]], "Slot: object1_label": [[62, "slot-object1-label"]], "Slot: object2": [[63, "slot-object2"]], "Slot: object2_label": [[64, "slot-object2-label"]], "Slot: object_closure": [[65, "slot-object-closure"]], "Slot: object_closure_label": [[66, "slot-object-closure-label"]], "Slot: object_label": [[67, "slot-object-label"], [726, "slot-object-label"], [795, "slot-object-label"], [1012, "slot-object-label"]], "Slot: old_date": [[68, "slot-old-date"]], "Slot: old_object": [[69, "slot-old-object"]], "Slot: old_object_obsolete": [[70, "slot-old-object-obsolete"]], "Slot: old_predicate": [[71, "slot-old-predicate"]], "Slot: original_object": [[72, "slot-original-object"]], "Slot: original_predicate": [[73, "slot-original-predicate"]], "Slot: original_subject": [[74, "slot-original-subject"]], "Slot: predicate": [[75, "slot-predicate"], [182, "slot-predicate"], [286, "slot-predicate"], [351, "slot-predicate"], [648, "slot-predicate"], [957, "slot-predicate"], [1077, "slot-predicate"]], "Slot: predicate_label": [[76, "slot-predicate-label"]], "Slot: preserve_negated_associations": [[77, "slot-preserve-negated-associations"]], "Slot: primary_knowledge_source": [[78, "slot-primary-knowledge-source"]], "Slot: property_values": [[79, "slot-property-values"]], "Slot: publication_is_added": [[80, "slot-publication-is-added"]], "Slot: publication_is_deleted": [[81, "slot-publication-is-deleted"]], "Slot: publications": [[82, "slot-publications"]], "Slot: sub_groups": [[83, "slot-sub-groups"]], "Slot: subject": [[84, "slot-subject"], [197, "slot-subject"], [965, "slot-subject"], [1086, "slot-subject"]], "Slot: subject_closure": [[85, "slot-subject-closure"]], "Slot: subject_closure_label": [[86, "slot-subject-closure-label"]], "Slot: subject_label": [[87, "slot-subject-label"], [805, "slot-subject-label"], [1019, "slot-subject-label"]], "Slot: subjects_in_common": [[88, "slot-subjects-in-common"]], "Slot: summary_group": [[89, "slot-summary-group"]], "Slot: supporting_objects": [[90, "slot-supporting-objects"]], "Class: ClassEnrichmentConfiguration": [[92, "class-classenrichmentconfiguration"]], "Class: ClassEnrichmentResult": [[93, "class-classenrichmentresult"]], "Class: ClassEnrichmentResultSet": [[94, "class-classenrichmentresultset"]], "Type: Position": [[108, "type-position"], [985, "type-position"]], "Enum: SortFieldEnum": [[109, "enum-sortfieldenum"]], "Permissible Values": [[109, "permissible-values"], [140, "permissible-values"], [148, "permissible-values"], [214, "permissible-values"], [273, "permissible-values"], [324, "permissible-values"], [397, "permissible-values"], [401, "permissible-values"], [404, "permissible-values"], [406, "permissible-values"], [407, "permissible-values"], [495, "permissible-values"], [676, "permissible-values"], [685, "permissible-values"], [694, "permissible-values"], [698, "permissible-values"], [922, "permissible-values"], [993, "permissible-values"], [1051, "permissible-values"], [1061, "permissible-values"]], "Slot: ancestor_of_more_informative_result": [[115, "slot-ancestor-of-more-informative-result"]], "Slot: background_count": [[116, "slot-background-count"]], "Slot: background_total": [[117, "slot-background-total"]], "class-enrichment": [[118, "class-enrichment"]], "Slot: class_id": [[119, "slot-class-id"]], "Slot: class_label": [[120, "slot-class-label"]], "Slot: descendant_of_more_informative_result": [[121, "slot-descendant-of-more-informative-result"]], "Slot: direction": [[122, "slot-direction"]], "Slot: false_discovery_rate": [[123, "slot-false-discovery-rate"]], "Slot: fold_enrichment": [[124, "slot-fold-enrichment"]], "Class Enrichment Datamodel": [[125, "class-enrichment-datamodel"]], "Slot: p_value": [[126, "slot-p-value"]], "Slot: p_value_adjusted": [[127, "slot-p-value-adjusted"]], "Slot: p_value_cutoff": [[128, "slot-p-value-cutoff"]], "Slot: probability": [[129, "slot-probability"]], "Slot: rank": [[130, "slot-rank"], [732, "slot-rank"]], "Slot: results": [[131, "slot-results"], [183, "slot-results"], [734, "slot-results"], [1082, "slot-results"]], "Slot: sample_count": [[132, "slot-sample-count"]], "Slot: sample_total": [[133, "slot-sample-total"]], "Enum: DiffCategory": [[140, "enum-diffcategory"]], "Type: EntityReference": [[142, "type-entityreference"]], "Type: Label": [[147, "type-label"]], "Enum: MappingCardinalityEnum": [[148, "enum-mappingcardinalityenum"]], "Position": [[152, "position"]], "Class: RelationalDiff": [[153, "class-relationaldiff"]], "Type: Source": [[154, "type-source"]], "Class: StructureDiffResultSet": [[157, "class-structurediffresultset"]], "Slot: category": [[161, "slot-category"], [557, "slot-category"], [1062, "slot-category"]], "cross-ontology-diff": [[162, "cross-ontology-diff"]], "Cross-Ontology Diff": [[163, "cross-ontology-diff"]], "Slot: is_functional": [[164, "slot-is-functional"]], "Slot: label": [[165, "slot-label"], [439, "slot-label"], [625, "slot-label"], [784, "slot-label"], [885, "slot-label"], [954, "slot-label"]], "Slot: left_object_id": [[166, "slot-left-object-id"]], "Slot: left_object_is_functional": [[167, "slot-left-object-is-functional"]], "Slot: left_object_label": [[168, "slot-left-object-label"]], "Slot: left_object_name": [[169, "slot-left-object-name"]], "Slot: left_predicate_id": [[170, "slot-left-predicate-id"]], "Slot: left_predicate_label": [[171, "slot-left-predicate-label"]], "Slot: left_predicate_name": [[172, "slot-left-predicate-name"]], "Slot: left_side": [[173, "slot-left-side"]], "Slot: left_source": [[174, "slot-left-source"]], "Slot: left_subject_id": [[175, "slot-left-subject-id"]], "Slot: left_subject_is_functional": [[176, "slot-left-subject-is-functional"]], "Slot: left_subject_label": [[177, "slot-left-subject-label"]], "Slot: left_subject_name": [[178, "slot-left-subject-name"]], "Slot: object_mapping_cardinality": [[180, "slot-object-mapping-cardinality"]], "Slot: object_mapping_predicate": [[181, "slot-object-mapping-predicate"]], "Slot: right_intermediate_ids": [[184, "slot-right-intermediate-ids"]], "Slot: right_object_id": [[185, "slot-right-object-id"]], "Slot: right_object_label": [[186, "slot-right-object-label"]], "Slot: right_object_name": [[187, "slot-right-object-name"]], "Slot: right_predicate_ids": [[188, "slot-right-predicate-ids"]], "Slot: right_predicate_labels": [[189, "slot-right-predicate-labels"]], "Slot: right_predicate_names": [[190, "slot-right-predicate-names"]], "Slot: right_side": [[191, "slot-right-side"]], "Slot: right_source": [[192, "slot-right-source"]], "Slot: right_subject_id": [[193, "slot-right-subject-id"]], "Slot: right_subject_label": [[194, "slot-right-subject-label"]], "Slot: right_subject_name": [[195, "slot-right-subject-name"]], "Slot: side": [[196, "slot-side"]], "Slot: subject_mapping_cardinality": [[198, "slot-subject-mapping-cardinality"]], "Slot: subject_mapping_predicate": [[199, "slot-subject-mapping-predicate"]], "types": [[200, "types"], [293, "types"], [370, "types"], [469, "types"], [669, "types"], [741, "types"], [810, "types"], [914, "types"], [1026, "types"], [1095, "types"]], "FunOwl": [[201, "funowl"]], "Datamodels": [[202, "datamodels"], [1176, "datamodels"]], "Contents:": [[202, null], [1103, null], [1111, null], [1120, null], [1127, null], [1128, null], [1143, null], [1152, null], [1164, null], [1170, null]], "Class: ItemList": [[212, "class-itemlist"]], "Aliases": [[212, "aliases"], [213, "aliases"], [381, "aliases"], [386, "aliases"], [393, "aliases"], [394, "aliases"], [405, "aliases"], [433, "aliases"], [441, "aliases"], [443, "aliases"], [447, "aliases"], [460, "aliases"], [462, "aliases"], [472, "aliases"], [473, "aliases"], [488, "aliases"], [522, "aliases"], [541, "aliases"], [578, "aliases"], [781, "aliases"]], "Class: ItemListCollection": [[213, "class-itemlistcollection"]], "Enum: ItemListOrderType": [[214, "enum-itemlistordertype"]], "Class: ListItem": [[217, "class-listitem"]], "Class: Thing": [[223, "class-thing"], [542, "class-thing"]], "Slot: additionalType": [[227, "slot-additionaltype"]], "Slot: categories": [[228, "slot-categories"], [707, "slot-categories"], [997, "slot-categories"]], "Slot: description": [[229, "slot-description"], [327, "slot-description"], [871, "slot-description"], [950, "slot-description"]], "Slot: elementId": [[230, "slot-elementid"]], "Slot: id": [[231, "slot-id"], [436, "slot-id"], [608, "slot-id"], [779, "slot-id"], [881, "slot-id"], [952, "slot-id"], [999, "slot-id"], [1066, "slot-id"]], "Slot: idType": [[232, "slot-idtype"]], "Examples": [[232, "examples"], [245, "examples"], [1159, "examples"], [1182, "examples"]], "Slot: identifiers": [[233, "slot-identifiers"]], "Item List Data Model": [[234, "item-list-data-model"]], "Slot: item": [[235, "slot-item"]], "itemList": [[236, "itemlist"]], "Slot: itemListElements": [[237, "slot-itemlistelements"]], "Slot: itemLists": [[238, "slot-itemlists"]], "Slot: itemMetadataMap": [[239, "slot-itemmetadatamap"]], "Slot: keywords": [[240, "slot-keywords"]], "Slot: name": [[241, "slot-name"], [282, "slot-name"], [341, "slot-name"]], "Slot: numberOfItems": [[242, "slot-numberofitems"]], "Slot: position": [[243, "slot-position"]], "Slot: previousItem": [[244, "slot-previousitem"]], "Slot: type": [[245, "slot-type"], [292, "slot-type"], [369, "slot-type"], [468, "slot-type"], [668, "slot-type"], [1093, "slot-type"]], "Slot: url": [[246, "slot-url"], [671, "slot-url"], [1096, "slot-url"]], "Slot: wasGeneratedBy": [[247, "slot-wasgeneratedby"]], "KGCL": [[248, "kgcl"]], "Class: Activity": [[249, "class-activity"], [294, "class-activity"]], "Class: Any": [[250, "class-any"], [295, "class-any"], [484, "class-any"]], "Class: LexicalGrouping": [[262, "class-lexicalgrouping"], [307, "class-lexicalgrouping"]], "Class: LexicalIndex": [[263, "class-lexicalindex"], [308, "class-lexicalindex"]], "Class: LexicalTransformation": [[264, "class-lexicaltransformation"], [309, "class-lexicaltransformation"]], "Class: LexicalTransformationPipeline": [[265, "class-lexicaltransformationpipeline"], [310, "class-lexicaltransformationpipeline"]], "Class: RelationshipToTerm": [[269, "class-relationshiptoterm"], [318, "class-relationshiptoterm"]], "Enum: TransformationType": [[273, "enum-transformationtype"], [324, "enum-transformationtype"], [993, "enum-transformationtype"]], "Slot: element": [[276, "slot-element"], [328, "slot-element"]], "Slot: element_term": [[277, "slot-element-term"], [329, "slot-element-term"]], "Slot: groupings": [[278, "slot-groupings"], [330, "slot-groupings"]], "Lexical Index": [[279, "lexical-index"]], "lexical-index": [[280, "lexical-index"], [333, "lexical-index"]], "lexican-index": [[281, "lexican-index"], [334, "lexican-index"]], "Slot: params": [[283, "slot-params"], [346, "slot-params"]], "Slot: pipeline": [[284, "slot-pipeline"], [347, "slot-pipeline"]], "Slot: pipelines": [[285, "slot-pipelines"], [348, "slot-pipelines"]], "Slot: relationships": [[287, "slot-relationships"], [356, "slot-relationships"]], "Slot: source": [[288, "slot-source"], [359, "slot-source"], [660, "slot-source"], [1085, "slot-source"]], "Slot: synonymized": [[289, "slot-synonymized"], [362, "slot-synonymized"]], "Slot: term": [[290, "slot-term"], [364, "slot-term"]], "Slot: transformations": [[291, "slot-transformations"], [367, "slot-transformations"]], "Class: MappingRule": [[311, "class-mappingrule"]], "Class: MappingRuleCollection": [[312, "class-mappingrulecollection"]], "Class: Postcondition": [[316, "class-postcondition"]], "Class: Precondition": [[317, "class-precondition"]], "Class: Synonymizer": [[321, "class-synonymizer"]], "Class: Test": [[322, "class-test"]], "Mapping Rules Datamodel": [[331, "mapping-rules-datamodel"]], "Slot: input": [[332, "slot-input"]], "mapping-rules": [[335, "mapping-rules"]], "mapping-rules-datamodel": [[336, "mapping-rules-datamodel"]], "Slot: mapping_source_one_of": [[337, "slot-mapping-source-one-of"]], "Slot: match": [[338, "slot-match"], [629, "slot-match"]], "Slot: match_scope": [[339, "slot-match-scope"]], "Slot: minimum_confidence": [[340, "slot-minimum-confidence"]], "Slot: object_match_field_one_of": [[342, "slot-object-match-field-one-of"]], "Slot: object_source_one_of": [[343, "slot-object-source-one-of"]], "Slot: oneway": [[344, "slot-oneway"]], "Slot: output": [[345, "slot-output"]], "Slot: postconditions": [[349, "slot-postconditions"]], "Slot: preconditions": [[350, "slot-preconditions"]], "Slot: predicate_id": [[352, "slot-predicate-id"], [1015, "slot-predicate-id"], [1078, "slot-predicate-id"]], "Slot: predicate_id_one_of": [[353, "slot-predicate-id-one-of"]], "Slot: prefix": [[354, "slot-prefix"], [452, "slot-prefix"], [902, "slot-prefix"]], "Slot: qualifier": [[355, "slot-qualifier"]], "Slot: replacement": [[357, "slot-replacement"]], "Slot: rules": [[358, "slot-rules"]], "Slot: subject_match_field_one_of": [[360, "slot-subject-match-field-one-of"]], "Slot: subject_source_one_of": [[361, "slot-subject-source-one-of"]], "Slot: synonymizer": [[363, "slot-synonymizer"]], "Slot: tests": [[365, "slot-tests"]], "Slot: the_rule": [[366, "slot-the-rule"]], "Slot: transformations_included_in": [[368, "slot-transformations-included-in"]], "Slot: weight": [[371, "slot-weight"]], "See Also": [[371, "see-also"], [400, "see-also"], [413, "see-also"], [418, "see-also"], [434, "see-also"], [436, "see-also"], [460, "see-also"], [477, "see-also"], [478, "see-also"], [495, "see-also"], [596, "see-also"]], "Class: Axiom": [[372, "class-axiom"], [485, "class-axiom"]], "Class: BasicPropertyValue": [[373, "class-basicpropertyvalue"]], "Class: DefinitionPropertyValue": [[380, "class-definitionpropertyvalue"]], "Class: DisjointClassExpressionsAxiom": [[381, "class-disjointclassexpressionsaxiom"]], "Class: DomainRangeAxiom": [[382, "class-domainrangeaxiom"]], "Class: Edge": [[384, "class-edge"]], "Class: EquivalentNodesSet": [[385, "class-equivalentnodesset"]], "Class: ExistentialRestrictionExpression": [[386, "class-existentialrestrictionexpression"]], "Annotations": [[386, "annotations"], [393, "annotations"], [847, "annotations"], [849, "annotations"], [855, "annotations"], [856, "annotations"], [857, "annotations"], [860, "annotations"], [861, "annotations"], [862, "annotations"], [868, "annotations"], [869, "annotations"], [870, "annotations"], [873, "annotations"], [874, "annotations"], [876, "annotations"], [883, "annotations"], [886, "annotations"], [887, "annotations"], [888, "annotations"], [889, "annotations"], [890, "annotations"], [892, "annotations"], [893, "annotations"], [894, "annotations"], [896, "annotations"], [898, "annotations"], [899, "annotations"], [904, "annotations"], [911, "annotations"], [912, "annotations"], [915, "annotations"]], "Class: Graph": [[388, "class-graph"]], "Class: GraphDocument": [[389, "class-graphdocument"]], "Class: LogicalDefinitionAxiom": [[393, "class-logicaldefinitionaxiom"]], "Class: Meta": [[394, "class-meta"]], "Class: Node": [[396, "class-node"], [1043, "class-node"]], "Enum: NodeTypeEnum": [[397, "enum-nodetypeenum"]], "Type: OboIdentifierString": [[400, "type-oboidentifierstring"]], "PredsEnum": [[401, "predsenum"]], "Class: PrefixDeclaration": [[402, "class-prefixdeclaration"]], "Class: PropertyChainAxiom": [[403, "class-propertychainaxiom"]], "Enum: PropertyTypeEnum": [[404, "enum-propertytypeenum"]], "Enum: ScopeEnum": [[406, "enum-scopeenum"]], "ScopesEnum": [[407, "scopesenum"]], "Class: SubsetDefinition": [[410, "class-subsetdefinition"]], "Class: SynonymPropertyValue": [[411, "class-synonympropertyvalue"]], "Class: SynonymTypeDefinition": [[412, "class-synonymtypedefinition"]], "Type: SynonymTypeIdentifierString": [[413, "type-synonymtypeidentifierstring"]], "Class: XrefPropertyValue": [[417, "class-xrefpropertyvalue"]], "Type: XrefString": [[418, "type-xrefstring"]], "Slot: allValuesFromEdges": [[419, "slot-allvaluesfromedges"]], "Slot: basicPropertyValues": [[420, "slot-basicpropertyvalues"]], "Slot: chainPredicateIds": [[421, "slot-chainpredicateids"]], "Slot: classExpressions": [[422, "slot-classexpressions"]], "Slot: classIds": [[423, "slot-classids"]], "Slot: definedClassId": [[425, "slot-definedclassid"]], "Slot: definition": [[426, "slot-definition"], [575, "slot-definition"]], "Slot: deprecated": [[427, "slot-deprecated"], [578, "slot-deprecated"]], "Slot: disjointClassExpressionsAxioms": [[428, "slot-disjointclassexpressionsaxioms"]], "Slot: domainClassIds": [[429, "slot-domainclassids"]], "Slot: domainRangeAxioms": [[430, "slot-domainrangeaxioms"]], "Slot: edges": [[431, "slot-edges"]], "Slot: equivalentNodesSets": [[432, "slot-equivalentnodessets"]], "Slot: fillerId": [[433, "slot-fillerid"]], "Slot: genusIds": [[434, "slot-genusids"]], "Slot: graphs": [[435, "slot-graphs"]], "Obographs Datamodel": [[437, "obographs-datamodel"]], "Slot: isExact": [[438, "slot-isexact"]], "Slot: lang": [[440, "slot-lang"]], "Slot: lbl": [[441, "slot-lbl"]], "Slot: logicalDefinitionAxioms": [[442, "slot-logicaldefinitionaxioms"]], "Slot: meta": [[443, "slot-meta"]], "Slot: namespace": [[444, "slot-namespace"]], "Slot: nodeIds": [[445, "slot-nodeids"]], "Slot: nodes": [[446, "slot-nodes"]], "Slot: obj": [[447, "slot-obj"]], "obographs_datamodel": [[448, "obographs-datamodel"]], "obographs_linkml_model": [[449, "obographs-linkml-model"]], "Slot: pred": [[450, "slot-pred"]], "Slot: predicateId": [[451, "slot-predicateid"]], "Slot: prefixes": [[453, "slot-prefixes"]], "Slot: propertyChainAxioms": [[454, "slot-propertychainaxioms"]], "Slot: propertyId": [[455, "slot-propertyid"]], "Slot: propertyType": [[456, "slot-propertytype"]], "Slot: rangeClassIds": [[457, "slot-rangeclassids"]], "Slot: representativeNodeId": [[458, "slot-representativenodeid"]], "Slot: representitiveNodeId": [[459, "slot-representitivenodeid"]], "Slot: restrictions": [[460, "slot-restrictions"]], "Slot: scope": [[461, "slot-scope"]], "Slot: sub": [[462, "slot-sub"]], "Slot: subsetDefinitions": [[463, "slot-subsetdefinitions"]], "Slot: subsets": [[464, "slot-subsets"]], "Slot: synonymType": [[465, "slot-synonymtype"]], "Slot: synonymTypeDefinitions": [[466, "slot-synonymtypedefinitions"]], "Slot: synonyms": [[467, "slot-synonyms"]], "Slot: unionEquivalentTo": [[470, "slot-unionequivalentto"]], "Slot: unionEquivalentToExpression": [[471, "slot-unionequivalenttoexpression"]], "Slot: val": [[472, "slot-val"]], "Slot: valType": [[473, "slot-valtype"]], "Slot: version": [[474, "slot-version"], [917, "slot-version"]], "Slot: xrefs": [[475, "slot-xrefs"]], "Class: Agent": [[476, "class-agent"], [813, "class-agent"]], "Valid ID Prefixes": [[476, "valid-id-prefixes"], [509, "valid-id-prefixes"], [936, "valid-id-prefixes"], [940, "valid-id-prefixes"]], "Subset: AllotropePermittedProfile": [[477, "subset-allotropepermittedprofile"]], "Slots in subset": [[477, "slots-in-subset"], [478, "slots-in-subset"], [499, "slots-in-subset"], [501, "slots-in-subset"], [528, "slots-in-subset"], [529, "slots-in-subset"]], "Subset: AllotropeRequiredProfile": [[478, "subset-allotroperequiredprofile"]], "Class: Annotation": [[479, "class-annotation"]], "Class: AnnotationProperty": [[480, "class-annotationproperty"]], "Class: AnnotationPropertyMixin": [[481, "class-annotationpropertymixin"]], "Class: Anonymous": [[482, "class-anonymous"]], "Class: AnonymousClassExpression": [[483, "class-anonymousclassexpression"]], "Type: CURIELiteral": [[487, "type-curieliteral"]], "Class: Class": [[488, "class-class"]], "Class: ClassExpression": [[489, "class-classexpression"]], "Enum: DefinitionConstraintComponent": [[495, "enum-definitionconstraintcomponent"]], "Class: Expression": [[497, "class-expression"]], "Subset: GoPermittedProfile": [[499, "subset-gopermittedprofile"]], "Subset: GoRecommendedProfile": [[500, "subset-gorecommendedprofile"]], "Subset: GoRequiredProfile": [[501, "subset-gorequiredprofile"]], "Class: HasCategory": [[502, "class-hascategory"]], "Class: HasLifeCycle": [[503, "class-haslifecycle"]], "Class: HasMappings": [[504, "class-hasmappings"]], "Class: HasMinimalMetadata": [[505, "class-hasminimalmetadata"]], "Class: HasProvenance": [[506, "class-hasprovenance"]], "Class: HasSynonyms": [[507, "class-hassynonyms"]], "Class: HasUserInformation": [[508, "class-hasuserinformation"]], "Class: HomoSapiens": [[509, "class-homosapiens"]], "Slot: IEDB_alternative_term": [[510, "slot-iedb-alternative-term"]], "Slot: ISA_alternative_term": [[511, "slot-isa-alternative-term"]], "Class: Image": [[512, "class-image"]], "Type: IriType": [[514, "type-iritype"]], "Type: LabelType": [[517, "type-labeltype"]], "Slot: NCIT_definition_source": [[518, "slot-ncit-definition-source"]], "Slot: NCIT_term_source": [[519, "slot-ncit-term-source"]], "Slot: NCIT_term_type": [[520, "slot-ncit-term-type"]], "Class: NamedIndividual": [[521, "class-namedindividual"]], "Class: NamedObject": [[522, "class-namedobject"]], "Type: NarrativeText": [[523, "type-narrativetext"]], "Class: NotObsoleteAspect": [[526, "class-notobsoleteaspect"]], "Slot: OBO_foundry_unique_label": [[527, "slot-obo-foundry-unique-label"]], "TODOs": [[527, "todos"], [549, "todos"], [552, "todos"], [553, "todos"], [561, "todos"], [568, "todos"], [576, "todos"], [580, "todos"], [582, "todos"], [585, "todos"], [595, "todos"], [603, "todos"], [615, "todos"], [616, "todos"], [649, "todos"], [652, "todos"], [654, "todos"], [655, "todos"], [659, "todos"], [666, "todos"], [693, "todos"], [771, "todos"], [957, "todos"], [1047, "todos"], [1059, "todos"]], "Subset: ObiPermittedProfile": [[528, "subset-obipermittedprofile"]], "Subset: ObiRequiredProfile": [[529, "subset-obirequiredprofile"]], "Class: ObjectProperty": [[530, "class-objectproperty"]], "Class: ObsoleteAspect": [[532, "class-obsoleteaspect"]], "Class: Ontology": [[533, "class-ontology"], [835, "class-ontology"]], "Ontology-Metadata": [[534, "ontology-metadata"]], "Class: Property": [[535, "class-property"]], "Class: PropertyExpression": [[536, "class-propertyexpression"]], "Class: Restriction": [[537, "class-restriction"]], "Class: Subset": [[540, "class-subset"]], "Class: Term": [[541, "class-term"], [942, "class-term"]], "Type: TidyString": [[543, "type-tidystring"]], "Class: TransitiveProperty": [[545, "class-transitiveproperty"]], "Type: URLLiteral": [[546, "type-urlliteral"]], "Slot: allValuesFrom": [[549, "slot-allvaluesfrom"]], "Slot: alternative_term": [[550, "slot-alternative-term"]], "Slot: annotatedProperty": [[551, "slot-annotatedproperty"]], "Slot: annotatedSource": [[552, "slot-annotatedsource"]], "Slot: annotatedTarget": [[553, "slot-annotatedtarget"]], "Slot: annotations": [[554, "slot-annotations"], [996, "slot-annotations"]], "Slot: broadMatch": [[555, "slot-broadmatch"]], "Slot: cardinality": [[556, "slot-cardinality"]], "Slot: changeNote": [[558, "slot-changenote"]], "Slot: closeMatch": [[559, "slot-closematch"]], "Slot: comment": [[560, "slot-comment"]], "Slot: complementOf": [[561, "slot-complementof"]], "Slot: conformsTo": [[562, "slot-conformsto"]], "Slot: consider": [[563, "slot-consider"]], "Slot: contributor": [[564, "slot-contributor"]], "Slot: core_property": [[565, "slot-core-property"]], "Slot: created": [[566, "slot-created"]], "Slot: created_by": [[567, "slot-created-by"]], "Slot: creator": [[569, "slot-creator"]], "Slot: curator_note": [[570, "slot-curator-note"]], "Slot: database_cross_reference": [[571, "slot-database-cross-reference"]], "Slot: date_retrieved": [[573, "slot-date-retrieved"]], "Slot: defaultLanguage": [[574, "slot-defaultlanguage"]], "Slot: definition_source": [[576, "slot-definition-source"]], "Slot: depicted_by": [[577, "slot-depicted-by"]], "Slot: disconnected_from": [[579, "slot-disconnected-from"]], "Slot: disjointWith": [[580, "slot-disjointwith"]], "Slot: distinctMembers": [[581, "slot-distinctmembers"]], "Slot: domain": [[582, "slot-domain"]], "Slot: editor_note": [[583, "slot-editor-note"]], "Slot: editor_preferred_term": [[584, "slot-editor-preferred-term"]], "Slot: equivalentClass": [[585, "slot-equivalentclass"]], "Slot: equivalentProperty": [[586, "slot-equivalentproperty"]], "Slot: evidence": [[587, "slot-evidence"]], "Slot: exactMatch": [[588, "slot-exactmatch"]], "Slot: example_of_usage": [[589, "slot-example-of-usage"]], "Slot: excluded_axiom": [[590, "slot-excluded-axiom"]], "Slot: excluded_from_QC_check": [[591, "slot-excluded-from-qc-check"]], "Slot: excluded_subClassOf": [[592, "slot-excluded-subclassof"]], "Slot: excluded_synonym": [[593, "slot-excluded-synonym"]], "Slot: external_ontology": [[594, "slot-external-ontology"]], "Slot: hasValue": [[595, "slot-hasvalue"]], "Slot: has_alternative_id": [[596, "slot-has-alternative-id"]], "Slot: has_axiom_label": [[597, "slot-has-axiom-label"]], "Slot: has_broad_synonym": [[598, "slot-has-broad-synonym"]], "Slot: has_curation_status": [[599, "slot-has-curation-status"]], "Slot: has_exact_synonym": [[600, "slot-has-exact-synonym"]], "Slot: has_narrow_synonym": [[601, "slot-has-narrow-synonym"]], "Slot: has_obo_namespace": [[602, "slot-has-obo-namespace"]], "Slot: has_obsolescence_reason": [[603, "slot-has-obsolescence-reason"]], "Slot: has_ontology_root_term": [[604, "slot-has-ontology-root-term"]], "Slot: has_rank": [[605, "slot-has-rank"]], "Slot: has_related_synonym": [[606, "slot-has-related-synonym"]], "Slot: has_synonym_type": [[607, "slot-has-synonym-type"]], "Slot: image": [[609, "slot-image"]], "Slot: imported_from": [[610, "slot-imported-from"]], "Slot: imports": [[611, "slot-imports"]], "Slot: in_subset": [[612, "slot-in-subset"]], "Ontology Metadata Ontology Schema": [[613, "ontology-metadata-ontology-schema"]], "Slot: informative_property": [[614, "slot-informative-property"]], "Slot: intersectionOf": [[615, "slot-intersectionof"]], "Slot: inverseOf": [[616, "slot-inverseof"]], "Slot: isDefinedBy": [[617, "slot-isdefinedby"]], "Slot: is_a_defining_property_chain_axiom": [[618, "slot-is-a-defining-property-chain-axiom"]], "Slot: is_a_defining_property_chain_axiom_where_second_argument_is_reflexive": [[619, "slot-is-a-defining-property-chain-axiom-where-second-argument-is-reflexive"]], "Slot: is_class_level": [[620, "slot-is-class-level"]], "Slot: is_cyclic": [[621, "slot-is-cyclic"]], "Slot: is_inferred": [[622, "slot-is-inferred"]], "Slot: is_metadata_tag": [[623, "slot-is-metadata-tag"]], "Slot: is_transitive": [[624, "slot-is-transitive"]], "Slot: language": [[626, "slot-language"]], "Slot: license": [[627, "slot-license"]], "Slot: logical_predicate": [[628, "slot-logical-predicate"]], "Slot: match_aspect": [[630, "slot-match-aspect"]], "Slot: maxQualifiedCardinality": [[631, "slot-maxqualifiedcardinality"]], "Slot: members": [[632, "slot-members"]], "Slot: minCardinality": [[633, "slot-mincardinality"]], "Slot: minQualifiedCardinality": [[634, "slot-minqualifiedcardinality"]], "Slot: narrowMatch": [[635, "slot-narrowmatch"]], "Slot: never_in_taxon": [[636, "slot-never-in-taxon"]], "Slot: notes": [[637, "slot-notes"]], "Slot: oboInOwl_id": [[639, "slot-oboinowl-id"]], "Slot: oboInOwl_ontology": [[640, "slot-oboinowl-ontology"]], "Slot: obsoletion_related_property": [[641, "slot-obsoletion-related-property"]], "omo-schema": [[642, "omo-schema"]], "Slot: onClass": [[643, "slot-onclass"]], "Slot: onProperty": [[644, "slot-onproperty"]], "Slot: oneOf": [[645, "slot-oneof"]], "Slot: ontology_term_requester": [[646, "slot-ontology-term-requester"]], "Slot: page": [[647, "slot-page"]], "Slot: propertyChainAxiom": [[649, "slot-propertychainaxiom"]], "Slot: provenance_property": [[650, "slot-provenance-property"]], "Slot: qualifiedCardinality": [[651, "slot-qualifiedcardinality"]], "Slot: range": [[652, "slot-range"]], "Slot: reification_predicate": [[653, "slot-reification-predicate"]], "Slot: sameAs": [[654, "slot-sameas"]], "Slot: seeAlso": [[655, "slot-seealso"]], "Slot: shortcut_annotation_property": [[656, "slot-shortcut-annotation-property"]], "Slot: shorthand": [[657, "slot-shorthand"]], "Slot: should_conform_to": [[658, "slot-should-conform-to"]], "Slot: someValuesFrom": [[659, "slot-somevaluesfrom"]], "Slot: subClassOf": [[661, "slot-subclassof"]], "Slot: synonym": [[662, "slot-synonym"]], "Slot: temporal_interpretation": [[663, "slot-temporal-interpretation"]], "Slot: term_editor": [[664, "slot-term-editor"]], "Slot: term_replaced_by": [[665, "slot-term-replaced-by"]], "Slot: term_tracker_item": [[666, "slot-term-tracker-item"]], "Slot: title": [[667, "slot-title"], [913, "slot-title"]], "Slot: unionOf": [[670, "slot-unionof"]], "Slot: versionIRI": [[672, "slot-versioniri"]], "Slot: versionInfo": [[673, "slot-versioninfo"]], "Slot: version_property": [[674, "slot-version-property"]], "Enum: BooleanOperator": [[676, "enum-booleanoperator"]], "Class: ComplexQuery": [[677, "class-complexquery"]], "Enum: GraphFunction": [[685, "enum-graphfunction"]], "Class: PathExpression": [[692, "class-pathexpression"]], "Class: SearchBaseConfiguration": [[693, "class-searchbaseconfiguration"]], "Enum: SearchProperty": [[694, "enum-searchproperty"]], "Class: SearchResult": [[695, "class-searchresult"]], "Class: SearchResultSet": [[696, "class-searchresultset"]], "Type: SearchTerm": [[697, "type-searchterm"]], "Enum: SearchTermSyntax": [[698, "enum-searchtermsyntax"]], "Slot: all_of": [[704, "slot-all-of"]], "Slot: any_of": [[705, "slot-any-of"]], "Slot: atom": [[706, "slot-atom"]], "Slot: configuration": [[708, "slot-configuration"]], "Slot: cursor": [[709, "slot-cursor"]], "Slot: force_case_insensitive": [[710, "slot-force-case-insensitive"]], "Slot: graph_predicates": [[711, "slot-graph-predicates"]], "Slot: include_aliases": [[712, "slot-include-aliases"], [1000, "slot-include-aliases"]], "Slot: include_definition": [[713, "slot-include-definition"]], "Slot: include_id": [[714, "slot-include-id"]], "Slot: include_label": [[715, "slot-include-label"]], "Slot: include_obsoletes_in_results": [[716, "slot-include-obsoletes-in-results"]], "search datamodel": [[717, "search-datamodel"]], "Slot: is_complete": [[718, "slot-is-complete"]], "Slot: is_fuzzy": [[719, "slot-is-fuzzy"]], "Slot: is_partial": [[720, "slot-is-partial"]], "Slot: is_regular_expression": [[721, "slot-is-regular-expression"]], "Slot: limit": [[722, "slot-limit"], [1004, "slot-limit"]], "Slot: matches_full_search_term": [[723, "slot-matches-full-search-term"]], "Slot: none_of": [[724, "slot-none-of"]], "Slot: object_id": [[725, "slot-object-id"], [793, "slot-object-id"], [1011, "slot-object-id"], [1074, "slot-object-id"]], "Slot: object_match_field": [[727, "slot-object-match-field"]], "Slot: object_source": [[728, "slot-object-source"], [796, "slot-object-source"], [1013, "slot-object-source"]], "Slot: object_source_version": [[729, "slot-object-source-version"]], "Slot: path_to": [[730, "slot-path-to"]], "Slot: properties": [[731, "slot-properties"]], "Slot: result_count": [[733, "slot-result-count"]], "search-datamodel": [[735, "search-datamodel"]], "Slot: search_term": [[736, "slot-search-term"]], "Slot: search_terms": [[737, "slot-search-terms"]], "Slot: snippet": [[738, "slot-snippet"]], "Slot: syntax": [[739, "slot-syntax"]], "Slot: traversal": [[740, "slot-traversal"]], "SemSQL": [[742, "semsql"]], "Class: BestMatch": [[743, "class-bestmatch"]], "Type: ItemCount": [[753, "type-itemcount"]], "Type: NegativeLogValue": [[757, "type-negativelogvalue"]], "Type: NonNegativeFloat": [[759, "type-nonnegativefloat"]], "Class: PairwiseSimilarity": [[761, "class-pairwisesimilarity"]], "Class: TermInfo": [[764, "class-terminfo"]], "Class: TermPairwiseSimilarity": [[765, "class-termpairwisesimilarity"]], "Class: TermSetPairwiseSimilarity": [[766, "class-termsetpairwisesimilarity"]], "Type: ZeroToOne": [[770, "type-zerotoone"]], "Slot: ancestor_id": [[771, "slot-ancestor-id"]], "Slot: ancestor_information_content": [[772, "slot-ancestor-information-content"]], "Slot: ancestor_label": [[773, "slot-ancestor-label"]], "Slot: ancestor_source": [[774, "slot-ancestor-source"]], "Slot: average_score": [[775, "slot-average-score"]], "Slot: best_score": [[776, "slot-best-score"]], "Slot: cosine_similarity": [[777, "slot-cosine-similarity"]], "Slot: dice_similarity": [[778, "slot-dice-similarity"]], "Semantic Similarity": [[780, "semantic-similarity"]], "Slot: information_content": [[781, "slot-information-content"]], "Slot: intersection_count": [[782, "slot-intersection-count"]], "Slot: jaccard_similarity": [[783, "slot-jaccard-similarity"]], "Slot: match_source": [[785, "slot-match-source"]], "Slot: match_source_label": [[786, "slot-match-source-label"]], "Slot: match_subsumer": [[787, "slot-match-subsumer"]], "Slot: match_subsumer_label": [[788, "slot-match-subsumer-label"]], "Slot: match_target": [[789, "slot-match-target"]], "Slot: match_target_label": [[790, "slot-match-target-label"]], "Slot: metric": [[791, "slot-metric"]], "Slot: object_best_matches": [[792, "slot-object-best-matches"]], "Slot: object_information_content": [[794, "slot-object-information-content"]], "Slot: object_termset": [[797, "slot-object-termset"]], "Slot: overlap_coefficient": [[798, "slot-overlap-coefficient"]], "Slot: phenodigm_score": [[799, "slot-phenodigm-score"]], "Slot: score": [[800, "slot-score"]], "Slot: similarity": [[801, "slot-similarity"]], "Slot: subject_best_matches": [[802, "slot-subject-best-matches"]], "Slot: subject_id": [[803, "slot-subject-id"], [1087, "slot-subject-id"]], "Slot: subject_information_content": [[804, "slot-subject-information-content"]], "Slot: subject_source": [[806, "slot-subject-source"], [1020, "slot-subject-source"]], "Slot: subject_termset": [[807, "slot-subject-termset"]], "Slot: subsumed_by_score": [[808, "slot-subsumed-by-score"]], "Slot: subsumes_score": [[809, "slot-subsumes-score"]], "Slot: union_count": [[811, "slot-union-count"]], "SSSOM": [[812, "sssom"], [1114, "sssom"]], "Class: ChangeTypeStatistic": [[815, "class-changetypestatistic"]], "Class: ContributorRole": [[816, "class-contributorrole"]], "Class: ContributorStatistics": [[817, "class-contributorstatistics"]], "Class: FacetStatistics": [[824, "class-facetstatistics"]], "LinkML Specification": [[824, "linkml-specification"], [827, "linkml-specification"], [838, "linkml-specification"]], "Class: FacetedCount": [[825, "class-facetedcount"]], "Class: GlobalStatistics": [[827, "class-globalstatistics"]], "Class: GroupedStatistics": [[828, "class-groupedstatistics"]], "Class: SummaryStatisticCollection": [[838, "class-summarystatisticcollection"]], "Class: SummaryStatisticsCalculationActivity": [[839, "class-summarystatisticscalculationactivity"]], "Class: SummaryStatisticsReport": [[840, "class-summarystatisticsreport"]], "Class: UngroupedStatistics": [[842, "class-ungroupedstatistics"]], "Slot: acted_on_behalf_of": [[845, "slot-acted-on-behalf-of"]], "Slot: agents": [[846, "slot-agents"]], "Slot: annotation_property_count": [[847, "slot-annotation-property-count"]], "Slot: anonymous_class_expression_count": [[848, "slot-anonymous-class-expression-count"]], "Slot: anonymous_individual_count": [[849, "slot-anonymous-individual-count"]], "Slot: by_category": [[850, "slot-by-category"]], "Slot: by_ontology": [[851, "slot-by-ontology"]], "Slot: by_subset": [[852, "slot-by-subset"]], "Slot: by_taxon": [[853, "slot-by-taxon"]], "Slot: change_summary": [[854, "slot-change-summary"]], "Slot: class_count": [[855, "slot-class-count"]], "Slot: class_count_by_category": [[856, "slot-class-count-by-category"]], "Slot: class_count_by_subset": [[857, "slot-class-count-by-subset"]], "Slot: class_count_excluding_deprecated": [[858, "slot-class-count-excluding-deprecated"]], "Slot: class_count_with_definitions": [[859, "slot-class-count-with-definitions"]], "Slot: class_count_with_text_definitions": [[860, "slot-class-count-with-text-definitions"]], "Slot: class_count_without_text_definitions": [[861, "slot-class-count-without-text-definitions"]], "Slot: class_statistic_group": [[862, "slot-class-statistic-group"]], "Slot: compared_with": [[863, "slot-compared-with"]], "Slot: contributor_id": [[864, "slot-contributor-id"]], "Slot: contributor_name": [[865, "slot-contributor-name"]], "Slot: contributor_summary": [[866, "slot-contributor-summary"]], "Slot: count_statistic": [[867, "slot-count-statistic"]], "Slot: datatype_property_count": [[868, "slot-datatype-property-count"]], "Slot: deprecated_class_count": [[869, "slot-deprecated-class-count"]], "Slot: deprecated_object_property_count": [[870, "slot-deprecated-object-property-count"]], "Slot: description_logic_profile": [[872, "slot-description-logic-profile"]], "Slot: distinct_synonym_count": [[873, "slot-distinct-synonym-count"]], "Slot: edge_count_by_predicate": [[874, "slot-edge-count-by-predicate"]], "Slot: ended_at_time": [[875, "slot-ended-at-time"]], "Slot: entailed_edge_count_by_predicate": [[876, "slot-entailed-edge-count-by-predicate"]], "Slot: equivalent_classes_axiom_count": [[877, "slot-equivalent-classes-axiom-count"]], "Slot: equivalentclasses_axiom_count": [[878, "slot-equivalentclasses-axiom-count"]], "Slot: facet": [[879, "slot-facet"]], "Slot: filtered_count": [[880, "slot-filtered-count"]], "Summary Statistics Datamodel": [[882, "summary-statistics-datamodel"]], "Slot: individual_count": [[883, "slot-individual-count"]], "Slot: individual_statistic_group": [[884, "slot-individual-statistic-group"]], "Slot: mapping_count": [[886, "slot-mapping-count"]], "Slot: mapping_statement_count_by_object_source": [[887, "slot-mapping-statement-count-by-object-source"]], "Slot: mapping_statement_count_by_predicate": [[888, "slot-mapping-statement-count-by-predicate"]], "Slot: mapping_statement_count_subject_by_object_source": [[889, "slot-mapping-statement-count-subject-by-object-source"]], "Slot: merged_class_count": [[890, "slot-merged-class-count"]], "Slot: metadata_statistic_group": [[891, "slot-metadata-statistic-group"]], "Slot: named_individual_count": [[892, "slot-named-individual-count"]], "Slot: non_deprecated_class_count": [[893, "slot-non-deprecated-class-count"]], "Slot: non_deprecated_object_property_count": [[894, "slot-non-deprecated-object-property-count"]], "Slot: normalization_comments": [[895, "slot-normalization-comments"]], "Slot: object_property_count": [[896, "slot-object-property-count"]], "Slot: ontologies": [[897, "slot-ontologies"]], "Slot: ontology_count": [[898, "slot-ontology-count"]], "Slot: owl_axiom_count": [[899, "slot-owl-axiom-count"]], "Slot: owl_statistic_group": [[900, "slot-owl-statistic-group"]], "Slot: partitions": [[901, "slot-partitions"]], "Slot: property_count": [[903, "slot-property-count"]], "Slot: property_statistic_group": [[904, "slot-property-statistic-group"]], "Slot: rdf_triple_count": [[905, "slot-rdf-triple-count"]], "Slot: role_counts": [[906, "slot-role-counts"]], "Slot: started_at_time": [[907, "slot-started-at-time"]], "Slot: subclass_of_axiom_count": [[908, "slot-subclass-of-axiom-count"]], "Slot: subset_count": [[909, "slot-subset-count"]], "summary-statistics": [[910, "summary-statistics"]], "Slot: synonym_statement_count": [[911, "slot-synonym-statement-count"]], "Slot: synonym_statement_count_by_predicate": [[912, "slot-synonym-statement-count-by-predicate"]], "Slot: unsatisfiable_class_count": [[915, "slot-unsatisfiable-class-count"]], "Slot: untyped_entity_count": [[916, "slot-untyped-entity-count"]], "Slot: version_info": [[918, "slot-version-info"]], "Slot: was_associated_with": [[919, "slot-was-associated-with"]], "Slot: was_generated_by": [[920, "slot-was-generated-by"]], "Enum: ConfigurationOption": [[922, "enum-configurationoption"]], "Class: PredicateTerm": [[936, "class-predicateterm"]], "Class: SubjectTerm": [[939, "class-subjectterm"]], "Class: Taxon": [[940, "class-taxon"]], "Class: TaxonConstraint": [[941, "class-taxonconstraint"]], "Slot: asserted": [[946, "slot-asserted"]], "Slot: candidate": [[947, "slot-candidate"]], "Slot: contradicted_by": [[949, "slot-contradicted-by"]], "Slot: evolutionary": [[951, "slot-evolutionary"]], "Taxon Constraints Reporting Datamodel": [[953, "taxon-constraints-reporting-datamodel"]], "Slot: never_in": [[955, "slot-never-in"]], "Slot: only_in": [[956, "slot-only-in"]], "Slot: predicates": [[958, "slot-predicates"]], "Slot: present_in": [[959, "slot-present-in"]], "Slot: present_in_ancestor_of": [[960, "slot-present-in-ancestor-of"]], "Slot: redundant": [[961, "slot-redundant"]], "Slot: redundant_with": [[962, "slot-redundant-with"]], "Slot: redundant_with_only_in": [[963, "slot-redundant-with-only-in"]], "Slot: sources": [[964, "slot-sources"], [1017, "slot-sources"]], "Slot: taxon": [[966, "slot-taxon"]], "Slot: unsatisfiable": [[968, "slot-unsatisfiable"]], "Slot: via_terms": [[969, "slot-via-terms"]], "Class: HasSpan": [[978, "class-hasspan"]], "Class: TextAnnotation": [[988, "class-textannotation"]], "Class: TextAnnotationConfiguration": [[989, "class-textannotationconfiguration"]], "Class: TextAnnotationResultSet": [[990, "class-textannotationresultset"]], "Class: TextualElement": [[991, "class-textualelement"]], "Slot: confidence": [[998, "slot-confidence"], [1063, "slot-confidence"]], "Text Annotator Datamodel": [[1001, "text-annotator-datamodel"]], "Slot: info": [[1002, "slot-info"], [1068, "slot-info"]], "Slot: is_longest_match": [[1003, "slot-is-longest-match"]], "Slot: match_string": [[1005, "slot-match-string"]], "Slot: match_type": [[1006, "slot-match-type"]], "Slot: matches_whole_text": [[1007, "slot-matches-whole-text"]], "Slot: model": [[1008, "slot-model"]], "Slot: object_aliases": [[1009, "slot-object-aliases"]], "Slot: object_categories": [[1010, "slot-object-categories"]], "Slot: parent_document": [[1014, "slot-parent-document"]], "Slot: source_text": [[1016, "slot-source-text"]], "Slot: subject_end": [[1018, "slot-subject-end"]], "Slot: subject_start": [[1021, "slot-subject-start"]], "Slot: subject_text_id": [[1022, "slot-subject-text-id"]], "Slot: text": [[1023, "slot-text"]], "text-annotator": [[1024, "text-annotator"]], "Slot: token_exclusion_list": [[1025, "slot-token-exclusion-list"]], "Class: ConstraintComponent": [[1028, "class-constraintcomponent"]], "Class: ExternalReferenceValidationResult": [[1035, "class-externalreferencevalidationresult"]], "Class: MappingValidationResult": [[1040, "class-mappingvalidationresult"]], "Class: NamedResource": [[1041, "class-namedresource"]], "Class: RepairConfiguration": [[1046, "class-repairconfiguration"]], "Class: RepairOperation": [[1047, "class-repairoperation"]], "Class: RepairReport": [[1048, "class-repairreport"]], "Class: Report": [[1049, "class-report"]], "Class: Result": [[1050, "class-result"]], "Enum: SeverityOptions": [[1051, "enum-severityoptions"]], "Class: TypeSeverityKeyValue": [[1055, "class-typeseveritykeyvalue"]], "Class: ValidationConfiguration": [[1058, "class-validationconfiguration"]], "Class: ValidationReport": [[1059, "class-validationreport"]], "Class: ValidationResult": [[1060, "class-validationresult"]], "Enum: ValidationResultType": [[1061, "enum-validationresulttype"]], "Slot: dry_run": [[1064, "slot-dry-run"]], "Slot: http_response_code": [[1065, "slot-http-response-code"]], "Validation Results Datamodel": [[1067, "validation-results-datamodel"]], "Slot: instantiates": [[1069, "slot-instantiates"]], "Slot: max_number_results_per_type": [[1070, "slot-max-number-results-per-type"]], "Slot: modified": [[1071, "slot-modified"]], "Slot: number_of_attempts": [[1072, "slot-number-of-attempts"]], "Slot: object_info": [[1075, "slot-object-info"]], "Slot: object_str": [[1076, "slot-object-str"]], "Slot: problem": [[1079, "slot-problem"]], "Slot: prompt_info": [[1080, "slot-prompt-info"]], "Slot: repairs": [[1081, "slot-repairs"]], "Slot: schema_path": [[1083, "slot-schema-path"]], "Slot: severity": [[1084, "slot-severity"]], "Slot: subject_info": [[1088, "slot-subject-info"]], "Slot: successful": [[1089, "slot-successful"]], "Slot: suggested_modifications": [[1090, "slot-suggested-modifications"]], "Slot: suggested_predicate": [[1091, "slot-suggested-predicate"]], "Slot: time_checked": [[1092, "slot-time-checked"]], "Slot: type_severity_map": [[1094, "slot-type-severity-map"]], "Slot: validation_configuration": [[1097, "slot-validation-configuration"]], "validaton-results": [[1098, "validaton-results"]], "FAQ: Architecture and Design": [[1099, "faq-architecture-and-design"]], "What is an interface?": [[1099, "what-is-an-interface"]], "What is a Data Model?": [[1099, "what-is-a-data-model"]], "What is an iterator and why does OAK use them so much?": [[1099, "what-is-an-iterator-and-why-does-oak-use-them-so-much"]], "FAQ: Command Line": [[1100, "faq-command-line"]], "How do I see a list of commands?": [[1100, "how-do-i-see-a-list-of-commands"]], "How do I get help on a command?": [[1100, "how-do-i-get-help-on-a-command"]], "How do I get more examples of command line usage?": [[1100, "how-do-i-get-more-examples-of-command-line-usage"]], "I want to query an ontology, what do I pass for the --input option?": [[1100, "i-want-to-query-an-ontology-what-do-i-pass-for-the-input-option"]], "Why do I get a \u201cno such option\u201d error when I pass the \u201c\u2013input\u201d option?": [[1100, "why-do-i-get-a-no-such-option-error-when-i-pass-the-input-option"]], "What do the codes \u201ci\u201d and \u201cp\u201d mean?": [[1100, "what-do-the-codes-i-and-p-mean"]], "Can I pass a list of IDs (CURIEs) as input to a command?": [[1100, "can-i-pass-a-list-of-ids-curies-as-input-to-a-command"]], "Can I pass entity labels as command inputs?": [[1100, "can-i-pass-entity-labels-as-command-inputs"]], "Can I pass lexical queries as command inputs?": [[1100, "can-i-pass-lexical-queries-as-command-inputs"]], "Can I pass the results of graph queries as command inputs?": [[1100, "can-i-pass-the-results-of-graph-queries-as-command-inputs"]], "Can I make boolean combinations of query terms?": [[1100, "can-i-make-boolean-combinations-of-query-terms"]], "Can I chain commands together, unix-style?": [[1100, "can-i-chain-commands-together-unix-style"]], "What does the symbol @ mean in a query term list": [[1100, "what-does-the-symbol-mean-in-a-query-term-list"]], "Can I use the command line to visualize a subgraph?": [[1100, "can-i-use-the-command-line-to-visualize-a-subgraph"]], "Is there an over-arching philosophy or set of design principles to the OAK command line?": [[1100, "is-there-an-over-arching-philosophy-or-set-of-design-principles-to-the-oak-command-line"]], "The command isn\u2019t working the way I expected - how do I get help?": [[1100, "the-command-isn-t-working-the-way-i-expected-how-do-i-get-help"]], "FAQ: Contributing": [[1101, "faq-contributing"]], "How can I contribute?": [[1101, "how-can-i-contribute"]], "How do I stay involved?": [[1101, "how-do-i-stay-involved"]], "FAQ: General": [[1102, "faq-general"]], "What is OAK?": [[1102, "what-is-oak"]], "Are there any tutorials for OAK?": [[1102, "are-there-any-tutorials-for-oak"]], "Are there runnable examples of how to use OAK?": [[1102, "are-there-runnable-examples-of-how-to-use-oak"]], "I am familiar with both Python and Ontologies. Where should I start?": [[1102, "i-am-familiar-with-both-python-and-ontologies-where-should-i-start"]], "I find ontologies confusing. Is there a general guide to help me?": [[1102, "i-find-ontologies-confusing-is-there-a-general-guide-to-help-me"]], "Why is it called OAK?": [[1102, "why-is-it-called-oak"]], "How do I install OAK?": [[1102, "how-do-i-install-oak"]], "Can I use OAK if I don\u2019t know Python?": [[1102, "can-i-use-oak-if-i-don-t-know-python"]], "Can I contribute to OAK?": [[1102, "can-i-contribute-to-oak"]], "Is OAK just for bio-ontologies?": [[1102, "is-oak-just-for-bio-ontologies"]], "Can OAK access ontologies in ontology portals such as MatPortal or BioPortal?": [[1102, "can-oak-access-ontologies-in-ontology-portals-such-as-matportal-or-bioportal"]], "Can OAK access ontologies in triplestores such as OntoBee or Ubergraph?": [[1102, "can-oak-access-ontologies-in-triplestores-such-as-ontobee-or-ubergraph"]], "Can OAK access local files?": [[1102, "can-oak-access-local-files"]], "Can OAK access OBO Format files?": [[1102, "can-oak-access-obo-format-files"]], "Does OAK support all of OWL?": [[1102, "does-oak-support-all-of-owl"]], "Does OAK support reasoning?": [[1102, "does-oak-support-reasoning"]], "Can I use OAK to do graph queries over ontologies?": [[1102, "can-i-use-oak-to-do-graph-queries-over-ontologies"]], "Can I use OAK to do lexical search?": [[1102, "can-i-use-oak-to-do-lexical-search"]], "Can I use OAK as a text annotator?": [[1102, "can-i-use-oak-as-a-text-annotator"]], "FAQ": [[1103, "faq"]], "FAQ: Ontologies": [[1104, "faq-ontologies"]], "What is an ontology?": [[1104, "what-is-an-ontology"]], "Do we need ontologies now we have ChatGPT?": [[1104, "do-we-need-ontologies-now-we-have-chatgpt"]], "What is OWL?": [[1104, "what-is-owl"]], "What is OBO Format?": [[1104, "what-is-obo-format"]], "What is OBO": [[1104, "what-is-obo"]], "What\u2019s a synonym and how do I access them?": [[1104, "what-s-a-synonym-and-how-do-i-access-them"]], "Ancestor statistics": [[1104, "id2"], [1129, "id2"], [1135, "id1"]], "FAQ: Troubleshooting": [[1105, "faq-troubleshooting"]], "Why do I get a \u201cError: No such option: -i\u201d message": [[1105, "why-do-i-get-a-error-no-such-option-i-message"]], "How do I get a BioPortal API key?": [[1105, "how-do-i-get-a-bioportal-api-key"]], "My OBO Format file won\u2019t parse": [[1105, "my-obo-format-file-won-t-parse"]], "My OWL file takes too long to load": [[1105, "my-owl-file-takes-too-long-to-load"]], "My cached SQLite ontology is out of date": [[1105, "my-cached-sqlite-ontology-is-out-of-date"]], "I don\u2019t understand the interface/method I want to use": [[1105, "i-don-t-understand-the-interface-method-i-want-to-use"]], "Glossary": [[1106, "glossary"]], "Aliases and Synonyms": [[1107, "aliases-and-synonyms"]], "Use Cases": [[1107, "use-cases"]], "Search": [[1107, "search"], [1129, "search"], [1149, "search"], [1163, "search"]], "Text mining and NLP": [[1107, "text-mining-and-nlp"]], "Different aliases for different communities": [[1107, "different-aliases-for-different-communities"]], "Different Languages": [[1107, "different-languages"]], "Different approaches to representing synonym metadata": [[1107, "different-approaches-to-representing-synonym-metadata"]], "Representation of synonyms in OAK": [[1107, "representation-of-synonyms-in-oak"]], "Simple Core Model": [[1107, "simple-core-model"]], "HPO basic aliases": [[1107, "id1"]], "Obo Graph Data Model": [[1107, "obo-graph-data-model"]], "HPO full aliases": [[1107, "id2"]], "Associations and Curated Annotations": [[1108, "associations-and-curated-annotations"]], "Background": [[1108, "background"], [1118, "background"]], "Association support in OAK": [[1108, "association-support-in-oak"]], "Data Model": [[1108, "data-model"], [1118, "data-model"], [1171, "data-model"]], "Selecting association sources": [[1108, "selecting-association-sources"]], "Further reading": [[1108, "further-reading"], [1110, "further-reading"], [1113, "further-reading"], [1114, "further-reading"], [1116, "further-reading"], [1118, "further-reading"]], "OAK Basics": [[1109, "oak-basics"]], "What is an ontology and why would I want to access one?": [[1109, "what-is-an-ontology-and-why-would-i-want-to-access-one"]], "Ontology languages, standards, and formats": [[1109, "ontology-languages-standards-and-formats"]], "Core OAK concepts": [[1109, "core-oak-concepts"]], "Identifying entities: CURIEs and URIs": [[1110, "curies-and-uris"]], "Prefix maps": [[1110, "prefix-maps"]], "Querying prefixmaps": [[1110, "querying-prefixmaps"]], "Example prefixes": [[1110, "id1"]], "Non-default prefixmaps": [[1110, "non-default-prefixmaps"]], "Structure of identifiers": [[1110, "structure-of-identifiers"]], "The OAK Guide": [[1111, "the-oak-guide"]], "Learning More": [[1112, "learning-more"]], "Logical Definitions": [[1113, "logical-definitions"]], "Logical Definitions in OWL": [[1113, "logical-definitions-in-owl"]], "Genus-differentia form logical definitions": [[1113, "genus-differentia-form-logical-definitions"]], "The Obo Graphs Model": [[1113, "the-obo-graphs-model"]], "Querying for logical definitions in OAK": [[1113, "querying-for-logical-definitions-in-oak"]], "uberon nail logical definitions": [[1113, "id2"]], "Reasoning using logical definitions": [[1113, "reasoning-using-logical-definitions"]], "Logical definitions and design patterns": [[1113, "logical-definitions-and-design-patterns"]], "Generating logical definitions": [[1113, "generating-logical-definitions"]], "Analyzing logical definitions": [[1113, "analyzing-logical-definitions"]], "Validating logical definitions": [[1113, "validating-logical-definitions"]], "Mappings and Cross-References": [[1114, "mappings-and-cross-references"]], "Mappings in OAK": [[1114, "mappings-in-oak"]], "uberon sssom mappings": [[1114, "id1"]], "In Python": [[1114, "in-python"]], "Generating Mappings": [[1114, "generating-mappings"]], "Obsoletion": [[1115, "obsoletion"]], "Looking up obsoleted entities": [[1115, "looking-up-obsoleted-entities"]], "Conventions and standards": [[1115, "conventions-and-standards"]], "obsolete entities should not be in the signature of any logical axiom": [[1115, "obsolete-entities-should-not-be-in-the-signature-of-any-logical-axiom"]], "obsolete entities should be accompanied by metadata that provides additional context for humans and machines": [[1115, "obsolete-entities-should-be-accompanied-by-metadata-that-provides-additional-context-for-humans-and-machines"]], "Merged entities": [[1115, "merged-entities"]], "Further Reading": [[1115, "further-reading"]], "Primary Labels": [[1116, "primary-labels"]], "Looking up labels": [[1116, "looking-up-labels"]], "Custom label annotation properties": [[1116, "custom-label-annotation-properties"]], "Multilingual ontologies": [[1116, "multilingual-ontologies"]], "Other edge cases": [[1116, "other-edge-cases"]], "Relationships and Graphs": [[1117, "relationships-and-graphs"]], "Exploring relationships": [[1117, "exploring-relationships"]], "Graph Traversal and Relation Graph Reasoning": [[1117, "graph-traversal-and-relation-graph-reasoning"]], "Graph Traversal Strategies": [[1117, "graph-traversal-strategies"]], "Examples of where entailment yields more": [[1117, "examples-of-where-entailment-yields-more"]], "Examples of where graph traversal yields more ancestors than entailment": [[1117, "examples-of-where-graph-traversal-yields-more-ancestors-than-entailment"]], "Which strategy should I use?": [[1117, "which-strategy-should-i-use"]], "A note on entailed direct edges": [[1117, "a-note-on-entailed-direct-edges"]], "Computing Similarity between Entities": [[1118, "computing-similarity-between-entities"]], "Concepts": [[1118, "concepts"]], "Jaccard Similarity": [[1118, "jaccard-similarity"]], "Information Content": [[1118, "information-content"]], "Aggregate measures for comparing entities": [[1118, "aggregate-measures-for-comparing-entities"]], "Vector-based approaches": [[1118, "vector-based-approaches"]], "Implementations": [[1118, "implementations"], [1140, "implementations"], [1152, "implementations"]], "Default Implementation": [[1118, "default-implementation"]], "Ubergraph": [[1118, "ubergraph"], [1131, "ubergraph"]], "Semsimian": [[1118, "semsimian"]], "FHIR Conversions": [[1119, "fhir-conversions"]], "CLI": [[1119, "cli"]], "Config file": [[1119, "config-file"]], "How-To Guides": [[1120, "how-to-guides"]], "How to use Large Language Models (LLMs) with OAK": [[1123, "how-to-use-large-language-models-llms-with-oak"]], "LLM frameworks that use OAK": [[1123, "llm-frameworks-that-use-oak"]], "OntoGPT": [[1123, "ontogpt"]], "CurateGPT": [[1123, "curategpt"]], "Talisman": [[1123, "talisman"]], "Using OAK in conjunction with existing LLM tools": [[1123, "using-oak-in-conjunction-with-existing-llm-tools"]], "OAK LLM Adapter": [[1123, "oak-llm-adapter"]], "Annotation": [[1123, "annotation"], [1151, "annotation"], [1153, "annotation"], [1158, "annotation"]], "Suggesting Definitions": [[1123, "suggesting-definitions"]], "Validating Mappings": [[1123, "validating-mappings"]], "Selecting alternative models": [[1123, "selecting-alternative-models"]], "Installing LLM plugins": [[1123, "installing-llm-plugins"]], "Mixtral via Ollama and LiteLLM": [[1123, "mixtral-via-ollama-and-litellm"]], "Mixtral via groq and LiteLLM": [[1123, "mixtral-via-groq-and-litellm"]], "How to Validate an OBO ontology using Obo Metadata Ontology schema": [[1124, "how-to-validate-an-obo-ontology-using-obo-metadata-ontology-schema"]], "Steps": [[1124, "steps"]], "Step 1: Obtain the sqlite version of the ontology": [[1124, "step-1-obtain-the-sqlite-version-of-the-ontology"]], "Step 2: Install oaklib": [[1124, "step-2-install-oaklib"]], "Step 3: Validate an individual ontology": [[1124, "step-3-validate-an-individual-ontology"]], "Step 3 (alternative): Validate multiple ontologies": [[1124, "step-3-alternative-validate-multiple-ontologies"]], "Caveats": [[1124, "caveats"]], "Using your own schema": [[1124, "using-your-own-schema"]], "How this works": [[1124, "how-this-works"], [1133, "how-this-works"]], "Analysis": [[1124, "analysis"]], "How to write a plugin": [[1126, "how-to-write-a-plugin"]], "What is a plugin?": [[1126, "what-is-a-plugin"]], "An example plugin": [[1126, "an-example-plugin"]], "Creating a plugin": [[1126, "creating-a-plugin"]], "Discuss on the issue tracker": [[1126, "discuss-on-the-issue-tracker"]], "Create a new project": [[1126, "create-a-new-project"], [1130, "create-a-new-project"]], "Implement one or more interfaces": [[1126, "implement-one-or-more-interfaces"]], "Implement a selector": [[1126, "implement-a-selector"]], "Write tests": [[1126, "write-tests"]], "Ontology Access Kit (OAK) Documentation": [[1127, "ontology-access-kit-oak-documentation"]], "Indices and tables": [[1127, "indices-and-tables"]], "Tutorial": [[1128, "tutorial"]], "Part 1: Getting Started": [[1129, "part-1-getting-started"]], "Installation": [[1129, "installation"]], "Install from PyPI": [[1129, "install-from-pypi"]], "Run the OAK command": [[1129, "run-the-oak-command"]], "Basics": [[1129, "basics"]], "Query the OBO Library": [[1129, "query-the-obo-library"]], "Working with local files": [[1129, "working-with-local-files"]], "Introduction to graphs and trees": [[1129, "introduction-to-graphs-and-trees"]], "Fetching ancestors": [[1129, "fetching-ancestors"]], "Predicate Abbreviations": [[1129, "predicate-abbreviations"]], "Ancestor Statistics": [[1129, "ancestor-statistics"]], "Oak Trees": [[1129, "oak-trees"]], "Advanced Search": [[1129, "advanced-search"]], "Using search terms as parameters": [[1129, "using-search-terms-as-parameters"]], "Chaining Commands": [[1129, "chaining-commands"]], "Visualization": [[1129, "visualization"]], "Using other backends": [[1129, "using-other-backends"]], "Using Ubergraph": [[1129, "using-ubergraph"]], "Using Ontobee": [[1129, "using-ontobee"]], "Using BioPortal and OntoPortal": [[1129, "using-bioportal-and-ontoportal"]], "Annotate results": [[1129, "id3"]], "Using OLS": [[1129, "using-ols"]], "OLS SSSOM": [[1129, "id4"]], "Next steps": [[1129, "next-steps"]], "Part 2: Basic Python": [[1130, "part-2-basic-python"]], "Install Poetry": [[1130, "install-poetry"]], "Basic Concepts": [[1130, "basic-concepts"]], "Code the first example": [[1130, "code-the-first-example"]], "Extending the example": [[1130, "extending-the-example"]], "Part 3: Triplestore Backends": [[1131, "part-3-triplestore-backends"]], "Triplestore Concepts": [[1131, "triplestore-concepts"]], "Connecting": [[1131, "connecting"], [1163, "connecting"]], "Basic Operations": [[1131, "basic-operations"]], "Relationships": [[1131, "relationships"]], "Part 4: OboGraphs": [[1132, "part-4-obographs"]], "OboGraphs": [[1132, "obographs"]], "OboGraph Interface": [[1132, "obograph-interface"], [1172, "obograph-interface"]], "Code examples": [[1132, "code-examples"]], "Part 5: Graph Visualization": [[1133, "part-5-graph-visualization"]], "Install Graphviz": [[1133, "install-graphviz"]], "Install OBOGraphViz": [[1133, "install-obographviz"]], "Command Line Usage": [[1133, "command-line-usage"], [1143, "command-line-usage"], [1148, "command-line-usage"]], "Programmatic usage": [[1133, "programmatic-usage"]], "Part 6: Working With OWL": [[1134, "part-6-working-with-owl"]], "OWL Datamodel": [[1134, "owl-datamodel"]], "OwlInterface": [[1134, "owlinterface"]], "ROBOT Plugin": [[1134, "robot-plugin"]], "Part 7: SQLite files": [[1135, "part-7-sqlite-files"]], "Download a SQLite file": [[1135, "download-a-sqlite-file"]], "Example": [[1135, "example"]], "Fetching ready-made SQLite files": [[1135, "fetching-ready-made-sqlite-files"]], "Building your own SQLite files": [[1135, "building-your-own-sqlite-files"]], "With docker": [[1135, "with-docker"]], "Without docker": [[1135, "without-docker"]], "Validating an ontology": [[1135, "validating-an-ontology"]], "Other RDBMSs": [[1135, "other-rdbmss"]], "Python ORM": [[1135, "python-orm"]], "Part 8: Applying Changes to Ontologies": [[1136, "part-8-applying-changes-to-ontologies"]], "About KGCL": [[1136, "about-kgcl"]], "Example: Sqlite3": [[1136, "example-sqlite3"]], "Example: OBO Files": [[1136, "example-obo-files"]], "Introduction": [[1137, "introduction"]], "Basic Python Example": [[1137, "basic-python-example"]], "Basic Command Line Example": [[1137, "basic-command-line-example"]], "Jupyter Notebooks": [[1139, "jupyter-notebooks"]], "Architecture": [[1140, "architecture"]], "Ontology Interfaces": [[1140, "ontology-interfaces"]], "Other Interfaces": [[1140, "other-interfaces"]], "Example: OWL Ontology Interface": [[1140, "example-owl-ontology-interface"]], "Partial and Complete Implementation": [[1140, "partial-and-complete-implementation"]], "Best Practice": [[1141, "best-practice"]], "External Services": [[1141, "external-services"]], "Iterators": [[1141, "iterators"]], "Weaving calls together": [[1141, "weaving-calls-together"]], "Chunking": [[1141, "chunking"]], "Abstract Class": [[1142, "abstract-class"]], "Converters": [[1143, "converters"]], "Converting from Obo Graphs": [[1143, "converting-from-obo-graphs"]], "OBO Graph to CX Converter": [[1144, "obo-graph-to-cx-converter"]], "OBO Graph to FHIR Converter": [[1145, "obo-graph-to-fhir-converter"]], "OBO Graph to OBO Format Converter": [[1146, "obo-graph-to-obo-format-converter"]], "OBO Graph to OWL Converter": [[1147, "obo-graph-to-owl-converter"]], "Aggregator Adapter": [[1148, "aggregator-adapter"]], "Documentation": [[1148, "documentation"], [1156, "documentation"]], "Bioportal Adapter": [[1149, "bioportal-adapter"]], "API Keys": [[1149, "api-keys"]], "Command Line Examples": [[1149, "command-line-examples"], [1151, "command-line-examples"], [1153, "command-line-examples"], [1158, "command-line-examples"]], "Code": [[1149, "code"], [1151, "code"], [1153, "code"], [1154, "code"], [1155, "code"], [1157, "code"], [1158, "code"], [1159, "code"], [1160, "code"], [1161, "code"], [1162, "code"], [1163, "code"]], "FunOwl Adapter": [[1150, "funowl-adapter"]], "Gilda Adapter": [[1151, "gilda-adapter"]], "LLM Adapter": [[1153, "llm-adapter"]], "Validation of Mappings": [[1153, "validation-of-mappings"]], "OBO Graph Adapter": [[1154, "obo-graph-adapter"]], "About": [[1154, "about"], [1157, "about"], [1159, "about"], [1160, "about"], [1163, "about"]], "Initialization": [[1154, "initialization"], [1159, "initialization"], [1160, "initialization"], [1162, "initialization"]], "Ontology Lookup Service (OLS) Adapter": [[1155, "ontology-lookup-service-ols-adapter"]], "Ontobee Adapter": [[1156, "ontobee-adapter"]], "Notes": [[1156, "notes"]], "Owlery Adapter": [[1157, "owlery-adapter"]], "PantherDB Adapter": [[1158, "pantherdb-adapter"]], "Enrichment": [[1158, "enrichment"]], "Mapping": [[1158, "mapping"]], "Pronto / OBO Files Adapter": [[1159, "pronto-obo-files-adapter"]], "Input Selector": [[1159, "input-selector"]], "Simple OBO Adapter": [[1160, "simple-obo-adapter"]], "Sparql Adapter": [[1161, "sparql-adapter"]], "SQL Database Adapter": [[1162, "sql-database-adapter"]], "SQL Alchemy ORM Model": [[1162, "sql-alchemy-orm-model"]], "Ubergraph Adapter": [[1163, "ubergraph-adapter"]], "Interfaces Implemented": [[1163, "interfaces-implemented"]], "OAK Library Documentation": [[1164, "oak-library-documentation"]], "Association Provider Interface": [[1165, "association-provider-interface"]], "Command Line Use": [[1165, "command-line-use"], [1171, "command-line-use"]], "Basic Ontology Interface": [[1166, "basic-ontology-interface"]], "Class Enrichment Calculation Interface": [[1167, "class-enrichment-calculation-interface"]], "Differ Interface": [[1168, "differ-interface"]], "Dumper Interface": [[1169, "dumper-interface"]], "Interfaces": [[1170, "interfaces"]], "Mapping Provider Interface": [[1171, "mapping-provider-interface"]], "OWL Interface": [[1173, "owl-interface"]], "Patcher Interface": [[1174, "patcher-interface"]], "Relation Graph": [[1175, "relation-graph"]], "Search Interface": [[1176, "search-interface"]], "Semantic Similarity Interface": [[1177, "semantic-similarity-interface"]], "Subsetting": [[1178, "subsetting"]], "Summary Statistics": [[1179, "summary-statistics"]], "Text Annotator Interface": [[1180, "text-annotator-interface"]], "Validator Interface": [[1181, "validator-interface"]], "Ontology Adapter Selectors": [[1182, "ontology-adapter-selectors"]], "Syntax": [[1182, "syntax"]], "Schemes": [[1182, "schemes"]], "pronto": [[1182, "pronto"]], "prontolib": [[1182, "prontolib"]], "sqlite": [[1182, "sqlite"]], "obosqlite": [[1182, "obosqlite"]], "ontobee": [[1182, "ontobee"]], "ols": [[1182, "ols"]], "bioportal": [[1182, "bioportal"]], "funowl": [[1182, "funowl"]], "Functions": [[1182, "functions"]], "oaklib.utilities.apikey_manager": [[1183, "module-oaklib.utilities.apikey_manager"]], "oaklib.utilities.graph.networkx_bridge": [[1184, "module-oaklib.utilities.graph.networkx_bridge"]], "Utilities for working with networkx": [[1184, "utilities-for-working-with-networkx"]], "oaklib.utilities.graph.relationship_walker": [[1185, "module-oaklib.utilities.graph.relationship_walker"]], "Utilities for traversing Ontology Graphs": [[1185, "utilities-for-traversing-ontology-graphs"]], "oaklib.utilities.lexical.lexical_indexer": [[1186, "module-oaklib.utilities.lexical.lexical_indexer"]], "Lexical Utilities": [[1186, "lexical-utilities"]], "oaklib.utilities.obograph_utils": [[1187, "module-oaklib.utilities.obograph_utils"]], "Utilities for the OBOGraph Datamodel": [[1187, "utilities-for-the-obograph-datamodel"]], "oaklib.utilities.subsets.slimmer_utils": [[1188, "module-oaklib.utilities.subsets.slimmer_utils"]], "Utilities for working with ontology subsets (slims)": [[1188, "utilities-for-working-with-ontology-subsets-slims"]], "oaklib.utilities.table_filler": [[1189, "module-oaklib.utilities.table_filler"]], "oaklib.utilities.taxon": [[1190, "module-oaklib.utilities.taxon"]], "Utilities": [[1191, "utilities"]], "Layering on RDF/OWL": [[1192, "layering-on-rdf-owl"]], "CURIEs, URIs, and prefixmaps": [[1192, "curies-uris-and-prefixmaps"]], "Relationships between entities": [[1192, "relationships-between-entities"]], "Metadata about entities": [[1192, "metadata-about-entities"]], "Challenges": [[1192, "challenges"]], "OMO": [[1192, "omo"]], "Ontology portals": [[1192, "ontology-portals"]], "OAK Approach": [[1192, "oak-approach"]], "Labels": [[1192, "labels"]], "Obsoletion and obsoletion metadata": [[1192, "obsoletion-and-obsoletion-metadata"]], "Search Syntax": [[1193, "search-syntax"]], "Boolean Combinations": [[1193, "boolean-combinations"]], "Search Datamodel": [[1193, "search-datamodel"]]}, "indexentries": {"--about": [[0, "cmdoption-runoak-axioms-about"]], "--adapter-mapping": [[0, "cmdoption-runoak-validate-mappings-adapter-mapping"]], "--add": [[0, "cmdoption-runoak-a"]], "--add-closure-fields": [[0, "cmdoption-runoak-associations-add-closure-fields"], [0, "cmdoption-runoak-associations-counts-add-closure-fields"]], "--add-labels": [[0, "cmdoption-runoak-lexmatch-add-labels"]], "--add-mrcas": [[0, "cmdoption-runoak-tree-add-mrcas"], [0, "cmdoption-runoak-viz-add-mrcas"]], "--additional-metadata": [[0, "cmdoption-runoak-definitions-additional-metadata"], [0, "cmdoption-runoak-term-metadata-additional-metadata"]], "--all": [[0, "cmdoption-runoak-ontology-metadata-all"], [0, "cmdoption-runoak-ontology-versions-all"], [0, "cmdoption-runoak-taxon-constraints-A"]], "--all-languages": [[0, "cmdoption-runoak-labels-all-languages"]], "--allow-labels": [[0, "cmdoption-runoak-enrichment-allow-labels"]], "--allow-missing": [[0, "cmdoption-runoak-fill-table-allow-missing"]], "--analyze": [[0, "cmdoption-runoak-generate-logical-definitions-analyze"]], "--annotated-roots": [[0, "cmdoption-runoak-roots-A"]], "--apply-patch": [[0, "cmdoption-runoak-generate-definitions-apply-patch"], [0, "cmdoption-runoak-generate-synonyms-apply-patch"], [0, "cmdoption-runoak-synonymize-apply-patch"]], "--association-predicates": [[0, "cmdoption-runoak-associations-association-predicates"], [0, "cmdoption-runoak-associations-counts-association-predicates"], [0, "cmdoption-runoak-associations-matrix-association-predicates"], [0, "cmdoption-runoak-enrichment-association-predicates"]], "--associations": [[0, "cmdoption-runoak-diff-associations-g"], [0, "cmdoption-runoak-g"]], "--associations-type": [[0, "cmdoption-runoak-G"]], "--autolabel": [[0, "cmdoption-runoak-associations-autolabel"], [0, "cmdoption-runoak-associations-counts-autolabel"], [0, "cmdoption-runoak-associations-matrix-autolabel"], [0, "cmdoption-runoak-definitions-autolabel"], [0, "cmdoption-runoak-diff-associations-autolabel"], [0, "cmdoption-runoak-diff-via-mappings-autolabel"], [0, "cmdoption-runoak-disjoints-autolabel"], [0, "cmdoption-runoak-enrichment-autolabel"], [0, "cmdoption-runoak-fill-table-autolabel"], [0, "cmdoption-runoak-generate-disjoints-autolabel"], [0, "cmdoption-runoak-generate-logical-definitions-autolabel"], [0, "cmdoption-runoak-logical-definitions-autolabel"], [0, "cmdoption-runoak-mappings-autolabel"], [0, "cmdoption-runoak-normalize-autolabel"], [0, "cmdoption-runoak-paths-autolabel"], [0, "cmdoption-runoak-query-autolabel"], [0, "cmdoption-runoak-relationships-autolabel"], [0, "cmdoption-runoak-rollup-autolabel"], [0, "cmdoption-runoak-search-autolabel"], [0, "cmdoption-runoak-similarity-autolabel"], [0, "cmdoption-runoak-similarity-pair-autolabel"], [0, "cmdoption-runoak-termset-similarity-autolabel"], [0, "cmdoption-runoak-validate-mappings-autolabel"]], "--autosave": [[0, "cmdoption-runoak-autosave"]], "--axiom-type": [[0, "cmdoption-runoak-axioms-axiom-type"]], "--background-file": [[0, "cmdoption-runoak-enrichment-B"]], "--bidirectional": [[0, "cmdoption-runoak-diff-via-mappings-bidirectional"]], "--category-system": [[0, "cmdoption-runoak-term-categories-category-system"]], "--change-type": [[0, "cmdoption-runoak-diff-change-type"]], "--changes-format": [[0, "cmdoption-runoak-apply-changes-format"]], "--changes-input": [[0, "cmdoption-runoak-apply-changes-input"]], "--changes-output": [[0, "cmdoption-runoak-apply-changes-output"]], "--comment": [[0, "cmdoption-runoak-fill-table-comment"]], "--compare-with": [[0, "cmdoption-runoak-statistics-X"]], "--config-file": [[0, "cmdoption-runoak-dump-c"], [0, "cmdoption-runoak-transform-c"]], "--configuration-file": [[0, "cmdoption-runoak-annotate-C"], [0, "cmdoption-runoak-validate-mappings-C"]], "--configure": [[0, "cmdoption-runoak-paths-C"], [0, "cmdoption-runoak-tree-C"], [0, "cmdoption-runoak-viz-C"]], "--contributor": [[0, "cmdoption-runoak-apply-contributor"]], "--cutoff": [[0, "cmdoption-runoak-enrichment-cutoff"], [0, "cmdoption-runoak-validate-cutoff"], [0, "cmdoption-runoak-validate-multiple-cutoff"]], "--dangling": [[0, "cmdoption-runoak-extract-dangling"]], "--days-old": [[0, "cmdoption-runoak-cache-clear-days-old"]], "--delimiter": [[0, "cmdoption-runoak-fill-table-delimiter"]], "--direct": [[0, "cmdoption-runoak-taxon-constraints-direct"]], "--directed": [[0, "cmdoption-runoak-paths-directed"]], "--direction": [[0, "cmdoption-runoak-relationships-direction"]], "--display": [[0, "cmdoption-runoak-definitions-D"], [0, "cmdoption-runoak-descendants-D"], [0, "cmdoption-runoak-info-D"], [0, "cmdoption-runoak-labels-D"], [0, "cmdoption-runoak-tree-D"]], "--down": [[0, "cmdoption-runoak-tree-down"], [0, "cmdoption-runoak-viz-down"]], "--dry-run": [[0, "cmdoption-runoak-apply-dry-run"], [0, "cmdoption-runoak-lint-dry-run"]], "--endpoint": [[0, "cmdoption-runoak-set-apikey-e"]], "--enforce-canonical-ordering": [[0, "cmdoption-runoak-dump-enforce-canonical-ordering"]], "--ensure-strict-prefixes": [[0, "cmdoption-runoak-lexmatch-ensure-strict-prefixes"]], "--evolution-file": [[0, "cmdoption-runoak-apply-taxon-constraints-E"]], "--exclude-existing": [[0, "cmdoption-runoak-generate-disjoints-exclude-existing"]], "--exclude-predicates": [[0, "cmdoption-runoak-paths-exclude-predicates"]], "--exclude-tokens": [[0, "cmdoption-runoak-annotate-x"]], "--expand": [[0, "cmdoption-runoak-apply-expand"], [0, "cmdoption-runoak-apply-obsolete-expand"]], "--fill": [[0, "cmdoption-runoak-generate-logical-definitions-fill"]], "--filter": [[0, "cmdoption-runoak-associations-counts-F"]], "--filter-category-identical": [[0, "cmdoption-runoak-diff-via-mappings-filter-category-identical"]], "--filter-obsoletes": [[0, "cmdoption-runoak-leafs-filter-obsoletes"], [0, "cmdoption-runoak-singletons-filter-obsoletes"], [0, "cmdoption-runoak-terms-filter-obsoletes"]], "--filter-redundant": [[0, "cmdoption-runoak-enrichment-filter-redundant"]], "--gap-fill": [[0, "cmdoption-runoak-tree-gap-fill"], [0, "cmdoption-runoak-viz-gap-fill"]], "--graph-traversal-method": [[0, "cmdoption-runoak-ancestors-M"], [0, "cmdoption-runoak-apply-taxon-constraints-M"], [0, "cmdoption-runoak-descendants-M"], [0, "cmdoption-runoak-taxon-constraints-M"]], "--group-by": [[0, "cmdoption-runoak-associations-counts-group-by"], [0, "cmdoption-runoak-diff-associations-group-by"]], "--group-by-defined-by": [[0, "cmdoption-runoak-diff-group-by-defined-by"], [0, "cmdoption-runoak-statistics-group-by-defined-by"]], "--group-by-obo-namespace": [[0, "cmdoption-runoak-diff-group-by-obo-namespace"], [0, "cmdoption-runoak-statistics-group-by-obo-namespace"]], "--group-by-prefix": [[0, "cmdoption-runoak-diff-group-by-prefix"], [0, "cmdoption-runoak-statistics-group-by-prefix"]], "--group-by-property": [[0, "cmdoption-runoak-diff-group-by-property"], [0, "cmdoption-runoak-statistics-group-by-property"]], "--has-prefix": [[0, "cmdoption-runoak-roots-P"], [0, "cmdoption-runoak-statistics-P"]], "--if-absent": [[0, "cmdoption-runoak-associations-if-absent"], [0, "cmdoption-runoak-definitions-if-absent"], [0, "cmdoption-runoak-labels-if-absent"], [0, "cmdoption-runoak-logical-definitions-if-absent"], [0, "cmdoption-runoak-relationships-if-absent"]], "--ignore-invalid-changes": [[0, "cmdoption-runoak-apply-ignore-invalid-changes"], [0, "cmdoption-runoak-apply-obsolete-ignore-invalid-changes"]], "--import-depth": [[0, "cmdoption-runoak-import-depth"]], "--include-abox": [[0, "cmdoption-runoak-relationships-include-abox"]], "--include-aliases": [[0, "cmdoption-runoak-annotate-include-aliases"]], "--include-entailed": [[0, "cmdoption-runoak-relationships-include-entailed"]], "--include-identity-mappings": [[0, "cmdoption-runoak-diff-via-mappings-include-identity-mappings"]], "--include-merged": [[0, "cmdoption-runoak-obsoletes-include-merged"]], "--include-metadata": [[0, "cmdoption-runoak-extract-include-metadata"], [0, "cmdoption-runoak-relationships-include-metadata"]], "--include-predicates": [[0, "cmdoption-runoak-paths-include-predicates"]], "--include-redundant": [[0, "cmdoption-runoak-taxon-constraints-include-redundant"]], "--include-residuals": [[0, "cmdoption-runoak-statistics-include-residuals"]], "--include-tbox": [[0, "cmdoption-runoak-relationships-include-tbox"]], "--information-content-file": [[0, "cmdoption-runoak-similarity-information-content-file"], [0, "cmdoption-runoak-termset-similarity-information-content-file"]], "--input": [[0, "cmdoption-runoak-i"]], "--input-type": [[0, "cmdoption-runoak-I"]], "--intra": [[0, "cmdoption-runoak-diff-via-mappings-intra"]], "--label-fields": [[0, "cmdoption-runoak-query-L"]], "--lexical-index-file": [[0, "cmdoption-runoak-annotate-L"], [0, "cmdoption-runoak-lexmatch-L"]], "--limit": [[0, "cmdoption-runoak-associations-counts-L"]], "--main-score-field": [[0, "cmdoption-runoak-similarity-main-score-field"]], "--mapper": [[0, "cmdoption-runoak-mappings-mapper"]], "--mapping-input": [[0, "cmdoption-runoak-diff-via-mappings-mapping-input"]], "--maps-to-source": [[0, "cmdoption-runoak-mappings-M"], [0, "cmdoption-runoak-normalize-M"]], "--match-column": [[0, "cmdoption-runoak-annotate-A"]], "--matches-whole-text": [[0, "cmdoption-runoak-annotate-W"]], "--matrix-axes": [[0, "cmdoption-runoak-logical-definitions-matrix-axes"]], "--max-hops": [[0, "cmdoption-runoak-tree-max-hops"], [0, "cmdoption-runoak-viz-max-hops"]], "--merge": [[0, "cmdoption-runoak-merge"]], "--meta": [[0, "cmdoption-runoak-viz-meta"]], "--metamodel-mappings": [[0, "cmdoption-runoak-metamodel-mappings"]], "--min-ancestor-information-content": [[0, "cmdoption-runoak-similarity-min-ancestor-information-content"]], "--min-descendants": [[0, "cmdoption-runoak-generate-disjoints-M"]], "--min-facet-count": [[0, "cmdoption-runoak-associations-counts-min-facet-count"]], "--min-jaccard-similarity": [[0, "cmdoption-runoak-similarity-min-jaccard-similarity"]], "--missing-value-token": [[0, "cmdoption-runoak-fill-table-missing-value-token"]], "--model": [[0, "cmdoption-runoak-annotate-m"]], "--named-classes-only": [[0, "cmdoption-runoak-disjoints-named-classes-only"]], "--named-prefix-map": [[0, "cmdoption-runoak-named-prefix-map"]], "--narrow": [[0, "cmdoption-runoak-paths-narrow"]], "--new-date": [[0, "cmdoption-runoak-diff-associations-new-date"]], "--no-a": [[0, "cmdoption-runoak-roots-A"], [0, "cmdoption-runoak-taxon-constraints-A"]], "--no-w": [[0, "cmdoption-runoak-annotate-W"]], "--no-add-closure-fields": [[0, "cmdoption-runoak-associations-add-closure-fields"], [0, "cmdoption-runoak-associations-counts-add-closure-fields"]], "--no-add-labels": [[0, "cmdoption-runoak-lexmatch-add-labels"]], "--no-add-mrcas": [[0, "cmdoption-runoak-tree-add-mrcas"], [0, "cmdoption-runoak-viz-add-mrcas"]], "--no-additional-metadata": [[0, "cmdoption-runoak-definitions-additional-metadata"], [0, "cmdoption-runoak-term-metadata-additional-metadata"]], "--no-all": [[0, "cmdoption-runoak-ontology-metadata-all"], [0, "cmdoption-runoak-ontology-versions-all"], [0, "cmdoption-runoak-taxon-constraints-A"]], "--no-all-languages": [[0, "cmdoption-runoak-labels-all-languages"]], "--no-allow-labels": [[0, "cmdoption-runoak-enrichment-allow-labels"]], "--no-allow-missing": [[0, "cmdoption-runoak-fill-table-allow-missing"]], "--no-analyze": [[0, "cmdoption-runoak-generate-logical-definitions-analyze"]], "--no-annotated-roots": [[0, "cmdoption-runoak-roots-A"]], "--no-apply-patch": [[0, "cmdoption-runoak-generate-definitions-apply-patch"], [0, "cmdoption-runoak-generate-synonyms-apply-patch"], [0, "cmdoption-runoak-synonymize-apply-patch"]], "--no-autolabel": [[0, "cmdoption-runoak-associations-autolabel"], [0, "cmdoption-runoak-associations-counts-autolabel"], [0, "cmdoption-runoak-associations-matrix-autolabel"], [0, "cmdoption-runoak-definitions-autolabel"], [0, "cmdoption-runoak-diff-associations-autolabel"], [0, "cmdoption-runoak-diff-via-mappings-autolabel"], [0, "cmdoption-runoak-disjoints-autolabel"], [0, "cmdoption-runoak-enrichment-autolabel"], [0, "cmdoption-runoak-fill-table-autolabel"], [0, "cmdoption-runoak-generate-disjoints-autolabel"], [0, "cmdoption-runoak-generate-logical-definitions-autolabel"], [0, "cmdoption-runoak-logical-definitions-autolabel"], [0, "cmdoption-runoak-mappings-autolabel"], [0, "cmdoption-runoak-normalize-autolabel"], [0, "cmdoption-runoak-paths-autolabel"], [0, "cmdoption-runoak-query-autolabel"], [0, "cmdoption-runoak-relationships-autolabel"], [0, "cmdoption-runoak-rollup-autolabel"], [0, "cmdoption-runoak-search-autolabel"], [0, "cmdoption-runoak-similarity-autolabel"], [0, "cmdoption-runoak-similarity-pair-autolabel"], [0, "cmdoption-runoak-termset-similarity-autolabel"], [0, "cmdoption-runoak-validate-mappings-autolabel"]], "--no-autosave": [[0, "cmdoption-runoak-autosave"]], "--no-bidirectional": [[0, "cmdoption-runoak-diff-via-mappings-bidirectional"]], "--no-dangling": [[0, "cmdoption-runoak-extract-dangling"]], "--no-direct": [[0, "cmdoption-runoak-taxon-constraints-direct"]], "--no-directed": [[0, "cmdoption-runoak-paths-directed"]], "--no-down": [[0, "cmdoption-runoak-tree-down"], [0, "cmdoption-runoak-viz-down"]], "--no-dry-run": [[0, "cmdoption-runoak-apply-dry-run"], [0, "cmdoption-runoak-lint-dry-run"]], "--no-enforce-canonical-ordering": [[0, "cmdoption-runoak-dump-enforce-canonical-ordering"]], "--no-ensure-strict-prefixes": [[0, "cmdoption-runoak-lexmatch-ensure-strict-prefixes"]], "--no-exclude-existing": [[0, "cmdoption-runoak-generate-disjoints-exclude-existing"]], "--no-expand": [[0, "cmdoption-runoak-apply-expand"], [0, "cmdoption-runoak-apply-obsolete-expand"]], "--no-fill": [[0, "cmdoption-runoak-generate-logical-definitions-fill"]], "--no-filter-category-identical": [[0, "cmdoption-runoak-diff-via-mappings-filter-category-identical"]], "--no-filter-obsoletes": [[0, "cmdoption-runoak-leafs-filter-obsoletes"], [0, "cmdoption-runoak-singletons-filter-obsoletes"], [0, "cmdoption-runoak-terms-filter-obsoletes"]], "--no-filter-redundant": [[0, "cmdoption-runoak-enrichment-filter-redundant"]], "--no-gap-fill": [[0, "cmdoption-runoak-tree-gap-fill"], [0, "cmdoption-runoak-viz-gap-fill"]], "--no-group-by-defined-by": [[0, "cmdoption-runoak-diff-group-by-defined-by"], [0, "cmdoption-runoak-statistics-group-by-defined-by"]], "--no-group-by-obo-namespace": [[0, "cmdoption-runoak-diff-group-by-obo-namespace"], [0, "cmdoption-runoak-statistics-group-by-obo-namespace"]], "--no-group-by-prefix": [[0, "cmdoption-runoak-diff-group-by-prefix"], [0, "cmdoption-runoak-statistics-group-by-prefix"]], "--no-ignore-invalid-changes": [[0, "cmdoption-runoak-apply-ignore-invalid-changes"], [0, "cmdoption-runoak-apply-obsolete-ignore-invalid-changes"]], "--no-include-abox": [[0, "cmdoption-runoak-relationships-include-abox"]], "--no-include-aliases": [[0, "cmdoption-runoak-annotate-include-aliases"]], "--no-include-entailed": [[0, "cmdoption-runoak-relationships-include-entailed"]], "--no-include-identity-mappings": [[0, "cmdoption-runoak-diff-via-mappings-include-identity-mappings"]], "--no-include-merged": [[0, "cmdoption-runoak-obsoletes-include-merged"]], "--no-include-metadata": [[0, "cmdoption-runoak-extract-include-metadata"], [0, "cmdoption-runoak-relationships-include-metadata"]], "--no-include-predicates": [[0, "cmdoption-runoak-paths-include-predicates"]], "--no-include-redundant": [[0, "cmdoption-runoak-taxon-constraints-include-redundant"]], "--no-include-residuals": [[0, "cmdoption-runoak-statistics-include-residuals"]], "--no-include-tbox": [[0, "cmdoption-runoak-relationships-include-tbox"]], "--no-intra": [[0, "cmdoption-runoak-diff-via-mappings-intra"]], "--no-matches-whole-text": [[0, "cmdoption-runoak-annotate-W"]], "--no-merge": [[0, "cmdoption-runoak-merge"]], "--no-meta": [[0, "cmdoption-runoak-viz-meta"]], "--no-named-classes-only": [[0, "cmdoption-runoak-disjoints-named-classes-only"]], "--no-narrow": [[0, "cmdoption-runoak-paths-narrow"]], "--no-obo-model": [[0, "cmdoption-runoak-aliases-obo-model"]], "--no-ontology-only": [[0, "cmdoption-runoak-enrichment-ontology-only"]], "--no-overwrite": [[0, "cmdoption-runoak-apply-overwrite"]], "--no-parse": [[0, "cmdoption-runoak-generate-logical-definitions-parse"]], "--no-pivot-languages": [[0, "cmdoption-runoak-labels-pivot-languages"]], "--no-quiet": [[0, "cmdoption-runoak-q"]], "--no-recreate": [[0, "cmdoption-runoak-lexmatch-recreate"]], "--no-replace": [[0, "cmdoption-runoak-migrate-curies-replace"]], "--no-show-extract": [[0, "cmdoption-runoak-generate-logical-definitions-show-extract"]], "--no-show-migration-relationships": [[0, "cmdoption-runoak-obsoletes-show-migration-relationships"]], "--no-simple": [[0, "cmdoption-runoak-diff-simple"]], "--no-skip-ontology-rules": [[0, "cmdoption-runoak-validate-skip-ontology-rules"]], "--no-skip-structural-validation": [[0, "cmdoption-runoak-validate-skip-structural-validation"]], "--no-skip-text-annotation": [[0, "cmdoption-runoak-validate-definitions-skip-text-annotation"]], "--no-stacktrace": [[0, "cmdoption-runoak-stacktrace"]], "--no-statistics": [[0, "cmdoption-runoak-ancestors-statistics"], [0, "cmdoption-runoak-diff-statistics"]], "--no-unmelt": [[0, "cmdoption-runoak-generate-logical-definitions-unmelt"], [0, "cmdoption-runoak-logical-definitions-unmelt"]], "--no-use-associations": [[0, "cmdoption-runoak-information-content-use-associations"]], "--no-used-only": [[0, "cmdoption-runoak-prefixes-used-only"]], "--no-view": [[0, "cmdoption-runoak-viz-view"]], "--no-viz": [[0, "cmdoption-runoak-paths-viz"]], "--object-group": [[0, "cmdoption-runoak-rollup-object-group"]], "--obo-model": [[0, "cmdoption-runoak-aliases-obo-model"]], "--old-date": [[0, "cmdoption-runoak-diff-associations-old-date"]], "--ontology-only": [[0, "cmdoption-runoak-enrichment-ontology-only"]], "--other-associations": [[0, "cmdoption-runoak-diff-associations-X"]], "--other-input": [[0, "cmdoption-runoak-diff-via-mappings-X"]], "--other-input-type": [[0, "cmdoption-runoak-diff-via-mappings-other-input-type"]], "--other-languages": [[0, "cmdoption-runoak-other-languages"]], "--other-ontology": [[0, "cmdoption-runoak-diff-X"], [0, "cmdoption-runoak-diff-terms-other-ontology"]], "--output": [[0, "cmdoption-runoak-aliases-o"], [0, "cmdoption-runoak-ancestors-o"], [0, "cmdoption-runoak-annotate-o"], [0, "cmdoption-runoak-apply-o"], [0, "cmdoption-runoak-apply-obsolete-o"], [0, "cmdoption-runoak-apply-taxon-constraints-o"], [0, "cmdoption-runoak-associations-0"], [0, "cmdoption-runoak-associations-counts-0"], [0, "cmdoption-runoak-associations-counts-o"], [0, "cmdoption-runoak-associations-matrix-0"], [0, "cmdoption-runoak-associations-matrix-o"], [0, "cmdoption-runoak-associations-o"], [0, "cmdoption-runoak-axioms-o"], [0, "cmdoption-runoak-definitions-o"], [0, "cmdoption-runoak-descendants-o"], [0, "cmdoption-runoak-diff-associations-0"], [0, "cmdoption-runoak-diff-associations-o"], [0, "cmdoption-runoak-diff-o"], [0, "cmdoption-runoak-diff-terms-o"], [0, "cmdoption-runoak-diff-via-mappings-o"], [0, "cmdoption-runoak-disjoints-o"], [0, "cmdoption-runoak-dump-o"], [0, "cmdoption-runoak-enrichment-0"], [0, "cmdoption-runoak-enrichment-o"], [0, "cmdoption-runoak-expand-subsets-o"], [0, "cmdoption-runoak-extract-o"], [0, "cmdoption-runoak-fill-table-o"], [0, "cmdoption-runoak-generate-definitions-o"], [0, "cmdoption-runoak-generate-disjoints-o"], [0, "cmdoption-runoak-generate-logical-definitions-o"], [0, "cmdoption-runoak-generate-synonyms-o"], [0, "cmdoption-runoak-info-o"], [0, "cmdoption-runoak-information-content-o"], [0, "cmdoption-runoak-labels-o"], [0, "cmdoption-runoak-leafs-o"], [0, "cmdoption-runoak-lexmatch-o"], [0, "cmdoption-runoak-lint-o"], [0, "cmdoption-runoak-logical-definitions-o"], [0, "cmdoption-runoak-mappings-o"], [0, "cmdoption-runoak-migrate-curies-o"], [0, "cmdoption-runoak-normalize-o"], [0, "cmdoption-runoak-obsoletes-o"], [0, "cmdoption-runoak-ontologies-o"], [0, "cmdoption-runoak-ontology-metadata-o"], [0, "cmdoption-runoak-ontology-versions-o"], [0, "cmdoption-runoak-paths-o"], [0, "cmdoption-runoak-prefixes-o"], [0, "cmdoption-runoak-query-o"], [0, "cmdoption-runoak-relationships-o"], [0, "cmdoption-runoak-rollup-o"], [0, "cmdoption-runoak-roots-o"], [0, "cmdoption-runoak-search-o"], [0, "cmdoption-runoak-siblings-o"], [0, "cmdoption-runoak-similarity-o"], [0, "cmdoption-runoak-similarity-pair-o"], [0, "cmdoption-runoak-singletons-o"], [0, "cmdoption-runoak-statistics-o"], [0, "cmdoption-runoak-subsets-o"], [0, "cmdoption-runoak-synonymize-o"], [0, "cmdoption-runoak-taxon-constraints-o"], [0, "cmdoption-runoak-term-categories-o"], [0, "cmdoption-runoak-term-metadata-o"], [0, "cmdoption-runoak-term-subsets-o"], [0, "cmdoption-runoak-terms-o"], [0, "cmdoption-runoak-termset-similarity-o"], [0, "cmdoption-runoak-transform-o"], [0, "cmdoption-runoak-tree-o"], [0, "cmdoption-runoak-validate-definitions-o"], [0, "cmdoption-runoak-validate-mappings-o"], [0, "cmdoption-runoak-validate-multiple-o"], [0, "cmdoption-runoak-validate-o"], [0, "cmdoption-runoak-viz-o"]], "--output-type": [[0, "cmdoption-runoak-aliases-O"], [0, "cmdoption-runoak-ancestors-O"], [0, "cmdoption-runoak-annotate-O"], [0, "cmdoption-runoak-apply-O"], [0, "cmdoption-runoak-apply-obsolete-O"], [0, "cmdoption-runoak-associations-O"], [0, "cmdoption-runoak-associations-counts-O"], [0, "cmdoption-runoak-associations-matrix-O"], [0, "cmdoption-runoak-axioms-O"], [0, "cmdoption-runoak-definitions-O"], [0, "cmdoption-runoak-descendants-O"], [0, "cmdoption-runoak-diff-O"], [0, "cmdoption-runoak-diff-associations-O"], [0, "cmdoption-runoak-diff-via-mappings-O"], [0, "cmdoption-runoak-disjoints-O"], [0, "cmdoption-runoak-dump-O"], [0, "cmdoption-runoak-enrichment-O"], [0, "cmdoption-runoak-extract-O"], [0, "cmdoption-runoak-generate-definitions-O"], [0, "cmdoption-runoak-generate-disjoints-O"], [0, "cmdoption-runoak-generate-logical-definitions-O"], [0, "cmdoption-runoak-generate-synonyms-O"], [0, "cmdoption-runoak-info-O"], [0, "cmdoption-runoak-information-content-O"], [0, "cmdoption-runoak-labels-O"], [0, "cmdoption-runoak-lint-O"], [0, "cmdoption-runoak-logical-definitions-O"], [0, "cmdoption-runoak-mappings-O"], [0, "cmdoption-runoak-migrate-curies-O"], [0, "cmdoption-runoak-normalize-O"], [0, "cmdoption-runoak-obsoletes-O"], [0, "cmdoption-runoak-ontology-metadata-O"], [0, "cmdoption-runoak-paths-O"], [0, "cmdoption-runoak-prefixes-O"], [0, "cmdoption-runoak-query-O"], [0, "cmdoption-runoak-relationships-O"], [0, "cmdoption-runoak-rollup-O"], [0, "cmdoption-runoak-roots-O"], [0, "cmdoption-runoak-search-O"], [0, "cmdoption-runoak-siblings-O"], [0, "cmdoption-runoak-similarity-O"], [0, "cmdoption-runoak-similarity-pair-O"], [0, "cmdoption-runoak-statistics-O"], [0, "cmdoption-runoak-taxon-constraints-O"], [0, "cmdoption-runoak-term-categories-O"], [0, "cmdoption-runoak-term-metadata-O"], [0, "cmdoption-runoak-term-subsets-O"], [0, "cmdoption-runoak-termset-similarity-O"], [0, "cmdoption-runoak-transform-O"], [0, "cmdoption-runoak-tree-O"], [0, "cmdoption-runoak-validate-O"], [0, "cmdoption-runoak-validate-definitions-O"], [0, "cmdoption-runoak-validate-mappings-O"], [0, "cmdoption-runoak-viz-O"]], "--overwrite": [[0, "cmdoption-runoak-apply-overwrite"]], "--owl-type": [[0, "cmdoption-runoak-terms-owl-type"]], "--parse": [[0, "cmdoption-runoak-generate-logical-definitions-parse"]], "--patch": [[0, "cmdoption-runoak-generate-definitions-patch"], [0, "cmdoption-runoak-generate-synonyms-patch"], [0, "cmdoption-runoak-synonymize-patch"]], "--patch-format": [[0, "cmdoption-runoak-generate-definitions-patch-format"], [0, "cmdoption-runoak-generate-synonyms-patch-format"]], "--patterns-file": [[0, "cmdoption-runoak-generate-logical-definitions-P"]], "--pivot-languages": [[0, "cmdoption-runoak-labels-pivot-languages"]], "--predicate-weights": [[0, "cmdoption-runoak-paths-predicate-weights"]], "--predicates": [[0, "cmdoption-runoak-ancestors-p"], [0, "cmdoption-runoak-apply-taxon-constraints-p"], [0, "cmdoption-runoak-associations-counts-p"], [0, "cmdoption-runoak-associations-matrix-p"], [0, "cmdoption-runoak-associations-p"], [0, "cmdoption-runoak-descendants-p"], [0, "cmdoption-runoak-diff-associations-p"], [0, "cmdoption-runoak-diff-via-mappings-p"], [0, "cmdoption-runoak-disjoints-p"], [0, "cmdoption-runoak-enrichment-p"], [0, "cmdoption-runoak-expand-subsets-p"], [0, "cmdoption-runoak-extract-p"], [0, "cmdoption-runoak-generate-disjoints-p"], [0, "cmdoption-runoak-information-content-p"], [0, "cmdoption-runoak-leafs-p"], [0, "cmdoption-runoak-logical-definitions-p"], [0, "cmdoption-runoak-paths-p"], [0, "cmdoption-runoak-relationships-p"], [0, "cmdoption-runoak-rollup-p"], [0, "cmdoption-runoak-roots-p"], [0, "cmdoption-runoak-siblings-p"], [0, "cmdoption-runoak-similarity-p"], [0, "cmdoption-runoak-similarity-pair-p"], [0, "cmdoption-runoak-singletons-p"], [0, "cmdoption-runoak-taxon-constraints-p"], [0, "cmdoption-runoak-term-metadata-p"], [0, "cmdoption-runoak-termset-similarity-p"], [0, "cmdoption-runoak-tree-p"], [0, "cmdoption-runoak-viz-p"]], "--preferred-language": [[0, "cmdoption-runoak-l"]], "--prefix": [[0, "cmdoption-runoak-prefix"]], "--prefixes": [[0, "cmdoption-runoak-query-P"]], "--query": [[0, "cmdoption-runoak-query-q"]], "--quiet": [[0, "cmdoption-runoak-q"]], "--recreate": [[0, "cmdoption-runoak-lexmatch-recreate"]], "--references": [[0, "cmdoption-runoak-axioms-references"]], "--relation": [[0, "cmdoption-runoak-fill-table-relation"]], "--relation-file": [[0, "cmdoption-runoak-fill-table-relation-file"]], "--replace": [[0, "cmdoption-runoak-migrate-curies-replace"]], "--report-format": [[0, "cmdoption-runoak-lint-report-format"]], "--requests-cache-db": [[0, "cmdoption-runoak-requests-cache-db"]], "--root": [[0, "cmdoption-runoak-tree-root"]], "--rule": [[0, "cmdoption-runoak-validate-R"]], "--rules-file": [[0, "cmdoption-runoak-annotate-R"], [0, "cmdoption-runoak-generate-synonyms-R"], [0, "cmdoption-runoak-lexmatch-R"], [0, "cmdoption-runoak-synonymize-R"]], "--sample-file": [[0, "cmdoption-runoak-enrichment-U"]], "--save-as": [[0, "cmdoption-runoak-save-as"]], "--schema": [[0, "cmdoption-runoak-fill-table-schema"], [0, "cmdoption-runoak-validate-multiple-s"]], "--set-value": [[0, "cmdoption-runoak-associations-S"], [0, "cmdoption-runoak-definitions-S"], [0, "cmdoption-runoak-labels-S"], [0, "cmdoption-runoak-logical-definitions-S"], [0, "cmdoption-runoak-relationships-S"]], "--set1-file": [[0, "cmdoption-runoak-similarity-set1-file"]], "--set2-file": [[0, "cmdoption-runoak-similarity-set2-file"]], "--show-extract": [[0, "cmdoption-runoak-generate-logical-definitions-show-extract"]], "--show-migration-relationships": [[0, "cmdoption-runoak-obsoletes-show-migration-relationships"]], "--simple": [[0, "cmdoption-runoak-diff-simple"]], "--skip": [[0, "cmdoption-runoak-tree-skip"]], "--skip-ontology-rules": [[0, "cmdoption-runoak-validate-skip-ontology-rules"]], "--skip-structural-validation": [[0, "cmdoption-runoak-validate-skip-structural-validation"]], "--skip-text-annotation": [[0, "cmdoption-runoak-validate-definitions-skip-text-annotation"]], "--source": [[0, "cmdoption-runoak-diff-via-mappings-S"]], "--stacktrace": [[0, "cmdoption-runoak-stacktrace"]], "--statistics": [[0, "cmdoption-runoak-ancestors-statistics"], [0, "cmdoption-runoak-diff-statistics"]], "--style-hints": [[0, "cmdoption-runoak-generate-definitions-style-hints"]], "--stylemap": [[0, "cmdoption-runoak-paths-S"], [0, "cmdoption-runoak-tree-S"], [0, "cmdoption-runoak-viz-S"]], "--target": [[0, "cmdoption-runoak-paths-target"]], "--terms-role": [[0, "cmdoption-runoak-associations-Q"], [0, "cmdoption-runoak-associations-counts-Q"], [0, "cmdoption-runoak-associations-matrix-Q"]], "--text-file": [[0, "cmdoption-runoak-annotate-text-file"]], "--transform": [[0, "cmdoption-runoak-transform-t"]], "--unmelt": [[0, "cmdoption-runoak-generate-logical-definitions-unmelt"], [0, "cmdoption-runoak-logical-definitions-unmelt"]], "--use-associations": [[0, "cmdoption-runoak-information-content-use-associations"]], "--used-only": [[0, "cmdoption-runoak-prefixes-used-only"]], "--verbose": [[0, "cmdoption-runoak-v"]], "--view": [[0, "cmdoption-runoak-viz-view"]], "--viz": [[0, "cmdoption-runoak-paths-viz"]], "--wrap-adapter": [[0, "cmdoption-runoak-W"]], "-a": [[0, "cmdoption-runoak-annotate-A"], [0, "cmdoption-runoak-roots-A"], [0, "cmdoption-runoak-taxon-constraints-A"], [0, "cmdoption-runoak-a"]], "-b": [[0, "cmdoption-runoak-enrichment-B"]], "-c": [[0, "cmdoption-runoak-annotate-C"], [0, "cmdoption-runoak-paths-C"], [0, "cmdoption-runoak-tree-C"], [0, "cmdoption-runoak-validate-mappings-C"], [0, "cmdoption-runoak-viz-C"], [0, "cmdoption-runoak-dump-c"], [0, "cmdoption-runoak-transform-c"]], "-d": [[0, "cmdoption-runoak-definitions-D"], [0, "cmdoption-runoak-descendants-D"], [0, "cmdoption-runoak-info-D"], [0, "cmdoption-runoak-labels-D"], [0, "cmdoption-runoak-tree-D"]], "-e": [[0, "cmdoption-runoak-apply-taxon-constraints-E"], [0, "cmdoption-runoak-set-apikey-e"]], "-f": [[0, "cmdoption-runoak-associations-counts-F"]], "-g": [[0, "cmdoption-runoak-G"], [0, "cmdoption-runoak-diff-associations-g"], [0, "cmdoption-runoak-g"]], "-i": [[0, "cmdoption-runoak-I"], [0, "cmdoption-runoak-i"]], "-l": [[0, "cmdoption-runoak-annotate-L"], [0, "cmdoption-runoak-associations-counts-L"], [0, "cmdoption-runoak-lexmatch-L"], [0, "cmdoption-runoak-query-L"], [0, "cmdoption-runoak-l"]], "-m": [[0, "cmdoption-runoak-ancestors-M"], [0, "cmdoption-runoak-apply-taxon-constraints-M"], [0, "cmdoption-runoak-descendants-M"], [0, "cmdoption-runoak-generate-disjoints-M"], [0, "cmdoption-runoak-mappings-M"], [0, "cmdoption-runoak-normalize-M"], [0, "cmdoption-runoak-taxon-constraints-M"], [0, "cmdoption-runoak-annotate-m"]], "-o": [[0, "cmdoption-runoak-aliases-O"], [0, "cmdoption-runoak-ancestors-O"], [0, "cmdoption-runoak-annotate-O"], [0, "cmdoption-runoak-apply-O"], [0, "cmdoption-runoak-apply-obsolete-O"], [0, "cmdoption-runoak-associations-O"], [0, "cmdoption-runoak-associations-counts-O"], [0, "cmdoption-runoak-associations-matrix-O"], [0, "cmdoption-runoak-axioms-O"], [0, "cmdoption-runoak-definitions-O"], [0, "cmdoption-runoak-descendants-O"], [0, "cmdoption-runoak-diff-O"], [0, "cmdoption-runoak-diff-associations-O"], [0, "cmdoption-runoak-diff-via-mappings-O"], [0, "cmdoption-runoak-disjoints-O"], [0, "cmdoption-runoak-dump-O"], [0, "cmdoption-runoak-enrichment-O"], [0, "cmdoption-runoak-extract-O"], [0, "cmdoption-runoak-generate-definitions-O"], [0, "cmdoption-runoak-generate-disjoints-O"], [0, "cmdoption-runoak-generate-logical-definitions-O"], [0, "cmdoption-runoak-generate-synonyms-O"], [0, "cmdoption-runoak-info-O"], [0, "cmdoption-runoak-information-content-O"], [0, "cmdoption-runoak-labels-O"], [0, "cmdoption-runoak-lint-O"], [0, "cmdoption-runoak-logical-definitions-O"], [0, "cmdoption-runoak-mappings-O"], [0, "cmdoption-runoak-migrate-curies-O"], [0, "cmdoption-runoak-normalize-O"], [0, "cmdoption-runoak-obsoletes-O"], [0, "cmdoption-runoak-ontology-metadata-O"], [0, "cmdoption-runoak-paths-O"], [0, "cmdoption-runoak-prefixes-O"], [0, "cmdoption-runoak-query-O"], [0, "cmdoption-runoak-relationships-O"], [0, "cmdoption-runoak-rollup-O"], [0, "cmdoption-runoak-roots-O"], [0, "cmdoption-runoak-search-O"], [0, "cmdoption-runoak-siblings-O"], [0, "cmdoption-runoak-similarity-O"], [0, "cmdoption-runoak-similarity-pair-O"], [0, "cmdoption-runoak-statistics-O"], [0, "cmdoption-runoak-taxon-constraints-O"], [0, "cmdoption-runoak-term-categories-O"], [0, "cmdoption-runoak-term-metadata-O"], [0, "cmdoption-runoak-term-subsets-O"], [0, "cmdoption-runoak-termset-similarity-O"], [0, "cmdoption-runoak-transform-O"], [0, "cmdoption-runoak-tree-O"], [0, "cmdoption-runoak-validate-O"], [0, "cmdoption-runoak-validate-definitions-O"], [0, "cmdoption-runoak-validate-mappings-O"], [0, "cmdoption-runoak-viz-O"], [0, "cmdoption-runoak-aliases-o"], [0, "cmdoption-runoak-ancestors-o"], [0, "cmdoption-runoak-annotate-o"], [0, "cmdoption-runoak-apply-o"], [0, "cmdoption-runoak-apply-obsolete-o"], [0, "cmdoption-runoak-apply-taxon-constraints-o"], [0, "cmdoption-runoak-associations-0"], [0, "cmdoption-runoak-associations-counts-0"], [0, "cmdoption-runoak-associations-counts-o"], [0, "cmdoption-runoak-associations-matrix-0"], [0, "cmdoption-runoak-associations-matrix-o"], [0, "cmdoption-runoak-associations-o"], [0, "cmdoption-runoak-axioms-o"], [0, "cmdoption-runoak-definitions-o"], [0, "cmdoption-runoak-descendants-o"], [0, "cmdoption-runoak-diff-associations-0"], [0, "cmdoption-runoak-diff-associations-o"], [0, "cmdoption-runoak-diff-o"], [0, "cmdoption-runoak-diff-terms-o"], [0, "cmdoption-runoak-diff-via-mappings-o"], [0, "cmdoption-runoak-disjoints-o"], [0, "cmdoption-runoak-dump-o"], [0, "cmdoption-runoak-enrichment-0"], [0, "cmdoption-runoak-enrichment-o"], [0, "cmdoption-runoak-expand-subsets-o"], [0, "cmdoption-runoak-extract-o"], [0, "cmdoption-runoak-fill-table-o"], [0, "cmdoption-runoak-generate-definitions-o"], [0, "cmdoption-runoak-generate-disjoints-o"], [0, "cmdoption-runoak-generate-logical-definitions-o"], [0, "cmdoption-runoak-generate-synonyms-o"], [0, "cmdoption-runoak-info-o"], [0, "cmdoption-runoak-information-content-o"], [0, "cmdoption-runoak-labels-o"], [0, "cmdoption-runoak-leafs-o"], [0, "cmdoption-runoak-lexmatch-o"], [0, "cmdoption-runoak-lint-o"], [0, "cmdoption-runoak-logical-definitions-o"], [0, "cmdoption-runoak-mappings-o"], [0, "cmdoption-runoak-migrate-curies-o"], [0, "cmdoption-runoak-normalize-o"], [0, "cmdoption-runoak-obsoletes-o"], [0, "cmdoption-runoak-ontologies-o"], [0, "cmdoption-runoak-ontology-metadata-o"], [0, "cmdoption-runoak-ontology-versions-o"], [0, "cmdoption-runoak-paths-o"], [0, "cmdoption-runoak-prefixes-o"], [0, "cmdoption-runoak-query-o"], [0, "cmdoption-runoak-relationships-o"], [0, "cmdoption-runoak-rollup-o"], [0, "cmdoption-runoak-roots-o"], [0, "cmdoption-runoak-search-o"], [0, "cmdoption-runoak-siblings-o"], [0, "cmdoption-runoak-similarity-o"], [0, "cmdoption-runoak-similarity-pair-o"], [0, "cmdoption-runoak-singletons-o"], [0, "cmdoption-runoak-statistics-o"], [0, "cmdoption-runoak-subsets-o"], [0, "cmdoption-runoak-synonymize-o"], [0, "cmdoption-runoak-taxon-constraints-o"], [0, "cmdoption-runoak-term-categories-o"], [0, "cmdoption-runoak-term-metadata-o"], [0, "cmdoption-runoak-term-subsets-o"], [0, "cmdoption-runoak-terms-o"], [0, "cmdoption-runoak-termset-similarity-o"], [0, "cmdoption-runoak-transform-o"], [0, "cmdoption-runoak-tree-o"], [0, "cmdoption-runoak-validate-definitions-o"], [0, "cmdoption-runoak-validate-mappings-o"], [0, "cmdoption-runoak-validate-multiple-o"], [0, "cmdoption-runoak-validate-o"], [0, "cmdoption-runoak-viz-o"]], "-p": [[0, "cmdoption-runoak-generate-logical-definitions-P"], [0, "cmdoption-runoak-query-P"], [0, "cmdoption-runoak-roots-P"], [0, "cmdoption-runoak-statistics-P"], [0, "cmdoption-runoak-ancestors-p"], [0, "cmdoption-runoak-apply-taxon-constraints-p"], [0, "cmdoption-runoak-associations-counts-p"], [0, "cmdoption-runoak-associations-matrix-p"], [0, "cmdoption-runoak-associations-p"], [0, "cmdoption-runoak-descendants-p"], [0, "cmdoption-runoak-diff-associations-p"], [0, "cmdoption-runoak-diff-via-mappings-p"], [0, "cmdoption-runoak-disjoints-p"], [0, "cmdoption-runoak-enrichment-p"], [0, "cmdoption-runoak-expand-subsets-p"], [0, "cmdoption-runoak-extract-p"], [0, "cmdoption-runoak-generate-disjoints-p"], [0, "cmdoption-runoak-information-content-p"], [0, "cmdoption-runoak-leafs-p"], [0, "cmdoption-runoak-logical-definitions-p"], [0, "cmdoption-runoak-paths-p"], [0, "cmdoption-runoak-relationships-p"], [0, "cmdoption-runoak-rollup-p"], [0, "cmdoption-runoak-roots-p"], [0, "cmdoption-runoak-siblings-p"], [0, "cmdoption-runoak-similarity-p"], [0, "cmdoption-runoak-similarity-pair-p"], [0, "cmdoption-runoak-singletons-p"], [0, "cmdoption-runoak-taxon-constraints-p"], [0, "cmdoption-runoak-term-metadata-p"], [0, "cmdoption-runoak-termset-similarity-p"], [0, "cmdoption-runoak-tree-p"], [0, "cmdoption-runoak-viz-p"]], "-q": [[0, "cmdoption-runoak-associations-Q"], [0, "cmdoption-runoak-associations-counts-Q"], [0, "cmdoption-runoak-associations-matrix-Q"], [0, "cmdoption-runoak-q"], [0, "cmdoption-runoak-query-q"]], "-r": [[0, "cmdoption-runoak-annotate-R"], [0, "cmdoption-runoak-generate-synonyms-R"], [0, "cmdoption-runoak-lexmatch-R"], [0, "cmdoption-runoak-synonymize-R"], [0, "cmdoption-runoak-validate-R"]], "-s": [[0, "cmdoption-runoak-associations-S"], [0, "cmdoption-runoak-definitions-S"], [0, "cmdoption-runoak-diff-via-mappings-S"], [0, "cmdoption-runoak-labels-S"], [0, "cmdoption-runoak-logical-definitions-S"], [0, "cmdoption-runoak-paths-S"], [0, "cmdoption-runoak-relationships-S"], [0, "cmdoption-runoak-tree-S"], [0, "cmdoption-runoak-viz-S"], [0, "cmdoption-runoak-validate-multiple-s"]], "-u": [[0, "cmdoption-runoak-enrichment-U"]], "-w": [[0, "cmdoption-runoak-W"], [0, "cmdoption-runoak-annotate-W"]], "-x": [[0, "cmdoption-runoak-diff-X"], [0, "cmdoption-runoak-diff-associations-X"], [0, "cmdoption-runoak-diff-via-mappings-X"], [0, "cmdoption-runoak-statistics-X"], [0, "cmdoption-runoak-annotate-x"]], "-t": [[0, "cmdoption-runoak-transform-t"]], "-v": [[0, "cmdoption-runoak-v"]], "branches": [[0, "cmdoption-runoak-statistics-arg-BRANCHES"]], "commands": [[0, "cmdoption-runoak-apply-arg-COMMANDS"]], "constraints": [[0, "cmdoption-runoak-apply-taxon-constraints-arg-CONSTRAINTS"]], "curie_pairs": [[0, "cmdoption-runoak-migrate-curies-arg-CURIE_PAIRS"]], "dbs": [[0, "cmdoption-runoak-validate-multiple-arg-DBS"]], "keyval": [[0, "cmdoption-runoak-set-apikey-arg-KEYVAL"]], "ontologies": [[0, "cmdoption-runoak-ontology-metadata-arg-ONTOLOGIES"], [0, "cmdoption-runoak-ontology-versions-arg-ONTOLOGIES"]], "subsets": [[0, "cmdoption-runoak-expand-subsets-arg-SUBSETS"]], "table_file": [[0, "cmdoption-runoak-fill-table-arg-TABLE_FILE"]], "terms": [[0, "cmdoption-runoak-aliases-arg-TERMS"], [0, "cmdoption-runoak-ancestors-arg-TERMS"], [0, "cmdoption-runoak-apply-obsolete-arg-TERMS"], [0, "cmdoption-runoak-associations-arg-TERMS"], [0, "cmdoption-runoak-associations-counts-arg-TERMS"], [0, "cmdoption-runoak-associations-matrix-arg-TERMS"], [0, "cmdoption-runoak-axioms-arg-TERMS"], [0, "cmdoption-runoak-definitions-arg-TERMS"], [0, "cmdoption-runoak-descendants-arg-TERMS"], [0, "cmdoption-runoak-diff-terms-arg-TERMS"], [0, "cmdoption-runoak-diff-via-mappings-arg-TERMS"], [0, "cmdoption-runoak-disjoints-arg-TERMS"], [0, "cmdoption-runoak-dump-arg-TERMS"], [0, "cmdoption-runoak-enrichment-arg-TERMS"], [0, "cmdoption-runoak-extract-arg-TERMS"], [0, "cmdoption-runoak-generate-definitions-arg-TERMS"], [0, "cmdoption-runoak-generate-disjoints-arg-TERMS"], [0, "cmdoption-runoak-generate-logical-definitions-arg-TERMS"], [0, "cmdoption-runoak-generate-synonyms-arg-TERMS"], [0, "cmdoption-runoak-info-arg-TERMS"], [0, "cmdoption-runoak-information-content-arg-TERMS"], [0, "cmdoption-runoak-labels-arg-TERMS"], [0, "cmdoption-runoak-lexmatch-arg-TERMS"], [0, "cmdoption-runoak-logical-definitions-arg-TERMS"], [0, "cmdoption-runoak-mappings-arg-TERMS"], [0, "cmdoption-runoak-normalize-arg-TERMS"], [0, "cmdoption-runoak-obsoletes-arg-TERMS"], [0, "cmdoption-runoak-paths-arg-TERMS"], [0, "cmdoption-runoak-prefixes-arg-TERMS"], [0, "cmdoption-runoak-relationships-arg-TERMS"], [0, "cmdoption-runoak-rollup-arg-TERMS"], [0, "cmdoption-runoak-search-arg-TERMS"], [0, "cmdoption-runoak-siblings-arg-TERMS"], [0, "cmdoption-runoak-similarity-arg-TERMS"], [0, "cmdoption-runoak-similarity-pair-arg-TERMS"], [0, "cmdoption-runoak-synonymize-arg-TERMS"], [0, "cmdoption-runoak-taxon-constraints-arg-TERMS"], [0, "cmdoption-runoak-term-categories-arg-TERMS"], [0, "cmdoption-runoak-term-metadata-arg-TERMS"], [0, "cmdoption-runoak-term-subsets-arg-TERMS"], [0, "cmdoption-runoak-termset-similarity-arg-TERMS"], [0, "cmdoption-runoak-transform-arg-TERMS"], [0, "cmdoption-runoak-tree-arg-TERMS"], [0, "cmdoption-runoak-validate-arg-TERMS"], [0, "cmdoption-runoak-validate-definitions-arg-TERMS"], [0, "cmdoption-runoak-validate-mappings-arg-TERMS"], [0, "cmdoption-runoak-viz-arg-TERMS"]], "words": [[0, "cmdoption-runoak-annotate-arg-WORDS"]], "runoak command line option": [[0, "cmdoption-runoak-G"], [0, "cmdoption-runoak-I"], [0, "cmdoption-runoak-W"], [0, "cmdoption-runoak-a"], [0, "cmdoption-runoak-autosave"], [0, "cmdoption-runoak-g"], [0, "cmdoption-runoak-i"], [0, "cmdoption-runoak-import-depth"], [0, "cmdoption-runoak-l"], [0, "cmdoption-runoak-merge"], [0, "cmdoption-runoak-metamodel-mappings"], [0, "cmdoption-runoak-named-prefix-map"], [0, "cmdoption-runoak-other-languages"], [0, "cmdoption-runoak-prefix"], [0, "cmdoption-runoak-q"], [0, "cmdoption-runoak-requests-cache-db"], [0, "cmdoption-runoak-save-as"], [0, "cmdoption-runoak-stacktrace"], [0, "cmdoption-runoak-v"]], "runoak-aliases command line option": [[0, "cmdoption-runoak-aliases-O"], [0, "cmdoption-runoak-aliases-arg-TERMS"], [0, "cmdoption-runoak-aliases-o"], [0, "cmdoption-runoak-aliases-obo-model"]], "runoak-ancestors command line option": [[0, "cmdoption-runoak-ancestors-M"], [0, "cmdoption-runoak-ancestors-O"], [0, "cmdoption-runoak-ancestors-arg-TERMS"], [0, "cmdoption-runoak-ancestors-o"], [0, "cmdoption-runoak-ancestors-p"], [0, "cmdoption-runoak-ancestors-statistics"]], "runoak-annotate command line option": [[0, "cmdoption-runoak-annotate-A"], [0, "cmdoption-runoak-annotate-C"], [0, "cmdoption-runoak-annotate-L"], [0, "cmdoption-runoak-annotate-O"], [0, "cmdoption-runoak-annotate-R"], [0, "cmdoption-runoak-annotate-W"], [0, "cmdoption-runoak-annotate-arg-WORDS"], [0, "cmdoption-runoak-annotate-include-aliases"], [0, "cmdoption-runoak-annotate-m"], [0, "cmdoption-runoak-annotate-o"], [0, "cmdoption-runoak-annotate-text-file"], [0, "cmdoption-runoak-annotate-x"]], "runoak-apply command line option": [[0, "cmdoption-runoak-apply-O"], [0, "cmdoption-runoak-apply-arg-COMMANDS"], [0, "cmdoption-runoak-apply-changes-format"], [0, "cmdoption-runoak-apply-changes-input"], [0, "cmdoption-runoak-apply-changes-output"], [0, "cmdoption-runoak-apply-contributor"], [0, "cmdoption-runoak-apply-dry-run"], [0, "cmdoption-runoak-apply-expand"], [0, "cmdoption-runoak-apply-ignore-invalid-changes"], [0, "cmdoption-runoak-apply-o"], [0, "cmdoption-runoak-apply-overwrite"]], "runoak-apply-obsolete command line option": [[0, "cmdoption-runoak-apply-obsolete-O"], [0, "cmdoption-runoak-apply-obsolete-arg-TERMS"], [0, "cmdoption-runoak-apply-obsolete-expand"], [0, "cmdoption-runoak-apply-obsolete-ignore-invalid-changes"], [0, "cmdoption-runoak-apply-obsolete-o"]], "runoak-apply-taxon-constraints command line option": [[0, "cmdoption-runoak-apply-taxon-constraints-E"], [0, "cmdoption-runoak-apply-taxon-constraints-M"], [0, "cmdoption-runoak-apply-taxon-constraints-arg-CONSTRAINTS"], [0, "cmdoption-runoak-apply-taxon-constraints-o"], [0, "cmdoption-runoak-apply-taxon-constraints-p"]], "runoak-associations command line option": [[0, "cmdoption-runoak-associations-0"], [0, "cmdoption-runoak-associations-O"], [0, "cmdoption-runoak-associations-Q"], [0, "cmdoption-runoak-associations-S"], [0, "cmdoption-runoak-associations-add-closure-fields"], [0, "cmdoption-runoak-associations-arg-TERMS"], [0, "cmdoption-runoak-associations-association-predicates"], [0, "cmdoption-runoak-associations-autolabel"], [0, "cmdoption-runoak-associations-if-absent"], [0, "cmdoption-runoak-associations-o"], [0, "cmdoption-runoak-associations-p"]], "runoak-associations-counts command line option": [[0, "cmdoption-runoak-associations-counts-0"], [0, "cmdoption-runoak-associations-counts-F"], [0, "cmdoption-runoak-associations-counts-L"], [0, "cmdoption-runoak-associations-counts-O"], [0, "cmdoption-runoak-associations-counts-Q"], [0, "cmdoption-runoak-associations-counts-add-closure-fields"], [0, "cmdoption-runoak-associations-counts-arg-TERMS"], [0, "cmdoption-runoak-associations-counts-association-predicates"], [0, "cmdoption-runoak-associations-counts-autolabel"], [0, "cmdoption-runoak-associations-counts-group-by"], [0, "cmdoption-runoak-associations-counts-min-facet-count"], [0, "cmdoption-runoak-associations-counts-o"], [0, "cmdoption-runoak-associations-counts-p"]], "runoak-associations-matrix command line option": [[0, "cmdoption-runoak-associations-matrix-0"], [0, "cmdoption-runoak-associations-matrix-O"], [0, "cmdoption-runoak-associations-matrix-Q"], [0, "cmdoption-runoak-associations-matrix-arg-TERMS"], [0, "cmdoption-runoak-associations-matrix-association-predicates"], [0, "cmdoption-runoak-associations-matrix-autolabel"], [0, "cmdoption-runoak-associations-matrix-o"], [0, "cmdoption-runoak-associations-matrix-p"]], "runoak-axioms command line option": [[0, "cmdoption-runoak-axioms-O"], [0, "cmdoption-runoak-axioms-about"], [0, "cmdoption-runoak-axioms-arg-TERMS"], [0, "cmdoption-runoak-axioms-axiom-type"], [0, "cmdoption-runoak-axioms-o"], [0, "cmdoption-runoak-axioms-references"]], "runoak-cache-clear command line option": [[0, "cmdoption-runoak-cache-clear-days-old"]], "runoak-definitions command line option": [[0, "cmdoption-runoak-definitions-D"], [0, "cmdoption-runoak-definitions-O"], [0, "cmdoption-runoak-definitions-S"], [0, "cmdoption-runoak-definitions-additional-metadata"], [0, "cmdoption-runoak-definitions-arg-TERMS"], [0, "cmdoption-runoak-definitions-autolabel"], [0, "cmdoption-runoak-definitions-if-absent"], [0, "cmdoption-runoak-definitions-o"]], "runoak-descendants command line option": [[0, "cmdoption-runoak-descendants-D"], [0, "cmdoption-runoak-descendants-M"], [0, "cmdoption-runoak-descendants-O"], [0, "cmdoption-runoak-descendants-arg-TERMS"], [0, "cmdoption-runoak-descendants-o"], [0, "cmdoption-runoak-descendants-p"]], "runoak-diff command line option": [[0, "cmdoption-runoak-diff-O"], [0, "cmdoption-runoak-diff-X"], [0, "cmdoption-runoak-diff-change-type"], [0, "cmdoption-runoak-diff-group-by-defined-by"], [0, "cmdoption-runoak-diff-group-by-obo-namespace"], [0, "cmdoption-runoak-diff-group-by-prefix"], [0, "cmdoption-runoak-diff-group-by-property"], [0, "cmdoption-runoak-diff-o"], [0, "cmdoption-runoak-diff-simple"], [0, "cmdoption-runoak-diff-statistics"]], "runoak-diff-associations command line option": [[0, "cmdoption-runoak-diff-associations-0"], [0, "cmdoption-runoak-diff-associations-O"], [0, "cmdoption-runoak-diff-associations-X"], [0, "cmdoption-runoak-diff-associations-autolabel"], [0, "cmdoption-runoak-diff-associations-g"], [0, "cmdoption-runoak-diff-associations-group-by"], [0, "cmdoption-runoak-diff-associations-new-date"], [0, "cmdoption-runoak-diff-associations-o"], [0, "cmdoption-runoak-diff-associations-old-date"], [0, "cmdoption-runoak-diff-associations-p"]], "runoak-diff-terms command line option": [[0, "cmdoption-runoak-diff-terms-arg-TERMS"], [0, "cmdoption-runoak-diff-terms-o"], [0, "cmdoption-runoak-diff-terms-other-ontology"]], "runoak-diff-via-mappings command line option": [[0, "cmdoption-runoak-diff-via-mappings-O"], [0, "cmdoption-runoak-diff-via-mappings-S"], [0, "cmdoption-runoak-diff-via-mappings-X"], [0, "cmdoption-runoak-diff-via-mappings-arg-TERMS"], [0, "cmdoption-runoak-diff-via-mappings-autolabel"], [0, "cmdoption-runoak-diff-via-mappings-bidirectional"], [0, "cmdoption-runoak-diff-via-mappings-filter-category-identical"], [0, "cmdoption-runoak-diff-via-mappings-include-identity-mappings"], [0, "cmdoption-runoak-diff-via-mappings-intra"], [0, "cmdoption-runoak-diff-via-mappings-mapping-input"], [0, "cmdoption-runoak-diff-via-mappings-o"], [0, "cmdoption-runoak-diff-via-mappings-other-input-type"], [0, "cmdoption-runoak-diff-via-mappings-p"]], "runoak-disjoints command line option": [[0, "cmdoption-runoak-disjoints-O"], [0, "cmdoption-runoak-disjoints-arg-TERMS"], [0, "cmdoption-runoak-disjoints-autolabel"], [0, "cmdoption-runoak-disjoints-named-classes-only"], [0, "cmdoption-runoak-disjoints-o"], [0, "cmdoption-runoak-disjoints-p"]], "runoak-dump command line option": [[0, "cmdoption-runoak-dump-O"], [0, "cmdoption-runoak-dump-arg-TERMS"], [0, "cmdoption-runoak-dump-c"], [0, "cmdoption-runoak-dump-enforce-canonical-ordering"], [0, "cmdoption-runoak-dump-o"]], "runoak-enrichment command line option": [[0, "cmdoption-runoak-enrichment-0"], [0, "cmdoption-runoak-enrichment-B"], [0, "cmdoption-runoak-enrichment-O"], [0, "cmdoption-runoak-enrichment-U"], [0, "cmdoption-runoak-enrichment-allow-labels"], [0, "cmdoption-runoak-enrichment-arg-TERMS"], [0, "cmdoption-runoak-enrichment-association-predicates"], [0, "cmdoption-runoak-enrichment-autolabel"], [0, "cmdoption-runoak-enrichment-cutoff"], [0, "cmdoption-runoak-enrichment-filter-redundant"], [0, "cmdoption-runoak-enrichment-o"], [0, "cmdoption-runoak-enrichment-ontology-only"], [0, "cmdoption-runoak-enrichment-p"]], "runoak-expand-subsets command line option": [[0, "cmdoption-runoak-expand-subsets-arg-SUBSETS"], [0, "cmdoption-runoak-expand-subsets-o"], [0, "cmdoption-runoak-expand-subsets-p"]], "runoak-extract command line option": [[0, "cmdoption-runoak-extract-O"], [0, "cmdoption-runoak-extract-arg-TERMS"], [0, "cmdoption-runoak-extract-dangling"], [0, "cmdoption-runoak-extract-include-metadata"], [0, "cmdoption-runoak-extract-o"], [0, "cmdoption-runoak-extract-p"]], "runoak-fill-table command line option": [[0, "cmdoption-runoak-fill-table-allow-missing"], [0, "cmdoption-runoak-fill-table-arg-TABLE_FILE"], [0, "cmdoption-runoak-fill-table-autolabel"], [0, "cmdoption-runoak-fill-table-comment"], [0, "cmdoption-runoak-fill-table-delimiter"], [0, "cmdoption-runoak-fill-table-missing-value-token"], [0, "cmdoption-runoak-fill-table-o"], [0, "cmdoption-runoak-fill-table-relation"], [0, "cmdoption-runoak-fill-table-relation-file"], [0, "cmdoption-runoak-fill-table-schema"]], "runoak-generate-definitions command line option": [[0, "cmdoption-runoak-generate-definitions-O"], [0, "cmdoption-runoak-generate-definitions-apply-patch"], [0, "cmdoption-runoak-generate-definitions-arg-TERMS"], [0, "cmdoption-runoak-generate-definitions-o"], [0, "cmdoption-runoak-generate-definitions-patch"], [0, "cmdoption-runoak-generate-definitions-patch-format"], [0, "cmdoption-runoak-generate-definitions-style-hints"]], "runoak-generate-disjoints command line option": [[0, "cmdoption-runoak-generate-disjoints-M"], [0, "cmdoption-runoak-generate-disjoints-O"], [0, "cmdoption-runoak-generate-disjoints-arg-TERMS"], [0, "cmdoption-runoak-generate-disjoints-autolabel"], [0, "cmdoption-runoak-generate-disjoints-exclude-existing"], [0, "cmdoption-runoak-generate-disjoints-o"], [0, "cmdoption-runoak-generate-disjoints-p"]], "runoak-generate-logical-definitions command line option": [[0, "cmdoption-runoak-generate-logical-definitions-O"], [0, "cmdoption-runoak-generate-logical-definitions-P"], [0, "cmdoption-runoak-generate-logical-definitions-analyze"], [0, "cmdoption-runoak-generate-logical-definitions-arg-TERMS"], [0, "cmdoption-runoak-generate-logical-definitions-autolabel"], [0, "cmdoption-runoak-generate-logical-definitions-fill"], [0, "cmdoption-runoak-generate-logical-definitions-o"], [0, "cmdoption-runoak-generate-logical-definitions-parse"], [0, "cmdoption-runoak-generate-logical-definitions-show-extract"], [0, "cmdoption-runoak-generate-logical-definitions-unmelt"]], "runoak-generate-synonyms command line option": [[0, "cmdoption-runoak-generate-synonyms-O"], [0, "cmdoption-runoak-generate-synonyms-R"], [0, "cmdoption-runoak-generate-synonyms-apply-patch"], [0, "cmdoption-runoak-generate-synonyms-arg-TERMS"], [0, "cmdoption-runoak-generate-synonyms-o"], [0, "cmdoption-runoak-generate-synonyms-patch"], [0, "cmdoption-runoak-generate-synonyms-patch-format"]], "runoak-info command line option": [[0, "cmdoption-runoak-info-D"], [0, "cmdoption-runoak-info-O"], [0, "cmdoption-runoak-info-arg-TERMS"], [0, "cmdoption-runoak-info-o"]], "runoak-information-content command line option": [[0, "cmdoption-runoak-information-content-O"], [0, "cmdoption-runoak-information-content-arg-TERMS"], [0, "cmdoption-runoak-information-content-o"], [0, "cmdoption-runoak-information-content-p"], [0, "cmdoption-runoak-information-content-use-associations"]], "runoak-labels command line option": [[0, "cmdoption-runoak-labels-D"], [0, "cmdoption-runoak-labels-O"], [0, "cmdoption-runoak-labels-S"], [0, "cmdoption-runoak-labels-all-languages"], [0, "cmdoption-runoak-labels-arg-TERMS"], [0, "cmdoption-runoak-labels-if-absent"], [0, "cmdoption-runoak-labels-o"], [0, "cmdoption-runoak-labels-pivot-languages"]], "runoak-leafs command line option": [[0, "cmdoption-runoak-leafs-filter-obsoletes"], [0, "cmdoption-runoak-leafs-o"], [0, "cmdoption-runoak-leafs-p"]], "runoak-lexmatch command line option": [[0, "cmdoption-runoak-lexmatch-L"], [0, "cmdoption-runoak-lexmatch-R"], [0, "cmdoption-runoak-lexmatch-add-labels"], [0, "cmdoption-runoak-lexmatch-arg-TERMS"], [0, "cmdoption-runoak-lexmatch-ensure-strict-prefixes"], [0, "cmdoption-runoak-lexmatch-o"], [0, "cmdoption-runoak-lexmatch-recreate"]], "runoak-lint command line option": [[0, "cmdoption-runoak-lint-O"], [0, "cmdoption-runoak-lint-dry-run"], [0, "cmdoption-runoak-lint-o"], [0, "cmdoption-runoak-lint-report-format"]], "runoak-logical-definitions command line option": [[0, "cmdoption-runoak-logical-definitions-O"], [0, "cmdoption-runoak-logical-definitions-S"], [0, "cmdoption-runoak-logical-definitions-arg-TERMS"], [0, "cmdoption-runoak-logical-definitions-autolabel"], [0, "cmdoption-runoak-logical-definitions-if-absent"], [0, "cmdoption-runoak-logical-definitions-matrix-axes"], [0, "cmdoption-runoak-logical-definitions-o"], [0, "cmdoption-runoak-logical-definitions-p"], [0, "cmdoption-runoak-logical-definitions-unmelt"]], "runoak-mappings command line option": [[0, "cmdoption-runoak-mappings-M"], [0, "cmdoption-runoak-mappings-O"], [0, "cmdoption-runoak-mappings-arg-TERMS"], [0, "cmdoption-runoak-mappings-autolabel"], [0, "cmdoption-runoak-mappings-mapper"], [0, "cmdoption-runoak-mappings-o"]], "runoak-migrate-curies command line option": [[0, "cmdoption-runoak-migrate-curies-O"], [0, "cmdoption-runoak-migrate-curies-arg-CURIE_PAIRS"], [0, "cmdoption-runoak-migrate-curies-o"], [0, "cmdoption-runoak-migrate-curies-replace"]], "runoak-normalize command line option": [[0, "cmdoption-runoak-normalize-M"], [0, "cmdoption-runoak-normalize-O"], [0, "cmdoption-runoak-normalize-arg-TERMS"], [0, "cmdoption-runoak-normalize-autolabel"], [0, "cmdoption-runoak-normalize-o"]], "runoak-obsoletes command line option": [[0, "cmdoption-runoak-obsoletes-O"], [0, "cmdoption-runoak-obsoletes-arg-TERMS"], [0, "cmdoption-runoak-obsoletes-include-merged"], [0, "cmdoption-runoak-obsoletes-o"], [0, "cmdoption-runoak-obsoletes-show-migration-relationships"]], "runoak-ontologies command line option": [[0, "cmdoption-runoak-ontologies-o"]], "runoak-ontology-metadata command line option": [[0, "cmdoption-runoak-ontology-metadata-O"], [0, "cmdoption-runoak-ontology-metadata-all"], [0, "cmdoption-runoak-ontology-metadata-arg-ONTOLOGIES"], [0, "cmdoption-runoak-ontology-metadata-o"]], "runoak-ontology-versions command line option": [[0, "cmdoption-runoak-ontology-versions-all"], [0, "cmdoption-runoak-ontology-versions-arg-ONTOLOGIES"], [0, "cmdoption-runoak-ontology-versions-o"]], "runoak-paths command line option": [[0, "cmdoption-runoak-paths-C"], [0, "cmdoption-runoak-paths-O"], [0, "cmdoption-runoak-paths-S"], [0, "cmdoption-runoak-paths-arg-TERMS"], [0, "cmdoption-runoak-paths-autolabel"], [0, "cmdoption-runoak-paths-directed"], [0, "cmdoption-runoak-paths-exclude-predicates"], [0, "cmdoption-runoak-paths-include-predicates"], [0, "cmdoption-runoak-paths-narrow"], [0, "cmdoption-runoak-paths-o"], [0, "cmdoption-runoak-paths-p"], [0, "cmdoption-runoak-paths-predicate-weights"], [0, "cmdoption-runoak-paths-target"], [0, "cmdoption-runoak-paths-viz"]], "runoak-prefixes command line option": [[0, "cmdoption-runoak-prefixes-O"], [0, "cmdoption-runoak-prefixes-arg-TERMS"], [0, "cmdoption-runoak-prefixes-o"], [0, "cmdoption-runoak-prefixes-used-only"]], "runoak-query command line option": [[0, "cmdoption-runoak-query-L"], [0, "cmdoption-runoak-query-O"], [0, "cmdoption-runoak-query-P"], [0, "cmdoption-runoak-query-autolabel"], [0, "cmdoption-runoak-query-o"], [0, "cmdoption-runoak-query-q"]], "runoak-relationships command line option": [[0, "cmdoption-runoak-relationships-O"], [0, "cmdoption-runoak-relationships-S"], [0, "cmdoption-runoak-relationships-arg-TERMS"], [0, "cmdoption-runoak-relationships-autolabel"], [0, "cmdoption-runoak-relationships-direction"], [0, "cmdoption-runoak-relationships-if-absent"], [0, "cmdoption-runoak-relationships-include-abox"], [0, "cmdoption-runoak-relationships-include-entailed"], [0, "cmdoption-runoak-relationships-include-metadata"], [0, "cmdoption-runoak-relationships-include-tbox"], [0, "cmdoption-runoak-relationships-o"], [0, "cmdoption-runoak-relationships-p"]], "runoak-rollup command line option": [[0, "cmdoption-runoak-rollup-O"], [0, "cmdoption-runoak-rollup-arg-TERMS"], [0, "cmdoption-runoak-rollup-autolabel"], [0, "cmdoption-runoak-rollup-o"], [0, "cmdoption-runoak-rollup-object-group"], [0, "cmdoption-runoak-rollup-p"]], "runoak-roots command line option": [[0, "cmdoption-runoak-roots-A"], [0, "cmdoption-runoak-roots-O"], [0, "cmdoption-runoak-roots-P"], [0, "cmdoption-runoak-roots-o"], [0, "cmdoption-runoak-roots-p"]], "runoak-search command line option": [[0, "cmdoption-runoak-search-O"], [0, "cmdoption-runoak-search-arg-TERMS"], [0, "cmdoption-runoak-search-autolabel"], [0, "cmdoption-runoak-search-o"]], "runoak-set-apikey command line option": [[0, "cmdoption-runoak-set-apikey-arg-KEYVAL"], [0, "cmdoption-runoak-set-apikey-e"]], "runoak-siblings command line option": [[0, "cmdoption-runoak-siblings-O"], [0, "cmdoption-runoak-siblings-arg-TERMS"], [0, "cmdoption-runoak-siblings-o"], [0, "cmdoption-runoak-siblings-p"]], "runoak-similarity command line option": [[0, "cmdoption-runoak-similarity-O"], [0, "cmdoption-runoak-similarity-arg-TERMS"], [0, "cmdoption-runoak-similarity-autolabel"], [0, "cmdoption-runoak-similarity-information-content-file"], [0, "cmdoption-runoak-similarity-main-score-field"], [0, "cmdoption-runoak-similarity-min-ancestor-information-content"], [0, "cmdoption-runoak-similarity-min-jaccard-similarity"], [0, "cmdoption-runoak-similarity-o"], [0, "cmdoption-runoak-similarity-p"], [0, "cmdoption-runoak-similarity-set1-file"], [0, "cmdoption-runoak-similarity-set2-file"]], "runoak-similarity-pair command line option": [[0, "cmdoption-runoak-similarity-pair-O"], [0, "cmdoption-runoak-similarity-pair-arg-TERMS"], [0, "cmdoption-runoak-similarity-pair-autolabel"], [0, "cmdoption-runoak-similarity-pair-o"], [0, "cmdoption-runoak-similarity-pair-p"]], "runoak-singletons command line option": [[0, "cmdoption-runoak-singletons-filter-obsoletes"], [0, "cmdoption-runoak-singletons-o"], [0, "cmdoption-runoak-singletons-p"]], "runoak-statistics command line option": [[0, "cmdoption-runoak-statistics-O"], [0, "cmdoption-runoak-statistics-P"], [0, "cmdoption-runoak-statistics-X"], [0, "cmdoption-runoak-statistics-arg-BRANCHES"], [0, "cmdoption-runoak-statistics-group-by-defined-by"], [0, "cmdoption-runoak-statistics-group-by-obo-namespace"], [0, "cmdoption-runoak-statistics-group-by-prefix"], [0, "cmdoption-runoak-statistics-group-by-property"], [0, "cmdoption-runoak-statistics-include-residuals"], [0, "cmdoption-runoak-statistics-o"]], "runoak-subsets command line option": [[0, "cmdoption-runoak-subsets-o"]], "runoak-synonymize command line option": [[0, "cmdoption-runoak-synonymize-R"], [0, "cmdoption-runoak-synonymize-apply-patch"], [0, "cmdoption-runoak-synonymize-arg-TERMS"], [0, "cmdoption-runoak-synonymize-o"], [0, "cmdoption-runoak-synonymize-patch"]], "runoak-taxon-constraints command line option": [[0, "cmdoption-runoak-taxon-constraints-A"], [0, "cmdoption-runoak-taxon-constraints-M"], [0, "cmdoption-runoak-taxon-constraints-O"], [0, "cmdoption-runoak-taxon-constraints-arg-TERMS"], [0, "cmdoption-runoak-taxon-constraints-direct"], [0, "cmdoption-runoak-taxon-constraints-include-redundant"], [0, "cmdoption-runoak-taxon-constraints-o"], [0, "cmdoption-runoak-taxon-constraints-p"]], "runoak-term-categories command line option": [[0, "cmdoption-runoak-term-categories-O"], [0, "cmdoption-runoak-term-categories-arg-TERMS"], [0, "cmdoption-runoak-term-categories-category-system"], [0, "cmdoption-runoak-term-categories-o"]], "runoak-term-metadata command line option": [[0, "cmdoption-runoak-term-metadata-O"], [0, "cmdoption-runoak-term-metadata-additional-metadata"], [0, "cmdoption-runoak-term-metadata-arg-TERMS"], [0, "cmdoption-runoak-term-metadata-o"], [0, "cmdoption-runoak-term-metadata-p"]], "runoak-term-subsets command line option": [[0, "cmdoption-runoak-term-subsets-O"], [0, "cmdoption-runoak-term-subsets-arg-TERMS"], [0, "cmdoption-runoak-term-subsets-o"]], "runoak-terms command line option": [[0, "cmdoption-runoak-terms-filter-obsoletes"], [0, "cmdoption-runoak-terms-o"], [0, "cmdoption-runoak-terms-owl-type"]], "runoak-termset-similarity command line option": [[0, "cmdoption-runoak-termset-similarity-O"], [0, "cmdoption-runoak-termset-similarity-arg-TERMS"], [0, "cmdoption-runoak-termset-similarity-autolabel"], [0, "cmdoption-runoak-termset-similarity-information-content-file"], [0, "cmdoption-runoak-termset-similarity-o"], [0, "cmdoption-runoak-termset-similarity-p"]], "runoak-transform command line option": [[0, "cmdoption-runoak-transform-O"], [0, "cmdoption-runoak-transform-arg-TERMS"], [0, "cmdoption-runoak-transform-c"], [0, "cmdoption-runoak-transform-o"], [0, "cmdoption-runoak-transform-t"]], "runoak-tree command line option": [[0, "cmdoption-runoak-tree-C"], [0, "cmdoption-runoak-tree-D"], [0, "cmdoption-runoak-tree-O"], [0, "cmdoption-runoak-tree-S"], [0, "cmdoption-runoak-tree-add-mrcas"], [0, "cmdoption-runoak-tree-arg-TERMS"], [0, "cmdoption-runoak-tree-down"], [0, "cmdoption-runoak-tree-gap-fill"], [0, "cmdoption-runoak-tree-max-hops"], [0, "cmdoption-runoak-tree-o"], [0, "cmdoption-runoak-tree-p"], [0, "cmdoption-runoak-tree-root"], [0, "cmdoption-runoak-tree-skip"]], "runoak-validate command line option": [[0, "cmdoption-runoak-validate-O"], [0, "cmdoption-runoak-validate-R"], [0, "cmdoption-runoak-validate-arg-TERMS"], [0, "cmdoption-runoak-validate-cutoff"], [0, "cmdoption-runoak-validate-o"], [0, "cmdoption-runoak-validate-skip-ontology-rules"], [0, "cmdoption-runoak-validate-skip-structural-validation"]], "runoak-validate-definitions command line option": [[0, "cmdoption-runoak-validate-definitions-O"], [0, "cmdoption-runoak-validate-definitions-arg-TERMS"], [0, "cmdoption-runoak-validate-definitions-o"], [0, "cmdoption-runoak-validate-definitions-skip-text-annotation"]], "runoak-validate-mappings command line option": [[0, "cmdoption-runoak-validate-mappings-C"], [0, "cmdoption-runoak-validate-mappings-O"], [0, "cmdoption-runoak-validate-mappings-adapter-mapping"], [0, "cmdoption-runoak-validate-mappings-arg-TERMS"], [0, "cmdoption-runoak-validate-mappings-autolabel"], [0, "cmdoption-runoak-validate-mappings-o"]], "runoak-validate-multiple command line option": [[0, "cmdoption-runoak-validate-multiple-arg-DBS"], [0, "cmdoption-runoak-validate-multiple-cutoff"], [0, "cmdoption-runoak-validate-multiple-o"], [0, "cmdoption-runoak-validate-multiple-s"]], "runoak-viz command line option": [[0, "cmdoption-runoak-viz-C"], [0, "cmdoption-runoak-viz-O"], [0, "cmdoption-runoak-viz-S"], [0, "cmdoption-runoak-viz-add-mrcas"], [0, "cmdoption-runoak-viz-arg-TERMS"], [0, "cmdoption-runoak-viz-down"], [0, "cmdoption-runoak-viz-gap-fill"], [0, "cmdoption-runoak-viz-max-hops"], [0, "cmdoption-runoak-viz-meta"], [0, "cmdoption-runoak-viz-o"], [0, "cmdoption-runoak-viz-p"], [0, "cmdoption-runoak-viz-view"]], "ancestor": [[1106, "term-Ancestor"]], "annotation": [[1106, "term-Annotation"]], "annotationproperty": [[1106, "term-AnnotationProperty"]], "asserted": [[1106, "term-Asserted"]], "association": [[1106, "term-Association"]], "bioportal": [[1106, "term-Bioportal"]], "curie": [[1106, "term-CURIE"]], "category": [[1106, "term-Category"]], "class": [[1106, "term-Class"]], "closure": [[1106, "term-Closure"]], "concept": [[1106, "term-Concept"]], "datamodel": [[1106, "term-Datamodel"]], "datatypeproperty": [[1106, "term-DatatypeProperty"]], "descendant": [[1106, "term-Descendant"]], "diff": [[1106, "term-Diff"]], "edge": [[1106, "term-Edge"]], "entailed": [[1106, "term-Entailed"]], "funowl": [[1106, "term-FunOWL"]], "functional syntax": [[1106, "term-Functional-Syntax"]], "graph": [[1106, "term-Graph"]], "graph traversal": [[1106, "term-Graph-Traversal"]], "is_a:": [[1106, "term-IS_A"]], "identifier": [[1106, "term-Identifier"]], "implementation": [[1106, "term-Implementation"]], "information content": [[1106, "term-Information-Content"]], "input selector": [[1106, "term-Input-Selector"]], "interface": [[1106, "term-Interface"]], "iterator": [[1106, "term-Iterator"]], "kgcl": [[1106, "term-KGCL"]], "label": [[1106, "term-Label"]], "logical definition": [[1106, "term-Logical-Definition"]], "mapping": [[1106, "term-Mapping"]], "name": [[1106, "term-Name"]], "named individual": [[1106, "term-Named-Individual"]], "node": [[1106, "term-Node"]], "obo format": [[1106, "term-OBO-Format"]], "obo graphs": [[1106, "term-OBO-Graphs"]], "ols": [[1106, "term-OLS"]], "owl": [[1106, "term-OWL"]], "owl annotation": [[1106, "term-OWL-Annotation"]], "object": [[1106, "term-Object"]], "object closure": [[1106, "term-Object-Closure"]], "objectproperty": [[1106, "term-ObjectProperty"]], "ontogpt": [[1106, "term-OntoGPT"]], "ontoportal": [[1106, "term-OntoPortal"]], "ontobee": [[1106, "term-Ontobee"]], "ontology": [[1106, "term-Ontology"]], "ontology element": [[1106, "term-Ontology-Element"]], "ontology format": [[1106, "term-Ontology-Format"]], "ontology graph projection": [[1106, "term-Ontology-Graph-Projection"]], "part of": [[1106, "term-Part-Of"]], "patch": [[1106, "term-Patch"]], "predicate": [[1106, "term-Predicate"]], "pronto": [[1106, "term-Pronto"]], "property": [[1106, "term-Property"]], "rdf": [[1106, "term-RDF"]], "reasoner": [[1106, "term-Reasoner"]], "reasoning": [[1106, "term-Reasoning"]], "reflexive": [[1106, "term-Reflexive"]], "relation graph": [[1106, "term-Relation-Graph"]], "relationship": [[1106, "term-Relationship"]], "relationship type": [[1106, "term-Relationship-Type"]], "sparql": [[1106, "term-SPARQL"]], "sql": [[1106, "term-SQL"]], "sssom": [[1106, "term-SSSOM"]], "semantic sql": [[1106, "term-Semantic-SQL"]], "semantic similarity": [[1106, "term-Semantic-Similarity"]], "subject": [[1106, "term-Subject"]], "subject closure": [[1106, "term-Subject-Closure"]], "subset": [[1106, "term-Subset"]], "tautology": [[1106, "term-Tautology"]], "term": [[1106, "term-Term"]], "text annotation": [[1106, "term-Text-Annotation"]], "triple": [[1106, "term-Triple"]], "triplestore": [[1106, "term-Triplestore"]], "uri": [[1106, "term-URI"]], "ubergraph": [[1106, "term-Ubergraph"]], "datamodelconverter (class in oaklib.converters.data_model_converter)": [[1142, "oaklib.converters.data_model_converter.DataModelConverter"]], "convert() (oaklib.converters.data_model_converter.datamodelconverter method)": [[1142, "oaklib.converters.data_model_converter.DataModelConverter.convert"]], "curie_converter (oaklib.converters.data_model_converter.datamodelconverter attribute)": [[1142, "oaklib.converters.data_model_converter.DataModelConverter.curie_converter"]], "dump() (oaklib.converters.data_model_converter.datamodelconverter method)": [[1142, "oaklib.converters.data_model_converter.DataModelConverter.dump"]], "enforce_canonical_ordering (oaklib.converters.data_model_converter.datamodelconverter attribute)": [[1142, "oaklib.converters.data_model_converter.DataModelConverter.enforce_canonical_ordering"]], "labeler (oaklib.converters.data_model_converter.datamodelconverter attribute)": [[1142, "oaklib.converters.data_model_converter.DataModelConverter.labeler"]], "obographtocxconverter (class in oaklib.converters.obo_graph_to_cx_converter)": [[1144, "oaklib.converters.obo_graph_to_cx_converter.OboGraphToCXConverter"]], "convert() (oaklib.converters.obo_graph_to_cx_converter.obographtocxconverter method)": [[1144, "oaklib.converters.obo_graph_to_cx_converter.OboGraphToCXConverter.convert"]], "dump() (oaklib.converters.obo_graph_to_cx_converter.obographtocxconverter method)": [[1144, "oaklib.converters.obo_graph_to_cx_converter.OboGraphToCXConverter.dump"]], "obographtofhirconverter (class in oaklib.converters.obo_graph_to_fhir_converter)": [[1145, "oaklib.converters.obo_graph_to_fhir_converter.OboGraphToFHIRConverter"]], "code() (oaklib.converters.obo_graph_to_fhir_converter.obographtofhirconverter method)": [[1145, "oaklib.converters.obo_graph_to_fhir_converter.OboGraphToFHIRConverter.code"]], "convert() (oaklib.converters.obo_graph_to_fhir_converter.obographtofhirconverter method)": [[1145, "oaklib.converters.obo_graph_to_fhir_converter.OboGraphToFHIRConverter.convert"]], "dump() (oaklib.converters.obo_graph_to_fhir_converter.obographtofhirconverter method)": [[1145, "oaklib.converters.obo_graph_to_fhir_converter.OboGraphToFHIRConverter.dump"]], "obographtooboformatconverter (class in oaklib.converters.obo_graph_to_obo_format_converter)": [[1146, "oaklib.converters.obo_graph_to_obo_format_converter.OboGraphToOboFormatConverter"]], "as_bytes_io() (oaklib.converters.obo_graph_to_obo_format_converter.obographtooboformatconverter method)": [[1146, "oaklib.converters.obo_graph_to_obo_format_converter.OboGraphToOboFormatConverter.as_bytes_io"]], "convert() (oaklib.converters.obo_graph_to_obo_format_converter.obographtooboformatconverter method)": [[1146, "oaklib.converters.obo_graph_to_obo_format_converter.OboGraphToOboFormatConverter.convert"]], "dump() (oaklib.converters.obo_graph_to_obo_format_converter.obographtooboformatconverter method)": [[1146, "oaklib.converters.obo_graph_to_obo_format_converter.OboGraphToOboFormatConverter.dump"]], "dumps() (oaklib.converters.obo_graph_to_obo_format_converter.obographtooboformatconverter method)": [[1146, "oaklib.converters.obo_graph_to_obo_format_converter.OboGraphToOboFormatConverter.dumps"]], "aggregatorimplementation (class in oaklib.implementations.aggregator.aggregator_implementation)": [[1148, "oaklib.implementations.aggregator.aggregator_implementation.AggregatorImplementation"]], "funowlimplementation (class in oaklib.implementations.funowl.funowl_implementation)": [[1150, "oaklib.implementations.funowl.funowl_implementation.FunOwlImplementation"]], "gildaimplementation (class in oaklib.implementations.gilda)": [[1151, "oaklib.implementations.gilda.GildaImplementation"]], "obographimplementation (class in oaklib.implementations.obograph.obograph_implementation)": [[1154, "oaklib.implementations.obograph.obograph_implementation.OboGraphImplementation"]], "olsimplementation (class in oaklib.implementations.ols.ols_implementation)": [[1155, "oaklib.implementations.ols.ols_implementation.OlsImplementation"]], "ontobeeimplementation (class in oaklib.implementations.ontobee.ontobee_implementation)": [[1156, "oaklib.implementations.ontobee.ontobee_implementation.OntobeeImplementation"]], "owleryimplementation (class in oaklib.implementations.owlery.owlery_implementation)": [[1157, "oaklib.implementations.owlery.owlery_implementation.OwleryImplementation"]], "pantherdbimplementation (class in oaklib.implementations.pantherdb.pantherdb_implementation)": [[1158, "oaklib.implementations.pantherdb.pantherdb_implementation.PantherDBImplementation"]], "prontoimplementation (class in oaklib.implementations.pronto.pronto_implementation)": [[1159, "oaklib.implementations.pronto.pronto_implementation.ProntoImplementation"]], "simpleoboimplementation (class in oaklib.implementations.simpleobo.simple_obo_implementation)": [[1160, "oaklib.implementations.simpleobo.simple_obo_implementation.SimpleOboImplementation"]], "sparqlimplementation (class in oaklib.implementations.sparql.sparql_implementation)": [[1161, "oaklib.implementations.sparql.sparql_implementation.SparqlImplementation"]], "edge (class in semsql.sqla.semsql)": [[1162, "semsql.sqla.semsql.Edge"]], "entailededge (class in semsql.sqla.semsql)": [[1162, "semsql.sqla.semsql.EntailedEdge"]], "sqlimplementation (class in oaklib.implementations.sqldb.sql_implementation)": [[1162, "oaklib.implementations.sqldb.sql_implementation.SqlImplementation"]], "statements (class in semsql.sqla.semsql)": [[1162, "semsql.sqla.semsql.Statements"]], "create() (oaklib.implementations.sqldb.sql_implementation.sqlimplementation class method)": [[1162, "oaklib.implementations.sqldb.sql_implementation.SqlImplementation.create"]], "relationgraphenum (class in oaklib.implementations.ubergraph.ubergraph_implementation)": [[1163, "oaklib.implementations.ubergraph.ubergraph_implementation.RelationGraphEnum"]], "ubergraphimplementation (class in oaklib.implementations.ubergraph.ubergraph_implementation)": [[1163, "oaklib.implementations.ubergraph.ubergraph_implementation.UbergraphImplementation"]], "associationproviderinterface (class in oaklib.interfaces.association_provider_interface)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface"]], "add_associations() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.add_associations"]], "association_counts() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.association_counts"]], "association_pairwise_coassociations() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.association_pairwise_coassociations"]], "association_subject_counts() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.association_subject_counts"]], "associations() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.associations"]], "associations_subject_search() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.associations_subject_search"]], "associations_subjects() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.associations_subjects"]], "map_associations() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.map_associations"]], "normalize_association() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.normalize_association"]], "normalize_associations() (oaklib.interfaces.association_provider_interface.associationproviderinterface method)": [[1165, "oaklib.interfaces.association_provider_interface.AssociationProviderInterface.normalize_associations"]], "basicontologyinterface (class in oaklib.interfaces.basic_ontology_interface)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface"]], "add_missing_property_values() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.add_missing_property_values"]], "alias_map_by_curie() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.alias_map_by_curie"]], "aliases_by_curie() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.aliases_by_curie"]], "all_entity_curies() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.all_entity_curies"]], "all_obsolete_curies() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.all_obsolete_curies"]], "all_ontology_curies() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.all_ontology_curies"]], "all_relationships() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.all_relationships"]], "all_subset_curies() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.all_subset_curies"]], "auto_relax_axioms (oaklib.interfaces.basic_ontology_interface.basicontologyinterface attribute)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.auto_relax_axioms"]], "autosave (oaklib.interfaces.basic_ontology_interface.basicontologyinterface attribute)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.autosave"]], "cache_lookups (oaklib.interfaces.basic_ontology_interface.basicontologyinterface attribute)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.cache_lookups"]], "clone() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.clone"]], "comments() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.comments"]], "converter (oaklib.interfaces.basic_ontology_interface.basicontologyinterface property)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.converter"]], "create_entity() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.create_entity"]], "curie_to_uri() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.curie_to_uri"]], "curies_by_label() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.curies_by_label"]], "curies_by_subset() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.curies_by_subset"]], "dangling() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.dangling"]], "default_language (oaklib.interfaces.basic_ontology_interface.basicontologyinterface property)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.default_language"]], "defined_by() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.defined_by"]], "defined_bys() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.defined_bys"]], "definition() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.definition"]], "definitions() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.definitions"]], "delete_entity() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.delete_entity"]], "edge_index (oaklib.interfaces.basic_ontology_interface.basicontologyinterface property)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.edge_index"]], "entailed_edge_index (oaklib.interfaces.basic_ontology_interface.basicontologyinterface property)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.entailed_edge_index"]], "entities() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.entities"]], "entities_metadata_statements() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.entities_metadata_statements"]], "entity_alias_map() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.entity_alias_map"]], "entity_aliases() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.entity_aliases"]], "entity_metadata_map() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.entity_metadata_map"]], "exclude_owl_top_and_bottom (oaklib.interfaces.basic_ontology_interface.basicontologyinterface attribute)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.exclude_owl_top_and_bottom"]], "get_curies_by_label() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.get_curies_by_label"]], "get_definition_by_curie() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.get_definition_by_curie"]], "get_label_by_curie() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.get_label_by_curie"]], "get_labels_for_curies() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.get_labels_for_curies"]], "get_prefix_map() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.get_prefix_map"]], "hierarchical_parents() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.hierarchical_parents"]], "incoming_relationship_map() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.incoming_relationship_map"]], "incoming_relationships() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.incoming_relationships"]], "label() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.label"]], "labels() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.labels"]], "languages() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.languages"]], "leafs() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.leafs"]], "multilingual (oaklib.interfaces.basic_ontology_interface.basicontologyinterface property)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.multilingual"]], "multilingual_labels() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.multilingual_labels"]], "obsoletes() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.obsoletes"]], "obsoletes_migration_relationships() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.obsoletes_migration_relationships"]], "ontologies() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.ontologies"]], "ontology_curies() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.ontology_curies"]], "ontology_metadata_map() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.ontology_metadata_map"]], "ontology_metamodel_mapper (oaklib.interfaces.basic_ontology_interface.basicontologyinterface attribute)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.ontology_metamodel_mapper"]], "ontology_versions() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.ontology_versions"]], "outgoing_relationship_map() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.outgoing_relationship_map"]], "outgoing_relationships() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.outgoing_relationships"]], "owl_type() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.owl_type"]], "owl_types() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.owl_types"]], "precompute_lookups() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.precompute_lookups"]], "prefix_map() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.prefix_map"]], "query() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.query"]], "relationships() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.relationships"]], "relationships_metadata() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.relationships_metadata"]], "roots() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.roots"]], "save() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.save"]], "set_label() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.set_label"]], "set_metamodel_mappings() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.set_metamodel_mappings"]], "simple_mappings() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.simple_mappings"]], "simple_mappings_by_curie() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.simple_mappings_by_curie"]], "singletons() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.singletons"]], "strict (oaklib.interfaces.basic_ontology_interface.basicontologyinterface attribute)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.strict"]], "subset_curies() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.subset_curies"]], "subset_members() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.subset_members"]], "subsets() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.subsets"]], "terms_categories() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.terms_categories"]], "terms_subsets() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.terms_subsets"]], "uri_to_curie() (oaklib.interfaces.basic_ontology_interface.basicontologyinterface method)": [[1166, "oaklib.interfaces.basic_ontology_interface.BasicOntologyInterface.uri_to_curie"]], "classenrichmentcalculationinterface (class in oaklib.interfaces.class_enrichment_calculation_interface)": [[1167, "oaklib.interfaces.class_enrichment_calculation_interface.ClassEnrichmentCalculationInterface"]], "create_self_associations() (oaklib.interfaces.class_enrichment_calculation_interface.classenrichmentcalculationinterface method)": [[1167, "oaklib.interfaces.class_enrichment_calculation_interface.ClassEnrichmentCalculationInterface.create_self_associations"]], "enriched_classes() (oaklib.interfaces.class_enrichment_calculation_interface.classenrichmentcalculationinterface method)": [[1167, "oaklib.interfaces.class_enrichment_calculation_interface.ClassEnrichmentCalculationInterface.enriched_classes"]], "differinterface (class in oaklib.interfaces.differ_interface)": [[1168, "oaklib.interfaces.differ_interface.DifferInterface"]], "autosave (oaklib.interfaces.differ_interface.differinterface attribute)": [[1168, "oaklib.interfaces.differ_interface.DifferInterface.autosave"]], "compare_ontology_term_lists() (oaklib.interfaces.differ_interface.differinterface method)": [[1168, "oaklib.interfaces.differ_interface.DifferInterface.compare_ontology_term_lists"]], "diff() (oaklib.interfaces.differ_interface.differinterface method)": [[1168, "oaklib.interfaces.differ_interface.DifferInterface.diff"]], "diff_summary() (oaklib.interfaces.differ_interface.differinterface method)": [[1168, "oaklib.interfaces.differ_interface.DifferInterface.diff_summary"]], "exclude_owl_top_and_bottom (oaklib.interfaces.differ_interface.differinterface attribute)": [[1168, "oaklib.interfaces.differ_interface.DifferInterface.exclude_owl_top_and_bottom"]], "dumperinterface (class in oaklib.interfaces.dumper_interface)": [[1169, "oaklib.interfaces.dumper_interface.DumperInterface"]], "autosave (oaklib.interfaces.dumper_interface.dumperinterface attribute)": [[1169, "oaklib.interfaces.dumper_interface.DumperInterface.autosave"]], "dump() (oaklib.interfaces.dumper_interface.dumperinterface method)": [[1169, "oaklib.interfaces.dumper_interface.DumperInterface.dump"]], "exclude_owl_top_and_bottom (oaklib.interfaces.dumper_interface.dumperinterface attribute)": [[1169, "oaklib.interfaces.dumper_interface.DumperInterface.exclude_owl_top_and_bottom"]], "mappingproviderinterface (class in oaklib.interfaces.mapping_provider_interface)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface"]], "all_sssom_mappings() (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface method)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.all_sssom_mappings"]], "autosave (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface attribute)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.autosave"]], "create_normalization_map() (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface method)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.create_normalization_map"]], "exclude_owl_top_and_bottom (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface attribute)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.exclude_owl_top_and_bottom"]], "get_sssom_mappings_by_curie() (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface method)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.get_sssom_mappings_by_curie"]], "get_transitive_mappings_by_curie() (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface method)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.get_transitive_mappings_by_curie"]], "normalize() (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface method)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.normalize"]], "normalize_prefix() (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface method)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.normalize_prefix"]], "sssom_mappings() (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface method)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.sssom_mappings"]], "sssom_mappings_by_source() (oaklib.interfaces.mapping_provider_interface.mappingproviderinterface method)": [[1171, "oaklib.interfaces.mapping_provider_interface.MappingProviderInterface.sssom_mappings_by_source"]], "obographinterface (class in oaklib.interfaces.obograph_interface)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface"]], "traversalconfiguration (class in oaklib.interfaces.obograph_interface)": [[1172, "oaklib.interfaces.obograph_interface.TraversalConfiguration"]], "add_metadata() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.add_metadata"]], "ancestor_graph() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.ancestor_graph"]], "ancestors() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.ancestors"]], "as_obograph() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.as_obograph"]], "descendant_count() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.descendant_count"]], "descendant_graph() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.descendant_graph"]], "descendants() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.descendants"]], "disable_transitive_query_cache() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.disable_transitive_query_cache"]], "disjoint_class_expressions_axioms() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.disjoint_class_expressions_axioms"]], "edges() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.edges"]], "enable_transitive_query_cache() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.enable_transitive_query_cache"]], "extract_graph() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.extract_graph"]], "load_graph() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.load_graph"]], "logical_definitions() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.logical_definitions"]], "node() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.node"]], "nodes() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.nodes"]], "paths() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.paths"]], "relationships_to_graph() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.relationships_to_graph"]], "subgraph_from_traversal() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.subgraph_from_traversal"]], "synonym_map_for_curies() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.synonym_map_for_curies"]], "walk_up_relationship_graph() (oaklib.interfaces.obograph_interface.obographinterface method)": [[1172, "oaklib.interfaces.obograph_interface.OboGraphInterface.walk_up_relationship_graph"]], "owlinterface (class in oaklib.interfaces.owl_interface)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface"]], "annotation_assertion_axioms() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.annotation_assertion_axioms"]], "axiom_is_about() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.axiom_is_about"]], "axiom_references() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.axiom_references"]], "disjoint_pairs() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.disjoint_pairs"]], "equivalence_axioms() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.equivalence_axioms"]], "is_disjoint() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.is_disjoint"]], "is_satisfiable() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.is_satisfiable"]], "property_characteristics() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.property_characteristics"]], "reasoner_configurations() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.reasoner_configurations"]], "simple_subproperty_of_chains() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.simple_subproperty_of_chains"]], "subclass_axioms() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.subclass_axioms"]], "transitive_object_properties() (oaklib.interfaces.owl_interface.owlinterface method)": [[1173, "oaklib.interfaces.owl_interface.OwlInterface.transitive_object_properties"]], "patcherinterface (class in oaklib.interfaces.patcher_interface)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface"]], "apply_patch() (oaklib.interfaces.patcher_interface.patcherinterface method)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface.apply_patch"]], "auto_add_contributor_using (oaklib.interfaces.patcher_interface.patcherinterface attribute)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface.auto_add_contributor_using"]], "expand_change() (oaklib.interfaces.patcher_interface.patcherinterface method)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface.expand_change"]], "expand_changes() (oaklib.interfaces.patcher_interface.patcherinterface method)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface.expand_changes"]], "ignore_invalid_changes (oaklib.interfaces.patcher_interface.patcherinterface attribute)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface.ignore_invalid_changes"]], "migrate_curies() (oaklib.interfaces.patcher_interface.patcherinterface method)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface.migrate_curies"]], "reverse_changes() (oaklib.interfaces.patcher_interface.patcherinterface method)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface.reverse_changes"]], "save() (oaklib.interfaces.patcher_interface.patcherinterface method)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface.save"]], "undo() (oaklib.interfaces.patcher_interface.patcherinterface method)": [[1174, "oaklib.interfaces.patcher_interface.PatcherInterface.undo"]], "relationgraphinterface (class in oaklib.interfaces.relation_graph_interface)": [[1175, "oaklib.interfaces.relation_graph_interface.RelationGraphInterface"]], "autosave (oaklib.interfaces.relation_graph_interface.relationgraphinterface attribute)": [[1175, "oaklib.interfaces.relation_graph_interface.RelationGraphInterface.autosave"]], "entailed_incoming_relationships() (oaklib.interfaces.relation_graph_interface.relationgraphinterface method)": [[1175, "oaklib.interfaces.relation_graph_interface.RelationGraphInterface.entailed_incoming_relationships"]], "entailed_outgoing_relationships() (oaklib.interfaces.relation_graph_interface.relationgraphinterface method)": [[1175, "oaklib.interfaces.relation_graph_interface.RelationGraphInterface.entailed_outgoing_relationships"]], "entailed_relationships_between() (oaklib.interfaces.relation_graph_interface.relationgraphinterface method)": [[1175, "oaklib.interfaces.relation_graph_interface.RelationGraphInterface.entailed_relationships_between"]], "exclude_owl_top_and_bottom (oaklib.interfaces.relation_graph_interface.relationgraphinterface attribute)": [[1175, "oaklib.interfaces.relation_graph_interface.RelationGraphInterface.exclude_owl_top_and_bottom"]], "searchconfiguration (class in oaklib.interfaces.search_interface)": [[1176, "oaklib.interfaces.search_interface.SearchConfiguration"]], "searchinterface (class in oaklib.interfaces.search_interface)": [[1176, "oaklib.interfaces.search_interface.SearchInterface"]], "autosave (oaklib.interfaces.search_interface.searchinterface attribute)": [[1176, "oaklib.interfaces.search_interface.SearchInterface.autosave"]], "basic_search() (oaklib.interfaces.search_interface.searchinterface method)": [[1176, "oaklib.interfaces.search_interface.SearchInterface.basic_search"]], "exclude_owl_top_and_bottom (oaklib.interfaces.search_interface.searchinterface attribute)": [[1176, "oaklib.interfaces.search_interface.SearchInterface.exclude_owl_top_and_bottom"]], "multiterm_search() (oaklib.interfaces.search_interface.searchinterface method)": [[1176, "oaklib.interfaces.search_interface.SearchInterface.multiterm_search"]], "semanticsimilarityinterface (class in oaklib.interfaces.semsim_interface)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface"]], "all_by_all_pairwise_similarity() (oaklib.interfaces.semsim_interface.semanticsimilarityinterface method)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface.all_by_all_pairwise_similarity"]], "cached_information_content_map (oaklib.interfaces.semsim_interface.semanticsimilarityinterface attribute)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface.cached_information_content_map"]], "common_ancestors() (oaklib.interfaces.semsim_interface.semanticsimilarityinterface method)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface.common_ancestors"]], "get_information_content() (oaklib.interfaces.semsim_interface.semanticsimilarityinterface method)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface.get_information_content"]], "information_content_scores() (oaklib.interfaces.semsim_interface.semanticsimilarityinterface method)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface.information_content_scores"]], "most_recent_common_ancestors() (oaklib.interfaces.semsim_interface.semanticsimilarityinterface method)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface.most_recent_common_ancestors"]], "multiset_most_recent_common_ancestors() (oaklib.interfaces.semsim_interface.semanticsimilarityinterface method)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface.multiset_most_recent_common_ancestors"]], "pairwise_similarity() (oaklib.interfaces.semsim_interface.semanticsimilarityinterface method)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface.pairwise_similarity"]], "setwise_most_recent_common_ancestors() (oaklib.interfaces.semsim_interface.semanticsimilarityinterface method)": [[1177, "oaklib.interfaces.semsim_interface.SemanticSimilarityInterface.setwise_most_recent_common_ancestors"]], "subsetterinterface (class in oaklib.interfaces.subsetter_interface)": [[1178, "oaklib.interfaces.subsetter_interface.SubsetterInterface"]], "autosave (oaklib.interfaces.subsetter_interface.subsetterinterface attribute)": [[1178, "oaklib.interfaces.subsetter_interface.SubsetterInterface.autosave"]], "exclude_owl_top_and_bottom (oaklib.interfaces.subsetter_interface.subsetterinterface attribute)": [[1178, "oaklib.interfaces.subsetter_interface.SubsetterInterface.exclude_owl_top_and_bottom"]], "extract_subset_ontology() (oaklib.interfaces.subsetter_interface.subsetterinterface method)": [[1178, "oaklib.interfaces.subsetter_interface.SubsetterInterface.extract_subset_ontology"]], "gap_fill_relationships() (oaklib.interfaces.subsetter_interface.subsetterinterface method)": [[1178, "oaklib.interfaces.subsetter_interface.SubsetterInterface.gap_fill_relationships"]], "summarystatisticsinterface (class in oaklib.interfaces.summary_statistics_interface)": [[1179, "oaklib.interfaces.summary_statistics_interface.SummaryStatisticsInterface"]], "branch_summary_statistics() (oaklib.interfaces.summary_statistics_interface.summarystatisticsinterface method)": [[1179, "oaklib.interfaces.summary_statistics_interface.SummaryStatisticsInterface.branch_summary_statistics"]], "global_summary_statistics() (oaklib.interfaces.summary_statistics_interface.summarystatisticsinterface method)": [[1179, "oaklib.interfaces.summary_statistics_interface.SummaryStatisticsInterface.global_summary_statistics"]], "metadata_property_summary_statistics() (oaklib.interfaces.summary_statistics_interface.summarystatisticsinterface method)": [[1179, "oaklib.interfaces.summary_statistics_interface.SummaryStatisticsInterface.metadata_property_summary_statistics"]], "summary_statistic_description() (oaklib.interfaces.summary_statistics_interface.summarystatisticsinterface method)": [[1179, "oaklib.interfaces.summary_statistics_interface.SummaryStatisticsInterface.summary_statistic_description"]], "textannotation (class in oaklib.datamodels.text_annotator)": [[1180, "oaklib.datamodels.text_annotator.TextAnnotation"]], "textannotatorinterface (class in oaklib.interfaces.text_annotator_interface)": [[1180, "oaklib.interfaces.text_annotator_interface.TextAnnotatorInterface"]], "annotate_file() (oaklib.interfaces.text_annotator_interface.textannotatorinterface method)": [[1180, "oaklib.interfaces.text_annotator_interface.TextAnnotatorInterface.annotate_file"]], "annotate_tabular_file() (oaklib.interfaces.text_annotator_interface.textannotatorinterface method)": [[1180, "oaklib.interfaces.text_annotator_interface.TextAnnotatorInterface.annotate_tabular_file"]], "annotate_text() (oaklib.interfaces.text_annotator_interface.textannotatorinterface method)": [[1180, "oaklib.interfaces.text_annotator_interface.TextAnnotatorInterface.annotate_text"]], "cache_directory (oaklib.interfaces.text_annotator_interface.textannotatorinterface attribute)": [[1180, "oaklib.interfaces.text_annotator_interface.TextAnnotatorInterface.cache_directory"]], "lexical_index (oaklib.interfaces.text_annotator_interface.textannotatorinterface attribute)": [[1180, "oaklib.interfaces.text_annotator_interface.TextAnnotatorInterface.lexical_index"]], "rule_collection (oaklib.interfaces.text_annotator_interface.textannotatorinterface attribute)": [[1180, "oaklib.interfaces.text_annotator_interface.TextAnnotatorInterface.rule_collection"]], "validatorinterface (class in oaklib.interfaces.validator_interface)": [[1181, "oaklib.interfaces.validator_interface.ValidatorInterface"]], "autosave (oaklib.interfaces.validator_interface.validatorinterface attribute)": [[1181, "oaklib.interfaces.validator_interface.ValidatorInterface.autosave"]], "exclude_owl_top_and_bottom (oaklib.interfaces.validator_interface.validatorinterface attribute)": [[1181, "oaklib.interfaces.validator_interface.ValidatorInterface.exclude_owl_top_and_bottom"]], "is_coherent() (oaklib.interfaces.validator_interface.validatorinterface method)": [[1181, "oaklib.interfaces.validator_interface.ValidatorInterface.is_coherent"]], "repair() (oaklib.interfaces.validator_interface.validatorinterface method)": [[1181, "oaklib.interfaces.validator_interface.ValidatorInterface.repair"]], "term_curies_without_definitions() (oaklib.interfaces.validator_interface.validatorinterface method)": [[1181, "oaklib.interfaces.validator_interface.ValidatorInterface.term_curies_without_definitions"]], "unsatisfiable_classes() (oaklib.interfaces.validator_interface.validatorinterface method)": [[1181, "oaklib.interfaces.validator_interface.ValidatorInterface.unsatisfiable_classes"]], "validate() (oaklib.interfaces.validator_interface.validatorinterface method)": [[1181, "oaklib.interfaces.validator_interface.ValidatorInterface.validate"]], "validate_mappings() (oaklib.interfaces.validator_interface.validatorinterface method)": [[1181, "oaklib.interfaces.validator_interface.ValidatorInterface.validate_mappings"]], "add_associations() (in module oaklib.selector)": [[1182, "oaklib.selector.add_associations"]], "get_adapter() (in module oaklib.selector)": [[1182, "oaklib.selector.get_adapter"]], "get_implementation_class_from_scheme() (in module oaklib.selector)": [[1182, "oaklib.selector.get_implementation_class_from_scheme"]], "get_implementation_from_shorthand() (in module oaklib.selector)": [[1182, "oaklib.selector.get_implementation_from_shorthand"]], "get_resource_from_shorthand() (in module oaklib.selector)": [[1182, "oaklib.selector.get_resource_from_shorthand"]], "module": [[1182, "module-oaklib.selector"], [1183, "module-oaklib.utilities.apikey_manager"], [1184, "module-oaklib.utilities.graph.networkx_bridge"], [1185, "module-oaklib.utilities.graph.relationship_walker"], [1186, "module-oaklib.utilities.lexical.lexical_indexer"], [1187, "module-oaklib.utilities.obograph_utils"], [1188, "module-oaklib.utilities.subsets.slimmer_utils"], [1189, "module-oaklib.utilities.table_filler"], [1190, "module-oaklib.utilities.taxon"], [1193, "module-oaklib.datamodels.search"]], "oaklib.selector": [[1182, "module-oaklib.selector"]], "oaklib.utilities.apikey_manager": [[1183, "module-oaklib.utilities.apikey_manager"]], "oaklib.utilities.graph.networkx_bridge": [[1184, "module-oaklib.utilities.graph.networkx_bridge"]], "oaklib.utilities.graph.relationship_walker": [[1185, "module-oaklib.utilities.graph.relationship_walker"]], "oaklib.utilities.lexical.lexical_indexer": [[1186, "module-oaklib.utilities.lexical.lexical_indexer"]], "oaklib.utilities.obograph_utils": [[1187, "module-oaklib.utilities.obograph_utils"]], "oaklib.utilities.subsets.slimmer_utils": [[1188, "module-oaklib.utilities.subsets.slimmer_utils"]], "oaklib.utilities.table_filler": [[1189, "module-oaklib.utilities.table_filler"]], "oaklib.utilities.taxon": [[1190, "module-oaklib.utilities.taxon"]], "searchconfiguration (class in oaklib.datamodels.search)": [[1193, "oaklib.datamodels.search.SearchConfiguration"]], "create_search_configuration() (in module oaklib.datamodels.search)": [[1193, "oaklib.datamodels.search.create_search_configuration"]], "oaklib.datamodels.search": [[1193, "module-oaklib.datamodels.search"]]}}) \ No newline at end of file