boltz-api 0.39.1 → 0.39.2
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/protein/design.d.mts +45 -45
- package/resources/protein/design.d.ts +45 -45
- package/src/resources/protein/design.ts +45 -45
- 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
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.39.2 (2026-05-28)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.39.1...v0.39.2](https://github.com/boltz-bio/boltz-api-typescript/compare/v0.39.1...v0.39.2)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* **protein-design:** count tyrosine in hydrophobic filter ([5d8e8e7](https://github.com/boltz-bio/boltz-api-typescript/commit/5d8e8e7e45d03ee5ad0418db64708f82bdc71543))
|
|
10
|
+
|
|
3
11
|
## 0.39.1 (2026-05-27)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.39.0...v0.39.1](https://github.com/boltz-bio/boltz-api-typescript/compare/v0.39.0...v0.39.1)
|
package/package.json
CHANGED
|
@@ -365,9 +365,9 @@ export declare namespace DesignRetrieveResponse {
|
|
|
365
365
|
*/
|
|
366
366
|
excluded_sequence_motifs?: Array<string>;
|
|
367
367
|
/**
|
|
368
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
369
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
370
|
-
* empty to disable.
|
|
368
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
369
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
370
|
+
* scoring. Leave empty to disable.
|
|
371
371
|
*/
|
|
372
372
|
max_hydrophobic_fraction?: number;
|
|
373
373
|
}
|
|
@@ -659,9 +659,9 @@ export declare namespace DesignRetrieveResponse {
|
|
|
659
659
|
*/
|
|
660
660
|
excluded_sequence_motifs?: Array<string>;
|
|
661
661
|
/**
|
|
662
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
663
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
664
|
-
* empty to disable.
|
|
662
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
663
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
664
|
+
* scoring. Leave empty to disable.
|
|
665
665
|
*/
|
|
666
666
|
max_hydrophobic_fraction?: number;
|
|
667
667
|
}
|
|
@@ -701,9 +701,9 @@ export declare namespace DesignRetrieveResponse {
|
|
|
701
701
|
*/
|
|
702
702
|
excluded_sequence_motifs?: Array<string>;
|
|
703
703
|
/**
|
|
704
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
705
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
706
|
-
* empty to disable.
|
|
704
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
705
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
706
|
+
* scoring. Leave empty to disable.
|
|
707
707
|
*/
|
|
708
708
|
max_hydrophobic_fraction?: number;
|
|
709
709
|
}
|
|
@@ -1710,9 +1710,9 @@ export declare namespace DesignStartResponse {
|
|
|
1710
1710
|
*/
|
|
1711
1711
|
excluded_sequence_motifs?: Array<string>;
|
|
1712
1712
|
/**
|
|
1713
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
1714
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
1715
|
-
* empty to disable.
|
|
1713
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
1714
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
1715
|
+
* scoring. Leave empty to disable.
|
|
1716
1716
|
*/
|
|
1717
1717
|
max_hydrophobic_fraction?: number;
|
|
1718
1718
|
}
|
|
@@ -2004,9 +2004,9 @@ export declare namespace DesignStartResponse {
|
|
|
2004
2004
|
*/
|
|
2005
2005
|
excluded_sequence_motifs?: Array<string>;
|
|
2006
2006
|
/**
|
|
2007
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
2008
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
2009
|
-
* empty to disable.
|
|
2007
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
2008
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
2009
|
+
* scoring. Leave empty to disable.
|
|
2010
2010
|
*/
|
|
2011
2011
|
max_hydrophobic_fraction?: number;
|
|
2012
2012
|
}
|
|
@@ -2046,9 +2046,9 @@ export declare namespace DesignStartResponse {
|
|
|
2046
2046
|
*/
|
|
2047
2047
|
excluded_sequence_motifs?: Array<string>;
|
|
2048
2048
|
/**
|
|
2049
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
2050
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
2051
|
-
* empty to disable.
|
|
2049
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
2050
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
2051
|
+
* scoring. Leave empty to disable.
|
|
2052
2052
|
*/
|
|
2053
2053
|
max_hydrophobic_fraction?: number;
|
|
2054
2054
|
}
|
|
@@ -2716,9 +2716,9 @@ export declare namespace DesignStopResponse {
|
|
|
2716
2716
|
*/
|
|
2717
2717
|
excluded_sequence_motifs?: Array<string>;
|
|
2718
2718
|
/**
|
|
2719
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
2720
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
2721
|
-
* empty to disable.
|
|
2719
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
2720
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
2721
|
+
* scoring. Leave empty to disable.
|
|
2722
2722
|
*/
|
|
2723
2723
|
max_hydrophobic_fraction?: number;
|
|
2724
2724
|
}
|
|
@@ -3010,9 +3010,9 @@ export declare namespace DesignStopResponse {
|
|
|
3010
3010
|
*/
|
|
3011
3011
|
excluded_sequence_motifs?: Array<string>;
|
|
3012
3012
|
/**
|
|
3013
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
3014
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
3015
|
-
* empty to disable.
|
|
3013
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
3014
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
3015
|
+
* scoring. Leave empty to disable.
|
|
3016
3016
|
*/
|
|
3017
3017
|
max_hydrophobic_fraction?: number;
|
|
3018
3018
|
}
|
|
@@ -3052,9 +3052,9 @@ export declare namespace DesignStopResponse {
|
|
|
3052
3052
|
*/
|
|
3053
3053
|
excluded_sequence_motifs?: Array<string>;
|
|
3054
3054
|
/**
|
|
3055
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
3056
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
3057
|
-
* empty to disable.
|
|
3055
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
3056
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
3057
|
+
* scoring. Leave empty to disable.
|
|
3058
3058
|
*/
|
|
3059
3059
|
max_hydrophobic_fraction?: number;
|
|
3060
3060
|
}
|
|
@@ -3683,9 +3683,9 @@ export declare namespace DesignEstimateCostParams {
|
|
|
3683
3683
|
*/
|
|
3684
3684
|
excluded_sequence_motifs?: Array<string>;
|
|
3685
3685
|
/**
|
|
3686
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
3687
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
3688
|
-
* empty to disable.
|
|
3686
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
3687
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
3688
|
+
* scoring. Leave empty to disable.
|
|
3689
3689
|
*/
|
|
3690
3690
|
max_hydrophobic_fraction?: number;
|
|
3691
3691
|
}
|
|
@@ -3977,9 +3977,9 @@ export declare namespace DesignEstimateCostParams {
|
|
|
3977
3977
|
*/
|
|
3978
3978
|
excluded_sequence_motifs?: Array<string>;
|
|
3979
3979
|
/**
|
|
3980
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
3981
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
3982
|
-
* empty to disable.
|
|
3980
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
3981
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
3982
|
+
* scoring. Leave empty to disable.
|
|
3983
3983
|
*/
|
|
3984
3984
|
max_hydrophobic_fraction?: number;
|
|
3985
3985
|
}
|
|
@@ -4019,9 +4019,9 @@ export declare namespace DesignEstimateCostParams {
|
|
|
4019
4019
|
*/
|
|
4020
4020
|
excluded_sequence_motifs?: Array<string>;
|
|
4021
4021
|
/**
|
|
4022
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
4023
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
4024
|
-
* empty to disable.
|
|
4022
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
4023
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
4024
|
+
* scoring. Leave empty to disable.
|
|
4025
4025
|
*/
|
|
4026
4026
|
max_hydrophobic_fraction?: number;
|
|
4027
4027
|
}
|
|
@@ -4636,9 +4636,9 @@ export declare namespace DesignStartParams {
|
|
|
4636
4636
|
*/
|
|
4637
4637
|
excluded_sequence_motifs?: Array<string>;
|
|
4638
4638
|
/**
|
|
4639
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
4640
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
4641
|
-
* empty to disable.
|
|
4639
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
4640
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
4641
|
+
* scoring. Leave empty to disable.
|
|
4642
4642
|
*/
|
|
4643
4643
|
max_hydrophobic_fraction?: number;
|
|
4644
4644
|
}
|
|
@@ -4930,9 +4930,9 @@ export declare namespace DesignStartParams {
|
|
|
4930
4930
|
*/
|
|
4931
4931
|
excluded_sequence_motifs?: Array<string>;
|
|
4932
4932
|
/**
|
|
4933
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
4934
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
4935
|
-
* empty to disable.
|
|
4933
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
4934
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
4935
|
+
* scoring. Leave empty to disable.
|
|
4936
4936
|
*/
|
|
4937
4937
|
max_hydrophobic_fraction?: number;
|
|
4938
4938
|
}
|
|
@@ -4972,9 +4972,9 @@ export declare namespace DesignStartParams {
|
|
|
4972
4972
|
*/
|
|
4973
4973
|
excluded_sequence_motifs?: Array<string>;
|
|
4974
4974
|
/**
|
|
4975
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
4976
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
4977
|
-
* empty to disable.
|
|
4975
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
4976
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
4977
|
+
* scoring. Leave empty to disable.
|
|
4978
4978
|
*/
|
|
4979
4979
|
max_hydrophobic_fraction?: number;
|
|
4980
4980
|
}
|
|
@@ -365,9 +365,9 @@ export declare namespace DesignRetrieveResponse {
|
|
|
365
365
|
*/
|
|
366
366
|
excluded_sequence_motifs?: Array<string>;
|
|
367
367
|
/**
|
|
368
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
369
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
370
|
-
* empty to disable.
|
|
368
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
369
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
370
|
+
* scoring. Leave empty to disable.
|
|
371
371
|
*/
|
|
372
372
|
max_hydrophobic_fraction?: number;
|
|
373
373
|
}
|
|
@@ -659,9 +659,9 @@ export declare namespace DesignRetrieveResponse {
|
|
|
659
659
|
*/
|
|
660
660
|
excluded_sequence_motifs?: Array<string>;
|
|
661
661
|
/**
|
|
662
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
663
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
664
|
-
* empty to disable.
|
|
662
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
663
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
664
|
+
* scoring. Leave empty to disable.
|
|
665
665
|
*/
|
|
666
666
|
max_hydrophobic_fraction?: number;
|
|
667
667
|
}
|
|
@@ -701,9 +701,9 @@ export declare namespace DesignRetrieveResponse {
|
|
|
701
701
|
*/
|
|
702
702
|
excluded_sequence_motifs?: Array<string>;
|
|
703
703
|
/**
|
|
704
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
705
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
706
|
-
* empty to disable.
|
|
704
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
705
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
706
|
+
* scoring. Leave empty to disable.
|
|
707
707
|
*/
|
|
708
708
|
max_hydrophobic_fraction?: number;
|
|
709
709
|
}
|
|
@@ -1710,9 +1710,9 @@ export declare namespace DesignStartResponse {
|
|
|
1710
1710
|
*/
|
|
1711
1711
|
excluded_sequence_motifs?: Array<string>;
|
|
1712
1712
|
/**
|
|
1713
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
1714
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
1715
|
-
* empty to disable.
|
|
1713
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
1714
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
1715
|
+
* scoring. Leave empty to disable.
|
|
1716
1716
|
*/
|
|
1717
1717
|
max_hydrophobic_fraction?: number;
|
|
1718
1718
|
}
|
|
@@ -2004,9 +2004,9 @@ export declare namespace DesignStartResponse {
|
|
|
2004
2004
|
*/
|
|
2005
2005
|
excluded_sequence_motifs?: Array<string>;
|
|
2006
2006
|
/**
|
|
2007
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
2008
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
2009
|
-
* empty to disable.
|
|
2007
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
2008
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
2009
|
+
* scoring. Leave empty to disable.
|
|
2010
2010
|
*/
|
|
2011
2011
|
max_hydrophobic_fraction?: number;
|
|
2012
2012
|
}
|
|
@@ -2046,9 +2046,9 @@ export declare namespace DesignStartResponse {
|
|
|
2046
2046
|
*/
|
|
2047
2047
|
excluded_sequence_motifs?: Array<string>;
|
|
2048
2048
|
/**
|
|
2049
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
2050
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
2051
|
-
* empty to disable.
|
|
2049
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
2050
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
2051
|
+
* scoring. Leave empty to disable.
|
|
2052
2052
|
*/
|
|
2053
2053
|
max_hydrophobic_fraction?: number;
|
|
2054
2054
|
}
|
|
@@ -2716,9 +2716,9 @@ export declare namespace DesignStopResponse {
|
|
|
2716
2716
|
*/
|
|
2717
2717
|
excluded_sequence_motifs?: Array<string>;
|
|
2718
2718
|
/**
|
|
2719
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
2720
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
2721
|
-
* empty to disable.
|
|
2719
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
2720
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
2721
|
+
* scoring. Leave empty to disable.
|
|
2722
2722
|
*/
|
|
2723
2723
|
max_hydrophobic_fraction?: number;
|
|
2724
2724
|
}
|
|
@@ -3010,9 +3010,9 @@ export declare namespace DesignStopResponse {
|
|
|
3010
3010
|
*/
|
|
3011
3011
|
excluded_sequence_motifs?: Array<string>;
|
|
3012
3012
|
/**
|
|
3013
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
3014
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
3015
|
-
* empty to disable.
|
|
3013
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
3014
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
3015
|
+
* scoring. Leave empty to disable.
|
|
3016
3016
|
*/
|
|
3017
3017
|
max_hydrophobic_fraction?: number;
|
|
3018
3018
|
}
|
|
@@ -3052,9 +3052,9 @@ export declare namespace DesignStopResponse {
|
|
|
3052
3052
|
*/
|
|
3053
3053
|
excluded_sequence_motifs?: Array<string>;
|
|
3054
3054
|
/**
|
|
3055
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
3056
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
3057
|
-
* empty to disable.
|
|
3055
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
3056
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
3057
|
+
* scoring. Leave empty to disable.
|
|
3058
3058
|
*/
|
|
3059
3059
|
max_hydrophobic_fraction?: number;
|
|
3060
3060
|
}
|
|
@@ -3683,9 +3683,9 @@ export declare namespace DesignEstimateCostParams {
|
|
|
3683
3683
|
*/
|
|
3684
3684
|
excluded_sequence_motifs?: Array<string>;
|
|
3685
3685
|
/**
|
|
3686
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
3687
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
3688
|
-
* empty to disable.
|
|
3686
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
3687
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
3688
|
+
* scoring. Leave empty to disable.
|
|
3689
3689
|
*/
|
|
3690
3690
|
max_hydrophobic_fraction?: number;
|
|
3691
3691
|
}
|
|
@@ -3977,9 +3977,9 @@ export declare namespace DesignEstimateCostParams {
|
|
|
3977
3977
|
*/
|
|
3978
3978
|
excluded_sequence_motifs?: Array<string>;
|
|
3979
3979
|
/**
|
|
3980
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
3981
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
3982
|
-
* empty to disable.
|
|
3980
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
3981
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
3982
|
+
* scoring. Leave empty to disable.
|
|
3983
3983
|
*/
|
|
3984
3984
|
max_hydrophobic_fraction?: number;
|
|
3985
3985
|
}
|
|
@@ -4019,9 +4019,9 @@ export declare namespace DesignEstimateCostParams {
|
|
|
4019
4019
|
*/
|
|
4020
4020
|
excluded_sequence_motifs?: Array<string>;
|
|
4021
4021
|
/**
|
|
4022
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
4023
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
4024
|
-
* empty to disable.
|
|
4022
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
4023
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
4024
|
+
* scoring. Leave empty to disable.
|
|
4025
4025
|
*/
|
|
4026
4026
|
max_hydrophobic_fraction?: number;
|
|
4027
4027
|
}
|
|
@@ -4636,9 +4636,9 @@ export declare namespace DesignStartParams {
|
|
|
4636
4636
|
*/
|
|
4637
4637
|
excluded_sequence_motifs?: Array<string>;
|
|
4638
4638
|
/**
|
|
4639
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
4640
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
4641
|
-
* empty to disable.
|
|
4639
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
4640
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
4641
|
+
* scoring. Leave empty to disable.
|
|
4642
4642
|
*/
|
|
4643
4643
|
max_hydrophobic_fraction?: number;
|
|
4644
4644
|
}
|
|
@@ -4930,9 +4930,9 @@ export declare namespace DesignStartParams {
|
|
|
4930
4930
|
*/
|
|
4931
4931
|
excluded_sequence_motifs?: Array<string>;
|
|
4932
4932
|
/**
|
|
4933
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
4934
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
4935
|
-
* empty to disable.
|
|
4933
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
4934
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
4935
|
+
* scoring. Leave empty to disable.
|
|
4936
4936
|
*/
|
|
4937
4937
|
max_hydrophobic_fraction?: number;
|
|
4938
4938
|
}
|
|
@@ -4972,9 +4972,9 @@ export declare namespace DesignStartParams {
|
|
|
4972
4972
|
*/
|
|
4973
4973
|
excluded_sequence_motifs?: Array<string>;
|
|
4974
4974
|
/**
|
|
4975
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
4976
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
4977
|
-
* empty to disable.
|
|
4975
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
4976
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
4977
|
+
* scoring. Leave empty to disable.
|
|
4978
4978
|
*/
|
|
4979
4979
|
max_hydrophobic_fraction?: number;
|
|
4980
4980
|
}
|
|
@@ -468,9 +468,9 @@ export namespace DesignRetrieveResponse {
|
|
|
468
468
|
excluded_sequence_motifs?: Array<string>;
|
|
469
469
|
|
|
470
470
|
/**
|
|
471
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
472
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
473
|
-
* empty to disable.
|
|
471
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
472
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
473
|
+
* scoring. Leave empty to disable.
|
|
474
474
|
*/
|
|
475
475
|
max_hydrophobic_fraction?: number;
|
|
476
476
|
}
|
|
@@ -831,9 +831,9 @@ export namespace DesignRetrieveResponse {
|
|
|
831
831
|
excluded_sequence_motifs?: Array<string>;
|
|
832
832
|
|
|
833
833
|
/**
|
|
834
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
835
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
836
|
-
* empty to disable.
|
|
834
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
835
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
836
|
+
* scoring. Leave empty to disable.
|
|
837
837
|
*/
|
|
838
838
|
max_hydrophobic_fraction?: number;
|
|
839
839
|
}
|
|
@@ -879,9 +879,9 @@ export namespace DesignRetrieveResponse {
|
|
|
879
879
|
excluded_sequence_motifs?: Array<string>;
|
|
880
880
|
|
|
881
881
|
/**
|
|
882
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
883
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
884
|
-
* empty to disable.
|
|
882
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
883
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
884
|
+
* scoring. Leave empty to disable.
|
|
885
885
|
*/
|
|
886
886
|
max_hydrophobic_fraction?: number;
|
|
887
887
|
}
|
|
@@ -2134,9 +2134,9 @@ export namespace DesignStartResponse {
|
|
|
2134
2134
|
excluded_sequence_motifs?: Array<string>;
|
|
2135
2135
|
|
|
2136
2136
|
/**
|
|
2137
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
2138
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
2139
|
-
* empty to disable.
|
|
2137
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
2138
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
2139
|
+
* scoring. Leave empty to disable.
|
|
2140
2140
|
*/
|
|
2141
2141
|
max_hydrophobic_fraction?: number;
|
|
2142
2142
|
}
|
|
@@ -2497,9 +2497,9 @@ export namespace DesignStartResponse {
|
|
|
2497
2497
|
excluded_sequence_motifs?: Array<string>;
|
|
2498
2498
|
|
|
2499
2499
|
/**
|
|
2500
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
2501
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
2502
|
-
* empty to disable.
|
|
2500
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
2501
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
2502
|
+
* scoring. Leave empty to disable.
|
|
2503
2503
|
*/
|
|
2504
2504
|
max_hydrophobic_fraction?: number;
|
|
2505
2505
|
}
|
|
@@ -2545,9 +2545,9 @@ export namespace DesignStartResponse {
|
|
|
2545
2545
|
excluded_sequence_motifs?: Array<string>;
|
|
2546
2546
|
|
|
2547
2547
|
/**
|
|
2548
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
2549
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
2550
|
-
* empty to disable.
|
|
2548
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
2549
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
2550
|
+
* scoring. Leave empty to disable.
|
|
2551
2551
|
*/
|
|
2552
2552
|
max_hydrophobic_fraction?: number;
|
|
2553
2553
|
}
|
|
@@ -3368,9 +3368,9 @@ export namespace DesignStopResponse {
|
|
|
3368
3368
|
excluded_sequence_motifs?: Array<string>;
|
|
3369
3369
|
|
|
3370
3370
|
/**
|
|
3371
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
3372
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
3373
|
-
* empty to disable.
|
|
3371
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
3372
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
3373
|
+
* scoring. Leave empty to disable.
|
|
3374
3374
|
*/
|
|
3375
3375
|
max_hydrophobic_fraction?: number;
|
|
3376
3376
|
}
|
|
@@ -3731,9 +3731,9 @@ export namespace DesignStopResponse {
|
|
|
3731
3731
|
excluded_sequence_motifs?: Array<string>;
|
|
3732
3732
|
|
|
3733
3733
|
/**
|
|
3734
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
3735
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
3736
|
-
* empty to disable.
|
|
3734
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
3735
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
3736
|
+
* scoring. Leave empty to disable.
|
|
3737
3737
|
*/
|
|
3738
3738
|
max_hydrophobic_fraction?: number;
|
|
3739
3739
|
}
|
|
@@ -3779,9 +3779,9 @@ export namespace DesignStopResponse {
|
|
|
3779
3779
|
excluded_sequence_motifs?: Array<string>;
|
|
3780
3780
|
|
|
3781
3781
|
/**
|
|
3782
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
3783
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
3784
|
-
* empty to disable.
|
|
3782
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
3783
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
3784
|
+
* scoring. Leave empty to disable.
|
|
3785
3785
|
*/
|
|
3786
3786
|
max_hydrophobic_fraction?: number;
|
|
3787
3787
|
}
|
|
@@ -4549,9 +4549,9 @@ export namespace DesignEstimateCostParams {
|
|
|
4549
4549
|
excluded_sequence_motifs?: Array<string>;
|
|
4550
4550
|
|
|
4551
4551
|
/**
|
|
4552
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
4553
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
4554
|
-
* empty to disable.
|
|
4552
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
4553
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
4554
|
+
* scoring. Leave empty to disable.
|
|
4555
4555
|
*/
|
|
4556
4556
|
max_hydrophobic_fraction?: number;
|
|
4557
4557
|
}
|
|
@@ -4912,9 +4912,9 @@ export namespace DesignEstimateCostParams {
|
|
|
4912
4912
|
excluded_sequence_motifs?: Array<string>;
|
|
4913
4913
|
|
|
4914
4914
|
/**
|
|
4915
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
4916
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
4917
|
-
* empty to disable.
|
|
4915
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
4916
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
4917
|
+
* scoring. Leave empty to disable.
|
|
4918
4918
|
*/
|
|
4919
4919
|
max_hydrophobic_fraction?: number;
|
|
4920
4920
|
}
|
|
@@ -4960,9 +4960,9 @@ export namespace DesignEstimateCostParams {
|
|
|
4960
4960
|
excluded_sequence_motifs?: Array<string>;
|
|
4961
4961
|
|
|
4962
4962
|
/**
|
|
4963
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
4964
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
4965
|
-
* empty to disable.
|
|
4963
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
4964
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
4965
|
+
* scoring. Leave empty to disable.
|
|
4966
4966
|
*/
|
|
4967
4967
|
max_hydrophobic_fraction?: number;
|
|
4968
4968
|
}
|
|
@@ -5709,9 +5709,9 @@ export namespace DesignStartParams {
|
|
|
5709
5709
|
excluded_sequence_motifs?: Array<string>;
|
|
5710
5710
|
|
|
5711
5711
|
/**
|
|
5712
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
5713
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
5714
|
-
* empty to disable.
|
|
5712
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
5713
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
5714
|
+
* scoring. Leave empty to disable.
|
|
5715
5715
|
*/
|
|
5716
5716
|
max_hydrophobic_fraction?: number;
|
|
5717
5717
|
}
|
|
@@ -6072,9 +6072,9 @@ export namespace DesignStartParams {
|
|
|
6072
6072
|
excluded_sequence_motifs?: Array<string>;
|
|
6073
6073
|
|
|
6074
6074
|
/**
|
|
6075
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
6076
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
6077
|
-
* empty to disable.
|
|
6075
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
6076
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
6077
|
+
* scoring. Leave empty to disable.
|
|
6078
6078
|
*/
|
|
6079
6079
|
max_hydrophobic_fraction?: number;
|
|
6080
6080
|
}
|
|
@@ -6120,9 +6120,9 @@ export namespace DesignStartParams {
|
|
|
6120
6120
|
excluded_sequence_motifs?: Array<string>;
|
|
6121
6121
|
|
|
6122
6122
|
/**
|
|
6123
|
-
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W) in
|
|
6124
|
-
* regions. Designs exceeding this threshold are filtered out before
|
|
6125
|
-
* empty to disable.
|
|
6123
|
+
* Maximum allowed fraction of hydrophobic residues (I, L, V, M, F, W, Y) in
|
|
6124
|
+
* designed regions. Designs exceeding this threshold are filtered out before
|
|
6125
|
+
* scoring. Leave empty to disable.
|
|
6126
6126
|
*/
|
|
6127
6127
|
max_hydrophobic_fraction?: number;
|
|
6128
6128
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.39.
|
|
1
|
+
export const VERSION = '0.39.2'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.39.
|
|
1
|
+
export declare const VERSION = "0.39.2";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.39.
|
|
1
|
+
export declare const VERSION = "0.39.2";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.39.
|
|
1
|
+
export const VERSION = '0.39.2'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|