-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathindex.d.ts
661 lines (543 loc) · 15.7 KB
/
index.d.ts
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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
// Type definitons for RDKit.js
// Project: https://github.com/rdkit/rdkit-js
// Definitions by: adam-of-barot <https://github.com/adam-of-barot>
type JSONString = string;
/**
* Represents a molecule object generated by RDKit.js
*
* @remarks
* JSMols are created using the {@link RDKitModule.get_mol | RDKitModule.get_mol()} methods.
*/
export interface JSMol {
/** Delete C++ mol objects manually from memory
*
* See {@link https://emscripten.org/docs/porting/connecting_cpp_and_javascript/embind.html#memory-management | Emscripten docs} for more details
*/
delete(): void
// string representations
/** Returns the SMILES string */
get_smiles(): string;
/** Returns the Chemaxon Extended SMILES string */
get_cxsmiles(): string;
/** Returns the SMARTS string */
get_smarts(): string;
/** Returns the Chemaxon Extended SMARTS string */
get_cxsmarts(): string;
/** Returns the V2000 Molfile string*/
get_molblock(): string;
/** Returns the V3000 Molfile string */
get_v3Kmolblock(): string;
/** Returns the pickled string representation of the molecule */
get_pickle(): string;
/** Return the InChI string */
get_inchi(): string;
/** Returns the JSON representation */
get_json(): string;
// array representation
/** Returns an unsigned integer array representation */
get_as_uint8array(): Uint8Array;
// SVG representations
/** Returns an SVG of the molecule */
get_svg(): string;
/**
* Returns an SVG of the molecule
*
* @param width Width in pixels
* @param height Height in pixels
*/
get_svg(width: number, height: number): string;
/**
* Returns an SVG of the molcule, with atoms highlighted
*
* @param details A stringified JSON object containing any of the following options https://www.rdkitjs.com/#drawing-molecules-all-options
*/
get_svg_with_highlights(details: string): string;
// substructure match methods
/**
* Returns a substructure match string
*
* @param q query molecule
* @returns A stringified JSON object containing the matched atoms and bonds of the parent molecule
*/
get_substruct_match(q: JSMol): string;
/**
* Returns all substructure matches
*
* @param q query molecule
* @returns A stringified JSON object containing the matched atoms and bonds of the parent molecule
*/
get_substruct_matches(q: JSMol): string;
// molecular descriptors
/** Returns a stringified JSON object of molecular descriptors */
get_descriptors(): string;
// fingerprint methods
/**
* Returns the Morgan fingerprint as string
*/
get_morgan_fp(): string;
/**
* Returns the Morgan fingerprint as string.
*
* You can also specify the following options
* (passed as a stringified JSON object)
* @param {number} radius fingerprint radius
* @param {number} len fingerprint length
*/
get_morgan_fp(options: JSONString): string;
/**
* Returns the Morgan fingerprint as binary
*/
get_morgan_fp_as_binary_text(): string;
/**
* Returns the Morgan fingerprint as binary
*
* @param radius fingerprint radius
* @param len fingerprint length
*/
get_morgan_fp_as_binary_text(radius: number, len: number): string;
/**
* Returns the Morgan fingerprint as an unsigned integer array
*/
get_morgan_fp_as_uint8array(): Uint8Array;
/**
* Returns the Morgan fingerprint as an unsigned integer array
*
* You can also specify the following options
* (passed as a stringified JSON object)
* @param {number} radius fingerprint radius
* @param {number} fplen fingerprint length
*/
get_morgan_fp_as_uint8array(options: JSONString): Uint8Array;
/**
* Returns the pattern fingerprint as string
*/
get_pattern_fp(): string;
/**
* Returns the pattern fingerprint as string
*
* you can also specify the following options
* (passed as a stringified JSON object)
* @param {number} len fingerprint length
*/
get_pattern_fp(options: JSONString): string;
/**
* Returns the pattern fingerprint as binary
*/
get_pattern_fp_as_binary_text(): string;
/**
* Returns the pattern fingerprint as binary
*
* @param len fingerprint length
*/
get_pattern_fp_as_binary_text(len: number): string;
/**
* Returns the pattern fingerprint as an unsigned integer array
*/
get_pattern_fp_as_uint8array(): Uint8Array;
/**
* Returns the pattern fingerprint as an unsigned integer array
*
* you can also specify the following options
* (passed as a stringified JSON object)
* @param {number} fplen fingerprint length
*/
get_pattern_fp_as_uint8array(options: JSONString): Uint8Array;
// abbreviation methods
condense_abbreviations(): string;
condense_abbreviations(maxCoverage: number, useLinkers: boolean): string;
condense_abbreviations_from_defs(
definitions: string,
maxCoverage: number,
useLinkers: boolean
): string;
// coord generation
/**
* Aligns molecule with the template.
* you can also specify the following options
* (passed as a stringified JSON object)
* @param {boolean} useCoordGen
* @param {boolean} allowOptionalAttachements
* @param {boolean} acceptFailure
*/
generate_aligned_coords(
templateMol: JSMol,
options: JSONString
): string;
/**
* @deprecated Please check the get_mol return value for non-nullness instead
*/
is_valid(): boolean;
/** Check is the molecule has any 2D coordinates generated */
has_coords(): boolean;
/** Returns a stringified JSON object containing the atoms and bonds of stereo centers */
get_stereo_tags(): string;
/** Returns the V2000 Molfile representation of the aromatic form of the molecule */
get_aromatic_form(): string;
/** Returns the V2000 Molfile representation of the kekule form of the molecule */
get_kekule_form(): string;
/** Generate new 2D coordinates */
set_new_coords(): boolean;
/**
* Generate new 2D coordinates
*
* @param useCoordGen use the CoordGen algorithm
*/
set_new_coords(useCoordGen: boolean): boolean;
/** Return a V2000 Molfile string with newly generated coordinates */
get_new_coords(): string;
/**
* Return a V2000 Molfile string with newly generated coordinates
*
* @param useCoordGen use the CoordGen algorithm
*/
get_new_coords(useCoordGen: boolean): string;
// property methods
/**
* Check whether the molecule has a certain property
*
* @param key property name
*/
has_prop(key: string): boolean;
/** Returns the list of property names */
get_prop_list(): string[];
/**
* Returns the list of property names
*
* @param includePrivate set to true to include private properties
*/
get_prop_list(includePrivate: boolean): string[];
/**
* Returns the list of property names
*
* @param includePrivate set to true to include private properties
* @param includeComputed set to true to include computed properties
*/
get_prop_list(includePrivate: boolean, includeComputed: boolean): string[];
/**
* Sets a property on the molecule
*
* @param key property name
* @param val property value
*/
set_prop(key: string, val: string): boolean;
/**
* Sets a property on the molecule
*
* @param key property name
* @param val property value
* @param computed set true to flag the value as computed
*/
set_prop(key: string, val: string, computed: boolean): boolean;
/**
* Get a property on the molecule
*
* @param key property name
*/
get_prop(key: string): string;
// hydrogen methods
/**
* Remove explicit hydrogens
*
* @returns V2000 Molfile string without explicit hydrogens
*/
remove_hs(): string;
/**
* Add explicit hydrogens
*
* @returns V2000 Molfile string with explicit hydrogens
*/
add_hs(): string;
// depiction methods
normalize_depiction(): number;
normalize_depiction(canonicalize: number): number;
normalize_depiction(canonicalize: number, scaleFactor: number): number;
straighten_depiction(): void;
// canvas methods
/**
* Draw the molecule to an HTML5 canvas
*
* @param canvas canvas ID
* @param width width in pixels
* @param height height in pixels
*/
draw_to_canvas(
canvas: HTMLCanvasElement,
width: number,
height: number
): void;
/**
* Draw the molecule to an HTML5 canvas, with atom highlights
*
* @param canvas canvas ID
* @param details A stringified JSON object containing any of the following options https://www.rdkitjs.com/#drawing-molecules-all-options
*/
draw_to_canvas_with_highlights(
canvas: HTMLCanvasElement,
details: string
): void;
/**
* Draw the molecule to an HTML5 canvas with an offset
*
* @param canvas canvas ID
* @param offsetx offset X in pixels
* @param offsety offset Y in pixels
* @param width width in pixels
* @param height height in pixels
*/
draw_to_canvas_with_offset(
canvas: HTMLCanvasElement,
offsetx: number,
offsety: number,
width: number,
height: number
): void;
}
/**
* Represents a reaction object generated by RDKit.js
*
* @remarks
* JSReactions are created using the {@link RDKitModule.get_rxn | RDKitModule.get_rxn()} methods.
*/
export interface JSReaction {
/** Returns an SVG of the reaction */
get_svg(): string;
/**
* Returns an SVG of the reaction
*
* @param width Width in pixels
* @param height Height in pixels
*/
get_svg(width: number, height: number): string;
/**
* Returns an SVG of the reaction, with atoms highlighted
*
* @param details A stringified JSON object containing any of the following options https://www.rdkitjs.com/#drawing-molecules-all-options
*/
get_svg_with_highlights(details: string): string;
/**
* Draw the reaction to an HTML5 canvas
*
* @param canvas canvas ID
* @param width width in pixels
* @param height height in pixels
*/
draw_to_canvas(
canvas: HTMLCanvasElement,
width: number,
height: number
): void;
/**
* Draw the reaction to an HTML5 canvas with an offset
*
* @param canvas canvas ID
* @param offsetx offset X in pixels
* @param offsety offset Y in pixels
* @param width width in pixels
* @param height height in pixels
*/
draw_to_canvas_with_offset(
canvas: HTMLCanvasElement,
offsetx: number,
offsety: number,
width: number,
height: number
): void;
/**
* Draw the reaction to an HTML5 canvas, with atom highlights
*
* @param canvas canvas ID
* @param details A stringified JSON object containing any of the following options https://www.rdkitjs.com/#drawing-molecules-all-options
*/
draw_to_canvas_with_highlights(
canvas: HTMLCanvasElement,
details: string
): void;
/** Delete C++ reaction objects manually from memory
*
* See {@link https://emscripten.org/docs/porting/connecting_cpp_and_javascript/embind.html#memory-management | Emscripten docs} for more details
*/
delete(): void;
/**
* @deprecated Please check the get_rxn return value for non-nullness instead
*/
is_valid(): boolean
}
/**
* An object containing a collection of structures. Used for efficient substructure searching.
*
* @remarks
* Add molecules to the library with the {@link add_mol}, {@link add_smiles} or {@link add_trusted_smiles} methods.
*
* Perform substructure searches with the {@link get_matches} method.
*/
export interface SubstructLibrary {
/**
* Add a molecule to the library
*
* @param m molecule
*/
add_mol(m: JSMol): number;
/**
* Add a molecule to the library
*
* @param smi SMILES string
*/
add_smiles(smi: string): number;
/**
* Add a molecule to the library.
*
* Molecule validity will not be checked!
*
* @param smi SMILES string (trusted to be valid)
*/
add_trusted_smiles(smi: string): number;
/**
* Get a molecule from the library
*
* @param i index of the molecule
*/
get_mol(i: number): JSMol;
/**
* Get all molecules from the library matching the substructure query
*
* @param q query molecule
*/
get_matches(q: JSMol): string;
/**
* Get all molecules from the library matching the substructure query
*
* @param q query molecule
* @param maxResults maximum number of results
*/
get_matches(q: JSMol, maxResults: number): string;
/**
* Get all molecules from the library matching the substructure query
*
* @param q query molecule
* @param useChirality set to true to enable chiral substructure searching
* @param numThreads number of threads to use
* @param maxResults maximum number of results
*/
get_matches(
q: JSMol,
useChirality: boolean,
numThreads: number,
maxResults: number
): string;
/**
* Return the number of substructure matches
*
* @param q query molecule
*/
count_matches(q: JSMol): number;
/**
* Return the number of substructure matches
*
* @param q query molecule
* @param useChirality set to true to enable chiral substructure searching
* @param numThreads number of threads to use
*/
count_matches(q: JSMol, useChirality: boolean, numThreads: number): number;
}
export interface JSLog {
clear_buffer(): void;
get_buffer(): string;
delete(): void;
}
// constructor interfaces
/** Returns a new SubstructLibrary instance */
interface SubstructLibraryConstructor {
new(): SubstructLibrary
}
/** The main RDKit module */
export interface RDKitModule {
SubstructLibrary: SubstructLibraryConstructor;
/**
* Create a molecule from a variety of input strings.
* This will return null if the input is invalid.
*
* @param input SMILES / SMARTS / MolFile / JSON string
* @param details_json
*/
get_mol(input: string, details_json?: string): JSMol | null;
/**
* Create a molecule from a pickle string
*
* @param pkl pickle string
*/
get_mol_from_pickle(pkl: string): JSMol;
/**
* Create a molecule from an integer array
*
* @param pklAsUInt8Array unsigned integer array
*/
get_mol_from_uint8array(pklAsUInt8Array: Uint8Array): JSMol;
/**
* Create a copy of a molecule
*
* @param other molecule to copy
*/
get_mol_copy(other: JSMol): JSMol;
/**
* Create a query molecule
* This will return null if the input is invalid.
*
* @param input SMARTS string
*/
get_qmol(input: string): JSMol | null;
/**
* Get the InChI key for an InChI string
*
* @param inchi InChI string
*/
get_inchikey_for_inchi(inchi: string): string;
/**
* Get the version number of the RDKit module
*/
version(): string;
/**
* Set whether to prefer the CoordGen library's algorithm for coordinate generation
*
* @param prefer
*/
prefer_coordgen(prefer: boolean): void;
/**
* Set whether to use legacy stereo perception
*
* @param value
*/
use_legacy_stereo_perception(value: boolean): void;
/**
* Set whether to allow non-tetrahedral chirality
*
* @param value
*/
allow_non_tetrahedral_chirality(value: boolean): boolean;
/**
* Create a reaction from a variety of input strings.
* This will return null if the input is invalid.
* @param input
* @param details_json
*/
get_rxn(input: string, details_json?: string): JSReaction | null
enable_logging(): void;
disable_logging(): void;
set_log_capture(log_name: string): JSLog;
set_log_tee(log_name: string): JSLog;
}
type RDKitLoaderOptions = {
/**
* Optional path to the RDKit module .wasm file on your server.
*/
locateFile?: () => string
}
/**
* Loads the RDKit module asynchronously.
* In order to use the RDKit module, calling this function is necessary.
*/
export type RDKitLoader = (options?: RDKitLoaderOptions) => Promise<RDKitModule>;
declare global {
interface Window {
initRDKitModule: RDKitLoader;
}
}