boltz-api 0.39.2 → 0.40.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/predictions/structure-and-binding.d.mts +108 -16
- package/resources/predictions/structure-and-binding.d.mts.map +1 -1
- package/resources/predictions/structure-and-binding.d.ts +108 -16
- package/resources/predictions/structure-and-binding.d.ts.map +1 -1
- package/resources/protein/design.d.mts +382 -44
- package/resources/protein/design.d.mts.map +1 -1
- package/resources/protein/design.d.ts +382 -44
- package/resources/protein/design.d.ts.map +1 -1
- package/resources/protein/library-screen.d.mts +216 -32
- package/resources/protein/library-screen.d.mts.map +1 -1
- package/resources/protein/library-screen.d.ts +216 -32
- package/resources/protein/library-screen.d.ts.map +1 -1
- package/resources/small-molecule/design.d.mts +85 -10
- package/resources/small-molecule/design.d.mts.map +1 -1
- package/resources/small-molecule/design.d.ts +85 -10
- package/resources/small-molecule/design.d.ts.map +1 -1
- package/resources/small-molecule/library-screen.d.mts +45 -10
- package/resources/small-molecule/library-screen.d.mts.map +1 -1
- package/resources/small-molecule/library-screen.d.ts +45 -10
- package/resources/small-molecule/library-screen.d.ts.map +1 -1
- package/src/resources/predictions/structure-and-binding.ts +108 -16
- package/src/resources/protein/design.ts +390 -44
- package/src/resources/protein/library-screen.ts +216 -32
- package/src/resources/small-molecule/design.ts +93 -10
- package/src/resources/small-molecule/library-screen.ts +45 -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
|
@@ -344,19 +344,26 @@ export namespace DesignRetrieveResponse {
|
|
|
344
344
|
cyclic?: boolean;
|
|
345
345
|
|
|
346
346
|
/**
|
|
347
|
-
*
|
|
348
|
-
* omitted.
|
|
347
|
+
* CCD post-translational modifications. Optional; defaults to an empty list when
|
|
348
|
+
* omitted. SMILES modifications are not supported.
|
|
349
349
|
*/
|
|
350
350
|
modifications?: Array<Entity.Modification>;
|
|
351
351
|
}
|
|
352
352
|
|
|
353
353
|
export namespace Entity {
|
|
354
|
+
/**
|
|
355
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
356
|
+
* are not accepted.
|
|
357
|
+
*/
|
|
354
358
|
export interface Modification {
|
|
355
359
|
/**
|
|
356
360
|
* 0-based index of the residue to modify
|
|
357
361
|
*/
|
|
358
362
|
residue_index: number;
|
|
359
363
|
|
|
364
|
+
/**
|
|
365
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
366
|
+
*/
|
|
360
367
|
type: 'ccd';
|
|
361
368
|
|
|
362
369
|
/**
|
|
@@ -941,6 +948,18 @@ export namespace DesignRetrieveResponse {
|
|
|
941
948
|
* ID of the most recently generated result
|
|
942
949
|
*/
|
|
943
950
|
latest_result_id?: string;
|
|
951
|
+
|
|
952
|
+
/**
|
|
953
|
+
* Cumulative number of molecules produced by the model before filtering and
|
|
954
|
+
* deduplication. Useful for monitoring generation efficiency.
|
|
955
|
+
*/
|
|
956
|
+
total_molecules_generated_pre_filter?: number;
|
|
957
|
+
|
|
958
|
+
/**
|
|
959
|
+
* Cumulative number of molecules that survived filtering and deduplication and
|
|
960
|
+
* became scoreable samples.
|
|
961
|
+
*/
|
|
962
|
+
total_molecules_inserted?: number;
|
|
944
963
|
}
|
|
945
964
|
}
|
|
946
965
|
|
|
@@ -1032,6 +1051,18 @@ export namespace DesignListResponse {
|
|
|
1032
1051
|
* ID of the most recently generated result
|
|
1033
1052
|
*/
|
|
1034
1053
|
latest_result_id?: string;
|
|
1054
|
+
|
|
1055
|
+
/**
|
|
1056
|
+
* Cumulative number of molecules produced by the model before filtering and
|
|
1057
|
+
* deduplication. Useful for monitoring generation efficiency.
|
|
1058
|
+
*/
|
|
1059
|
+
total_molecules_generated_pre_filter?: number;
|
|
1060
|
+
|
|
1061
|
+
/**
|
|
1062
|
+
* Cumulative number of molecules that survived filtering and deduplication and
|
|
1063
|
+
* became scoreable samples.
|
|
1064
|
+
*/
|
|
1065
|
+
total_molecules_inserted?: number;
|
|
1035
1066
|
}
|
|
1036
1067
|
}
|
|
1037
1068
|
|
|
@@ -1427,19 +1458,26 @@ export namespace DesignStartResponse {
|
|
|
1427
1458
|
cyclic?: boolean;
|
|
1428
1459
|
|
|
1429
1460
|
/**
|
|
1430
|
-
*
|
|
1431
|
-
* omitted.
|
|
1461
|
+
* CCD post-translational modifications. Optional; defaults to an empty list when
|
|
1462
|
+
* omitted. SMILES modifications are not supported.
|
|
1432
1463
|
*/
|
|
1433
1464
|
modifications?: Array<Entity.Modification>;
|
|
1434
1465
|
}
|
|
1435
1466
|
|
|
1436
1467
|
export namespace Entity {
|
|
1468
|
+
/**
|
|
1469
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
1470
|
+
* are not accepted.
|
|
1471
|
+
*/
|
|
1437
1472
|
export interface Modification {
|
|
1438
1473
|
/**
|
|
1439
1474
|
* 0-based index of the residue to modify
|
|
1440
1475
|
*/
|
|
1441
1476
|
residue_index: number;
|
|
1442
1477
|
|
|
1478
|
+
/**
|
|
1479
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
1480
|
+
*/
|
|
1443
1481
|
type: 'ccd';
|
|
1444
1482
|
|
|
1445
1483
|
/**
|
|
@@ -2024,6 +2062,18 @@ export namespace DesignStartResponse {
|
|
|
2024
2062
|
* ID of the most recently generated result
|
|
2025
2063
|
*/
|
|
2026
2064
|
latest_result_id?: string;
|
|
2065
|
+
|
|
2066
|
+
/**
|
|
2067
|
+
* Cumulative number of molecules produced by the model before filtering and
|
|
2068
|
+
* deduplication. Useful for monitoring generation efficiency.
|
|
2069
|
+
*/
|
|
2070
|
+
total_molecules_generated_pre_filter?: number;
|
|
2071
|
+
|
|
2072
|
+
/**
|
|
2073
|
+
* Cumulative number of molecules that survived filtering and deduplication and
|
|
2074
|
+
* became scoreable samples.
|
|
2075
|
+
*/
|
|
2076
|
+
total_molecules_inserted?: number;
|
|
2027
2077
|
}
|
|
2028
2078
|
}
|
|
2029
2079
|
|
|
@@ -2210,19 +2260,26 @@ export namespace DesignStopResponse {
|
|
|
2210
2260
|
cyclic?: boolean;
|
|
2211
2261
|
|
|
2212
2262
|
/**
|
|
2213
|
-
*
|
|
2214
|
-
* omitted.
|
|
2263
|
+
* CCD post-translational modifications. Optional; defaults to an empty list when
|
|
2264
|
+
* omitted. SMILES modifications are not supported.
|
|
2215
2265
|
*/
|
|
2216
2266
|
modifications?: Array<Entity.Modification>;
|
|
2217
2267
|
}
|
|
2218
2268
|
|
|
2219
2269
|
export namespace Entity {
|
|
2270
|
+
/**
|
|
2271
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
2272
|
+
* are not accepted.
|
|
2273
|
+
*/
|
|
2220
2274
|
export interface Modification {
|
|
2221
2275
|
/**
|
|
2222
2276
|
* 0-based index of the residue to modify
|
|
2223
2277
|
*/
|
|
2224
2278
|
residue_index: number;
|
|
2225
2279
|
|
|
2280
|
+
/**
|
|
2281
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
2282
|
+
*/
|
|
2226
2283
|
type: 'ccd';
|
|
2227
2284
|
|
|
2228
2285
|
/**
|
|
@@ -2807,6 +2864,18 @@ export namespace DesignStopResponse {
|
|
|
2807
2864
|
* ID of the most recently generated result
|
|
2808
2865
|
*/
|
|
2809
2866
|
latest_result_id?: string;
|
|
2867
|
+
|
|
2868
|
+
/**
|
|
2869
|
+
* Cumulative number of molecules produced by the model before filtering and
|
|
2870
|
+
* deduplication. Useful for monitoring generation efficiency.
|
|
2871
|
+
*/
|
|
2872
|
+
total_molecules_generated_pre_filter?: number;
|
|
2873
|
+
|
|
2874
|
+
/**
|
|
2875
|
+
* Cumulative number of molecules that survived filtering and deduplication and
|
|
2876
|
+
* became scoreable samples.
|
|
2877
|
+
*/
|
|
2878
|
+
total_molecules_inserted?: number;
|
|
2810
2879
|
}
|
|
2811
2880
|
}
|
|
2812
2881
|
|
|
@@ -2929,19 +2998,26 @@ export namespace DesignEstimateCostParams {
|
|
|
2929
2998
|
cyclic?: boolean;
|
|
2930
2999
|
|
|
2931
3000
|
/**
|
|
2932
|
-
*
|
|
2933
|
-
* omitted.
|
|
3001
|
+
* CCD post-translational modifications. Optional; defaults to an empty list when
|
|
3002
|
+
* omitted. SMILES modifications are not supported.
|
|
2934
3003
|
*/
|
|
2935
3004
|
modifications?: Array<Entity.Modification>;
|
|
2936
3005
|
}
|
|
2937
3006
|
|
|
2938
3007
|
export namespace Entity {
|
|
3008
|
+
/**
|
|
3009
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
3010
|
+
* are not accepted.
|
|
3011
|
+
*/
|
|
2939
3012
|
export interface Modification {
|
|
2940
3013
|
/**
|
|
2941
3014
|
* 0-based index of the residue to modify
|
|
2942
3015
|
*/
|
|
2943
3016
|
residue_index: number;
|
|
2944
3017
|
|
|
3018
|
+
/**
|
|
3019
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
3020
|
+
*/
|
|
2945
3021
|
type: 'ccd';
|
|
2946
3022
|
|
|
2947
3023
|
/**
|
|
@@ -3617,19 +3693,26 @@ export namespace DesignStartParams {
|
|
|
3617
3693
|
cyclic?: boolean;
|
|
3618
3694
|
|
|
3619
3695
|
/**
|
|
3620
|
-
*
|
|
3621
|
-
* omitted.
|
|
3696
|
+
* CCD post-translational modifications. Optional; defaults to an empty list when
|
|
3697
|
+
* omitted. SMILES modifications are not supported.
|
|
3622
3698
|
*/
|
|
3623
3699
|
modifications?: Array<Entity.Modification>;
|
|
3624
3700
|
}
|
|
3625
3701
|
|
|
3626
3702
|
export namespace Entity {
|
|
3703
|
+
/**
|
|
3704
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
3705
|
+
* are not accepted.
|
|
3706
|
+
*/
|
|
3627
3707
|
export interface Modification {
|
|
3628
3708
|
/**
|
|
3629
3709
|
* 0-based index of the residue to modify
|
|
3630
3710
|
*/
|
|
3631
3711
|
residue_index: number;
|
|
3632
3712
|
|
|
3713
|
+
/**
|
|
3714
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
3715
|
+
*/
|
|
3633
3716
|
type: 'ccd';
|
|
3634
3717
|
|
|
3635
3718
|
/**
|
|
@@ -334,19 +334,26 @@ export namespace LibraryScreenRetrieveResponse {
|
|
|
334
334
|
cyclic?: boolean;
|
|
335
335
|
|
|
336
336
|
/**
|
|
337
|
-
*
|
|
338
|
-
* omitted.
|
|
337
|
+
* CCD post-translational modifications. Optional; defaults to an empty list when
|
|
338
|
+
* omitted. SMILES modifications are not supported.
|
|
339
339
|
*/
|
|
340
340
|
modifications?: Array<Entity.Modification>;
|
|
341
341
|
}
|
|
342
342
|
|
|
343
343
|
export namespace Entity {
|
|
344
|
+
/**
|
|
345
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
346
|
+
* are not accepted.
|
|
347
|
+
*/
|
|
344
348
|
export interface Modification {
|
|
345
349
|
/**
|
|
346
350
|
* 0-based index of the residue to modify
|
|
347
351
|
*/
|
|
348
352
|
residue_index: number;
|
|
349
353
|
|
|
354
|
+
/**
|
|
355
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
356
|
+
*/
|
|
350
357
|
type: 'ccd';
|
|
351
358
|
|
|
352
359
|
/**
|
|
@@ -1458,19 +1465,26 @@ export namespace LibraryScreenStartResponse {
|
|
|
1458
1465
|
cyclic?: boolean;
|
|
1459
1466
|
|
|
1460
1467
|
/**
|
|
1461
|
-
*
|
|
1462
|
-
* omitted.
|
|
1468
|
+
* CCD post-translational modifications. Optional; defaults to an empty list when
|
|
1469
|
+
* omitted. SMILES modifications are not supported.
|
|
1463
1470
|
*/
|
|
1464
1471
|
modifications?: Array<Entity.Modification>;
|
|
1465
1472
|
}
|
|
1466
1473
|
|
|
1467
1474
|
export namespace Entity {
|
|
1475
|
+
/**
|
|
1476
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
1477
|
+
* are not accepted.
|
|
1478
|
+
*/
|
|
1468
1479
|
export interface Modification {
|
|
1469
1480
|
/**
|
|
1470
1481
|
* 0-based index of the residue to modify
|
|
1471
1482
|
*/
|
|
1472
1483
|
residue_index: number;
|
|
1473
1484
|
|
|
1485
|
+
/**
|
|
1486
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
1487
|
+
*/
|
|
1474
1488
|
type: 'ccd';
|
|
1475
1489
|
|
|
1476
1490
|
/**
|
|
@@ -2255,19 +2269,26 @@ export namespace LibraryScreenStopResponse {
|
|
|
2255
2269
|
cyclic?: boolean;
|
|
2256
2270
|
|
|
2257
2271
|
/**
|
|
2258
|
-
*
|
|
2259
|
-
* omitted.
|
|
2272
|
+
* CCD post-translational modifications. Optional; defaults to an empty list when
|
|
2273
|
+
* omitted. SMILES modifications are not supported.
|
|
2260
2274
|
*/
|
|
2261
2275
|
modifications?: Array<Entity.Modification>;
|
|
2262
2276
|
}
|
|
2263
2277
|
|
|
2264
2278
|
export namespace Entity {
|
|
2279
|
+
/**
|
|
2280
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
2281
|
+
* are not accepted.
|
|
2282
|
+
*/
|
|
2265
2283
|
export interface Modification {
|
|
2266
2284
|
/**
|
|
2267
2285
|
* 0-based index of the residue to modify
|
|
2268
2286
|
*/
|
|
2269
2287
|
residue_index: number;
|
|
2270
2288
|
|
|
2289
|
+
/**
|
|
2290
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
2291
|
+
*/
|
|
2271
2292
|
type: 'ccd';
|
|
2272
2293
|
|
|
2273
2294
|
/**
|
|
@@ -3004,19 +3025,26 @@ export namespace LibraryScreenEstimateCostParams {
|
|
|
3004
3025
|
cyclic?: boolean;
|
|
3005
3026
|
|
|
3006
3027
|
/**
|
|
3007
|
-
*
|
|
3008
|
-
* omitted.
|
|
3028
|
+
* CCD post-translational modifications. Optional; defaults to an empty list when
|
|
3029
|
+
* omitted. SMILES modifications are not supported.
|
|
3009
3030
|
*/
|
|
3010
3031
|
modifications?: Array<Entity.Modification>;
|
|
3011
3032
|
}
|
|
3012
3033
|
|
|
3013
3034
|
export namespace Entity {
|
|
3035
|
+
/**
|
|
3036
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
3037
|
+
* are not accepted.
|
|
3038
|
+
*/
|
|
3014
3039
|
export interface Modification {
|
|
3015
3040
|
/**
|
|
3016
3041
|
* 0-based index of the residue to modify
|
|
3017
3042
|
*/
|
|
3018
3043
|
residue_index: number;
|
|
3019
3044
|
|
|
3045
|
+
/**
|
|
3046
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
3047
|
+
*/
|
|
3020
3048
|
type: 'ccd';
|
|
3021
3049
|
|
|
3022
3050
|
/**
|
|
@@ -3700,19 +3728,26 @@ export namespace LibraryScreenStartParams {
|
|
|
3700
3728
|
cyclic?: boolean;
|
|
3701
3729
|
|
|
3702
3730
|
/**
|
|
3703
|
-
*
|
|
3704
|
-
* omitted.
|
|
3731
|
+
* CCD post-translational modifications. Optional; defaults to an empty list when
|
|
3732
|
+
* omitted. SMILES modifications are not supported.
|
|
3705
3733
|
*/
|
|
3706
3734
|
modifications?: Array<Entity.Modification>;
|
|
3707
3735
|
}
|
|
3708
3736
|
|
|
3709
3737
|
export namespace Entity {
|
|
3738
|
+
/**
|
|
3739
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
3740
|
+
* are not accepted.
|
|
3741
|
+
*/
|
|
3710
3742
|
export interface Modification {
|
|
3711
3743
|
/**
|
|
3712
3744
|
* 0-based index of the residue to modify
|
|
3713
3745
|
*/
|
|
3714
3746
|
residue_index: number;
|
|
3715
3747
|
|
|
3748
|
+
/**
|
|
3749
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
3750
|
+
*/
|
|
3716
3751
|
type: 'ccd';
|
|
3717
3752
|
|
|
3718
3753
|
/**
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.40.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.40.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.40.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.40.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|