CL-SBML: Standard Generic Function LOAD-SBML
 

Generic function LOAD-SBML

Package:

CL-SBML

Syntax:

  load-sbml source
  => cl-xml-root-object
  

Arguments and Values:

source---an object

cl-xml-root-object---a CL-XML node

Description:

The generic function LOAD-SBML parses a SBML document using the CL-XML library. It takes one parameter, source, where to load a model, and returns a CL-XML cl-xml-root-object of type XQDM:DOC-NODE.

Known Methods:

  •   load-sbml (source pathname)
      => cl-xml-root-object
      

    This method dispatches on the argument source being a PATHNAME.

  •   load-sbml (source string)
      => cl-xml-root-object
      

    This method dispatches on the argument source being a STRING. In this case sbml-string contains the SBML model itself. The argument will not be interpreted as a file name.

  •   load-sbml (source stream)
      => cl-xml-root-object
      

    This method dispatches on the argument source being a STREAM. Eventually the STRING and PATHNAME methods call this method.

Affected By:

None.

Exceptional Situations:

None per se, but the underlying machinery may signal variuos conditions, mostly related to file and streams I/O and to XML parsing.

See Also:

BUILD-MODEL-FROM-SBML

Notes:

None.

 

News

News in chronological order, most recent on top.

  • 2004-04-12
    Completed description.