-
Notifications
You must be signed in to change notification settings - Fork 0
/
preprocessed_module.pl~
96 lines (69 loc) · 2.09 KB
/
preprocessed_module.pl~
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
:-module(preprocessed,
[
complex/2,
protein_set/2,
inputs_to_reaction/2,
outputs_to_reaction/2,
type/2,
tuple/3,
link/3
]).
/** <module> Preprocessed_version of predicates
* This module has some useful predicates for interacting with the
* owl:rdf ontology file for Reactome
* @author Sam Neaves
*/
%% type(?Reactome_Id:reactome_id, ?Type: reactome_id) is det
%
% Finds the type of a reactome component for protein_sets,
% proteins, and complexes
%
% @see reactome_utility:type_c/2 for calculated version
%
:-consult('Preprocessed_files/types.pl').
%% complex(?Complex_Id:complex_id, ?List_of_components:list) is det
%
% The preprocessed version of reactome_utility:complex_c/2
%
:-consult('Preprocessed_files/complexes.pl').
%% protein_set(?Protein_Set_Id: protein_id, ?List_Of_Members:list)is det
%
% @see reactome_utility:protein_set_c/2 for the calculated version
%
:-consult('Preprocessed_files/protein_sets.pl').
%% outputs_to_reaction(?Reaction_id: reaction_id,?List_Of_Members:list)is det
%
% @see reactome_utility:outputs_to_reaction_c/2 for the calculated
% version
%
:-consult('Preprocessed_files/reaction_inputs.pl').
%% inputs_to_reaction(?Reaction_id: reaction_id,?List_Of_Members:list)is det
%
% @see reactome_utility:inputs_to_reaction_c/2 for the calculated
% version
%
:-consult('Preprocessed_files/reaction_outputs.pl').
%% outputs_to_reaction(?Reaction_id:
% reaction_id,?List_Of_Members:list)is det
%
% @see reactome_utility:outputs_to_reaction_c/2 for the calculated
% version
%
:-consult('Preprocessed_files/linking_entities_whole_network').
%% link(?Reaction_id: reaction_id,?Reaction_id2: reaction_id,?Entity_id: reactome_id)is det
%
% @see
% version
%
:-consult('Preprocessed_files/whole_network_link').
%% link_type(?Reaction_id:reaction_id,?Reaction_id2:reaction_id,?Link_type:link_type)is det
%
% @see
% version
%
:-consult('Preprocessed_files/all_samples_all_reactions').
%% tuple(?Reaction_id: reaction_id,?List_Of_Members:list)is det
%
% @see reactome_utility:inputs_to_reaction_c/2 for the calculated
% version
%