Skip to content

How to create seed and targets files in sbml format? #27

Answered by sthiele
brunorbqi asked this question in Q&A
Discussion options

You must be logged in to vote

SBML are XML files that have a section listOfSpecies, there you can list all your seed metabolites (see below). For more info about SBML see https://sbml.org/documents/.

<?xml version="1.0" encoding="UTF-8"?>
<sbml xmlns="http://www.sbml.org/sbml/level2" level="2" version="1">
<model id="EsiCyc">
  <listOfCompartments>
    <compartment id="CCO__45__EXTRACELLULAR"/>
    <compartment id="CCO__45__CYTOSOL"/>
    <compartment id="CCO__45__OUT"/>
  </listOfCompartments>
  <listOfSpecies>
    <species id="Acceptor" compartment="CCO__45__CYTOSOL"/> 
    <species id="ACP" compartment="CCO__45__CYTOSOL"/> 
    <species id="ADP" compartment="CCO__45__CYTOSOL"/>
    <species id="AMMONIA" compartment="

Replies: 4 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by sthiele
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
3 participants
Converted from issue

This discussion was converted from issue #23 on March 23, 2022 07:38.