-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: fixed enzyme optimization with Kcat fitness function #237
Conversation
Signed-off-by: Cloud User <[email protected]>
Thank you for your pull request and welcome to our community. We could not parse the GitHub identity of the following contributors: Cloud User.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the build and address comments and then it's good to go.
@@ -5,12 +5,16 @@ | |||
from gt4sd.configuration import GT4SDConfiguration, sync_algorithm_with_s3 | |||
|
|||
|
|||
def initialize_environment(): | |||
def initialize_environment(model = "feasibility"): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typing and docstring missing, please add
top_k: int = 2, | ||
selection_ratio: float = 0.5, | ||
perform_crossover: bool = False, | ||
crossover_type: str = "uniform", | ||
minimum_interval_length: int = 8, | ||
pad_intervals: bool = False, | ||
concat_order=["sequence", "substrate", "product"], | ||
scaler_filepath: Optional[str] = None, | ||
fitness_kcat: Optional[bool] = False, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rename the parameter to something more generic
Signed-off-by: yvesnana <[email protected]>
Thank you for your pull request and welcome to our community. We could not parse the GitHub identity of the following contributors: Cloud User.
|
Signed-off-by: yvesnana <[email protected]>
Thank you for your pull request and welcome to our community. We could not parse the GitHub identity of the following contributors: Cloud User.
|
Resolved inconsistencies in core.py and updated the example file to ensure accurate execution of optimization with the KCAT fitness model.