-
Notifications
You must be signed in to change notification settings - Fork 906
/
Copy pathguc.c
328 lines (292 loc) · 13.5 KB
/
guc.c
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
//
// Copyright (c) 2010-2021 Novartis Institutes for BioMedical Research Inc.
// and other RDKit contributors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following
// disclaimer in the documentation and/or other materials provided
// with the distribution.
// * Neither the name of Novartis Institutes for BioMedical Research Inc.
// nor the names of its contributors may be used to endorse or promote
// products derived from this software without specific prior written
// permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
#include <postgres.h>
#include <fmgr.h>
#include <utils/guc.h>
#include "guc.h"
static double rdkit_tanimoto_smlar_limit = 0.5;
static double rdkit_dice_smlar_limit = 0.5;
static double rdkit_agent_FP_bit_ratio = 0.2;
static double rdkit_threshold_unmapped_reactant_atoms = 0.2;
static bool rdkit_do_chiral_sss = false;
static bool rdkit_do_enhanced_stereo_sss = false;
static bool rdkit_ignore_reaction_agents = false;
static bool rdkit_move_unmmapped_reactants_to_agents = true;
static bool rdkit_init_reaction = true;
static bool rdkit_guc_inited = false;
#define SSS_FP_SIZE 2048
#define LAYERED_FP_SIZE 1024
#define RDKIT_FP_SIZE 1024
#define MORGAN_FP_SIZE 512
#define FEATMORGAN_FP_SIZE 512
#define HASHED_TORSION_FP_SIZE 1024
#define HASHED_PAIR_FP_SIZE 2048
#define AVALON_FP_SIZE 512
#define REACTION_SSS_FP_SIZE 4096
#define REACTION_DIFFERENCE_FP_SIZE 2048
#define REACTION_SSS_FP_TYPE 5
#define REACTION_DIFFERENCE_FP_TYPE 1
#define REACTION_DFP_WEIGHT_AGENTS 1
#define REACTION_DFP_WEIGHT_NONAGENTS 10
static int rdkit_sss_fp_size = SSS_FP_SIZE;
static int rdkit_morgan_fp_size = MORGAN_FP_SIZE;
static int rdkit_featmorgan_fp_size = FEATMORGAN_FP_SIZE;
static int rdkit_layered_fp_size = LAYERED_FP_SIZE;
static int rdkit_rdkit_fp_size = RDKIT_FP_SIZE;
static int rdkit_hashed_torsion_fp_size = HASHED_TORSION_FP_SIZE;
static int rdkit_hashed_atompair_fp_size = HASHED_PAIR_FP_SIZE;
static int rdkit_avalon_fp_size = AVALON_FP_SIZE;
static int rdkit_reaction_sss_fp_size = REACTION_SSS_FP_SIZE;
static int rdkit_reaction_difference_fp_size = REACTION_DIFFERENCE_FP_SIZE;
static int rdkit_reaction_sss_fp_type = REACTION_SSS_FP_TYPE;
static int rdkit_reaction_difference_fp_type = REACTION_DIFFERENCE_FP_TYPE;
static int rdkit_difference_FP_weight_agents = REACTION_DFP_WEIGHT_AGENTS;
static int rdkit_difference_FP_weight_nonagents = REACTION_DFP_WEIGHT_NONAGENTS;
static void initRDKitGUC() {
if (rdkit_guc_inited) return;
DefineCustomRealVariable(
"rdkit.tanimoto_threshold", "Lower threshold of Tanimoto similarity",
"Molecules with similarity lower than threshold are not similar by % operation",
&rdkit_tanimoto_smlar_limit, 0.5, 0.0, 1.0, PGC_USERSET, 0, NULL, NULL,
NULL);
DefineCustomRealVariable(
"rdkit.dice_threshold", "Lower threshold of Dice similarity",
"Molecules with similarity lower than threshold are not similar by # operation",
&rdkit_dice_smlar_limit, 0.5, 0.0, 1.0, PGC_USERSET, 0, NULL, NULL, NULL);
DefineCustomBoolVariable(
"rdkit.do_chiral_sss",
"Should stereochemistry be taken into account in substructure matching",
"If false (the default), no stereochemistry information is used in substructure matches.",
&rdkit_do_chiral_sss, false, PGC_USERSET, 0, NULL, NULL, NULL);
DefineCustomBoolVariable(
"rdkit.do_enhanced_stereo_sss",
"Should enhanced stereochemistry be taken into account in substructure matching",
"If true, enhanced stereo information is used in substructure matching. Has no effect if rdkit.do_chiral_sss is false.",
&rdkit_do_enhanced_stereo_sss, false, PGC_USERSET, 0, NULL, NULL, NULL);
DefineCustomIntVariable(
"rdkit.sss_fp_size",
"Size (in bits) of the fingerprint used for substructure screening",
"Size (in bits) of the fingerprint used for substructure screening",
&rdkit_sss_fp_size, SSS_FP_SIZE, 64, 4096, PGC_USERSET, 0, NULL, NULL,
NULL);
DefineCustomIntVariable(
"rdkit.morgan_fp_size", "Size (in bits) of morgan fingerprints",
"Size (in bits) of morgan fingerprints", &rdkit_morgan_fp_size,
MORGAN_FP_SIZE, 64, 9192, PGC_USERSET, 0, NULL, NULL, NULL);
DefineCustomIntVariable(
"rdkit.featmorgan_fp_size", "Size (in bits) of featmorgan fingerprints",
"Size (in bits) of featmorgan fingerprints", &rdkit_featmorgan_fp_size,
FEATMORGAN_FP_SIZE, 64, 9192, PGC_USERSET, 0, NULL, NULL, NULL);
DefineCustomIntVariable(
"rdkit.layered_fp_size", "Size (in bits) of layered fingerprints",
"Size (in bits) of layered fingerprints", &rdkit_layered_fp_size,
LAYERED_FP_SIZE, 64, 9192, PGC_USERSET, 0, NULL, NULL, NULL);
DefineCustomIntVariable(
"rdkit.rdkit_fp_size", "Size (in bits) of RDKit fingerprints",
"Size (in bits) of RDKit fingerprints", &rdkit_rdkit_fp_size,
RDKIT_FP_SIZE, 64, 9192, PGC_USERSET, 0, NULL, NULL, NULL);
DefineCustomIntVariable(
"rdkit.hashed_torsion_fp_size",
"Size (in bits) of topological torsion bit vector fingerprints",
"Size (in bits) of topological torsion bit vector fingerprints",
&rdkit_hashed_torsion_fp_size, HASHED_TORSION_FP_SIZE, 64, 9192,
PGC_USERSET, 0, NULL, NULL, NULL);
DefineCustomIntVariable(
"rdkit.hashed_atompair_fp_size",
"Size (in bits) of atom pair bit vector fingerprints",
"Size (in bits) of atom pair torsion bit vector fingerprints",
&rdkit_hashed_atompair_fp_size, HASHED_PAIR_FP_SIZE, 64, 9192,
PGC_USERSET, 0, NULL, NULL, NULL);
DefineCustomIntVariable(
"rdkit.reaction_sss_fp_size",
"Size (in bits) of structural chemical reaction fingerprint",
"Size (in bits) of structural chemical reaction fingerprint",
&rdkit_reaction_sss_fp_size, REACTION_SSS_FP_SIZE, 64, 9192, PGC_USERSET,
0, NULL, NULL, NULL);
DefineCustomIntVariable(
"rdkit.reaction_difference_fp_size",
"Size (in bits) of difference chemical reaction fingerprint",
"Size (in bits) of difference chemical reaction fingerprint",
&rdkit_reaction_difference_fp_size, REACTION_DIFFERENCE_FP_SIZE, 64, 9192,
PGC_USERSET, 0, NULL, NULL, NULL);
DefineCustomIntVariable(
"rdkit.reaction_sss_fp_type",
"Type of structural chemical reaction fingerprint (1=Atompairs, 2=Topologcal torsion, 3=Morgan2, 4=RDKit, 5=Pattern)",
"Type of structural chemical reaction fingerprint (1=Atompairs, 2=Topologcal torsion, 3=Morgan2, 4=RDKit, 5=Pattern)",
&rdkit_reaction_sss_fp_type, REACTION_SSS_FP_TYPE, 1, 5, PGC_USERSET, 0,
NULL, NULL, NULL);
DefineCustomIntVariable(
"rdkit.reaction_difference_fp_type",
"Type of difference chemical reaction fingerprint (1=Atompairs, 2=Topologcal torsion, 3=Morgan2)",
"Type of difference chemical reaction fingerprint (1=Atompairs, 2=Topologcal torsion, 3=Morgan2)",
&rdkit_reaction_difference_fp_type, REACTION_DIFFERENCE_FP_TYPE, 1, 3,
PGC_USERSET, 0, NULL, NULL, NULL);
DefineCustomBoolVariable(
"rdkit.ignore_reaction_agents",
"Should agents of a chemical reaction be taken into account ",
"If false (the default), agents (if provided) are taken into account for calculations/requests/similarity measures.",
&rdkit_ignore_reaction_agents, false, PGC_USERSET, 0, NULL, NULL, NULL);
DefineCustomRealVariable(
"rdkit.agent_FP_bit_ratio",
"Allow to weight the impact of agents contained in a chemical reaction fingerprint",
"A scaling factor below 1.0 down weighted the agents of a chemical reaction",
&rdkit_agent_FP_bit_ratio, 0.2, 0.0, 3.0, PGC_USERSET, 0, NULL, NULL,
NULL);
DefineCustomBoolVariable(
"rdkit.move_unmmapped_reactants_to_agents",
"Should unmapped reactant agents of a chemical reaction be taken into account ",
"If true (the default), agents (if provided) are taken into account for calculations/requests/similarity measures.",
&rdkit_move_unmmapped_reactants_to_agents, true, PGC_USERSET, 0, NULL,
NULL, NULL);
DefineCustomRealVariable(
"rdkit.threshold_unmapped_reactant_atoms",
"Set the ratio of allowed unmapped reactant atoms",
"If the ratio of unmapped atoms in a reactant is larger than this the reactant is removed and added to the agents.",
&rdkit_threshold_unmapped_reactant_atoms, 0.2, 0.0, 1.0, PGC_USERSET, 0,
NULL, NULL, NULL);
DefineCustomBoolVariable(
"rdkit.init_reaction", "Checks if the reaction is ready for use",
"By default it is true, however reactions can be used uninitialized too but be aware of potential upcoming errors.",
&rdkit_init_reaction, true, PGC_USERSET, 0, NULL, NULL, NULL);
DefineCustomIntVariable(
"rdkit.difference_FP_weight_agents",
"In reaction difference fingerprints weight factor for agents comapred to reactants and products",
"In reaction difference fingerprints weight factor for agents comapred to reactants and products",
&rdkit_difference_FP_weight_agents, REACTION_DFP_WEIGHT_AGENTS, -10, 10,
PGC_USERSET, 0, NULL, NULL, NULL);
DefineCustomIntVariable(
"rdkit.difference_FP_weight_nonagents",
"In reaction difference fingerprints weight factor for reactants and products comapred to agents",
"In reaction difference fingerprints weight factor for reactants and products comapred to agents",
&rdkit_difference_FP_weight_nonagents, REACTION_DFP_WEIGHT_NONAGENTS, 1,
20, PGC_USERSET, 0, NULL, NULL, NULL);
DefineCustomIntVariable(
"rdkit.avalon_fp_size", "Size (in bits) of avalon fingerprints",
"Size (in bits) of avalon fingerprints", &rdkit_avalon_fp_size,
AVALON_FP_SIZE, 64, 9192, PGC_USERSET, 0, NULL, NULL, NULL);
rdkit_guc_inited = true;
}
double getTanimotoLimit(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_tanimoto_smlar_limit;
}
double getDiceLimit(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_dice_smlar_limit;
}
bool getDoChiralSSS(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_do_chiral_sss;
}
bool getDoEnhancedStereoSSS(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_do_enhanced_stereo_sss;
}
int getSubstructFpSize(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_sss_fp_size;
}
int getMorganFpSize(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_morgan_fp_size;
}
int getFeatMorganFpSize(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_featmorgan_fp_size;
}
int getLayeredFpSize(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_layered_fp_size;
}
int getRDKitFpSize(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_rdkit_fp_size;
}
int getHashedTorsionFpSize(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_hashed_torsion_fp_size;
}
int getHashedAtomPairFpSize(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_hashed_atompair_fp_size;
}
int getAvalonFpSize(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_avalon_fp_size;
}
int getReactionSubstructFpSize(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_reaction_sss_fp_size;
}
int getReactionDifferenceFpSize(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_reaction_difference_fp_size;
}
int getReactionSubstructFpType(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_reaction_sss_fp_type;
}
int getReactionDifferenceFpType(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_reaction_difference_fp_type;
}
bool getIgnoreReactionAgents(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_ignore_reaction_agents;
}
double getReactionStructuralFPAgentBitRatio(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_agent_FP_bit_ratio;
}
bool getMoveUnmappedReactantsToAgents(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_move_unmmapped_reactants_to_agents;
}
double getThresholdUnmappedReactantAtoms(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_threshold_unmapped_reactant_atoms;
}
bool getInitReaction(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_init_reaction;
}
int getReactionDifferenceFPWeightAgents(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_difference_FP_weight_agents;
}
int getReactionDifferenceFPWeightNonagents(void) {
if (!rdkit_guc_inited) initRDKitGUC();
return rdkit_difference_FP_weight_nonagents;
}
PGDLLEXPORT void _PG_init(void);
void _PG_init(void) { initRDKitGUC(); }