writeCbToSBML write a COBRA model to SBML writeCbToSBML(model,fileName) INPUTS model COBRA model structure fileName Name of xml file output
0001 function writeCbToSBML(model,fileName) 0002 %writeCbToSBML write a COBRA model to SBML 0003 % 0004 % writeCbToSBML(model,fileName) 0005 % 0006 %INPUTS 0007 % model COBRA model structure 0008 % fileName Name of xml file output 0009 % 0010 sbmlModel = convertCobraToSBML(model); 0011 OutputSBML(sbmlModel, fileName);