molstar
Version:
A comprehensive macromolecular library.
30 lines (29 loc) • 966 B
JavaScript
/**
* Copyright (c) 2025 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author David Sehnal <david.sehnal@gmail.com>
*/
import { InteractionType } from '../../mol-model-props/computed/interactions/common.js';
export const InteractionKinds = [
'unknown',
'ionic',
'pi-stacking',
'cation-pi',
'halogen-bond',
'hydrogen-bond',
'weak-hydrogen-bond',
'hydrophobic',
'metal-coordination',
'covalent',
];
export const InteractionTypeToKind = {
[]: 'unknown',
[]: 'ionic',
[]: 'cation-pi',
[]: 'pi-stacking',
[]: 'hydrogen-bond',
[]: 'halogen-bond',
[]: 'hydrophobic',
[]: 'metal-coordination',
[]: 'weak-hydrogen-bond',
};