bigsmiles 0.1.3

A BigSMILES parser for polymer and macromolecule notation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! AST types for the BigSMILES line notation.
//!
//! The central type is [`BigSmiles`], a sequence of [`BigSmilesSegment`]s that
//! alternate between plain SMILES fragments and [`StochasticObject`]s.

mod bigsmiles;
mod bond_descriptor;
mod stochastic_fragment;
mod stochastic_object;

pub use bigsmiles::{BigSmiles, BigSmilesSegment};
pub use bond_descriptor::{BondDescriptor, BondDescriptorKind};
pub use stochastic_fragment::StochasticFragment;
pub use stochastic_object::StochasticObject;