-
Notifications
You must be signed in to change notification settings - Fork 54
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
RAVEN 2.9.0 #538
Merged
RAVEN 2.9.0 #538
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fix: simplifyModel w/ backwards-only irrev rxns fix: writeYAMLmodel do not write empty lines fix: getModelFromKEGG essential fields feat: printFluxes better error with empty fluxes fix: getGenesFromGrRules if '|' in gene fix: getGenesFromGrRules correct earlier fix fix: getModelFromHomology remove geneFrom field refactor: reduce default verbosity fix: writeYAMLmodel allow empty id and name fields doc: updateDocumentation fix: ravenCobraWrapper prefers to use grRules feat: optimizeProb error solving milp with glpk fix: adjust tests to separate solvers fix: writeYAMLmodel error if dir does not exist feat: parallel randomSampling and new progressbar2 feat: setParam has 'unc' as option for unconstrained reactions feat: parallelPoolRAVEN handles parallelization feat: use alternative ProgressBar function works both when parfor is run in parallel or in serial, without any further changes to the code refactor: predictLocalization builtin randsample fix: mapCompartments correct horizontal concatenation also updated documentation feat: give execution rights in Terminal for new RAVEN functions doc: update GLPK readme file feat: add GLPK compatibility with Apple Silicon
* fix: importModel handle invalid SBOterms * chore: updateDocumentation * feat: importModel sboTerm priority over MIRIAM * fix: importModel only one sboTerm
* fix: remove old soplex binaries * fix: remove old references to soplex * fix: parallalPoolRaven avoid cmd window output * fix: randomSampling allow nsamples = 0 useful if you only want to gather the goodRxns structure
This PR has been automatically tested with GH Actions. Here is the output of the tests: > Installing from location /home/m/actions-runner/_work/RAVEN/RAVEN
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Main improvements in this PR:
simplifyModel
with irreversible backwards-only reactions (solves bug: simplifyModel with irreversible backwards-only reactions #529)writeYAMLmodel
do not write lines with empty entries (e.g. reactions without subsystems)getModelFromKEGG
includesmodel.annotation.defaultLB
andmodel.annotation.defaultUB
fieldsgetGenesFromGrRules
can handle genes with '|'getModelFromHomology
remove geneFrom field (solves Error in getModelFromHomology function #533)getMinNrFluxes
reduce default verbositywriteYAMLmodel
allow empty id and name fields, in line with https://github.com/SysBioChalmers/RAVEN/wiki/RAVEN-Model-StructureravenCobraWrapper
prefers to use grRules in COBRA models if present (solves GECKO issue #367)optimizeProb
will throw error when trying to solve MILP with glpk (also if glpk is set via cobra)writeYAMLmodel
will throw an informative error if it cannot write the file to the intended directorymapCompartments
correct horizontal concatenation of cell arraycheckInstallation
during first installation on unix machines,makeBinaryExecutables
threw an error.importModel
correctly parses SBML file that has some missing SBO termsrandomSampling
can run in parallel with MATLAB Parallel Computing Toolbox installedsetParam
has an additional option, 'unc' if a reaction's lower and upper bound should be set as unconstrained. If available, this will use the default bounds inmodel.annotation
(otherwise [-1000, 1000]), and considers reversibility (in which case lower bound = 0)parallelPoolRAVEN
function to check if function should be running in parallelparfor
callsparallelPoolRaven
.randomSampling
withnsamples
set to 0, to only getgoodRxns
.Instructions on merging this PR:
develop
as target branch, and will be resolved with a squash-merge.main
as target branch, and will be resolved with a merge commit.