molcrafts-molrs-core 0.1.0

MolCrafts molecular modeling core library
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Embedded data files shipped with molrs-core.
//!
//! The MMFF94 parameter XML is compiled into the binary so callers never need
//! to locate a file on disk.

/// MMFF94 parameter XML (embedded at compile time).
pub const MMFF94_XML: &str = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/data/mmff94.xml"));

/// MMFF94s parameter XML (embedded at compile time).
pub const MMFF94S_XML: &str =
    include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/data/mmff94s.xml"));