rust_sbml 0.7.0

A parser for SBML
Documentation
1
2
3
4
5
6
7
use rust_sbml::Model;

fn main() {
    let file_str = std::fs::read_to_string("examples/EcoliCore.xml").unwrap();
    let res = Model::parse(&file_str);
    println!("{:?}", res.unwrap());
}