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
|
@@ -541,18 +541,26 @@ export namespace DesignRetrieveResponse {
|
|
|
541
541
|
cyclic?: boolean;
|
|
542
542
|
|
|
543
543
|
/**
|
|
544
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
544
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
545
|
+
* modifications are not supported.
|
|
545
546
|
*/
|
|
546
547
|
modifications?: Array<DesignedProteinEntityResponse.Modification>;
|
|
547
548
|
}
|
|
548
549
|
|
|
549
550
|
export namespace DesignedProteinEntityResponse {
|
|
551
|
+
/**
|
|
552
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
553
|
+
* are not accepted.
|
|
554
|
+
*/
|
|
550
555
|
export interface Modification {
|
|
551
556
|
/**
|
|
552
557
|
* 0-based index of the residue to modify
|
|
553
558
|
*/
|
|
554
559
|
residue_index: number;
|
|
555
560
|
|
|
561
|
+
/**
|
|
562
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
563
|
+
*/
|
|
556
564
|
type: 'ccd';
|
|
557
565
|
|
|
558
566
|
/**
|
|
@@ -585,18 +593,26 @@ export namespace DesignRetrieveResponse {
|
|
|
585
593
|
cyclic?: boolean;
|
|
586
594
|
|
|
587
595
|
/**
|
|
588
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
596
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
597
|
+
* modifications are not supported.
|
|
589
598
|
*/
|
|
590
599
|
modifications?: Array<FixedProteinEntityResponse.Modification>;
|
|
591
600
|
}
|
|
592
601
|
|
|
593
602
|
export namespace FixedProteinEntityResponse {
|
|
603
|
+
/**
|
|
604
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
605
|
+
* are not accepted.
|
|
606
|
+
*/
|
|
594
607
|
export interface Modification {
|
|
595
608
|
/**
|
|
596
609
|
* 0-based index of the residue to modify
|
|
597
610
|
*/
|
|
598
611
|
residue_index: number;
|
|
599
612
|
|
|
613
|
+
/**
|
|
614
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
615
|
+
*/
|
|
600
616
|
type: 'ccd';
|
|
601
617
|
|
|
602
618
|
/**
|
|
@@ -626,18 +642,26 @@ export namespace DesignRetrieveResponse {
|
|
|
626
642
|
cyclic?: boolean;
|
|
627
643
|
|
|
628
644
|
/**
|
|
629
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
645
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
646
|
+
* modifications are not supported.
|
|
630
647
|
*/
|
|
631
648
|
modifications?: Array<FixedRnaEntityResponse.Modification>;
|
|
632
649
|
}
|
|
633
650
|
|
|
634
651
|
export namespace FixedRnaEntityResponse {
|
|
652
|
+
/**
|
|
653
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
654
|
+
* are not accepted.
|
|
655
|
+
*/
|
|
635
656
|
export interface Modification {
|
|
636
657
|
/**
|
|
637
658
|
* 0-based index of the residue to modify
|
|
638
659
|
*/
|
|
639
660
|
residue_index: number;
|
|
640
661
|
|
|
662
|
+
/**
|
|
663
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
664
|
+
*/
|
|
641
665
|
type: 'ccd';
|
|
642
666
|
|
|
643
667
|
/**
|
|
@@ -667,18 +691,26 @@ export namespace DesignRetrieveResponse {
|
|
|
667
691
|
cyclic?: boolean;
|
|
668
692
|
|
|
669
693
|
/**
|
|
670
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
694
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
695
|
+
* modifications are not supported.
|
|
671
696
|
*/
|
|
672
697
|
modifications?: Array<FixedDnaEntityResponse.Modification>;
|
|
673
698
|
}
|
|
674
699
|
|
|
675
700
|
export namespace FixedDnaEntityResponse {
|
|
701
|
+
/**
|
|
702
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
703
|
+
* are not accepted.
|
|
704
|
+
*/
|
|
676
705
|
export interface Modification {
|
|
677
706
|
/**
|
|
678
707
|
* 0-based index of the residue to modify
|
|
679
708
|
*/
|
|
680
709
|
residue_index: number;
|
|
681
710
|
|
|
711
|
+
/**
|
|
712
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
713
|
+
*/
|
|
682
714
|
type: 'ccd';
|
|
683
715
|
|
|
684
716
|
/**
|
|
@@ -1036,19 +1068,26 @@ export namespace DesignRetrieveResponse {
|
|
|
1036
1068
|
cyclic?: boolean;
|
|
1037
1069
|
|
|
1038
1070
|
/**
|
|
1039
|
-
*
|
|
1040
|
-
* omitted.
|
|
1071
|
+
* CCD post-translational modifications. Optional; defaults to an empty list when
|
|
1072
|
+
* omitted. SMILES modifications are not supported.
|
|
1041
1073
|
*/
|
|
1042
1074
|
modifications?: Array<ProteinEntityResponse.Modification>;
|
|
1043
1075
|
}
|
|
1044
1076
|
|
|
1045
1077
|
export namespace ProteinEntityResponse {
|
|
1078
|
+
/**
|
|
1079
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
1080
|
+
* are not accepted.
|
|
1081
|
+
*/
|
|
1046
1082
|
export interface Modification {
|
|
1047
1083
|
/**
|
|
1048
1084
|
* 0-based index of the residue to modify
|
|
1049
1085
|
*/
|
|
1050
1086
|
residue_index: number;
|
|
1051
1087
|
|
|
1088
|
+
/**
|
|
1089
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
1090
|
+
*/
|
|
1052
1091
|
type: 'ccd';
|
|
1053
1092
|
|
|
1054
1093
|
/**
|
|
@@ -1078,18 +1117,26 @@ export namespace DesignRetrieveResponse {
|
|
|
1078
1117
|
cyclic?: boolean;
|
|
1079
1118
|
|
|
1080
1119
|
/**
|
|
1081
|
-
*
|
|
1120
|
+
* CCD chemical modifications. Optional; defaults to an empty list when omitted.
|
|
1121
|
+
* SMILES modifications are not supported.
|
|
1082
1122
|
*/
|
|
1083
1123
|
modifications?: Array<RnaEntityResponse.Modification>;
|
|
1084
1124
|
}
|
|
1085
1125
|
|
|
1086
1126
|
export namespace RnaEntityResponse {
|
|
1127
|
+
/**
|
|
1128
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
1129
|
+
* are not accepted.
|
|
1130
|
+
*/
|
|
1087
1131
|
export interface Modification {
|
|
1088
1132
|
/**
|
|
1089
1133
|
* 0-based index of the residue to modify
|
|
1090
1134
|
*/
|
|
1091
1135
|
residue_index: number;
|
|
1092
1136
|
|
|
1137
|
+
/**
|
|
1138
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
1139
|
+
*/
|
|
1093
1140
|
type: 'ccd';
|
|
1094
1141
|
|
|
1095
1142
|
/**
|
|
@@ -1119,18 +1166,26 @@ export namespace DesignRetrieveResponse {
|
|
|
1119
1166
|
cyclic?: boolean;
|
|
1120
1167
|
|
|
1121
1168
|
/**
|
|
1122
|
-
*
|
|
1169
|
+
* CCD chemical modifications. Optional; defaults to an empty list when omitted.
|
|
1170
|
+
* SMILES modifications are not supported.
|
|
1123
1171
|
*/
|
|
1124
1172
|
modifications?: Array<DnaEntityResponse.Modification>;
|
|
1125
1173
|
}
|
|
1126
1174
|
|
|
1127
1175
|
export namespace DnaEntityResponse {
|
|
1176
|
+
/**
|
|
1177
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
1178
|
+
* are not accepted.
|
|
1179
|
+
*/
|
|
1128
1180
|
export interface Modification {
|
|
1129
1181
|
/**
|
|
1130
1182
|
* 0-based index of the residue to modify
|
|
1131
1183
|
*/
|
|
1132
1184
|
residue_index: number;
|
|
1133
1185
|
|
|
1186
|
+
/**
|
|
1187
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
1188
|
+
*/
|
|
1134
1189
|
type: 'ccd';
|
|
1135
1190
|
|
|
1136
1191
|
/**
|
|
@@ -1414,6 +1469,18 @@ export namespace DesignRetrieveResponse {
|
|
|
1414
1469
|
* ID of the most recently generated result
|
|
1415
1470
|
*/
|
|
1416
1471
|
latest_result_id?: string;
|
|
1472
|
+
|
|
1473
|
+
/**
|
|
1474
|
+
* Cumulative number of designs produced by the model before filtering and
|
|
1475
|
+
* deduplication. Useful for monitoring generation efficiency.
|
|
1476
|
+
*/
|
|
1477
|
+
total_proteins_generated_pre_filter?: number;
|
|
1478
|
+
|
|
1479
|
+
/**
|
|
1480
|
+
* Cumulative number of designs that survived filtering and deduplication and
|
|
1481
|
+
* became scoreable samples.
|
|
1482
|
+
*/
|
|
1483
|
+
total_proteins_inserted?: number;
|
|
1417
1484
|
}
|
|
1418
1485
|
}
|
|
1419
1486
|
|
|
@@ -1505,6 +1572,18 @@ export namespace DesignListResponse {
|
|
|
1505
1572
|
* ID of the most recently generated result
|
|
1506
1573
|
*/
|
|
1507
1574
|
latest_result_id?: string;
|
|
1575
|
+
|
|
1576
|
+
/**
|
|
1577
|
+
* Cumulative number of designs produced by the model before filtering and
|
|
1578
|
+
* deduplication. Useful for monitoring generation efficiency.
|
|
1579
|
+
*/
|
|
1580
|
+
total_proteins_generated_pre_filter?: number;
|
|
1581
|
+
|
|
1582
|
+
/**
|
|
1583
|
+
* Cumulative number of designs that survived filtering and deduplication and
|
|
1584
|
+
* became scoreable samples.
|
|
1585
|
+
*/
|
|
1586
|
+
total_proteins_inserted?: number;
|
|
1508
1587
|
}
|
|
1509
1588
|
}
|
|
1510
1589
|
|
|
@@ -1658,19 +1737,26 @@ export namespace DesignListResultsResponse {
|
|
|
1658
1737
|
cyclic?: boolean;
|
|
1659
1738
|
|
|
1660
1739
|
/**
|
|
1661
|
-
*
|
|
1662
|
-
* omitted.
|
|
1740
|
+
* CCD post-translational modifications. Optional; defaults to an empty list when
|
|
1741
|
+
* omitted. SMILES modifications are not supported.
|
|
1663
1742
|
*/
|
|
1664
1743
|
modifications?: Array<ProteinEntity.Modification>;
|
|
1665
1744
|
}
|
|
1666
1745
|
|
|
1667
1746
|
export namespace ProteinEntity {
|
|
1747
|
+
/**
|
|
1748
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
1749
|
+
* are not accepted.
|
|
1750
|
+
*/
|
|
1668
1751
|
export interface Modification {
|
|
1669
1752
|
/**
|
|
1670
1753
|
* 0-based index of the residue to modify
|
|
1671
1754
|
*/
|
|
1672
1755
|
residue_index: number;
|
|
1673
1756
|
|
|
1757
|
+
/**
|
|
1758
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
1759
|
+
*/
|
|
1674
1760
|
type: 'ccd';
|
|
1675
1761
|
|
|
1676
1762
|
/**
|
|
@@ -1700,18 +1786,26 @@ export namespace DesignListResultsResponse {
|
|
|
1700
1786
|
cyclic?: boolean;
|
|
1701
1787
|
|
|
1702
1788
|
/**
|
|
1703
|
-
*
|
|
1789
|
+
* CCD chemical modifications. Optional; defaults to an empty list when omitted.
|
|
1790
|
+
* SMILES modifications are not supported.
|
|
1704
1791
|
*/
|
|
1705
1792
|
modifications?: Array<RnaEntity.Modification>;
|
|
1706
1793
|
}
|
|
1707
1794
|
|
|
1708
1795
|
export namespace RnaEntity {
|
|
1796
|
+
/**
|
|
1797
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
1798
|
+
* are not accepted.
|
|
1799
|
+
*/
|
|
1709
1800
|
export interface Modification {
|
|
1710
1801
|
/**
|
|
1711
1802
|
* 0-based index of the residue to modify
|
|
1712
1803
|
*/
|
|
1713
1804
|
residue_index: number;
|
|
1714
1805
|
|
|
1806
|
+
/**
|
|
1807
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
1808
|
+
*/
|
|
1715
1809
|
type: 'ccd';
|
|
1716
1810
|
|
|
1717
1811
|
/**
|
|
@@ -1741,18 +1835,26 @@ export namespace DesignListResultsResponse {
|
|
|
1741
1835
|
cyclic?: boolean;
|
|
1742
1836
|
|
|
1743
1837
|
/**
|
|
1744
|
-
*
|
|
1838
|
+
* CCD chemical modifications. Optional; defaults to an empty list when omitted.
|
|
1839
|
+
* SMILES modifications are not supported.
|
|
1745
1840
|
*/
|
|
1746
1841
|
modifications?: Array<DnaEntity.Modification>;
|
|
1747
1842
|
}
|
|
1748
1843
|
|
|
1749
1844
|
export namespace DnaEntity {
|
|
1845
|
+
/**
|
|
1846
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
1847
|
+
* are not accepted.
|
|
1848
|
+
*/
|
|
1750
1849
|
export interface Modification {
|
|
1751
1850
|
/**
|
|
1752
1851
|
* 0-based index of the residue to modify
|
|
1753
1852
|
*/
|
|
1754
1853
|
residue_index: number;
|
|
1755
1854
|
|
|
1855
|
+
/**
|
|
1856
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
1857
|
+
*/
|
|
1756
1858
|
type: 'ccd';
|
|
1757
1859
|
|
|
1758
1860
|
/**
|
|
@@ -2207,18 +2309,26 @@ export namespace DesignStartResponse {
|
|
|
2207
2309
|
cyclic?: boolean;
|
|
2208
2310
|
|
|
2209
2311
|
/**
|
|
2210
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
2312
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
2313
|
+
* modifications are not supported.
|
|
2211
2314
|
*/
|
|
2212
2315
|
modifications?: Array<DesignedProteinEntityResponse.Modification>;
|
|
2213
2316
|
}
|
|
2214
2317
|
|
|
2215
2318
|
export namespace DesignedProteinEntityResponse {
|
|
2319
|
+
/**
|
|
2320
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
2321
|
+
* are not accepted.
|
|
2322
|
+
*/
|
|
2216
2323
|
export interface Modification {
|
|
2217
2324
|
/**
|
|
2218
2325
|
* 0-based index of the residue to modify
|
|
2219
2326
|
*/
|
|
2220
2327
|
residue_index: number;
|
|
2221
2328
|
|
|
2329
|
+
/**
|
|
2330
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
2331
|
+
*/
|
|
2222
2332
|
type: 'ccd';
|
|
2223
2333
|
|
|
2224
2334
|
/**
|
|
@@ -2251,18 +2361,26 @@ export namespace DesignStartResponse {
|
|
|
2251
2361
|
cyclic?: boolean;
|
|
2252
2362
|
|
|
2253
2363
|
/**
|
|
2254
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
2364
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
2365
|
+
* modifications are not supported.
|
|
2255
2366
|
*/
|
|
2256
2367
|
modifications?: Array<FixedProteinEntityResponse.Modification>;
|
|
2257
2368
|
}
|
|
2258
2369
|
|
|
2259
2370
|
export namespace FixedProteinEntityResponse {
|
|
2371
|
+
/**
|
|
2372
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
2373
|
+
* are not accepted.
|
|
2374
|
+
*/
|
|
2260
2375
|
export interface Modification {
|
|
2261
2376
|
/**
|
|
2262
2377
|
* 0-based index of the residue to modify
|
|
2263
2378
|
*/
|
|
2264
2379
|
residue_index: number;
|
|
2265
2380
|
|
|
2381
|
+
/**
|
|
2382
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
2383
|
+
*/
|
|
2266
2384
|
type: 'ccd';
|
|
2267
2385
|
|
|
2268
2386
|
/**
|
|
@@ -2292,18 +2410,26 @@ export namespace DesignStartResponse {
|
|
|
2292
2410
|
cyclic?: boolean;
|
|
2293
2411
|
|
|
2294
2412
|
/**
|
|
2295
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
2413
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
2414
|
+
* modifications are not supported.
|
|
2296
2415
|
*/
|
|
2297
2416
|
modifications?: Array<FixedRnaEntityResponse.Modification>;
|
|
2298
2417
|
}
|
|
2299
2418
|
|
|
2300
2419
|
export namespace FixedRnaEntityResponse {
|
|
2420
|
+
/**
|
|
2421
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
2422
|
+
* are not accepted.
|
|
2423
|
+
*/
|
|
2301
2424
|
export interface Modification {
|
|
2302
2425
|
/**
|
|
2303
2426
|
* 0-based index of the residue to modify
|
|
2304
2427
|
*/
|
|
2305
2428
|
residue_index: number;
|
|
2306
2429
|
|
|
2430
|
+
/**
|
|
2431
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
2432
|
+
*/
|
|
2307
2433
|
type: 'ccd';
|
|
2308
2434
|
|
|
2309
2435
|
/**
|
|
@@ -2333,18 +2459,26 @@ export namespace DesignStartResponse {
|
|
|
2333
2459
|
cyclic?: boolean;
|
|
2334
2460
|
|
|
2335
2461
|
/**
|
|
2336
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
2462
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
2463
|
+
* modifications are not supported.
|
|
2337
2464
|
*/
|
|
2338
2465
|
modifications?: Array<FixedDnaEntityResponse.Modification>;
|
|
2339
2466
|
}
|
|
2340
2467
|
|
|
2341
2468
|
export namespace FixedDnaEntityResponse {
|
|
2469
|
+
/**
|
|
2470
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
2471
|
+
* are not accepted.
|
|
2472
|
+
*/
|
|
2342
2473
|
export interface Modification {
|
|
2343
2474
|
/**
|
|
2344
2475
|
* 0-based index of the residue to modify
|
|
2345
2476
|
*/
|
|
2346
2477
|
residue_index: number;
|
|
2347
2478
|
|
|
2479
|
+
/**
|
|
2480
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
2481
|
+
*/
|
|
2348
2482
|
type: 'ccd';
|
|
2349
2483
|
|
|
2350
2484
|
/**
|
|
@@ -2702,19 +2836,26 @@ export namespace DesignStartResponse {
|
|
|
2702
2836
|
cyclic?: boolean;
|
|
2703
2837
|
|
|
2704
2838
|
/**
|
|
2705
|
-
*
|
|
2706
|
-
* omitted.
|
|
2839
|
+
* CCD post-translational modifications. Optional; defaults to an empty list when
|
|
2840
|
+
* omitted. SMILES modifications are not supported.
|
|
2707
2841
|
*/
|
|
2708
2842
|
modifications?: Array<ProteinEntityResponse.Modification>;
|
|
2709
2843
|
}
|
|
2710
2844
|
|
|
2711
2845
|
export namespace ProteinEntityResponse {
|
|
2846
|
+
/**
|
|
2847
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
2848
|
+
* are not accepted.
|
|
2849
|
+
*/
|
|
2712
2850
|
export interface Modification {
|
|
2713
2851
|
/**
|
|
2714
2852
|
* 0-based index of the residue to modify
|
|
2715
2853
|
*/
|
|
2716
2854
|
residue_index: number;
|
|
2717
2855
|
|
|
2856
|
+
/**
|
|
2857
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
2858
|
+
*/
|
|
2718
2859
|
type: 'ccd';
|
|
2719
2860
|
|
|
2720
2861
|
/**
|
|
@@ -2744,18 +2885,26 @@ export namespace DesignStartResponse {
|
|
|
2744
2885
|
cyclic?: boolean;
|
|
2745
2886
|
|
|
2746
2887
|
/**
|
|
2747
|
-
*
|
|
2888
|
+
* CCD chemical modifications. Optional; defaults to an empty list when omitted.
|
|
2889
|
+
* SMILES modifications are not supported.
|
|
2748
2890
|
*/
|
|
2749
2891
|
modifications?: Array<RnaEntityResponse.Modification>;
|
|
2750
2892
|
}
|
|
2751
2893
|
|
|
2752
2894
|
export namespace RnaEntityResponse {
|
|
2895
|
+
/**
|
|
2896
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
2897
|
+
* are not accepted.
|
|
2898
|
+
*/
|
|
2753
2899
|
export interface Modification {
|
|
2754
2900
|
/**
|
|
2755
2901
|
* 0-based index of the residue to modify
|
|
2756
2902
|
*/
|
|
2757
2903
|
residue_index: number;
|
|
2758
2904
|
|
|
2905
|
+
/**
|
|
2906
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
2907
|
+
*/
|
|
2759
2908
|
type: 'ccd';
|
|
2760
2909
|
|
|
2761
2910
|
/**
|
|
@@ -2785,18 +2934,26 @@ export namespace DesignStartResponse {
|
|
|
2785
2934
|
cyclic?: boolean;
|
|
2786
2935
|
|
|
2787
2936
|
/**
|
|
2788
|
-
*
|
|
2937
|
+
* CCD chemical modifications. Optional; defaults to an empty list when omitted.
|
|
2938
|
+
* SMILES modifications are not supported.
|
|
2789
2939
|
*/
|
|
2790
2940
|
modifications?: Array<DnaEntityResponse.Modification>;
|
|
2791
2941
|
}
|
|
2792
2942
|
|
|
2793
2943
|
export namespace DnaEntityResponse {
|
|
2944
|
+
/**
|
|
2945
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
2946
|
+
* are not accepted.
|
|
2947
|
+
*/
|
|
2794
2948
|
export interface Modification {
|
|
2795
2949
|
/**
|
|
2796
2950
|
* 0-based index of the residue to modify
|
|
2797
2951
|
*/
|
|
2798
2952
|
residue_index: number;
|
|
2799
2953
|
|
|
2954
|
+
/**
|
|
2955
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
2956
|
+
*/
|
|
2800
2957
|
type: 'ccd';
|
|
2801
2958
|
|
|
2802
2959
|
/**
|
|
@@ -3080,6 +3237,18 @@ export namespace DesignStartResponse {
|
|
|
3080
3237
|
* ID of the most recently generated result
|
|
3081
3238
|
*/
|
|
3082
3239
|
latest_result_id?: string;
|
|
3240
|
+
|
|
3241
|
+
/**
|
|
3242
|
+
* Cumulative number of designs produced by the model before filtering and
|
|
3243
|
+
* deduplication. Useful for monitoring generation efficiency.
|
|
3244
|
+
*/
|
|
3245
|
+
total_proteins_generated_pre_filter?: number;
|
|
3246
|
+
|
|
3247
|
+
/**
|
|
3248
|
+
* Cumulative number of designs that survived filtering and deduplication and
|
|
3249
|
+
* became scoreable samples.
|
|
3250
|
+
*/
|
|
3251
|
+
total_proteins_inserted?: number;
|
|
3083
3252
|
}
|
|
3084
3253
|
}
|
|
3085
3254
|
|
|
@@ -3441,18 +3610,26 @@ export namespace DesignStopResponse {
|
|
|
3441
3610
|
cyclic?: boolean;
|
|
3442
3611
|
|
|
3443
3612
|
/**
|
|
3444
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
3613
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
3614
|
+
* modifications are not supported.
|
|
3445
3615
|
*/
|
|
3446
3616
|
modifications?: Array<DesignedProteinEntityResponse.Modification>;
|
|
3447
3617
|
}
|
|
3448
3618
|
|
|
3449
3619
|
export namespace DesignedProteinEntityResponse {
|
|
3620
|
+
/**
|
|
3621
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
3622
|
+
* are not accepted.
|
|
3623
|
+
*/
|
|
3450
3624
|
export interface Modification {
|
|
3451
3625
|
/**
|
|
3452
3626
|
* 0-based index of the residue to modify
|
|
3453
3627
|
*/
|
|
3454
3628
|
residue_index: number;
|
|
3455
3629
|
|
|
3630
|
+
/**
|
|
3631
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
3632
|
+
*/
|
|
3456
3633
|
type: 'ccd';
|
|
3457
3634
|
|
|
3458
3635
|
/**
|
|
@@ -3485,18 +3662,26 @@ export namespace DesignStopResponse {
|
|
|
3485
3662
|
cyclic?: boolean;
|
|
3486
3663
|
|
|
3487
3664
|
/**
|
|
3488
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
3665
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
3666
|
+
* modifications are not supported.
|
|
3489
3667
|
*/
|
|
3490
3668
|
modifications?: Array<FixedProteinEntityResponse.Modification>;
|
|
3491
3669
|
}
|
|
3492
3670
|
|
|
3493
3671
|
export namespace FixedProteinEntityResponse {
|
|
3672
|
+
/**
|
|
3673
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
3674
|
+
* are not accepted.
|
|
3675
|
+
*/
|
|
3494
3676
|
export interface Modification {
|
|
3495
3677
|
/**
|
|
3496
3678
|
* 0-based index of the residue to modify
|
|
3497
3679
|
*/
|
|
3498
3680
|
residue_index: number;
|
|
3499
3681
|
|
|
3682
|
+
/**
|
|
3683
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
3684
|
+
*/
|
|
3500
3685
|
type: 'ccd';
|
|
3501
3686
|
|
|
3502
3687
|
/**
|
|
@@ -3526,18 +3711,26 @@ export namespace DesignStopResponse {
|
|
|
3526
3711
|
cyclic?: boolean;
|
|
3527
3712
|
|
|
3528
3713
|
/**
|
|
3529
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
3714
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
3715
|
+
* modifications are not supported.
|
|
3530
3716
|
*/
|
|
3531
3717
|
modifications?: Array<FixedRnaEntityResponse.Modification>;
|
|
3532
3718
|
}
|
|
3533
3719
|
|
|
3534
3720
|
export namespace FixedRnaEntityResponse {
|
|
3721
|
+
/**
|
|
3722
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
3723
|
+
* are not accepted.
|
|
3724
|
+
*/
|
|
3535
3725
|
export interface Modification {
|
|
3536
3726
|
/**
|
|
3537
3727
|
* 0-based index of the residue to modify
|
|
3538
3728
|
*/
|
|
3539
3729
|
residue_index: number;
|
|
3540
3730
|
|
|
3731
|
+
/**
|
|
3732
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
3733
|
+
*/
|
|
3541
3734
|
type: 'ccd';
|
|
3542
3735
|
|
|
3543
3736
|
/**
|
|
@@ -3567,18 +3760,26 @@ export namespace DesignStopResponse {
|
|
|
3567
3760
|
cyclic?: boolean;
|
|
3568
3761
|
|
|
3569
3762
|
/**
|
|
3570
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
3763
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
3764
|
+
* modifications are not supported.
|
|
3571
3765
|
*/
|
|
3572
3766
|
modifications?: Array<FixedDnaEntityResponse.Modification>;
|
|
3573
3767
|
}
|
|
3574
3768
|
|
|
3575
3769
|
export namespace FixedDnaEntityResponse {
|
|
3770
|
+
/**
|
|
3771
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
3772
|
+
* are not accepted.
|
|
3773
|
+
*/
|
|
3576
3774
|
export interface Modification {
|
|
3577
3775
|
/**
|
|
3578
3776
|
* 0-based index of the residue to modify
|
|
3579
3777
|
*/
|
|
3580
3778
|
residue_index: number;
|
|
3581
3779
|
|
|
3780
|
+
/**
|
|
3781
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
3782
|
+
*/
|
|
3582
3783
|
type: 'ccd';
|
|
3583
3784
|
|
|
3584
3785
|
/**
|
|
@@ -3936,19 +4137,26 @@ export namespace DesignStopResponse {
|
|
|
3936
4137
|
cyclic?: boolean;
|
|
3937
4138
|
|
|
3938
4139
|
/**
|
|
3939
|
-
*
|
|
3940
|
-
* omitted.
|
|
4140
|
+
* CCD post-translational modifications. Optional; defaults to an empty list when
|
|
4141
|
+
* omitted. SMILES modifications are not supported.
|
|
3941
4142
|
*/
|
|
3942
4143
|
modifications?: Array<ProteinEntityResponse.Modification>;
|
|
3943
4144
|
}
|
|
3944
4145
|
|
|
3945
4146
|
export namespace ProteinEntityResponse {
|
|
4147
|
+
/**
|
|
4148
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
4149
|
+
* are not accepted.
|
|
4150
|
+
*/
|
|
3946
4151
|
export interface Modification {
|
|
3947
4152
|
/**
|
|
3948
4153
|
* 0-based index of the residue to modify
|
|
3949
4154
|
*/
|
|
3950
4155
|
residue_index: number;
|
|
3951
4156
|
|
|
4157
|
+
/**
|
|
4158
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
4159
|
+
*/
|
|
3952
4160
|
type: 'ccd';
|
|
3953
4161
|
|
|
3954
4162
|
/**
|
|
@@ -3978,18 +4186,26 @@ export namespace DesignStopResponse {
|
|
|
3978
4186
|
cyclic?: boolean;
|
|
3979
4187
|
|
|
3980
4188
|
/**
|
|
3981
|
-
*
|
|
4189
|
+
* CCD chemical modifications. Optional; defaults to an empty list when omitted.
|
|
4190
|
+
* SMILES modifications are not supported.
|
|
3982
4191
|
*/
|
|
3983
4192
|
modifications?: Array<RnaEntityResponse.Modification>;
|
|
3984
4193
|
}
|
|
3985
4194
|
|
|
3986
4195
|
export namespace RnaEntityResponse {
|
|
4196
|
+
/**
|
|
4197
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
4198
|
+
* are not accepted.
|
|
4199
|
+
*/
|
|
3987
4200
|
export interface Modification {
|
|
3988
4201
|
/**
|
|
3989
4202
|
* 0-based index of the residue to modify
|
|
3990
4203
|
*/
|
|
3991
4204
|
residue_index: number;
|
|
3992
4205
|
|
|
4206
|
+
/**
|
|
4207
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
4208
|
+
*/
|
|
3993
4209
|
type: 'ccd';
|
|
3994
4210
|
|
|
3995
4211
|
/**
|
|
@@ -4019,18 +4235,26 @@ export namespace DesignStopResponse {
|
|
|
4019
4235
|
cyclic?: boolean;
|
|
4020
4236
|
|
|
4021
4237
|
/**
|
|
4022
|
-
*
|
|
4238
|
+
* CCD chemical modifications. Optional; defaults to an empty list when omitted.
|
|
4239
|
+
* SMILES modifications are not supported.
|
|
4023
4240
|
*/
|
|
4024
4241
|
modifications?: Array<DnaEntityResponse.Modification>;
|
|
4025
4242
|
}
|
|
4026
4243
|
|
|
4027
4244
|
export namespace DnaEntityResponse {
|
|
4245
|
+
/**
|
|
4246
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
4247
|
+
* are not accepted.
|
|
4248
|
+
*/
|
|
4028
4249
|
export interface Modification {
|
|
4029
4250
|
/**
|
|
4030
4251
|
* 0-based index of the residue to modify
|
|
4031
4252
|
*/
|
|
4032
4253
|
residue_index: number;
|
|
4033
4254
|
|
|
4255
|
+
/**
|
|
4256
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
4257
|
+
*/
|
|
4034
4258
|
type: 'ccd';
|
|
4035
4259
|
|
|
4036
4260
|
/**
|
|
@@ -4314,6 +4538,18 @@ export namespace DesignStopResponse {
|
|
|
4314
4538
|
* ID of the most recently generated result
|
|
4315
4539
|
*/
|
|
4316
4540
|
latest_result_id?: string;
|
|
4541
|
+
|
|
4542
|
+
/**
|
|
4543
|
+
* Cumulative number of designs produced by the model before filtering and
|
|
4544
|
+
* deduplication. Useful for monitoring generation efficiency.
|
|
4545
|
+
*/
|
|
4546
|
+
total_proteins_generated_pre_filter?: number;
|
|
4547
|
+
|
|
4548
|
+
/**
|
|
4549
|
+
* Cumulative number of designs that survived filtering and deduplication and
|
|
4550
|
+
* became scoreable samples.
|
|
4551
|
+
*/
|
|
4552
|
+
total_proteins_inserted?: number;
|
|
4317
4553
|
}
|
|
4318
4554
|
}
|
|
4319
4555
|
|
|
@@ -4622,18 +4858,26 @@ export namespace DesignEstimateCostParams {
|
|
|
4622
4858
|
cyclic?: boolean;
|
|
4623
4859
|
|
|
4624
4860
|
/**
|
|
4625
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
4861
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
4862
|
+
* modifications are not supported.
|
|
4626
4863
|
*/
|
|
4627
4864
|
modifications?: Array<DesignedProteinEntity.Modification>;
|
|
4628
4865
|
}
|
|
4629
4866
|
|
|
4630
4867
|
export namespace DesignedProteinEntity {
|
|
4868
|
+
/**
|
|
4869
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
4870
|
+
* are not accepted.
|
|
4871
|
+
*/
|
|
4631
4872
|
export interface Modification {
|
|
4632
4873
|
/**
|
|
4633
4874
|
* 0-based index of the residue to modify
|
|
4634
4875
|
*/
|
|
4635
4876
|
residue_index: number;
|
|
4636
4877
|
|
|
4878
|
+
/**
|
|
4879
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
4880
|
+
*/
|
|
4637
4881
|
type: 'ccd';
|
|
4638
4882
|
|
|
4639
4883
|
/**
|
|
@@ -4666,18 +4910,26 @@ export namespace DesignEstimateCostParams {
|
|
|
4666
4910
|
cyclic?: boolean;
|
|
4667
4911
|
|
|
4668
4912
|
/**
|
|
4669
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
4913
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
4914
|
+
* modifications are not supported.
|
|
4670
4915
|
*/
|
|
4671
4916
|
modifications?: Array<FixedProteinEntity.Modification>;
|
|
4672
4917
|
}
|
|
4673
4918
|
|
|
4674
4919
|
export namespace FixedProteinEntity {
|
|
4920
|
+
/**
|
|
4921
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
4922
|
+
* are not accepted.
|
|
4923
|
+
*/
|
|
4675
4924
|
export interface Modification {
|
|
4676
4925
|
/**
|
|
4677
4926
|
* 0-based index of the residue to modify
|
|
4678
4927
|
*/
|
|
4679
4928
|
residue_index: number;
|
|
4680
4929
|
|
|
4930
|
+
/**
|
|
4931
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
4932
|
+
*/
|
|
4681
4933
|
type: 'ccd';
|
|
4682
4934
|
|
|
4683
4935
|
/**
|
|
@@ -4707,18 +4959,26 @@ export namespace DesignEstimateCostParams {
|
|
|
4707
4959
|
cyclic?: boolean;
|
|
4708
4960
|
|
|
4709
4961
|
/**
|
|
4710
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
4962
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
4963
|
+
* modifications are not supported.
|
|
4711
4964
|
*/
|
|
4712
4965
|
modifications?: Array<FixedRnaEntity.Modification>;
|
|
4713
4966
|
}
|
|
4714
4967
|
|
|
4715
4968
|
export namespace FixedRnaEntity {
|
|
4969
|
+
/**
|
|
4970
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
4971
|
+
* are not accepted.
|
|
4972
|
+
*/
|
|
4716
4973
|
export interface Modification {
|
|
4717
4974
|
/**
|
|
4718
4975
|
* 0-based index of the residue to modify
|
|
4719
4976
|
*/
|
|
4720
4977
|
residue_index: number;
|
|
4721
4978
|
|
|
4979
|
+
/**
|
|
4980
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
4981
|
+
*/
|
|
4722
4982
|
type: 'ccd';
|
|
4723
4983
|
|
|
4724
4984
|
/**
|
|
@@ -4748,18 +5008,26 @@ export namespace DesignEstimateCostParams {
|
|
|
4748
5008
|
cyclic?: boolean;
|
|
4749
5009
|
|
|
4750
5010
|
/**
|
|
4751
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
5011
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
5012
|
+
* modifications are not supported.
|
|
4752
5013
|
*/
|
|
4753
5014
|
modifications?: Array<FixedDnaEntity.Modification>;
|
|
4754
5015
|
}
|
|
4755
5016
|
|
|
4756
5017
|
export namespace FixedDnaEntity {
|
|
5018
|
+
/**
|
|
5019
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
5020
|
+
* are not accepted.
|
|
5021
|
+
*/
|
|
4757
5022
|
export interface Modification {
|
|
4758
5023
|
/**
|
|
4759
5024
|
* 0-based index of the residue to modify
|
|
4760
5025
|
*/
|
|
4761
5026
|
residue_index: number;
|
|
4762
5027
|
|
|
5028
|
+
/**
|
|
5029
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
5030
|
+
*/
|
|
4763
5031
|
type: 'ccd';
|
|
4764
5032
|
|
|
4765
5033
|
/**
|
|
@@ -5127,19 +5395,26 @@ export namespace DesignEstimateCostParams {
|
|
|
5127
5395
|
cyclic?: boolean;
|
|
5128
5396
|
|
|
5129
5397
|
/**
|
|
5130
|
-
*
|
|
5131
|
-
* omitted.
|
|
5398
|
+
* CCD post-translational modifications. Optional; defaults to an empty list when
|
|
5399
|
+
* omitted. SMILES modifications are not supported.
|
|
5132
5400
|
*/
|
|
5133
5401
|
modifications?: Array<ProteinEntity.Modification>;
|
|
5134
5402
|
}
|
|
5135
5403
|
|
|
5136
5404
|
export namespace ProteinEntity {
|
|
5405
|
+
/**
|
|
5406
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
5407
|
+
* are not accepted.
|
|
5408
|
+
*/
|
|
5137
5409
|
export interface Modification {
|
|
5138
5410
|
/**
|
|
5139
5411
|
* 0-based index of the residue to modify
|
|
5140
5412
|
*/
|
|
5141
5413
|
residue_index: number;
|
|
5142
5414
|
|
|
5415
|
+
/**
|
|
5416
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
5417
|
+
*/
|
|
5143
5418
|
type: 'ccd';
|
|
5144
5419
|
|
|
5145
5420
|
/**
|
|
@@ -5169,18 +5444,26 @@ export namespace DesignEstimateCostParams {
|
|
|
5169
5444
|
cyclic?: boolean;
|
|
5170
5445
|
|
|
5171
5446
|
/**
|
|
5172
|
-
*
|
|
5447
|
+
* CCD chemical modifications. Optional; defaults to an empty list when omitted.
|
|
5448
|
+
* SMILES modifications are not supported.
|
|
5173
5449
|
*/
|
|
5174
5450
|
modifications?: Array<RnaEntity.Modification>;
|
|
5175
5451
|
}
|
|
5176
5452
|
|
|
5177
5453
|
export namespace RnaEntity {
|
|
5454
|
+
/**
|
|
5455
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
5456
|
+
* are not accepted.
|
|
5457
|
+
*/
|
|
5178
5458
|
export interface Modification {
|
|
5179
5459
|
/**
|
|
5180
5460
|
* 0-based index of the residue to modify
|
|
5181
5461
|
*/
|
|
5182
5462
|
residue_index: number;
|
|
5183
5463
|
|
|
5464
|
+
/**
|
|
5465
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
5466
|
+
*/
|
|
5184
5467
|
type: 'ccd';
|
|
5185
5468
|
|
|
5186
5469
|
/**
|
|
@@ -5210,18 +5493,26 @@ export namespace DesignEstimateCostParams {
|
|
|
5210
5493
|
cyclic?: boolean;
|
|
5211
5494
|
|
|
5212
5495
|
/**
|
|
5213
|
-
*
|
|
5496
|
+
* CCD chemical modifications. Optional; defaults to an empty list when omitted.
|
|
5497
|
+
* SMILES modifications are not supported.
|
|
5214
5498
|
*/
|
|
5215
5499
|
modifications?: Array<DnaEntity.Modification>;
|
|
5216
5500
|
}
|
|
5217
5501
|
|
|
5218
5502
|
export namespace DnaEntity {
|
|
5503
|
+
/**
|
|
5504
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
5505
|
+
* are not accepted.
|
|
5506
|
+
*/
|
|
5219
5507
|
export interface Modification {
|
|
5220
5508
|
/**
|
|
5221
5509
|
* 0-based index of the residue to modify
|
|
5222
5510
|
*/
|
|
5223
5511
|
residue_index: number;
|
|
5224
5512
|
|
|
5513
|
+
/**
|
|
5514
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
5515
|
+
*/
|
|
5225
5516
|
type: 'ccd';
|
|
5226
5517
|
|
|
5227
5518
|
/**
|
|
@@ -5782,18 +6073,26 @@ export namespace DesignStartParams {
|
|
|
5782
6073
|
cyclic?: boolean;
|
|
5783
6074
|
|
|
5784
6075
|
/**
|
|
5785
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
6076
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
6077
|
+
* modifications are not supported.
|
|
5786
6078
|
*/
|
|
5787
6079
|
modifications?: Array<DesignedProteinEntity.Modification>;
|
|
5788
6080
|
}
|
|
5789
6081
|
|
|
5790
6082
|
export namespace DesignedProteinEntity {
|
|
6083
|
+
/**
|
|
6084
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
6085
|
+
* are not accepted.
|
|
6086
|
+
*/
|
|
5791
6087
|
export interface Modification {
|
|
5792
6088
|
/**
|
|
5793
6089
|
* 0-based index of the residue to modify
|
|
5794
6090
|
*/
|
|
5795
6091
|
residue_index: number;
|
|
5796
6092
|
|
|
6093
|
+
/**
|
|
6094
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
6095
|
+
*/
|
|
5797
6096
|
type: 'ccd';
|
|
5798
6097
|
|
|
5799
6098
|
/**
|
|
@@ -5826,18 +6125,26 @@ export namespace DesignStartParams {
|
|
|
5826
6125
|
cyclic?: boolean;
|
|
5827
6126
|
|
|
5828
6127
|
/**
|
|
5829
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
6128
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
6129
|
+
* modifications are not supported.
|
|
5830
6130
|
*/
|
|
5831
6131
|
modifications?: Array<FixedProteinEntity.Modification>;
|
|
5832
6132
|
}
|
|
5833
6133
|
|
|
5834
6134
|
export namespace FixedProteinEntity {
|
|
6135
|
+
/**
|
|
6136
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
6137
|
+
* are not accepted.
|
|
6138
|
+
*/
|
|
5835
6139
|
export interface Modification {
|
|
5836
6140
|
/**
|
|
5837
6141
|
* 0-based index of the residue to modify
|
|
5838
6142
|
*/
|
|
5839
6143
|
residue_index: number;
|
|
5840
6144
|
|
|
6145
|
+
/**
|
|
6146
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
6147
|
+
*/
|
|
5841
6148
|
type: 'ccd';
|
|
5842
6149
|
|
|
5843
6150
|
/**
|
|
@@ -5867,18 +6174,26 @@ export namespace DesignStartParams {
|
|
|
5867
6174
|
cyclic?: boolean;
|
|
5868
6175
|
|
|
5869
6176
|
/**
|
|
5870
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
6177
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
6178
|
+
* modifications are not supported.
|
|
5871
6179
|
*/
|
|
5872
6180
|
modifications?: Array<FixedRnaEntity.Modification>;
|
|
5873
6181
|
}
|
|
5874
6182
|
|
|
5875
6183
|
export namespace FixedRnaEntity {
|
|
6184
|
+
/**
|
|
6185
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
6186
|
+
* are not accepted.
|
|
6187
|
+
*/
|
|
5876
6188
|
export interface Modification {
|
|
5877
6189
|
/**
|
|
5878
6190
|
* 0-based index of the residue to modify
|
|
5879
6191
|
*/
|
|
5880
6192
|
residue_index: number;
|
|
5881
6193
|
|
|
6194
|
+
/**
|
|
6195
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
6196
|
+
*/
|
|
5882
6197
|
type: 'ccd';
|
|
5883
6198
|
|
|
5884
6199
|
/**
|
|
@@ -5908,18 +6223,26 @@ export namespace DesignStartParams {
|
|
|
5908
6223
|
cyclic?: boolean;
|
|
5909
6224
|
|
|
5910
6225
|
/**
|
|
5911
|
-
* Optional polymer modifications. Defaults to [] when omitted.
|
|
6226
|
+
* Optional CCD polymer modifications. Defaults to [] when omitted. SMILES
|
|
6227
|
+
* modifications are not supported.
|
|
5912
6228
|
*/
|
|
5913
6229
|
modifications?: Array<FixedDnaEntity.Modification>;
|
|
5914
6230
|
}
|
|
5915
6231
|
|
|
5916
6232
|
export namespace FixedDnaEntity {
|
|
6233
|
+
/**
|
|
6234
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
6235
|
+
* are not accepted.
|
|
6236
|
+
*/
|
|
5917
6237
|
export interface Modification {
|
|
5918
6238
|
/**
|
|
5919
6239
|
* 0-based index of the residue to modify
|
|
5920
6240
|
*/
|
|
5921
6241
|
residue_index: number;
|
|
5922
6242
|
|
|
6243
|
+
/**
|
|
6244
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
6245
|
+
*/
|
|
5923
6246
|
type: 'ccd';
|
|
5924
6247
|
|
|
5925
6248
|
/**
|
|
@@ -6287,19 +6610,26 @@ export namespace DesignStartParams {
|
|
|
6287
6610
|
cyclic?: boolean;
|
|
6288
6611
|
|
|
6289
6612
|
/**
|
|
6290
|
-
*
|
|
6291
|
-
* omitted.
|
|
6613
|
+
* CCD post-translational modifications. Optional; defaults to an empty list when
|
|
6614
|
+
* omitted. SMILES modifications are not supported.
|
|
6292
6615
|
*/
|
|
6293
6616
|
modifications?: Array<ProteinEntity.Modification>;
|
|
6294
6617
|
}
|
|
6295
6618
|
|
|
6296
6619
|
export namespace ProteinEntity {
|
|
6620
|
+
/**
|
|
6621
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
6622
|
+
* are not accepted.
|
|
6623
|
+
*/
|
|
6297
6624
|
export interface Modification {
|
|
6298
6625
|
/**
|
|
6299
6626
|
* 0-based index of the residue to modify
|
|
6300
6627
|
*/
|
|
6301
6628
|
residue_index: number;
|
|
6302
6629
|
|
|
6630
|
+
/**
|
|
6631
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
6632
|
+
*/
|
|
6303
6633
|
type: 'ccd';
|
|
6304
6634
|
|
|
6305
6635
|
/**
|
|
@@ -6329,18 +6659,26 @@ export namespace DesignStartParams {
|
|
|
6329
6659
|
cyclic?: boolean;
|
|
6330
6660
|
|
|
6331
6661
|
/**
|
|
6332
|
-
*
|
|
6662
|
+
* CCD chemical modifications. Optional; defaults to an empty list when omitted.
|
|
6663
|
+
* SMILES modifications are not supported.
|
|
6333
6664
|
*/
|
|
6334
6665
|
modifications?: Array<RnaEntity.Modification>;
|
|
6335
6666
|
}
|
|
6336
6667
|
|
|
6337
6668
|
export namespace RnaEntity {
|
|
6669
|
+
/**
|
|
6670
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
6671
|
+
* are not accepted.
|
|
6672
|
+
*/
|
|
6338
6673
|
export interface Modification {
|
|
6339
6674
|
/**
|
|
6340
6675
|
* 0-based index of the residue to modify
|
|
6341
6676
|
*/
|
|
6342
6677
|
residue_index: number;
|
|
6343
6678
|
|
|
6679
|
+
/**
|
|
6680
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
6681
|
+
*/
|
|
6344
6682
|
type: 'ccd';
|
|
6345
6683
|
|
|
6346
6684
|
/**
|
|
@@ -6370,18 +6708,26 @@ export namespace DesignStartParams {
|
|
|
6370
6708
|
cyclic?: boolean;
|
|
6371
6709
|
|
|
6372
6710
|
/**
|
|
6373
|
-
*
|
|
6711
|
+
* CCD chemical modifications. Optional; defaults to an empty list when omitted.
|
|
6712
|
+
* SMILES modifications are not supported.
|
|
6374
6713
|
*/
|
|
6375
6714
|
modifications?: Array<DnaEntity.Modification>;
|
|
6376
6715
|
}
|
|
6377
6716
|
|
|
6378
6717
|
export namespace DnaEntity {
|
|
6718
|
+
/**
|
|
6719
|
+
* Polymer residue modification. Only CCD codes are supported; SMILES modifications
|
|
6720
|
+
* are not accepted.
|
|
6721
|
+
*/
|
|
6379
6722
|
export interface Modification {
|
|
6380
6723
|
/**
|
|
6381
6724
|
* 0-based index of the residue to modify
|
|
6382
6725
|
*/
|
|
6383
6726
|
residue_index: number;
|
|
6384
6727
|
|
|
6728
|
+
/**
|
|
6729
|
+
* Modification format. Only CCD polymer modifications are supported.
|
|
6730
|
+
*/
|
|
6385
6731
|
type: 'ccd';
|
|
6386
6732
|
|
|
6387
6733
|
/**
|