opensmiles 0.1.3

A SMILES parser following the OpenSMILES specification
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod aromaticity;
mod atom;
mod bond;
mod chirality;
mod element_data;
pub mod graph;
mod molecule;
mod node;

pub use self::atom::*;
pub use self::bond::*;
pub use self::chirality::*;
pub use self::element_data::*;
pub use self::graph::*;
pub use self::molecule::*;
pub use self::node::*;