printUptakeBound Print substrate uptake bounds uptakeInd = printUptakeBound(model) INPUTS model CORBRA model structure OUTPUTS upInd Vector containing indecies of uptake reactions Returns the indices to the substrate uptake reactions and prints the bounds Markus Herrgard 6/9/06
0001 function upInd = printUptakeBound(model) 0002 %printUptakeBound Print substrate uptake bounds 0003 % 0004 % uptakeInd = printUptakeBound(model) 0005 % 0006 %INPUTS 0007 % model CORBRA model structure 0008 % 0009 %OUTPUTS 0010 % upInd Vector containing indecies of uptake reactions 0011 % 0012 % Returns the indices to the substrate uptake reactions and prints the 0013 % bounds 0014 % 0015 % Markus Herrgard 6/9/06 0016 0017 [selExc,selUptake] = findExcRxns(model,false,false); 0018 printLabeledData(model.rxns(selUptake),model.lb(selUptake)); 0019 0020 upInd = find(selUptake);