molstar
Version:
A comprehensive macromolecular library.
30 lines (29 loc) • 963 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';
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',
};