-
Notifications
You must be signed in to change notification settings - Fork 323
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
ROOM implementation (Regulatory on/off minimization of metabolic flux changes) #1425
Conversation
src/analysis/ROOM/ROOM.m
Outdated
addRequired(p, 'WTflux', @(x)isnumeric(x)&&isvector(x)); | ||
addRequired(p, 'rxnKO', @(x)iscell(x)); | ||
% Check optional arguments | ||
addOptional(p, 'delta', 0.03, @(x)isnumeric(x)&&isscalar(x)); |
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.
is it intentional, that these are positioned optional arguments instead of parameters?
The same applies to the linearROOM version.
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.
Thanks @tpfau for the comment. When I first wrote the code I considered they were more used a, as they are part of the mathematical model. I will change them to paramenters.
Codecov Report
@@ Coverage Diff @@
## develop #1425 +/- ##
===========================================
+ Coverage 44.42% 44.43% +0.01%
===========================================
Files 902 904 +2
Lines 64592 64679 +87
===========================================
+ Hits 28693 28740 +47
- Misses 35899 35939 +40
Continue to review full report at Codecov.
|
Thanks @lvalcarcel and @tpfau 👍 |
Implementation of ROOM (Regulatory on/off minimization of metabolic flux changes) using COBRA functionalities.
Shlomi, Tomer, Omer Berkman, and Eytan Ruppin. "Regulatory on/off minimization of metabolic flux changes after genetic perturbations." Proceedings of the National Academy of Sciences 102.21 (2005): 7695-7700.
The main article can be found in: https://www.pnas.org/content/102/21/7695.short
I hereby confirm that I have:
develop
as a target branch (top left drop-down menu)(Note: You may replace [ ] with [X] to check the box)