We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Some models, e.g., iCHOv1 from Bigg, do not have GPR rules in DNF form. Improve the handling of such models.
import logging logging.basicConfig(level=logging.INFO) import straindesign as sd import cobra model = cobra.io.load_model('iCHOv1') module_suppress = sd.SDModule(model,sd.names.SUPPRESS,constraints='BIOMASS_cho >= 0.001') # Compute strain designs sols = sd.compute_strain_designs(model, sd_modules = module_suppress, time_limit = 300, max_solutions = 1, max_cost = 1, solution_approach = sd.names.ANY, gene_kos = True, solver='cplex')
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some models, e.g., iCHOv1 from Bigg, do not have GPR rules in DNF form. Improve the handling of such models.
The text was updated successfully, but these errors were encountered: