| Crates.io | sbml |
| lib.rs | sbml |
| version | 0.2.2 |
| created_at | 2020-04-18 15:32:05.292634+00 |
| updated_at | 2020-04-18 17:03:49.211251+00 |
| description | A parser for SBML |
| homepage | |
| repository | https://github.com/jlricon/sbml |
| max_upload_size | |
| id | 231559 |
| size | 26,247 |
This is a parser for the Systems Biology Markup Language (SBML).
Very early stage! I also wrote a companion MathML parser that this crate uses.
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);