File size: 2,164 Bytes
abc4451
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
Proteomics Standards Initiative (PSI) Protein Modifications Ontology (PSI-MOD)
========================================================================================================================

Overview
--------
PSI-MOD is an ontology consisting of terms that describe protein chemical modifications,
logically linked by an is_a relationship in such a way as to form a direct acyclic graph (DAG).
The PSI-MOD ontology has more than 45 top-level nodes, and provides alternative hierarchical paths
for classifying protein modifications either by the molecular structure of the modification,
or by the amino acid residue that is modified.

:Domain: Chemistry
:Category: Protein Modifications
:Current Version: 1.031.6
:Last Updated: 2022-06-13
:Creator: None
:License: Creative Commons Attribution 4.0
:Format: OWL
:Download: `Proteomics Standards Initiative (PSI) Protein Modifications Ontology (PSI-MOD) Homepage <https://github.com/HUPO-PSI/psi-mod-CV>`_

Graph Metrics
-------------
    - **Total Nodes**: 28523
    - **Total Edges**: 86380
    - **Root Nodes**: 9338
    - **Leaf Nodes**: 16902

Knowledge coverage
------------------
    - Classes: 2098
    - Individuals: 0
    - Properties: 4

Hierarchical metrics
--------------------
    - **Maximum Depth**: 4
    - **Minimum Depth**: 0
    - **Average Depth**: 0.95
    - **Depth Variance**: 0.60

Breadth metrics
------------------
    - **Maximum Breadth**: 11284
    - **Minimum Breadth**: 4
    - **Average Breadth**: 5684.00
    - **Breadth Variance**: 22690827.20

Dataset Statistics
------------------
Generated Benchmarks:
    - **Term Types**: 0
    - **Taxonomic Relations**: 8347
    - **Non-taxonomic Relations**: 0
    - **Average Terms per Type**: 0.00

Usage Example
-------------
.. code-block:: python

    from ontolearner.ontology import PSIMOD

    # Initialize and load ontology
    ontology = PSIMOD()
    ontology.load("path/to/ontology.owl")

    # Extract datasets
    data = ontology.extract()

    # Access specific relations
    term_types = data.term_typings
    taxonomic_relations = data.type_taxonomies
    non_taxonomic_relations = data.type_non_taxonomic_relations