boltz-api 0.35.3 → 0.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/package.json +1 -1
- package/resources/admin/usage.d.mts +2 -2
- package/resources/admin/usage.d.mts.map +1 -1
- package/resources/admin/usage.d.ts +2 -2
- package/resources/admin/usage.d.ts.map +1 -1
- package/resources/predictions/structure-and-binding.d.mts +21 -1
- package/resources/predictions/structure-and-binding.d.mts.map +1 -1
- package/resources/predictions/structure-and-binding.d.ts +21 -1
- package/resources/predictions/structure-and-binding.d.ts.map +1 -1
- package/resources/protein/design.d.mts +1 -1
- package/resources/protein/design.d.mts.map +1 -1
- package/resources/protein/design.d.ts +1 -1
- package/resources/protein/design.d.ts.map +1 -1
- package/resources/protein/library-screen.d.mts +1 -1
- package/resources/protein/library-screen.d.mts.map +1 -1
- package/resources/protein/library-screen.d.ts +1 -1
- package/resources/protein/library-screen.d.ts.map +1 -1
- package/resources/small-molecule/design.d.mts +61 -11
- package/resources/small-molecule/design.d.mts.map +1 -1
- package/resources/small-molecule/design.d.ts +61 -11
- package/resources/small-molecule/design.d.ts.map +1 -1
- package/resources/small-molecule/library-screen.d.mts +61 -11
- package/resources/small-molecule/library-screen.d.mts.map +1 -1
- package/resources/small-molecule/library-screen.d.ts +61 -11
- package/resources/small-molecule/library-screen.d.ts.map +1 -1
- package/src/resources/admin/usage.ts +3 -0
- package/src/resources/predictions/structure-and-binding.ts +25 -0
- package/src/resources/protein/design.ts +1 -0
- package/src/resources/protein/library-screen.ts +1 -0
- package/src/resources/small-molecule/design.ts +71 -10
- package/src/resources/small-molecule/library-screen.ts +71 -10
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -658,6 +658,12 @@ export namespace StructureAndBindingRetrieveResponse {
|
|
|
658
658
|
}
|
|
659
659
|
|
|
660
660
|
export interface ModelOptions {
|
|
661
|
+
/**
|
|
662
|
+
* Use the provided pocket constraint as input conditioning during affinity
|
|
663
|
+
* prediction.
|
|
664
|
+
*/
|
|
665
|
+
enable_pocket_conditioning?: boolean;
|
|
666
|
+
|
|
661
667
|
/**
|
|
662
668
|
* The number of recycling steps to use for prediction. Default is 3.
|
|
663
669
|
*/
|
|
@@ -985,6 +991,7 @@ export namespace StructureAndBindingEstimateCostResponse {
|
|
|
985
991
|
| 'small_molecule_design'
|
|
986
992
|
| 'small_molecule_library_screen'
|
|
987
993
|
| 'protein_design'
|
|
994
|
+
| 'protein_redesign'
|
|
988
995
|
| 'protein_library_screen'
|
|
989
996
|
| 'adme';
|
|
990
997
|
|
|
@@ -1530,6 +1537,12 @@ export namespace StructureAndBindingStartResponse {
|
|
|
1530
1537
|
}
|
|
1531
1538
|
|
|
1532
1539
|
export interface ModelOptions {
|
|
1540
|
+
/**
|
|
1541
|
+
* Use the provided pocket constraint as input conditioning during affinity
|
|
1542
|
+
* prediction.
|
|
1543
|
+
*/
|
|
1544
|
+
enable_pocket_conditioning?: boolean;
|
|
1545
|
+
|
|
1533
1546
|
/**
|
|
1534
1547
|
* The number of recycling steps to use for prediction. Default is 3.
|
|
1535
1548
|
*/
|
|
@@ -2206,6 +2219,12 @@ export namespace StructureAndBindingEstimateCostParams {
|
|
|
2206
2219
|
}
|
|
2207
2220
|
|
|
2208
2221
|
export interface ModelOptions {
|
|
2222
|
+
/**
|
|
2223
|
+
* Use the provided pocket constraint as input conditioning during affinity
|
|
2224
|
+
* prediction.
|
|
2225
|
+
*/
|
|
2226
|
+
enable_pocket_conditioning?: boolean;
|
|
2227
|
+
|
|
2209
2228
|
/**
|
|
2210
2229
|
* The number of recycling steps to use for prediction. Default is 3.
|
|
2211
2230
|
*/
|
|
@@ -2677,6 +2696,12 @@ export namespace StructureAndBindingStartParams {
|
|
|
2677
2696
|
}
|
|
2678
2697
|
|
|
2679
2698
|
export interface ModelOptions {
|
|
2699
|
+
/**
|
|
2700
|
+
* Use the provided pocket constraint as input conditioning during affinity
|
|
2701
|
+
* prediction.
|
|
2702
|
+
*/
|
|
2703
|
+
enable_pocket_conditioning?: boolean;
|
|
2704
|
+
|
|
2680
2705
|
/**
|
|
2681
2706
|
* The number of recycling steps to use for prediction. Default is 3.
|
|
2682
2707
|
*/
|
|
@@ -249,7 +249,7 @@ export namespace DesignRetrieveResponse {
|
|
|
249
249
|
num_molecules: number;
|
|
250
250
|
|
|
251
251
|
/**
|
|
252
|
-
* Target protein
|
|
252
|
+
* Target protein sequences for small molecule design or screening.
|
|
253
253
|
*/
|
|
254
254
|
target: Input.Target;
|
|
255
255
|
|
|
@@ -279,7 +279,7 @@ export namespace DesignRetrieveResponse {
|
|
|
279
279
|
|
|
280
280
|
export namespace Input {
|
|
281
281
|
/**
|
|
282
|
-
* Target protein
|
|
282
|
+
* Target protein sequences for small molecule design or screening.
|
|
283
283
|
*/
|
|
284
284
|
export interface Target {
|
|
285
285
|
/**
|
|
@@ -300,6 +300,12 @@ export namespace DesignRetrieveResponse {
|
|
|
300
300
|
*/
|
|
301
301
|
constraints?: Array<Target.PocketConstraintResponse | Target.ContactConstraintResponse>;
|
|
302
302
|
|
|
303
|
+
/**
|
|
304
|
+
* When true, pocket_residues are also sent as a forced Boltz2 pocket constraint
|
|
305
|
+
* while scoring candidate molecules. Defaults to false.
|
|
306
|
+
*/
|
|
307
|
+
enable_pocket_conditioning?: boolean;
|
|
308
|
+
|
|
303
309
|
/**
|
|
304
310
|
* Binding pocket residues, keyed by chain ID. Each key is a chain ID (e.g. "A")
|
|
305
311
|
* and the value is an array of 0-indexed residue indices that define the binding
|
|
@@ -316,6 +322,12 @@ export namespace DesignRetrieveResponse {
|
|
|
316
322
|
* detection.
|
|
317
323
|
*/
|
|
318
324
|
reference_ligands?: Array<string>;
|
|
325
|
+
|
|
326
|
+
/**
|
|
327
|
+
* Target is defined directly by protein sequences rather than a structure
|
|
328
|
+
* template.
|
|
329
|
+
*/
|
|
330
|
+
type?: 'no_template';
|
|
319
331
|
}
|
|
320
332
|
|
|
321
333
|
export namespace Target {
|
|
@@ -1071,6 +1083,7 @@ export namespace DesignEstimateCostResponse {
|
|
|
1071
1083
|
| 'small_molecule_design'
|
|
1072
1084
|
| 'small_molecule_library_screen'
|
|
1073
1085
|
| 'protein_design'
|
|
1086
|
+
| 'protein_redesign'
|
|
1074
1087
|
| 'protein_library_screen'
|
|
1075
1088
|
| 'adme';
|
|
1076
1089
|
|
|
@@ -1325,7 +1338,7 @@ export namespace DesignStartResponse {
|
|
|
1325
1338
|
num_molecules: number;
|
|
1326
1339
|
|
|
1327
1340
|
/**
|
|
1328
|
-
* Target protein
|
|
1341
|
+
* Target protein sequences for small molecule design or screening.
|
|
1329
1342
|
*/
|
|
1330
1343
|
target: Input.Target;
|
|
1331
1344
|
|
|
@@ -1355,7 +1368,7 @@ export namespace DesignStartResponse {
|
|
|
1355
1368
|
|
|
1356
1369
|
export namespace Input {
|
|
1357
1370
|
/**
|
|
1358
|
-
* Target protein
|
|
1371
|
+
* Target protein sequences for small molecule design or screening.
|
|
1359
1372
|
*/
|
|
1360
1373
|
export interface Target {
|
|
1361
1374
|
/**
|
|
@@ -1376,6 +1389,12 @@ export namespace DesignStartResponse {
|
|
|
1376
1389
|
*/
|
|
1377
1390
|
constraints?: Array<Target.PocketConstraintResponse | Target.ContactConstraintResponse>;
|
|
1378
1391
|
|
|
1392
|
+
/**
|
|
1393
|
+
* When true, pocket_residues are also sent as a forced Boltz2 pocket constraint
|
|
1394
|
+
* while scoring candidate molecules. Defaults to false.
|
|
1395
|
+
*/
|
|
1396
|
+
enable_pocket_conditioning?: boolean;
|
|
1397
|
+
|
|
1379
1398
|
/**
|
|
1380
1399
|
* Binding pocket residues, keyed by chain ID. Each key is a chain ID (e.g. "A")
|
|
1381
1400
|
* and the value is an array of 0-indexed residue indices that define the binding
|
|
@@ -1392,6 +1411,12 @@ export namespace DesignStartResponse {
|
|
|
1392
1411
|
* detection.
|
|
1393
1412
|
*/
|
|
1394
1413
|
reference_ligands?: Array<string>;
|
|
1414
|
+
|
|
1415
|
+
/**
|
|
1416
|
+
* Target is defined directly by protein sequences rather than a structure
|
|
1417
|
+
* template.
|
|
1418
|
+
*/
|
|
1419
|
+
type?: 'no_template';
|
|
1395
1420
|
}
|
|
1396
1421
|
|
|
1397
1422
|
export namespace Target {
|
|
@@ -2102,7 +2127,7 @@ export namespace DesignStopResponse {
|
|
|
2102
2127
|
num_molecules: number;
|
|
2103
2128
|
|
|
2104
2129
|
/**
|
|
2105
|
-
* Target protein
|
|
2130
|
+
* Target protein sequences for small molecule design or screening.
|
|
2106
2131
|
*/
|
|
2107
2132
|
target: Input.Target;
|
|
2108
2133
|
|
|
@@ -2132,7 +2157,7 @@ export namespace DesignStopResponse {
|
|
|
2132
2157
|
|
|
2133
2158
|
export namespace Input {
|
|
2134
2159
|
/**
|
|
2135
|
-
* Target protein
|
|
2160
|
+
* Target protein sequences for small molecule design or screening.
|
|
2136
2161
|
*/
|
|
2137
2162
|
export interface Target {
|
|
2138
2163
|
/**
|
|
@@ -2153,6 +2178,12 @@ export namespace DesignStopResponse {
|
|
|
2153
2178
|
*/
|
|
2154
2179
|
constraints?: Array<Target.PocketConstraintResponse | Target.ContactConstraintResponse>;
|
|
2155
2180
|
|
|
2181
|
+
/**
|
|
2182
|
+
* When true, pocket_residues are also sent as a forced Boltz2 pocket constraint
|
|
2183
|
+
* while scoring candidate molecules. Defaults to false.
|
|
2184
|
+
*/
|
|
2185
|
+
enable_pocket_conditioning?: boolean;
|
|
2186
|
+
|
|
2156
2187
|
/**
|
|
2157
2188
|
* Binding pocket residues, keyed by chain ID. Each key is a chain ID (e.g. "A")
|
|
2158
2189
|
* and the value is an array of 0-indexed residue indices that define the binding
|
|
@@ -2169,6 +2200,12 @@ export namespace DesignStopResponse {
|
|
|
2169
2200
|
* detection.
|
|
2170
2201
|
*/
|
|
2171
2202
|
reference_ligands?: Array<string>;
|
|
2203
|
+
|
|
2204
|
+
/**
|
|
2205
|
+
* Target is defined directly by protein sequences rather than a structure
|
|
2206
|
+
* template.
|
|
2207
|
+
*/
|
|
2208
|
+
type?: 'no_template';
|
|
2172
2209
|
}
|
|
2173
2210
|
|
|
2174
2211
|
export namespace Target {
|
|
@@ -2815,7 +2852,7 @@ export interface DesignEstimateCostParams {
|
|
|
2815
2852
|
num_molecules: number;
|
|
2816
2853
|
|
|
2817
2854
|
/**
|
|
2818
|
-
* Target protein
|
|
2855
|
+
* Target protein sequences for small molecule design or screening.
|
|
2819
2856
|
*/
|
|
2820
2857
|
target: DesignEstimateCostParams.Target;
|
|
2821
2858
|
|
|
@@ -2845,7 +2882,7 @@ export interface DesignEstimateCostParams {
|
|
|
2845
2882
|
|
|
2846
2883
|
export namespace DesignEstimateCostParams {
|
|
2847
2884
|
/**
|
|
2848
|
-
* Target protein
|
|
2885
|
+
* Target protein sequences for small molecule design or screening.
|
|
2849
2886
|
*/
|
|
2850
2887
|
export interface Target {
|
|
2851
2888
|
/**
|
|
@@ -2866,6 +2903,12 @@ export namespace DesignEstimateCostParams {
|
|
|
2866
2903
|
*/
|
|
2867
2904
|
constraints?: Array<Target.PocketConstraint | Target.ContactConstraint>;
|
|
2868
2905
|
|
|
2906
|
+
/**
|
|
2907
|
+
* When true, pocket_residues are also sent as a forced Boltz2 pocket constraint
|
|
2908
|
+
* while scoring candidate molecules. Defaults to false.
|
|
2909
|
+
*/
|
|
2910
|
+
enable_pocket_conditioning?: boolean;
|
|
2911
|
+
|
|
2869
2912
|
/**
|
|
2870
2913
|
* Binding pocket residues, keyed by chain ID. Each key is a chain ID (e.g. "A")
|
|
2871
2914
|
* and the value is an array of 0-indexed residue indices that define the binding
|
|
@@ -2882,6 +2925,12 @@ export namespace DesignEstimateCostParams {
|
|
|
2882
2925
|
* detection.
|
|
2883
2926
|
*/
|
|
2884
2927
|
reference_ligands?: Array<string>;
|
|
2928
|
+
|
|
2929
|
+
/**
|
|
2930
|
+
* Target is defined directly by protein sequences rather than a structure
|
|
2931
|
+
* template.
|
|
2932
|
+
*/
|
|
2933
|
+
type?: 'no_template';
|
|
2885
2934
|
}
|
|
2886
2935
|
|
|
2887
2936
|
export namespace Target {
|
|
@@ -3497,7 +3546,7 @@ export interface DesignStartParams {
|
|
|
3497
3546
|
num_molecules: number;
|
|
3498
3547
|
|
|
3499
3548
|
/**
|
|
3500
|
-
* Target protein
|
|
3549
|
+
* Target protein sequences for small molecule design or screening.
|
|
3501
3550
|
*/
|
|
3502
3551
|
target: DesignStartParams.Target;
|
|
3503
3552
|
|
|
@@ -3527,7 +3576,7 @@ export interface DesignStartParams {
|
|
|
3527
3576
|
|
|
3528
3577
|
export namespace DesignStartParams {
|
|
3529
3578
|
/**
|
|
3530
|
-
* Target protein
|
|
3579
|
+
* Target protein sequences for small molecule design or screening.
|
|
3531
3580
|
*/
|
|
3532
3581
|
export interface Target {
|
|
3533
3582
|
/**
|
|
@@ -3548,6 +3597,12 @@ export namespace DesignStartParams {
|
|
|
3548
3597
|
*/
|
|
3549
3598
|
constraints?: Array<Target.PocketConstraint | Target.ContactConstraint>;
|
|
3550
3599
|
|
|
3600
|
+
/**
|
|
3601
|
+
* When true, pocket_residues are also sent as a forced Boltz2 pocket constraint
|
|
3602
|
+
* while scoring candidate molecules. Defaults to false.
|
|
3603
|
+
*/
|
|
3604
|
+
enable_pocket_conditioning?: boolean;
|
|
3605
|
+
|
|
3551
3606
|
/**
|
|
3552
3607
|
* Binding pocket residues, keyed by chain ID. Each key is a chain ID (e.g. "A")
|
|
3553
3608
|
* and the value is an array of 0-indexed residue indices that define the binding
|
|
@@ -3564,6 +3619,12 @@ export namespace DesignStartParams {
|
|
|
3564
3619
|
* detection.
|
|
3565
3620
|
*/
|
|
3566
3621
|
reference_ligands?: Array<string>;
|
|
3622
|
+
|
|
3623
|
+
/**
|
|
3624
|
+
* Target is defined directly by protein sequences rather than a structure
|
|
3625
|
+
* template.
|
|
3626
|
+
*/
|
|
3627
|
+
type?: 'no_template';
|
|
3567
3628
|
}
|
|
3568
3629
|
|
|
3569
3630
|
export namespace Target {
|
|
@@ -244,7 +244,7 @@ export namespace LibraryScreenRetrieveResponse {
|
|
|
244
244
|
molecules: Input.Molecules;
|
|
245
245
|
|
|
246
246
|
/**
|
|
247
|
-
* Target protein
|
|
247
|
+
* Target protein sequences for small molecule design or screening.
|
|
248
248
|
*/
|
|
249
249
|
target: Input.Target;
|
|
250
250
|
|
|
@@ -269,7 +269,7 @@ export namespace LibraryScreenRetrieveResponse {
|
|
|
269
269
|
}
|
|
270
270
|
|
|
271
271
|
/**
|
|
272
|
-
* Target protein
|
|
272
|
+
* Target protein sequences for small molecule design or screening.
|
|
273
273
|
*/
|
|
274
274
|
export interface Target {
|
|
275
275
|
/**
|
|
@@ -290,6 +290,12 @@ export namespace LibraryScreenRetrieveResponse {
|
|
|
290
290
|
*/
|
|
291
291
|
constraints?: Array<Target.PocketConstraintResponse | Target.ContactConstraintResponse>;
|
|
292
292
|
|
|
293
|
+
/**
|
|
294
|
+
* When true, pocket_residues are also sent as a forced Boltz2 pocket constraint
|
|
295
|
+
* while scoring candidate molecules. Defaults to false.
|
|
296
|
+
*/
|
|
297
|
+
enable_pocket_conditioning?: boolean;
|
|
298
|
+
|
|
293
299
|
/**
|
|
294
300
|
* Binding pocket residues, keyed by chain ID. Each key is a chain ID (e.g. "A")
|
|
295
301
|
* and the value is an array of 0-indexed residue indices that define the binding
|
|
@@ -306,6 +312,12 @@ export namespace LibraryScreenRetrieveResponse {
|
|
|
306
312
|
* detection.
|
|
307
313
|
*/
|
|
308
314
|
reference_ligands?: Array<string>;
|
|
315
|
+
|
|
316
|
+
/**
|
|
317
|
+
* Target is defined directly by protein sequences rather than a structure
|
|
318
|
+
* template.
|
|
319
|
+
*/
|
|
320
|
+
type?: 'no_template';
|
|
309
321
|
}
|
|
310
322
|
|
|
311
323
|
export namespace Target {
|
|
@@ -1105,6 +1117,7 @@ export namespace LibraryScreenEstimateCostResponse {
|
|
|
1105
1117
|
| 'small_molecule_design'
|
|
1106
1118
|
| 'small_molecule_library_screen'
|
|
1107
1119
|
| 'protein_design'
|
|
1120
|
+
| 'protein_redesign'
|
|
1108
1121
|
| 'protein_library_screen'
|
|
1109
1122
|
| 'adme';
|
|
1110
1123
|
|
|
@@ -1361,7 +1374,7 @@ export namespace LibraryScreenStartResponse {
|
|
|
1361
1374
|
molecules: Input.Molecules;
|
|
1362
1375
|
|
|
1363
1376
|
/**
|
|
1364
|
-
* Target protein
|
|
1377
|
+
* Target protein sequences for small molecule design or screening.
|
|
1365
1378
|
*/
|
|
1366
1379
|
target: Input.Target;
|
|
1367
1380
|
|
|
@@ -1386,7 +1399,7 @@ export namespace LibraryScreenStartResponse {
|
|
|
1386
1399
|
}
|
|
1387
1400
|
|
|
1388
1401
|
/**
|
|
1389
|
-
* Target protein
|
|
1402
|
+
* Target protein sequences for small molecule design or screening.
|
|
1390
1403
|
*/
|
|
1391
1404
|
export interface Target {
|
|
1392
1405
|
/**
|
|
@@ -1407,6 +1420,12 @@ export namespace LibraryScreenStartResponse {
|
|
|
1407
1420
|
*/
|
|
1408
1421
|
constraints?: Array<Target.PocketConstraintResponse | Target.ContactConstraintResponse>;
|
|
1409
1422
|
|
|
1423
|
+
/**
|
|
1424
|
+
* When true, pocket_residues are also sent as a forced Boltz2 pocket constraint
|
|
1425
|
+
* while scoring candidate molecules. Defaults to false.
|
|
1426
|
+
*/
|
|
1427
|
+
enable_pocket_conditioning?: boolean;
|
|
1428
|
+
|
|
1410
1429
|
/**
|
|
1411
1430
|
* Binding pocket residues, keyed by chain ID. Each key is a chain ID (e.g. "A")
|
|
1412
1431
|
* and the value is an array of 0-indexed residue indices that define the binding
|
|
@@ -1423,6 +1442,12 @@ export namespace LibraryScreenStartResponse {
|
|
|
1423
1442
|
* detection.
|
|
1424
1443
|
*/
|
|
1425
1444
|
reference_ligands?: Array<string>;
|
|
1445
|
+
|
|
1446
|
+
/**
|
|
1447
|
+
* Target is defined directly by protein sequences rather than a structure
|
|
1448
|
+
* template.
|
|
1449
|
+
*/
|
|
1450
|
+
type?: 'no_template';
|
|
1426
1451
|
}
|
|
1427
1452
|
|
|
1428
1453
|
export namespace Target {
|
|
@@ -2152,7 +2177,7 @@ export namespace LibraryScreenStopResponse {
|
|
|
2152
2177
|
molecules: Input.Molecules;
|
|
2153
2178
|
|
|
2154
2179
|
/**
|
|
2155
|
-
* Target protein
|
|
2180
|
+
* Target protein sequences for small molecule design or screening.
|
|
2156
2181
|
*/
|
|
2157
2182
|
target: Input.Target;
|
|
2158
2183
|
|
|
@@ -2177,7 +2202,7 @@ export namespace LibraryScreenStopResponse {
|
|
|
2177
2202
|
}
|
|
2178
2203
|
|
|
2179
2204
|
/**
|
|
2180
|
-
* Target protein
|
|
2205
|
+
* Target protein sequences for small molecule design or screening.
|
|
2181
2206
|
*/
|
|
2182
2207
|
export interface Target {
|
|
2183
2208
|
/**
|
|
@@ -2198,6 +2223,12 @@ export namespace LibraryScreenStopResponse {
|
|
|
2198
2223
|
*/
|
|
2199
2224
|
constraints?: Array<Target.PocketConstraintResponse | Target.ContactConstraintResponse>;
|
|
2200
2225
|
|
|
2226
|
+
/**
|
|
2227
|
+
* When true, pocket_residues are also sent as a forced Boltz2 pocket constraint
|
|
2228
|
+
* while scoring candidate molecules. Defaults to false.
|
|
2229
|
+
*/
|
|
2230
|
+
enable_pocket_conditioning?: boolean;
|
|
2231
|
+
|
|
2201
2232
|
/**
|
|
2202
2233
|
* Binding pocket residues, keyed by chain ID. Each key is a chain ID (e.g. "A")
|
|
2203
2234
|
* and the value is an array of 0-indexed residue indices that define the binding
|
|
@@ -2214,6 +2245,12 @@ export namespace LibraryScreenStopResponse {
|
|
|
2214
2245
|
* detection.
|
|
2215
2246
|
*/
|
|
2216
2247
|
reference_ligands?: Array<string>;
|
|
2248
|
+
|
|
2249
|
+
/**
|
|
2250
|
+
* Target is defined directly by protein sequences rather than a structure
|
|
2251
|
+
* template.
|
|
2252
|
+
*/
|
|
2253
|
+
type?: 'no_template';
|
|
2217
2254
|
}
|
|
2218
2255
|
|
|
2219
2256
|
export namespace Target {
|
|
@@ -2882,7 +2919,7 @@ export interface LibraryScreenEstimateCostParams {
|
|
|
2882
2919
|
molecules: Array<LibraryScreenEstimateCostParams.Molecule>;
|
|
2883
2920
|
|
|
2884
2921
|
/**
|
|
2885
|
-
* Target protein
|
|
2922
|
+
* Target protein sequences for small molecule design or screening.
|
|
2886
2923
|
*/
|
|
2887
2924
|
target: LibraryScreenEstimateCostParams.Target;
|
|
2888
2925
|
|
|
@@ -2920,7 +2957,7 @@ export namespace LibraryScreenEstimateCostParams {
|
|
|
2920
2957
|
}
|
|
2921
2958
|
|
|
2922
2959
|
/**
|
|
2923
|
-
* Target protein
|
|
2960
|
+
* Target protein sequences for small molecule design or screening.
|
|
2924
2961
|
*/
|
|
2925
2962
|
export interface Target {
|
|
2926
2963
|
/**
|
|
@@ -2941,6 +2978,12 @@ export namespace LibraryScreenEstimateCostParams {
|
|
|
2941
2978
|
*/
|
|
2942
2979
|
constraints?: Array<Target.PocketConstraint | Target.ContactConstraint>;
|
|
2943
2980
|
|
|
2981
|
+
/**
|
|
2982
|
+
* When true, pocket_residues are also sent as a forced Boltz2 pocket constraint
|
|
2983
|
+
* while scoring candidate molecules. Defaults to false.
|
|
2984
|
+
*/
|
|
2985
|
+
enable_pocket_conditioning?: boolean;
|
|
2986
|
+
|
|
2944
2987
|
/**
|
|
2945
2988
|
* Binding pocket residues, keyed by chain ID. Each key is a chain ID (e.g. "A")
|
|
2946
2989
|
* and the value is an array of 0-indexed residue indices that define the binding
|
|
@@ -2957,6 +3000,12 @@ export namespace LibraryScreenEstimateCostParams {
|
|
|
2957
3000
|
* detection.
|
|
2958
3001
|
*/
|
|
2959
3002
|
reference_ligands?: Array<string>;
|
|
3003
|
+
|
|
3004
|
+
/**
|
|
3005
|
+
* Target is defined directly by protein sequences rather than a structure
|
|
3006
|
+
* template.
|
|
3007
|
+
*/
|
|
3008
|
+
type?: 'no_template';
|
|
2960
3009
|
}
|
|
2961
3010
|
|
|
2962
3011
|
export namespace Target {
|
|
@@ -3572,7 +3621,7 @@ export interface LibraryScreenStartParams {
|
|
|
3572
3621
|
molecules: Array<LibraryScreenStartParams.Molecule>;
|
|
3573
3622
|
|
|
3574
3623
|
/**
|
|
3575
|
-
* Target protein
|
|
3624
|
+
* Target protein sequences for small molecule design or screening.
|
|
3576
3625
|
*/
|
|
3577
3626
|
target: LibraryScreenStartParams.Target;
|
|
3578
3627
|
|
|
@@ -3610,7 +3659,7 @@ export namespace LibraryScreenStartParams {
|
|
|
3610
3659
|
}
|
|
3611
3660
|
|
|
3612
3661
|
/**
|
|
3613
|
-
* Target protein
|
|
3662
|
+
* Target protein sequences for small molecule design or screening.
|
|
3614
3663
|
*/
|
|
3615
3664
|
export interface Target {
|
|
3616
3665
|
/**
|
|
@@ -3631,6 +3680,12 @@ export namespace LibraryScreenStartParams {
|
|
|
3631
3680
|
*/
|
|
3632
3681
|
constraints?: Array<Target.PocketConstraint | Target.ContactConstraint>;
|
|
3633
3682
|
|
|
3683
|
+
/**
|
|
3684
|
+
* When true, pocket_residues are also sent as a forced Boltz2 pocket constraint
|
|
3685
|
+
* while scoring candidate molecules. Defaults to false.
|
|
3686
|
+
*/
|
|
3687
|
+
enable_pocket_conditioning?: boolean;
|
|
3688
|
+
|
|
3634
3689
|
/**
|
|
3635
3690
|
* Binding pocket residues, keyed by chain ID. Each key is a chain ID (e.g. "A")
|
|
3636
3691
|
* and the value is an array of 0-indexed residue indices that define the binding
|
|
@@ -3647,6 +3702,12 @@ export namespace LibraryScreenStartParams {
|
|
|
3647
3702
|
* detection.
|
|
3648
3703
|
*/
|
|
3649
3704
|
reference_ligands?: Array<string>;
|
|
3705
|
+
|
|
3706
|
+
/**
|
|
3707
|
+
* Target is defined directly by protein sequences rather than a structure
|
|
3708
|
+
* template.
|
|
3709
|
+
*/
|
|
3710
|
+
type?: 'no_template';
|
|
3650
3711
|
}
|
|
3651
3712
|
|
|
3652
3713
|
export namespace Target {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.37.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.37.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.37.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.37.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|