dreid-typer 0.5.0

A pure Rust library for DREIDING atom typing and molecular topology perception.
Documentation
1
2
3
4
5
6
7
8
9
//! Hosts the DREIDING typing pipeline, including rule parsing and rule application engines.
//!
//! This namespace exposes the rule schema (`rules`) and the iterative assignment engine
//! (`engine`) used by `assign_topology`.

/// Typing engine that evaluates rules over annotated molecules.
pub mod engine;
/// Rule definitions and parsing utilities.
pub mod rules;