-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdbnsfp.owl
executable file
·110 lines (76 loc) · 3.84 KB
/
dbnsfp.owl
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
@prefix : <http://purl.jp/bio/10/med2rdf/dbnsfp/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://purl.jp/bio/10/med2rdf/dbnsfp/> .
<http://purl.jp/bio/10/med2rdf/dbnsfp/> rdf:type owl:Ontology .
#################################################################
# Object Properties
#################################################################
### http://purl.jp/bio/10/med2rdf/dbnsfp/algorithm
:algorithm rdf:type owl:ObjectProperty ;
rdfs:domain :DamagePrediction ;
rdfs:range :PredictionAlgorithm ;
rdfs:comment "It refers a uri which represents an algorithm." .
### http://purl.jp/bio/10/med2rdf/dbnsfp/conservationAlgorithm
:conservationAlgorithm rdf:type owl:ObjectProperty ;
rdfs:domain :AlleleConservation ;
rdfs:range :ConservationAlgorithm ;
rdfs:comment "It refers a uri which represents an algorithm of a conservation." .
### http://purl.jp/bio/10/med2rdf/dbnsfp/population
:population rdf:type owl:ObjectProperty ;
rdfs:domain :AlleleStatistics ;
rdfs:range :Population ;
rdfs:comment "It refers uri which represents a condition of population." .
#################################################################
# Classes
#################################################################
### http://purl.jp/bio/10/med2rdf/dbnsfp/Algorithm
:Algorithm rdf:type owl:Class ;
rdfs:label "Algorithm" .
### http://purl.jp/bio/10/med2rdf/dbnsfp/AlleleConservation
:AlleleConservation rdf:type owl:Class ;
rdfs:subClassOf :Statistics ;
rdfs:label "Allele conservation" .
### http://purl.jp/bio/10/med2rdf/dbnsfp/AlleleStatistics
:AlleleStatistics rdf:type owl:Class ;
rdfs:subClassOf :Statistics ;
rdfs:label "Allele statistics" .
### http://purl.jp/bio/10/med2rdf/dbnsfp/ConservationAlgorithm
:ConservationAlgorithm rdf:type owl:Class ;
rdfs:subClassOf :Algorithm ;
rdfs:label "Conservation algorithm" .
### http://purl.jp/bio/10/med2rdf/dbnsfp/ConservationScore
:ConservationScore rdf:type owl:Class ;
rdfs:subClassOf :Score ;
rdfs:label "Conservation score" .
### http://purl.jp/bio/10/med2rdf/dbnsfp/DamagePrediction
:DamagePrediction rdf:type owl:Class ;
rdfs:subClassOf :Statistics ;
rdfs:label "Damage prediction" .
### http://purl.jp/bio/10/med2rdf/dbnsfp/Population
:Population rdf:type owl:Class ;
rdfs:subClassOf :Algorithm ;
rdfs:comment "It is a class of condtions for populations." ;
rdfs:label "Population" .
### http://purl.jp/bio/10/med2rdf/dbnsfp/PredictionAlgorithm
:PredictionAlgorithm rdf:type owl:Class ;
rdfs:subClassOf :Algorithm ;
rdfs:label "Prediction algorithm" .
### http://purl.jp/bio/10/med2rdf/dbnsfp/PredictionRankScore
:PredictionRankScore rdf:type owl:Class ;
rdfs:subClassOf :Score ;
rdfs:label "Prediction rank score" .
### http://purl.jp/bio/10/med2rdf/dbnsfp/PredictionScore
:PredictionScore rdf:type owl:Class ;
rdfs:subClassOf :Score ;
rdfs:label "Prediction score" .
### http://purl.jp/bio/10/med2rdf/dbnsfp/Score
:Score rdf:type owl:Class ;
rdfs:label "Score" .
### http://purl.jp/bio/10/med2rdf/dbnsfp/Statistics
:Statistics rdf:type owl:Class ;
rdfs:label "Statistics" .
### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi