This repository was archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrelations.py
More file actions
69 lines (51 loc) · 3.18 KB
/
Copy pathrelations.py
File metadata and controls
69 lines (51 loc) · 3.18 KB
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
from bidict import bidict
true_causal = bidict({
"directly_activates": "http://purl.obolibrary.org/obo/RO_0002406",
"directly_inhibits": "http://purl.obolibrary.org/obo/RO_0002408",
"directly_positively_regulates": "http://purl.obolibrary.org/obo/RO_0002629",
"directly_negatively_regulates": "http://purl.obolibrary.org/obo/RO_0002630",
"causally_upstream_of": "http://purl.obolibrary.org/obo/RO_0002411",
"causally_upstream_of_positive_effect": "http://purl.obolibrary.org/obo/RO_0002304",
"causally_upstream_of_negative_effect": "http://purl.obolibrary.org/obo/RO_0002305",
"causally_upstream_of_or_within": "http://purl.obolibrary.org/obo/RO_0002418",
"causally_upstream_of_or_within_positive_effect": "http://purl.obolibrary.org/obo/RO_0004047",
"causally_upstream_of_or_within_negative_effect": "http://purl.obolibrary.org/obo/RO_0004046",
"positively_regulates": "http://purl.obolibrary.org/obo/RO_0002213",
"negatively_regulates": "http://purl.obolibrary.org/obo/RO_0002212",
"results_in_acquisition_of_features_of": "http://purl.obolibrary.org/obo/RO_0002315",
"transports_or_maintains_localization_of": "http://purl.obolibrary.org/obo/RO_0002313",
"results_in_movement_of": "http://purl.obolibrary.org/obo/RO_0002565"
})
all = bidict({
"enabled_by": "http://purl.obolibrary.org/obo/RO_0002333",
"occurs_in": "http://purl.obolibrary.org/obo/BFO_0000066",
"has_input": "http://purl.obolibrary.org/obo/RO_0002233",
"has_output": "http://purl.obolibrary.org/obo/RO_0002234",
"part_of": "http://purl.obolibrary.org/obo/BFO_0000050",
"has_part": "http://purl.obolibrary.org/obo/BFO_0000051",
"directly_activates": "http://purl.obolibrary.org/obo/RO_0002406",
"directly_inhibits": "http://purl.obolibrary.org/obo/RO_0002408",
"directly_provides_input_for": "http://purl.obolibrary.org/obo/RO_0002413",
"directly_positively_regulates": "http://purl.obolibrary.org/obo/RO_0002629",
"directly_negatively_regulates": "http://purl.obolibrary.org/obo/RO_0002630",
"causally_upstream_of": "http://purl.obolibrary.org/obo/RO_0002411",
"causally_upstream_of_positive_effect": "http://purl.obolibrary.org/obo/RO_0002304",
"causally_upstream_of_negative_effect": "http://purl.obolibrary.org/obo/RO_0002305",
"causally_upstream_of_or_within": "http://purl.obolibrary.org/obo/RO_0002418",
"causally_upstream_of_or_within_positive_effect": "http://purl.obolibrary.org/obo/RO_0004047",
"causally_upstream_of_or_within_negative_effect": "http://purl.obolibrary.org/obo/RO_0004046",
"positively_regulates": "http://purl.obolibrary.org/obo/RO_0002213",
"negatively_regulates": "http://purl.obolibrary.org/obo/RO_0002212",
"results_in_acquisition_of_features_of": "http://purl.obolibrary.org/obo/RO_0002315",
"transports_or_maintains_localization_of": "http://purl.obolibrary.org/obo/RO_0002313",
"results_in_movement_of": "http://purl.obolibrary.org/obo/RO_0002565"
})
rdfs = bidict({
"label": "http://www.w3.org/2000/01/rdf-schema#"
})
rdf = bidict({
"type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
})
owl = bidict({
"individual": "http://www.w3.org/2002/07/owl#NamedIndividual"
})