boltz-api 0.35.2 → 0.35.3
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 +8 -0
- package/package.json +1 -1
- package/resources/predictions/structure-and-binding.d.mts +24 -156
- package/resources/predictions/structure-and-binding.d.mts.map +1 -1
- package/resources/predictions/structure-and-binding.d.ts +24 -156
- package/resources/predictions/structure-and-binding.d.ts.map +1 -1
- package/resources/protein/design.d.mts +76 -494
- package/resources/protein/design.d.mts.map +1 -1
- package/resources/protein/design.d.ts +76 -494
- package/resources/protein/design.d.ts.map +1 -1
- package/resources/protein/library-screen.d.mts +48 -312
- package/resources/protein/library-screen.d.mts.map +1 -1
- package/resources/protein/library-screen.d.ts +48 -312
- package/resources/protein/library-screen.d.ts.map +1 -1
- package/resources/small-molecule/design.d.mts +10 -65
- package/resources/small-molecule/design.d.mts.map +1 -1
- package/resources/small-molecule/design.d.ts +10 -65
- package/resources/small-molecule/design.d.ts.map +1 -1
- package/resources/small-molecule/library-screen.d.mts +10 -65
- package/resources/small-molecule/library-screen.d.mts.map +1 -1
- package/resources/small-molecule/library-screen.d.ts +10 -65
- package/resources/small-molecule/library-screen.d.ts.map +1 -1
- package/src/resources/predictions/structure-and-binding.ts +24 -204
- package/src/resources/protein/design.ts +76 -656
- package/src/resources/protein/library-screen.ts +48 -402
- package/src/resources/small-molecule/design.ts +10 -80
- package/src/resources/small-molecule/library-screen.ts +10 -80
- 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
|
@@ -423,10 +423,10 @@ export declare namespace DesignRetrieveResponse {
|
|
|
423
423
|
/**
|
|
424
424
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
425
425
|
*/
|
|
426
|
-
modifications?: Array<DesignedProteinEntityResponse.
|
|
426
|
+
modifications?: Array<DesignedProteinEntityResponse.Modification>;
|
|
427
427
|
}
|
|
428
428
|
namespace DesignedProteinEntityResponse {
|
|
429
|
-
interface
|
|
429
|
+
interface Modification {
|
|
430
430
|
/**
|
|
431
431
|
* 0-based index of the residue to modify
|
|
432
432
|
*/
|
|
@@ -438,17 +438,6 @@ export declare namespace DesignRetrieveResponse {
|
|
|
438
438
|
*/
|
|
439
439
|
value: string;
|
|
440
440
|
}
|
|
441
|
-
interface SmilesModificationResponse {
|
|
442
|
-
/**
|
|
443
|
-
* 0-based index of the residue to modify
|
|
444
|
-
*/
|
|
445
|
-
residue_index: number;
|
|
446
|
-
type: 'smiles';
|
|
447
|
-
/**
|
|
448
|
-
* SMILES string for the modification
|
|
449
|
-
*/
|
|
450
|
-
value: string;
|
|
451
|
-
}
|
|
452
441
|
}
|
|
453
442
|
/**
|
|
454
443
|
* A fixed protein entity whose sequence is not redesigned.
|
|
@@ -470,10 +459,10 @@ export declare namespace DesignRetrieveResponse {
|
|
|
470
459
|
/**
|
|
471
460
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
472
461
|
*/
|
|
473
|
-
modifications?: Array<FixedProteinEntityResponse.
|
|
462
|
+
modifications?: Array<FixedProteinEntityResponse.Modification>;
|
|
474
463
|
}
|
|
475
464
|
namespace FixedProteinEntityResponse {
|
|
476
|
-
interface
|
|
465
|
+
interface Modification {
|
|
477
466
|
/**
|
|
478
467
|
* 0-based index of the residue to modify
|
|
479
468
|
*/
|
|
@@ -485,17 +474,6 @@ export declare namespace DesignRetrieveResponse {
|
|
|
485
474
|
*/
|
|
486
475
|
value: string;
|
|
487
476
|
}
|
|
488
|
-
interface SmilesModificationResponse {
|
|
489
|
-
/**
|
|
490
|
-
* 0-based index of the residue to modify
|
|
491
|
-
*/
|
|
492
|
-
residue_index: number;
|
|
493
|
-
type: 'smiles';
|
|
494
|
-
/**
|
|
495
|
-
* SMILES string for the modification
|
|
496
|
-
*/
|
|
497
|
-
value: string;
|
|
498
|
-
}
|
|
499
477
|
}
|
|
500
478
|
interface FixedRnaEntityResponse {
|
|
501
479
|
/**
|
|
@@ -514,10 +492,10 @@ export declare namespace DesignRetrieveResponse {
|
|
|
514
492
|
/**
|
|
515
493
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
516
494
|
*/
|
|
517
|
-
modifications?: Array<FixedRnaEntityResponse.
|
|
495
|
+
modifications?: Array<FixedRnaEntityResponse.Modification>;
|
|
518
496
|
}
|
|
519
497
|
namespace FixedRnaEntityResponse {
|
|
520
|
-
interface
|
|
498
|
+
interface Modification {
|
|
521
499
|
/**
|
|
522
500
|
* 0-based index of the residue to modify
|
|
523
501
|
*/
|
|
@@ -529,17 +507,6 @@ export declare namespace DesignRetrieveResponse {
|
|
|
529
507
|
*/
|
|
530
508
|
value: string;
|
|
531
509
|
}
|
|
532
|
-
interface SmilesModificationResponse {
|
|
533
|
-
/**
|
|
534
|
-
* 0-based index of the residue to modify
|
|
535
|
-
*/
|
|
536
|
-
residue_index: number;
|
|
537
|
-
type: 'smiles';
|
|
538
|
-
/**
|
|
539
|
-
* SMILES string for the modification
|
|
540
|
-
*/
|
|
541
|
-
value: string;
|
|
542
|
-
}
|
|
543
510
|
}
|
|
544
511
|
interface FixedDnaEntityResponse {
|
|
545
512
|
/**
|
|
@@ -558,10 +525,10 @@ export declare namespace DesignRetrieveResponse {
|
|
|
558
525
|
/**
|
|
559
526
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
560
527
|
*/
|
|
561
|
-
modifications?: Array<FixedDnaEntityResponse.
|
|
528
|
+
modifications?: Array<FixedDnaEntityResponse.Modification>;
|
|
562
529
|
}
|
|
563
530
|
namespace FixedDnaEntityResponse {
|
|
564
|
-
interface
|
|
531
|
+
interface Modification {
|
|
565
532
|
/**
|
|
566
533
|
* 0-based index of the residue to modify
|
|
567
534
|
*/
|
|
@@ -573,17 +540,6 @@ export declare namespace DesignRetrieveResponse {
|
|
|
573
540
|
*/
|
|
574
541
|
value: string;
|
|
575
542
|
}
|
|
576
|
-
interface SmilesModificationResponse {
|
|
577
|
-
/**
|
|
578
|
-
* 0-based index of the residue to modify
|
|
579
|
-
*/
|
|
580
|
-
residue_index: number;
|
|
581
|
-
type: 'smiles';
|
|
582
|
-
/**
|
|
583
|
-
* SMILES string for the modification
|
|
584
|
-
*/
|
|
585
|
-
value: string;
|
|
586
|
-
}
|
|
587
543
|
}
|
|
588
544
|
interface FixedLigandSmilesEntityResponse {
|
|
589
545
|
/**
|
|
@@ -876,10 +832,10 @@ export declare namespace DesignRetrieveResponse {
|
|
|
876
832
|
* Post-translational modifications. Optional; defaults to an empty list when
|
|
877
833
|
* omitted.
|
|
878
834
|
*/
|
|
879
|
-
modifications?: Array<ProteinEntityResponse.
|
|
835
|
+
modifications?: Array<ProteinEntityResponse.Modification>;
|
|
880
836
|
}
|
|
881
837
|
namespace ProteinEntityResponse {
|
|
882
|
-
interface
|
|
838
|
+
interface Modification {
|
|
883
839
|
/**
|
|
884
840
|
* 0-based index of the residue to modify
|
|
885
841
|
*/
|
|
@@ -891,17 +847,6 @@ export declare namespace DesignRetrieveResponse {
|
|
|
891
847
|
*/
|
|
892
848
|
value: string;
|
|
893
849
|
}
|
|
894
|
-
interface SmilesModificationResponse {
|
|
895
|
-
/**
|
|
896
|
-
* 0-based index of the residue to modify
|
|
897
|
-
*/
|
|
898
|
-
residue_index: number;
|
|
899
|
-
type: 'smiles';
|
|
900
|
-
/**
|
|
901
|
-
* SMILES string for the modification
|
|
902
|
-
*/
|
|
903
|
-
value: string;
|
|
904
|
-
}
|
|
905
850
|
}
|
|
906
851
|
interface RnaEntityResponse {
|
|
907
852
|
/**
|
|
@@ -920,10 +865,10 @@ export declare namespace DesignRetrieveResponse {
|
|
|
920
865
|
/**
|
|
921
866
|
* Chemical modifications. Optional; defaults to an empty list when omitted.
|
|
922
867
|
*/
|
|
923
|
-
modifications?: Array<RnaEntityResponse.
|
|
868
|
+
modifications?: Array<RnaEntityResponse.Modification>;
|
|
924
869
|
}
|
|
925
870
|
namespace RnaEntityResponse {
|
|
926
|
-
interface
|
|
871
|
+
interface Modification {
|
|
927
872
|
/**
|
|
928
873
|
* 0-based index of the residue to modify
|
|
929
874
|
*/
|
|
@@ -935,17 +880,6 @@ export declare namespace DesignRetrieveResponse {
|
|
|
935
880
|
*/
|
|
936
881
|
value: string;
|
|
937
882
|
}
|
|
938
|
-
interface SmilesModificationResponse {
|
|
939
|
-
/**
|
|
940
|
-
* 0-based index of the residue to modify
|
|
941
|
-
*/
|
|
942
|
-
residue_index: number;
|
|
943
|
-
type: 'smiles';
|
|
944
|
-
/**
|
|
945
|
-
* SMILES string for the modification
|
|
946
|
-
*/
|
|
947
|
-
value: string;
|
|
948
|
-
}
|
|
949
883
|
}
|
|
950
884
|
interface DnaEntityResponse {
|
|
951
885
|
/**
|
|
@@ -964,10 +898,10 @@ export declare namespace DesignRetrieveResponse {
|
|
|
964
898
|
/**
|
|
965
899
|
* Chemical modifications. Optional; defaults to an empty list when omitted.
|
|
966
900
|
*/
|
|
967
|
-
modifications?: Array<DnaEntityResponse.
|
|
901
|
+
modifications?: Array<DnaEntityResponse.Modification>;
|
|
968
902
|
}
|
|
969
903
|
namespace DnaEntityResponse {
|
|
970
|
-
interface
|
|
904
|
+
interface Modification {
|
|
971
905
|
/**
|
|
972
906
|
* 0-based index of the residue to modify
|
|
973
907
|
*/
|
|
@@ -979,17 +913,6 @@ export declare namespace DesignRetrieveResponse {
|
|
|
979
913
|
*/
|
|
980
914
|
value: string;
|
|
981
915
|
}
|
|
982
|
-
interface SmilesModificationResponse {
|
|
983
|
-
/**
|
|
984
|
-
* 0-based index of the residue to modify
|
|
985
|
-
*/
|
|
986
|
-
residue_index: number;
|
|
987
|
-
type: 'smiles';
|
|
988
|
-
/**
|
|
989
|
-
* SMILES string for the modification
|
|
990
|
-
*/
|
|
991
|
-
value: string;
|
|
992
|
-
}
|
|
993
916
|
}
|
|
994
917
|
interface LigandCcdEntityResponse {
|
|
995
918
|
/**
|
|
@@ -1404,10 +1327,10 @@ export declare namespace DesignListResultsResponse {
|
|
|
1404
1327
|
* Post-translational modifications. Optional; defaults to an empty list when
|
|
1405
1328
|
* omitted.
|
|
1406
1329
|
*/
|
|
1407
|
-
modifications?: Array<ProteinEntity.
|
|
1330
|
+
modifications?: Array<ProteinEntity.Modification>;
|
|
1408
1331
|
}
|
|
1409
1332
|
namespace ProteinEntity {
|
|
1410
|
-
interface
|
|
1333
|
+
interface Modification {
|
|
1411
1334
|
/**
|
|
1412
1335
|
* 0-based index of the residue to modify
|
|
1413
1336
|
*/
|
|
@@ -1419,17 +1342,6 @@ export declare namespace DesignListResultsResponse {
|
|
|
1419
1342
|
*/
|
|
1420
1343
|
value: string;
|
|
1421
1344
|
}
|
|
1422
|
-
interface SmilesModification {
|
|
1423
|
-
/**
|
|
1424
|
-
* 0-based index of the residue to modify
|
|
1425
|
-
*/
|
|
1426
|
-
residue_index: number;
|
|
1427
|
-
type: 'smiles';
|
|
1428
|
-
/**
|
|
1429
|
-
* SMILES string for the modification
|
|
1430
|
-
*/
|
|
1431
|
-
value: string;
|
|
1432
|
-
}
|
|
1433
1345
|
}
|
|
1434
1346
|
interface RnaEntity {
|
|
1435
1347
|
/**
|
|
@@ -1448,10 +1360,10 @@ export declare namespace DesignListResultsResponse {
|
|
|
1448
1360
|
/**
|
|
1449
1361
|
* Chemical modifications. Optional; defaults to an empty list when omitted.
|
|
1450
1362
|
*/
|
|
1451
|
-
modifications?: Array<RnaEntity.
|
|
1363
|
+
modifications?: Array<RnaEntity.Modification>;
|
|
1452
1364
|
}
|
|
1453
1365
|
namespace RnaEntity {
|
|
1454
|
-
interface
|
|
1366
|
+
interface Modification {
|
|
1455
1367
|
/**
|
|
1456
1368
|
* 0-based index of the residue to modify
|
|
1457
1369
|
*/
|
|
@@ -1463,17 +1375,6 @@ export declare namespace DesignListResultsResponse {
|
|
|
1463
1375
|
*/
|
|
1464
1376
|
value: string;
|
|
1465
1377
|
}
|
|
1466
|
-
interface SmilesModification {
|
|
1467
|
-
/**
|
|
1468
|
-
* 0-based index of the residue to modify
|
|
1469
|
-
*/
|
|
1470
|
-
residue_index: number;
|
|
1471
|
-
type: 'smiles';
|
|
1472
|
-
/**
|
|
1473
|
-
* SMILES string for the modification
|
|
1474
|
-
*/
|
|
1475
|
-
value: string;
|
|
1476
|
-
}
|
|
1477
1378
|
}
|
|
1478
1379
|
interface DnaEntity {
|
|
1479
1380
|
/**
|
|
@@ -1492,10 +1393,10 @@ export declare namespace DesignListResultsResponse {
|
|
|
1492
1393
|
/**
|
|
1493
1394
|
* Chemical modifications. Optional; defaults to an empty list when omitted.
|
|
1494
1395
|
*/
|
|
1495
|
-
modifications?: Array<DnaEntity.
|
|
1396
|
+
modifications?: Array<DnaEntity.Modification>;
|
|
1496
1397
|
}
|
|
1497
1398
|
namespace DnaEntity {
|
|
1498
|
-
interface
|
|
1399
|
+
interface Modification {
|
|
1499
1400
|
/**
|
|
1500
1401
|
* 0-based index of the residue to modify
|
|
1501
1402
|
*/
|
|
@@ -1507,17 +1408,6 @@ export declare namespace DesignListResultsResponse {
|
|
|
1507
1408
|
*/
|
|
1508
1409
|
value: string;
|
|
1509
1410
|
}
|
|
1510
|
-
interface SmilesModification {
|
|
1511
|
-
/**
|
|
1512
|
-
* 0-based index of the residue to modify
|
|
1513
|
-
*/
|
|
1514
|
-
residue_index: number;
|
|
1515
|
-
type: 'smiles';
|
|
1516
|
-
/**
|
|
1517
|
-
* SMILES string for the modification
|
|
1518
|
-
*/
|
|
1519
|
-
value: string;
|
|
1520
|
-
}
|
|
1521
1411
|
}
|
|
1522
1412
|
interface LigandCcdEntity {
|
|
1523
1413
|
/**
|
|
@@ -1878,10 +1768,10 @@ export declare namespace DesignStartResponse {
|
|
|
1878
1768
|
/**
|
|
1879
1769
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
1880
1770
|
*/
|
|
1881
|
-
modifications?: Array<DesignedProteinEntityResponse.
|
|
1771
|
+
modifications?: Array<DesignedProteinEntityResponse.Modification>;
|
|
1882
1772
|
}
|
|
1883
1773
|
namespace DesignedProteinEntityResponse {
|
|
1884
|
-
interface
|
|
1774
|
+
interface Modification {
|
|
1885
1775
|
/**
|
|
1886
1776
|
* 0-based index of the residue to modify
|
|
1887
1777
|
*/
|
|
@@ -1893,17 +1783,6 @@ export declare namespace DesignStartResponse {
|
|
|
1893
1783
|
*/
|
|
1894
1784
|
value: string;
|
|
1895
1785
|
}
|
|
1896
|
-
interface SmilesModificationResponse {
|
|
1897
|
-
/**
|
|
1898
|
-
* 0-based index of the residue to modify
|
|
1899
|
-
*/
|
|
1900
|
-
residue_index: number;
|
|
1901
|
-
type: 'smiles';
|
|
1902
|
-
/**
|
|
1903
|
-
* SMILES string for the modification
|
|
1904
|
-
*/
|
|
1905
|
-
value: string;
|
|
1906
|
-
}
|
|
1907
1786
|
}
|
|
1908
1787
|
/**
|
|
1909
1788
|
* A fixed protein entity whose sequence is not redesigned.
|
|
@@ -1925,10 +1804,10 @@ export declare namespace DesignStartResponse {
|
|
|
1925
1804
|
/**
|
|
1926
1805
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
1927
1806
|
*/
|
|
1928
|
-
modifications?: Array<FixedProteinEntityResponse.
|
|
1807
|
+
modifications?: Array<FixedProteinEntityResponse.Modification>;
|
|
1929
1808
|
}
|
|
1930
1809
|
namespace FixedProteinEntityResponse {
|
|
1931
|
-
interface
|
|
1810
|
+
interface Modification {
|
|
1932
1811
|
/**
|
|
1933
1812
|
* 0-based index of the residue to modify
|
|
1934
1813
|
*/
|
|
@@ -1940,17 +1819,6 @@ export declare namespace DesignStartResponse {
|
|
|
1940
1819
|
*/
|
|
1941
1820
|
value: string;
|
|
1942
1821
|
}
|
|
1943
|
-
interface SmilesModificationResponse {
|
|
1944
|
-
/**
|
|
1945
|
-
* 0-based index of the residue to modify
|
|
1946
|
-
*/
|
|
1947
|
-
residue_index: number;
|
|
1948
|
-
type: 'smiles';
|
|
1949
|
-
/**
|
|
1950
|
-
* SMILES string for the modification
|
|
1951
|
-
*/
|
|
1952
|
-
value: string;
|
|
1953
|
-
}
|
|
1954
1822
|
}
|
|
1955
1823
|
interface FixedRnaEntityResponse {
|
|
1956
1824
|
/**
|
|
@@ -1969,10 +1837,10 @@ export declare namespace DesignStartResponse {
|
|
|
1969
1837
|
/**
|
|
1970
1838
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
1971
1839
|
*/
|
|
1972
|
-
modifications?: Array<FixedRnaEntityResponse.
|
|
1840
|
+
modifications?: Array<FixedRnaEntityResponse.Modification>;
|
|
1973
1841
|
}
|
|
1974
1842
|
namespace FixedRnaEntityResponse {
|
|
1975
|
-
interface
|
|
1843
|
+
interface Modification {
|
|
1976
1844
|
/**
|
|
1977
1845
|
* 0-based index of the residue to modify
|
|
1978
1846
|
*/
|
|
@@ -1984,17 +1852,6 @@ export declare namespace DesignStartResponse {
|
|
|
1984
1852
|
*/
|
|
1985
1853
|
value: string;
|
|
1986
1854
|
}
|
|
1987
|
-
interface SmilesModificationResponse {
|
|
1988
|
-
/**
|
|
1989
|
-
* 0-based index of the residue to modify
|
|
1990
|
-
*/
|
|
1991
|
-
residue_index: number;
|
|
1992
|
-
type: 'smiles';
|
|
1993
|
-
/**
|
|
1994
|
-
* SMILES string for the modification
|
|
1995
|
-
*/
|
|
1996
|
-
value: string;
|
|
1997
|
-
}
|
|
1998
1855
|
}
|
|
1999
1856
|
interface FixedDnaEntityResponse {
|
|
2000
1857
|
/**
|
|
@@ -2013,10 +1870,10 @@ export declare namespace DesignStartResponse {
|
|
|
2013
1870
|
/**
|
|
2014
1871
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
2015
1872
|
*/
|
|
2016
|
-
modifications?: Array<FixedDnaEntityResponse.
|
|
1873
|
+
modifications?: Array<FixedDnaEntityResponse.Modification>;
|
|
2017
1874
|
}
|
|
2018
1875
|
namespace FixedDnaEntityResponse {
|
|
2019
|
-
interface
|
|
1876
|
+
interface Modification {
|
|
2020
1877
|
/**
|
|
2021
1878
|
* 0-based index of the residue to modify
|
|
2022
1879
|
*/
|
|
@@ -2028,17 +1885,6 @@ export declare namespace DesignStartResponse {
|
|
|
2028
1885
|
*/
|
|
2029
1886
|
value: string;
|
|
2030
1887
|
}
|
|
2031
|
-
interface SmilesModificationResponse {
|
|
2032
|
-
/**
|
|
2033
|
-
* 0-based index of the residue to modify
|
|
2034
|
-
*/
|
|
2035
|
-
residue_index: number;
|
|
2036
|
-
type: 'smiles';
|
|
2037
|
-
/**
|
|
2038
|
-
* SMILES string for the modification
|
|
2039
|
-
*/
|
|
2040
|
-
value: string;
|
|
2041
|
-
}
|
|
2042
1888
|
}
|
|
2043
1889
|
interface FixedLigandSmilesEntityResponse {
|
|
2044
1890
|
/**
|
|
@@ -2331,10 +2177,10 @@ export declare namespace DesignStartResponse {
|
|
|
2331
2177
|
* Post-translational modifications. Optional; defaults to an empty list when
|
|
2332
2178
|
* omitted.
|
|
2333
2179
|
*/
|
|
2334
|
-
modifications?: Array<ProteinEntityResponse.
|
|
2180
|
+
modifications?: Array<ProteinEntityResponse.Modification>;
|
|
2335
2181
|
}
|
|
2336
2182
|
namespace ProteinEntityResponse {
|
|
2337
|
-
interface
|
|
2183
|
+
interface Modification {
|
|
2338
2184
|
/**
|
|
2339
2185
|
* 0-based index of the residue to modify
|
|
2340
2186
|
*/
|
|
@@ -2346,17 +2192,6 @@ export declare namespace DesignStartResponse {
|
|
|
2346
2192
|
*/
|
|
2347
2193
|
value: string;
|
|
2348
2194
|
}
|
|
2349
|
-
interface SmilesModificationResponse {
|
|
2350
|
-
/**
|
|
2351
|
-
* 0-based index of the residue to modify
|
|
2352
|
-
*/
|
|
2353
|
-
residue_index: number;
|
|
2354
|
-
type: 'smiles';
|
|
2355
|
-
/**
|
|
2356
|
-
* SMILES string for the modification
|
|
2357
|
-
*/
|
|
2358
|
-
value: string;
|
|
2359
|
-
}
|
|
2360
2195
|
}
|
|
2361
2196
|
interface RnaEntityResponse {
|
|
2362
2197
|
/**
|
|
@@ -2375,10 +2210,10 @@ export declare namespace DesignStartResponse {
|
|
|
2375
2210
|
/**
|
|
2376
2211
|
* Chemical modifications. Optional; defaults to an empty list when omitted.
|
|
2377
2212
|
*/
|
|
2378
|
-
modifications?: Array<RnaEntityResponse.
|
|
2213
|
+
modifications?: Array<RnaEntityResponse.Modification>;
|
|
2379
2214
|
}
|
|
2380
2215
|
namespace RnaEntityResponse {
|
|
2381
|
-
interface
|
|
2216
|
+
interface Modification {
|
|
2382
2217
|
/**
|
|
2383
2218
|
* 0-based index of the residue to modify
|
|
2384
2219
|
*/
|
|
@@ -2390,17 +2225,6 @@ export declare namespace DesignStartResponse {
|
|
|
2390
2225
|
*/
|
|
2391
2226
|
value: string;
|
|
2392
2227
|
}
|
|
2393
|
-
interface SmilesModificationResponse {
|
|
2394
|
-
/**
|
|
2395
|
-
* 0-based index of the residue to modify
|
|
2396
|
-
*/
|
|
2397
|
-
residue_index: number;
|
|
2398
|
-
type: 'smiles';
|
|
2399
|
-
/**
|
|
2400
|
-
* SMILES string for the modification
|
|
2401
|
-
*/
|
|
2402
|
-
value: string;
|
|
2403
|
-
}
|
|
2404
2228
|
}
|
|
2405
2229
|
interface DnaEntityResponse {
|
|
2406
2230
|
/**
|
|
@@ -2419,10 +2243,10 @@ export declare namespace DesignStartResponse {
|
|
|
2419
2243
|
/**
|
|
2420
2244
|
* Chemical modifications. Optional; defaults to an empty list when omitted.
|
|
2421
2245
|
*/
|
|
2422
|
-
modifications?: Array<DnaEntityResponse.
|
|
2246
|
+
modifications?: Array<DnaEntityResponse.Modification>;
|
|
2423
2247
|
}
|
|
2424
2248
|
namespace DnaEntityResponse {
|
|
2425
|
-
interface
|
|
2249
|
+
interface Modification {
|
|
2426
2250
|
/**
|
|
2427
2251
|
* 0-based index of the residue to modify
|
|
2428
2252
|
*/
|
|
@@ -2434,17 +2258,6 @@ export declare namespace DesignStartResponse {
|
|
|
2434
2258
|
*/
|
|
2435
2259
|
value: string;
|
|
2436
2260
|
}
|
|
2437
|
-
interface SmilesModificationResponse {
|
|
2438
|
-
/**
|
|
2439
|
-
* 0-based index of the residue to modify
|
|
2440
|
-
*/
|
|
2441
|
-
residue_index: number;
|
|
2442
|
-
type: 'smiles';
|
|
2443
|
-
/**
|
|
2444
|
-
* SMILES string for the modification
|
|
2445
|
-
*/
|
|
2446
|
-
value: string;
|
|
2447
|
-
}
|
|
2448
2261
|
}
|
|
2449
2262
|
interface LigandCcdEntityResponse {
|
|
2450
2263
|
/**
|
|
@@ -2961,10 +2774,10 @@ export declare namespace DesignStopResponse {
|
|
|
2961
2774
|
/**
|
|
2962
2775
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
2963
2776
|
*/
|
|
2964
|
-
modifications?: Array<DesignedProteinEntityResponse.
|
|
2777
|
+
modifications?: Array<DesignedProteinEntityResponse.Modification>;
|
|
2965
2778
|
}
|
|
2966
2779
|
namespace DesignedProteinEntityResponse {
|
|
2967
|
-
interface
|
|
2780
|
+
interface Modification {
|
|
2968
2781
|
/**
|
|
2969
2782
|
* 0-based index of the residue to modify
|
|
2970
2783
|
*/
|
|
@@ -2976,17 +2789,6 @@ export declare namespace DesignStopResponse {
|
|
|
2976
2789
|
*/
|
|
2977
2790
|
value: string;
|
|
2978
2791
|
}
|
|
2979
|
-
interface SmilesModificationResponse {
|
|
2980
|
-
/**
|
|
2981
|
-
* 0-based index of the residue to modify
|
|
2982
|
-
*/
|
|
2983
|
-
residue_index: number;
|
|
2984
|
-
type: 'smiles';
|
|
2985
|
-
/**
|
|
2986
|
-
* SMILES string for the modification
|
|
2987
|
-
*/
|
|
2988
|
-
value: string;
|
|
2989
|
-
}
|
|
2990
2792
|
}
|
|
2991
2793
|
/**
|
|
2992
2794
|
* A fixed protein entity whose sequence is not redesigned.
|
|
@@ -3008,10 +2810,10 @@ export declare namespace DesignStopResponse {
|
|
|
3008
2810
|
/**
|
|
3009
2811
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
3010
2812
|
*/
|
|
3011
|
-
modifications?: Array<FixedProteinEntityResponse.
|
|
2813
|
+
modifications?: Array<FixedProteinEntityResponse.Modification>;
|
|
3012
2814
|
}
|
|
3013
2815
|
namespace FixedProteinEntityResponse {
|
|
3014
|
-
interface
|
|
2816
|
+
interface Modification {
|
|
3015
2817
|
/**
|
|
3016
2818
|
* 0-based index of the residue to modify
|
|
3017
2819
|
*/
|
|
@@ -3023,17 +2825,6 @@ export declare namespace DesignStopResponse {
|
|
|
3023
2825
|
*/
|
|
3024
2826
|
value: string;
|
|
3025
2827
|
}
|
|
3026
|
-
interface SmilesModificationResponse {
|
|
3027
|
-
/**
|
|
3028
|
-
* 0-based index of the residue to modify
|
|
3029
|
-
*/
|
|
3030
|
-
residue_index: number;
|
|
3031
|
-
type: 'smiles';
|
|
3032
|
-
/**
|
|
3033
|
-
* SMILES string for the modification
|
|
3034
|
-
*/
|
|
3035
|
-
value: string;
|
|
3036
|
-
}
|
|
3037
2828
|
}
|
|
3038
2829
|
interface FixedRnaEntityResponse {
|
|
3039
2830
|
/**
|
|
@@ -3052,10 +2843,10 @@ export declare namespace DesignStopResponse {
|
|
|
3052
2843
|
/**
|
|
3053
2844
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
3054
2845
|
*/
|
|
3055
|
-
modifications?: Array<FixedRnaEntityResponse.
|
|
2846
|
+
modifications?: Array<FixedRnaEntityResponse.Modification>;
|
|
3056
2847
|
}
|
|
3057
2848
|
namespace FixedRnaEntityResponse {
|
|
3058
|
-
interface
|
|
2849
|
+
interface Modification {
|
|
3059
2850
|
/**
|
|
3060
2851
|
* 0-based index of the residue to modify
|
|
3061
2852
|
*/
|
|
@@ -3067,17 +2858,6 @@ export declare namespace DesignStopResponse {
|
|
|
3067
2858
|
*/
|
|
3068
2859
|
value: string;
|
|
3069
2860
|
}
|
|
3070
|
-
interface SmilesModificationResponse {
|
|
3071
|
-
/**
|
|
3072
|
-
* 0-based index of the residue to modify
|
|
3073
|
-
*/
|
|
3074
|
-
residue_index: number;
|
|
3075
|
-
type: 'smiles';
|
|
3076
|
-
/**
|
|
3077
|
-
* SMILES string for the modification
|
|
3078
|
-
*/
|
|
3079
|
-
value: string;
|
|
3080
|
-
}
|
|
3081
2861
|
}
|
|
3082
2862
|
interface FixedDnaEntityResponse {
|
|
3083
2863
|
/**
|
|
@@ -3096,10 +2876,10 @@ export declare namespace DesignStopResponse {
|
|
|
3096
2876
|
/**
|
|
3097
2877
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
3098
2878
|
*/
|
|
3099
|
-
modifications?: Array<FixedDnaEntityResponse.
|
|
2879
|
+
modifications?: Array<FixedDnaEntityResponse.Modification>;
|
|
3100
2880
|
}
|
|
3101
2881
|
namespace FixedDnaEntityResponse {
|
|
3102
|
-
interface
|
|
2882
|
+
interface Modification {
|
|
3103
2883
|
/**
|
|
3104
2884
|
* 0-based index of the residue to modify
|
|
3105
2885
|
*/
|
|
@@ -3111,17 +2891,6 @@ export declare namespace DesignStopResponse {
|
|
|
3111
2891
|
*/
|
|
3112
2892
|
value: string;
|
|
3113
2893
|
}
|
|
3114
|
-
interface SmilesModificationResponse {
|
|
3115
|
-
/**
|
|
3116
|
-
* 0-based index of the residue to modify
|
|
3117
|
-
*/
|
|
3118
|
-
residue_index: number;
|
|
3119
|
-
type: 'smiles';
|
|
3120
|
-
/**
|
|
3121
|
-
* SMILES string for the modification
|
|
3122
|
-
*/
|
|
3123
|
-
value: string;
|
|
3124
|
-
}
|
|
3125
2894
|
}
|
|
3126
2895
|
interface FixedLigandSmilesEntityResponse {
|
|
3127
2896
|
/**
|
|
@@ -3414,10 +3183,10 @@ export declare namespace DesignStopResponse {
|
|
|
3414
3183
|
* Post-translational modifications. Optional; defaults to an empty list when
|
|
3415
3184
|
* omitted.
|
|
3416
3185
|
*/
|
|
3417
|
-
modifications?: Array<ProteinEntityResponse.
|
|
3186
|
+
modifications?: Array<ProteinEntityResponse.Modification>;
|
|
3418
3187
|
}
|
|
3419
3188
|
namespace ProteinEntityResponse {
|
|
3420
|
-
interface
|
|
3189
|
+
interface Modification {
|
|
3421
3190
|
/**
|
|
3422
3191
|
* 0-based index of the residue to modify
|
|
3423
3192
|
*/
|
|
@@ -3429,17 +3198,6 @@ export declare namespace DesignStopResponse {
|
|
|
3429
3198
|
*/
|
|
3430
3199
|
value: string;
|
|
3431
3200
|
}
|
|
3432
|
-
interface SmilesModificationResponse {
|
|
3433
|
-
/**
|
|
3434
|
-
* 0-based index of the residue to modify
|
|
3435
|
-
*/
|
|
3436
|
-
residue_index: number;
|
|
3437
|
-
type: 'smiles';
|
|
3438
|
-
/**
|
|
3439
|
-
* SMILES string for the modification
|
|
3440
|
-
*/
|
|
3441
|
-
value: string;
|
|
3442
|
-
}
|
|
3443
3201
|
}
|
|
3444
3202
|
interface RnaEntityResponse {
|
|
3445
3203
|
/**
|
|
@@ -3458,10 +3216,10 @@ export declare namespace DesignStopResponse {
|
|
|
3458
3216
|
/**
|
|
3459
3217
|
* Chemical modifications. Optional; defaults to an empty list when omitted.
|
|
3460
3218
|
*/
|
|
3461
|
-
modifications?: Array<RnaEntityResponse.
|
|
3219
|
+
modifications?: Array<RnaEntityResponse.Modification>;
|
|
3462
3220
|
}
|
|
3463
3221
|
namespace RnaEntityResponse {
|
|
3464
|
-
interface
|
|
3222
|
+
interface Modification {
|
|
3465
3223
|
/**
|
|
3466
3224
|
* 0-based index of the residue to modify
|
|
3467
3225
|
*/
|
|
@@ -3473,17 +3231,6 @@ export declare namespace DesignStopResponse {
|
|
|
3473
3231
|
*/
|
|
3474
3232
|
value: string;
|
|
3475
3233
|
}
|
|
3476
|
-
interface SmilesModificationResponse {
|
|
3477
|
-
/**
|
|
3478
|
-
* 0-based index of the residue to modify
|
|
3479
|
-
*/
|
|
3480
|
-
residue_index: number;
|
|
3481
|
-
type: 'smiles';
|
|
3482
|
-
/**
|
|
3483
|
-
* SMILES string for the modification
|
|
3484
|
-
*/
|
|
3485
|
-
value: string;
|
|
3486
|
-
}
|
|
3487
3234
|
}
|
|
3488
3235
|
interface DnaEntityResponse {
|
|
3489
3236
|
/**
|
|
@@ -3502,10 +3249,10 @@ export declare namespace DesignStopResponse {
|
|
|
3502
3249
|
/**
|
|
3503
3250
|
* Chemical modifications. Optional; defaults to an empty list when omitted.
|
|
3504
3251
|
*/
|
|
3505
|
-
modifications?: Array<DnaEntityResponse.
|
|
3252
|
+
modifications?: Array<DnaEntityResponse.Modification>;
|
|
3506
3253
|
}
|
|
3507
3254
|
namespace DnaEntityResponse {
|
|
3508
|
-
interface
|
|
3255
|
+
interface Modification {
|
|
3509
3256
|
/**
|
|
3510
3257
|
* 0-based index of the residue to modify
|
|
3511
3258
|
*/
|
|
@@ -3517,17 +3264,6 @@ export declare namespace DesignStopResponse {
|
|
|
3517
3264
|
*/
|
|
3518
3265
|
value: string;
|
|
3519
3266
|
}
|
|
3520
|
-
interface SmilesModificationResponse {
|
|
3521
|
-
/**
|
|
3522
|
-
* 0-based index of the residue to modify
|
|
3523
|
-
*/
|
|
3524
|
-
residue_index: number;
|
|
3525
|
-
type: 'smiles';
|
|
3526
|
-
/**
|
|
3527
|
-
* SMILES string for the modification
|
|
3528
|
-
*/
|
|
3529
|
-
value: string;
|
|
3530
|
-
}
|
|
3531
3267
|
}
|
|
3532
3268
|
interface LigandCcdEntityResponse {
|
|
3533
3269
|
/**
|
|
@@ -4005,10 +3741,10 @@ export declare namespace DesignEstimateCostParams {
|
|
|
4005
3741
|
/**
|
|
4006
3742
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
4007
3743
|
*/
|
|
4008
|
-
modifications?: Array<DesignedProteinEntity.
|
|
3744
|
+
modifications?: Array<DesignedProteinEntity.Modification>;
|
|
4009
3745
|
}
|
|
4010
3746
|
namespace DesignedProteinEntity {
|
|
4011
|
-
interface
|
|
3747
|
+
interface Modification {
|
|
4012
3748
|
/**
|
|
4013
3749
|
* 0-based index of the residue to modify
|
|
4014
3750
|
*/
|
|
@@ -4020,17 +3756,6 @@ export declare namespace DesignEstimateCostParams {
|
|
|
4020
3756
|
*/
|
|
4021
3757
|
value: string;
|
|
4022
3758
|
}
|
|
4023
|
-
interface SmilesModification {
|
|
4024
|
-
/**
|
|
4025
|
-
* 0-based index of the residue to modify
|
|
4026
|
-
*/
|
|
4027
|
-
residue_index: number;
|
|
4028
|
-
type: 'smiles';
|
|
4029
|
-
/**
|
|
4030
|
-
* SMILES string for the modification
|
|
4031
|
-
*/
|
|
4032
|
-
value: string;
|
|
4033
|
-
}
|
|
4034
3759
|
}
|
|
4035
3760
|
/**
|
|
4036
3761
|
* A fixed protein entity whose sequence is not redesigned.
|
|
@@ -4052,10 +3777,10 @@ export declare namespace DesignEstimateCostParams {
|
|
|
4052
3777
|
/**
|
|
4053
3778
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
4054
3779
|
*/
|
|
4055
|
-
modifications?: Array<FixedProteinEntity.
|
|
3780
|
+
modifications?: Array<FixedProteinEntity.Modification>;
|
|
4056
3781
|
}
|
|
4057
3782
|
namespace FixedProteinEntity {
|
|
4058
|
-
interface
|
|
3783
|
+
interface Modification {
|
|
4059
3784
|
/**
|
|
4060
3785
|
* 0-based index of the residue to modify
|
|
4061
3786
|
*/
|
|
@@ -4067,17 +3792,6 @@ export declare namespace DesignEstimateCostParams {
|
|
|
4067
3792
|
*/
|
|
4068
3793
|
value: string;
|
|
4069
3794
|
}
|
|
4070
|
-
interface SmilesModification {
|
|
4071
|
-
/**
|
|
4072
|
-
* 0-based index of the residue to modify
|
|
4073
|
-
*/
|
|
4074
|
-
residue_index: number;
|
|
4075
|
-
type: 'smiles';
|
|
4076
|
-
/**
|
|
4077
|
-
* SMILES string for the modification
|
|
4078
|
-
*/
|
|
4079
|
-
value: string;
|
|
4080
|
-
}
|
|
4081
3795
|
}
|
|
4082
3796
|
interface FixedRnaEntity {
|
|
4083
3797
|
/**
|
|
@@ -4096,10 +3810,10 @@ export declare namespace DesignEstimateCostParams {
|
|
|
4096
3810
|
/**
|
|
4097
3811
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
4098
3812
|
*/
|
|
4099
|
-
modifications?: Array<FixedRnaEntity.
|
|
3813
|
+
modifications?: Array<FixedRnaEntity.Modification>;
|
|
4100
3814
|
}
|
|
4101
3815
|
namespace FixedRnaEntity {
|
|
4102
|
-
interface
|
|
3816
|
+
interface Modification {
|
|
4103
3817
|
/**
|
|
4104
3818
|
* 0-based index of the residue to modify
|
|
4105
3819
|
*/
|
|
@@ -4111,17 +3825,6 @@ export declare namespace DesignEstimateCostParams {
|
|
|
4111
3825
|
*/
|
|
4112
3826
|
value: string;
|
|
4113
3827
|
}
|
|
4114
|
-
interface SmilesModification {
|
|
4115
|
-
/**
|
|
4116
|
-
* 0-based index of the residue to modify
|
|
4117
|
-
*/
|
|
4118
|
-
residue_index: number;
|
|
4119
|
-
type: 'smiles';
|
|
4120
|
-
/**
|
|
4121
|
-
* SMILES string for the modification
|
|
4122
|
-
*/
|
|
4123
|
-
value: string;
|
|
4124
|
-
}
|
|
4125
3828
|
}
|
|
4126
3829
|
interface FixedDnaEntity {
|
|
4127
3830
|
/**
|
|
@@ -4140,10 +3843,10 @@ export declare namespace DesignEstimateCostParams {
|
|
|
4140
3843
|
/**
|
|
4141
3844
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
4142
3845
|
*/
|
|
4143
|
-
modifications?: Array<FixedDnaEntity.
|
|
3846
|
+
modifications?: Array<FixedDnaEntity.Modification>;
|
|
4144
3847
|
}
|
|
4145
3848
|
namespace FixedDnaEntity {
|
|
4146
|
-
interface
|
|
3849
|
+
interface Modification {
|
|
4147
3850
|
/**
|
|
4148
3851
|
* 0-based index of the residue to modify
|
|
4149
3852
|
*/
|
|
@@ -4155,17 +3858,6 @@ export declare namespace DesignEstimateCostParams {
|
|
|
4155
3858
|
*/
|
|
4156
3859
|
value: string;
|
|
4157
3860
|
}
|
|
4158
|
-
interface SmilesModification {
|
|
4159
|
-
/**
|
|
4160
|
-
* 0-based index of the residue to modify
|
|
4161
|
-
*/
|
|
4162
|
-
residue_index: number;
|
|
4163
|
-
type: 'smiles';
|
|
4164
|
-
/**
|
|
4165
|
-
* SMILES string for the modification
|
|
4166
|
-
*/
|
|
4167
|
-
value: string;
|
|
4168
|
-
}
|
|
4169
3861
|
}
|
|
4170
3862
|
interface FixedLigandSmilesEntity {
|
|
4171
3863
|
/**
|
|
@@ -4467,10 +4159,10 @@ export declare namespace DesignEstimateCostParams {
|
|
|
4467
4159
|
* Post-translational modifications. Optional; defaults to an empty list when
|
|
4468
4160
|
* omitted.
|
|
4469
4161
|
*/
|
|
4470
|
-
modifications?: Array<ProteinEntity.
|
|
4162
|
+
modifications?: Array<ProteinEntity.Modification>;
|
|
4471
4163
|
}
|
|
4472
4164
|
namespace ProteinEntity {
|
|
4473
|
-
interface
|
|
4165
|
+
interface Modification {
|
|
4474
4166
|
/**
|
|
4475
4167
|
* 0-based index of the residue to modify
|
|
4476
4168
|
*/
|
|
@@ -4482,17 +4174,6 @@ export declare namespace DesignEstimateCostParams {
|
|
|
4482
4174
|
*/
|
|
4483
4175
|
value: string;
|
|
4484
4176
|
}
|
|
4485
|
-
interface SmilesModification {
|
|
4486
|
-
/**
|
|
4487
|
-
* 0-based index of the residue to modify
|
|
4488
|
-
*/
|
|
4489
|
-
residue_index: number;
|
|
4490
|
-
type: 'smiles';
|
|
4491
|
-
/**
|
|
4492
|
-
* SMILES string for the modification
|
|
4493
|
-
*/
|
|
4494
|
-
value: string;
|
|
4495
|
-
}
|
|
4496
4177
|
}
|
|
4497
4178
|
interface RnaEntity {
|
|
4498
4179
|
/**
|
|
@@ -4511,10 +4192,10 @@ export declare namespace DesignEstimateCostParams {
|
|
|
4511
4192
|
/**
|
|
4512
4193
|
* Chemical modifications. Optional; defaults to an empty list when omitted.
|
|
4513
4194
|
*/
|
|
4514
|
-
modifications?: Array<RnaEntity.
|
|
4195
|
+
modifications?: Array<RnaEntity.Modification>;
|
|
4515
4196
|
}
|
|
4516
4197
|
namespace RnaEntity {
|
|
4517
|
-
interface
|
|
4198
|
+
interface Modification {
|
|
4518
4199
|
/**
|
|
4519
4200
|
* 0-based index of the residue to modify
|
|
4520
4201
|
*/
|
|
@@ -4526,17 +4207,6 @@ export declare namespace DesignEstimateCostParams {
|
|
|
4526
4207
|
*/
|
|
4527
4208
|
value: string;
|
|
4528
4209
|
}
|
|
4529
|
-
interface SmilesModification {
|
|
4530
|
-
/**
|
|
4531
|
-
* 0-based index of the residue to modify
|
|
4532
|
-
*/
|
|
4533
|
-
residue_index: number;
|
|
4534
|
-
type: 'smiles';
|
|
4535
|
-
/**
|
|
4536
|
-
* SMILES string for the modification
|
|
4537
|
-
*/
|
|
4538
|
-
value: string;
|
|
4539
|
-
}
|
|
4540
4210
|
}
|
|
4541
4211
|
interface DnaEntity {
|
|
4542
4212
|
/**
|
|
@@ -4555,10 +4225,10 @@ export declare namespace DesignEstimateCostParams {
|
|
|
4555
4225
|
/**
|
|
4556
4226
|
* Chemical modifications. Optional; defaults to an empty list when omitted.
|
|
4557
4227
|
*/
|
|
4558
|
-
modifications?: Array<DnaEntity.
|
|
4228
|
+
modifications?: Array<DnaEntity.Modification>;
|
|
4559
4229
|
}
|
|
4560
4230
|
namespace DnaEntity {
|
|
4561
|
-
interface
|
|
4231
|
+
interface Modification {
|
|
4562
4232
|
/**
|
|
4563
4233
|
* 0-based index of the residue to modify
|
|
4564
4234
|
*/
|
|
@@ -4570,17 +4240,6 @@ export declare namespace DesignEstimateCostParams {
|
|
|
4570
4240
|
*/
|
|
4571
4241
|
value: string;
|
|
4572
4242
|
}
|
|
4573
|
-
interface SmilesModification {
|
|
4574
|
-
/**
|
|
4575
|
-
* 0-based index of the residue to modify
|
|
4576
|
-
*/
|
|
4577
|
-
residue_index: number;
|
|
4578
|
-
type: 'smiles';
|
|
4579
|
-
/**
|
|
4580
|
-
* SMILES string for the modification
|
|
4581
|
-
*/
|
|
4582
|
-
value: string;
|
|
4583
|
-
}
|
|
4584
4243
|
}
|
|
4585
4244
|
interface LigandCcdEntity {
|
|
4586
4245
|
/**
|
|
@@ -5035,10 +4694,10 @@ export declare namespace DesignStartParams {
|
|
|
5035
4694
|
/**
|
|
5036
4695
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
5037
4696
|
*/
|
|
5038
|
-
modifications?: Array<DesignedProteinEntity.
|
|
4697
|
+
modifications?: Array<DesignedProteinEntity.Modification>;
|
|
5039
4698
|
}
|
|
5040
4699
|
namespace DesignedProteinEntity {
|
|
5041
|
-
interface
|
|
4700
|
+
interface Modification {
|
|
5042
4701
|
/**
|
|
5043
4702
|
* 0-based index of the residue to modify
|
|
5044
4703
|
*/
|
|
@@ -5050,17 +4709,6 @@ export declare namespace DesignStartParams {
|
|
|
5050
4709
|
*/
|
|
5051
4710
|
value: string;
|
|
5052
4711
|
}
|
|
5053
|
-
interface SmilesModification {
|
|
5054
|
-
/**
|
|
5055
|
-
* 0-based index of the residue to modify
|
|
5056
|
-
*/
|
|
5057
|
-
residue_index: number;
|
|
5058
|
-
type: 'smiles';
|
|
5059
|
-
/**
|
|
5060
|
-
* SMILES string for the modification
|
|
5061
|
-
*/
|
|
5062
|
-
value: string;
|
|
5063
|
-
}
|
|
5064
4712
|
}
|
|
5065
4713
|
/**
|
|
5066
4714
|
* A fixed protein entity whose sequence is not redesigned.
|
|
@@ -5082,10 +4730,10 @@ export declare namespace DesignStartParams {
|
|
|
5082
4730
|
/**
|
|
5083
4731
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
5084
4732
|
*/
|
|
5085
|
-
modifications?: Array<FixedProteinEntity.
|
|
4733
|
+
modifications?: Array<FixedProteinEntity.Modification>;
|
|
5086
4734
|
}
|
|
5087
4735
|
namespace FixedProteinEntity {
|
|
5088
|
-
interface
|
|
4736
|
+
interface Modification {
|
|
5089
4737
|
/**
|
|
5090
4738
|
* 0-based index of the residue to modify
|
|
5091
4739
|
*/
|
|
@@ -5097,17 +4745,6 @@ export declare namespace DesignStartParams {
|
|
|
5097
4745
|
*/
|
|
5098
4746
|
value: string;
|
|
5099
4747
|
}
|
|
5100
|
-
interface SmilesModification {
|
|
5101
|
-
/**
|
|
5102
|
-
* 0-based index of the residue to modify
|
|
5103
|
-
*/
|
|
5104
|
-
residue_index: number;
|
|
5105
|
-
type: 'smiles';
|
|
5106
|
-
/**
|
|
5107
|
-
* SMILES string for the modification
|
|
5108
|
-
*/
|
|
5109
|
-
value: string;
|
|
5110
|
-
}
|
|
5111
4748
|
}
|
|
5112
4749
|
interface FixedRnaEntity {
|
|
5113
4750
|
/**
|
|
@@ -5126,10 +4763,10 @@ export declare namespace DesignStartParams {
|
|
|
5126
4763
|
/**
|
|
5127
4764
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
5128
4765
|
*/
|
|
5129
|
-
modifications?: Array<FixedRnaEntity.
|
|
4766
|
+
modifications?: Array<FixedRnaEntity.Modification>;
|
|
5130
4767
|
}
|
|
5131
4768
|
namespace FixedRnaEntity {
|
|
5132
|
-
interface
|
|
4769
|
+
interface Modification {
|
|
5133
4770
|
/**
|
|
5134
4771
|
* 0-based index of the residue to modify
|
|
5135
4772
|
*/
|
|
@@ -5141,17 +4778,6 @@ export declare namespace DesignStartParams {
|
|
|
5141
4778
|
*/
|
|
5142
4779
|
value: string;
|
|
5143
4780
|
}
|
|
5144
|
-
interface SmilesModification {
|
|
5145
|
-
/**
|
|
5146
|
-
* 0-based index of the residue to modify
|
|
5147
|
-
*/
|
|
5148
|
-
residue_index: number;
|
|
5149
|
-
type: 'smiles';
|
|
5150
|
-
/**
|
|
5151
|
-
* SMILES string for the modification
|
|
5152
|
-
*/
|
|
5153
|
-
value: string;
|
|
5154
|
-
}
|
|
5155
4781
|
}
|
|
5156
4782
|
interface FixedDnaEntity {
|
|
5157
4783
|
/**
|
|
@@ -5170,10 +4796,10 @@ export declare namespace DesignStartParams {
|
|
|
5170
4796
|
/**
|
|
5171
4797
|
* Optional polymer modifications. Defaults to [] when omitted.
|
|
5172
4798
|
*/
|
|
5173
|
-
modifications?: Array<FixedDnaEntity.
|
|
4799
|
+
modifications?: Array<FixedDnaEntity.Modification>;
|
|
5174
4800
|
}
|
|
5175
4801
|
namespace FixedDnaEntity {
|
|
5176
|
-
interface
|
|
4802
|
+
interface Modification {
|
|
5177
4803
|
/**
|
|
5178
4804
|
* 0-based index of the residue to modify
|
|
5179
4805
|
*/
|
|
@@ -5185,17 +4811,6 @@ export declare namespace DesignStartParams {
|
|
|
5185
4811
|
*/
|
|
5186
4812
|
value: string;
|
|
5187
4813
|
}
|
|
5188
|
-
interface SmilesModification {
|
|
5189
|
-
/**
|
|
5190
|
-
* 0-based index of the residue to modify
|
|
5191
|
-
*/
|
|
5192
|
-
residue_index: number;
|
|
5193
|
-
type: 'smiles';
|
|
5194
|
-
/**
|
|
5195
|
-
* SMILES string for the modification
|
|
5196
|
-
*/
|
|
5197
|
-
value: string;
|
|
5198
|
-
}
|
|
5199
4814
|
}
|
|
5200
4815
|
interface FixedLigandSmilesEntity {
|
|
5201
4816
|
/**
|
|
@@ -5497,10 +5112,10 @@ export declare namespace DesignStartParams {
|
|
|
5497
5112
|
* Post-translational modifications. Optional; defaults to an empty list when
|
|
5498
5113
|
* omitted.
|
|
5499
5114
|
*/
|
|
5500
|
-
modifications?: Array<ProteinEntity.
|
|
5115
|
+
modifications?: Array<ProteinEntity.Modification>;
|
|
5501
5116
|
}
|
|
5502
5117
|
namespace ProteinEntity {
|
|
5503
|
-
interface
|
|
5118
|
+
interface Modification {
|
|
5504
5119
|
/**
|
|
5505
5120
|
* 0-based index of the residue to modify
|
|
5506
5121
|
*/
|
|
@@ -5512,17 +5127,6 @@ export declare namespace DesignStartParams {
|
|
|
5512
5127
|
*/
|
|
5513
5128
|
value: string;
|
|
5514
5129
|
}
|
|
5515
|
-
interface SmilesModification {
|
|
5516
|
-
/**
|
|
5517
|
-
* 0-based index of the residue to modify
|
|
5518
|
-
*/
|
|
5519
|
-
residue_index: number;
|
|
5520
|
-
type: 'smiles';
|
|
5521
|
-
/**
|
|
5522
|
-
* SMILES string for the modification
|
|
5523
|
-
*/
|
|
5524
|
-
value: string;
|
|
5525
|
-
}
|
|
5526
5130
|
}
|
|
5527
5131
|
interface RnaEntity {
|
|
5528
5132
|
/**
|
|
@@ -5541,10 +5145,10 @@ export declare namespace DesignStartParams {
|
|
|
5541
5145
|
/**
|
|
5542
5146
|
* Chemical modifications. Optional; defaults to an empty list when omitted.
|
|
5543
5147
|
*/
|
|
5544
|
-
modifications?: Array<RnaEntity.
|
|
5148
|
+
modifications?: Array<RnaEntity.Modification>;
|
|
5545
5149
|
}
|
|
5546
5150
|
namespace RnaEntity {
|
|
5547
|
-
interface
|
|
5151
|
+
interface Modification {
|
|
5548
5152
|
/**
|
|
5549
5153
|
* 0-based index of the residue to modify
|
|
5550
5154
|
*/
|
|
@@ -5556,17 +5160,6 @@ export declare namespace DesignStartParams {
|
|
|
5556
5160
|
*/
|
|
5557
5161
|
value: string;
|
|
5558
5162
|
}
|
|
5559
|
-
interface SmilesModification {
|
|
5560
|
-
/**
|
|
5561
|
-
* 0-based index of the residue to modify
|
|
5562
|
-
*/
|
|
5563
|
-
residue_index: number;
|
|
5564
|
-
type: 'smiles';
|
|
5565
|
-
/**
|
|
5566
|
-
* SMILES string for the modification
|
|
5567
|
-
*/
|
|
5568
|
-
value: string;
|
|
5569
|
-
}
|
|
5570
5163
|
}
|
|
5571
5164
|
interface DnaEntity {
|
|
5572
5165
|
/**
|
|
@@ -5585,10 +5178,10 @@ export declare namespace DesignStartParams {
|
|
|
5585
5178
|
/**
|
|
5586
5179
|
* Chemical modifications. Optional; defaults to an empty list when omitted.
|
|
5587
5180
|
*/
|
|
5588
|
-
modifications?: Array<DnaEntity.
|
|
5181
|
+
modifications?: Array<DnaEntity.Modification>;
|
|
5589
5182
|
}
|
|
5590
5183
|
namespace DnaEntity {
|
|
5591
|
-
interface
|
|
5184
|
+
interface Modification {
|
|
5592
5185
|
/**
|
|
5593
5186
|
* 0-based index of the residue to modify
|
|
5594
5187
|
*/
|
|
@@ -5600,17 +5193,6 @@ export declare namespace DesignStartParams {
|
|
|
5600
5193
|
*/
|
|
5601
5194
|
value: string;
|
|
5602
5195
|
}
|
|
5603
|
-
interface SmilesModification {
|
|
5604
|
-
/**
|
|
5605
|
-
* 0-based index of the residue to modify
|
|
5606
|
-
*/
|
|
5607
|
-
residue_index: number;
|
|
5608
|
-
type: 'smiles';
|
|
5609
|
-
/**
|
|
5610
|
-
* SMILES string for the modification
|
|
5611
|
-
*/
|
|
5612
|
-
value: string;
|
|
5613
|
-
}
|
|
5614
5196
|
}
|
|
5615
5197
|
interface LigandCcdEntity {
|
|
5616
5198
|
/**
|