4个版本
0.2.2 | 2023年5月2日 |
---|---|
0.2.1 | 2021年11月8日 |
0.2.0 | 2021年9月7日 |
0.1.0 | 2021年9月7日 |
294 在 科学
每月98次下载
600KB
15K SLoC
coordgen-rs
对coordgen的轻量级封装。
此crate提供了两个函数,用于与libcoordgen
接口,根据分子的连接性生成2D坐标。此crate的目的是简单地生成坐标,它本身不执行任何绘图功能。
需要CMake
版本3.2或更高版本,一个Boost
安装,一个支持c++
的编译器,支持c++11
。这些要求是从原始项目继承而来的。此项目在Windows上无法编译。
此crate未获得coordgen
原始作者的认可或支持。
分子图
分子图可以以几种不同的方式表示。此crate采用一种有见地的定义,其中分子图是无向简单图,原子序数作为节点标签,键多重性作为边标签。
实现
此实现定义了一个简单的包装函数,具有类似于C的接口,实际上是coordgen
存储库中的示例的修改版本。此包装器不允许进行任何配置。
版本管理
crate版本 | coordgen 版本 |
---|---|
^0.1.0 |
2.0.3 |
示例
// this corresponds to an equivalent to the example in
// https://github.com/schrodinger/coordgenlibs/blob/master/example_dir/example.cpp
// the molecule has a carbon (idx 0) and a nitrogen (idx 1)
let atoms = vec![6u8, 7];
// it has one single bond connecting the two atoms with
let bonds = vec![[0u16, 1, 1]];
let coords = coordgen::gen_coords(&atoms, &bonds).unwrap();
assert_eq!(coords, vec![(-50.0, 0.0), (0.0, 0.0)])