-
Notifications
You must be signed in to change notification settings - Fork 5
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
Fluxes Optimization with Evolutionary Algorithms #62
Comments
This is the right place to ask these questions. To maximise the flux of a Reaction say |
Thank you, I was able to get it running. |
One more question, is it possible to limit the number of mutations when optimizing metabolic fluxes? For example, finding solutions where only 5 or less parameters were modified? From the results I got from my testing run it looks like a lot more parameters are altered, but while solutions obtained have a better fit, they would be impractical to implement in a strain. |
There is no way to specify that for the optimization algorithms. In that case it would be best to run an optimization with only those parameters that would be feasible to do. Or first run a sensitivity analysis for the parameters you selected, to see which one have more impact on the desired flux, and then only select those. |
Hello,
I am working on a task using a kinetic SBML model to optimize the flux of a reaction. I used basico package in order to add my reactions and parameters to the model, but got stuck on the optimization task itself, specifically on how to set up the objective function, I am sorry to bother you if this isn't the right place for these questions, I read the optimization notebook in docs but I wasn't able to solve the problem. Specifically, how to write the expression in
set_objective_function(expression='Values[f].InitialValue', maximize=True)
in order to maximize a flux?How exactly do I set a flux as the maximization objective function and how to create the list of targets for optimization (Ki, Km and Vmax in my case)?
I want to implement this as a script, as such I prefer doing it in basico instead of the GUI COPASI.
Any help is appreciated :)
The text was updated successfully, but these errors were encountered: