Crates.io Documentation Build Codecov

A parser for SBML

This is a parser for the Systems Biology Markup Language (SBML).

Example

rust let example=r#"<?xml version="1.0" encoding="UTF-8"?> <sbml xmlns="http://www.sbml.org/sbml/level3/version2/core" level="3" version="2"> <model timeUnits="second" extentUnits="mole" substanceUnits="mole"> </model> </sbml>"#; let result = parse_document(example);