sbml

Crates.iosbml
lib.rssbml
version0.2.2
sourcesrc
created_at2020-04-18 15:32:05.292634
updated_at2020-04-18 17:03:49.211251
descriptionA parser for SBML
homepage
repositoryhttps://github.com/jlricon/sbml
max_upload_size
id231559
size26,247
Jose Luis Ricon (jlricon)

documentation

https://docs.rs/sbml/

README

Crates.io Documentation Build Codecov

A parser for SBML

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.

Example

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);
Commit count: 6

cargo fmt