NuriKit v0.1.0b2
Loading...
Searching...
No Matches
chimera.h
Go to the documentation of this file.
1//
2// Project NuriKit - Copyright 2026 SNU Compbio Lab.
3// SPDX-License-Identifier: Apache-2.0
4//
5
6#ifndef NURI_TOOLS_CHIMERA_H_
7#define NURI_TOOLS_CHIMERA_H_
8
9#include <Eigen/Dense>
10
11#include "nuri/eigen_config.h"
12
13namespace nuri {
14struct MmResult {
15 Isometry3d xform;
16 ArrayXi sel;
17 double msd;
18};
19
45extern MmResult match_maker(ConstRef<Matrix3Xd> query,
46 ConstRef<Matrix3Xd> templ, double cutoff = 2.0,
47 double global_ratio = 0.1, double viol_ratio = 0.5);
48} // namespace nuri
49
50#endif /* NURI_TOOLS_CHIMERA_H_ */
Definition crdgen.h:16
MmResult match_maker(ConstRef< Matrix3Xd > query, ConstRef< Matrix3Xd > templ, double cutoff=2.0, double global_ratio=0.1, double viol_ratio=0.5)
Match-Maker algorithm for structural alignment of two 3D point clouds.
Definition chimera.h:14
Isometry3d xform
Definition chimera.h:15
ArrayXi sel
Definition chimera.h:16
double msd
Definition chimera.h:17