-
Notifications
You must be signed in to change notification settings - Fork 0
/
p-1.ttlite
78 lines (55 loc) · 1.31 KB
/
p-1.ttlite
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
include prefixes.ttl
@prefix kinase_activity: GO:0016301 ! kinase activity
@prefix mapk_cascade: GO:0000165 ! MAPK cascade
@prefix cell_proliferation: GO:0008283 ! cell proliferation
@prefix molecular_function: GO:0003674 ! molecular_function
@prefix nucleolus: GO:0005730 ! nucleolus
@prefix nucleus: GO:0005634 ! nucleus
@prefix neuron: CL:0000540 ! neuron
@prefix neocortex: UBERON:0001950 ! neocortex
## ========================================
## ACTIVIY UNIT 1
## ========================================
ka_gp1: a uniprot:Q13253
.
n1: a nucleus:
; part_of: neuron1:
.
neuron1: a neuron:
; part_of: neocortex1:
.
neocortex1: a neocortex:
.
ka1: a kinase_activity:
; enabled_by: ka_gp1:
; occurs_in: n1:
; positively_regulates: mf2:
.
#FAIL multiple-enabled-by
# ka_gp2: a uniprot:Q13253
# .
# ## adding a second enabled_by for ka1
# ka1: enabled_by: ka_gp2:
# .
#END
#FAIL multiple-occurs-in
# ## adding a second enabled_by for ka1
# ka1: occurs_in: n2:
# .
#END
mapk_cascade1: a mapk_cascade:
; part_of: cell_proliferation1:
.
cell_proliferation1: a cell_proliferation:
.
## ========================================
## ACTIVIY UNIT 2
## ========================================
mf_gp2: a uniprot:P12643
.
mf2: a molecular_function:
; occurs_in: n2:
; enabled_by: mf_gp2:
.
n2: a nucleolus:
.