ANMD simulations¶
Copyright (c) 2020-2022 Burak Kaynak, Pemra Doruker.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
runANMD
(atoms, num_modes=2, max_rmsd=2.0, num_steps=5, tolerance=10.0, **kwargs)[source]¶ Runs the ANMD hybrid simulation method ([CM22]), which generates conformations along single modes using
traverseModes()
and minimises them.The first non-zero mode is scaled to max_rmsd and the remaining modes are scaled accordingly using their eigenvalues.
kwargs of traverseMode can be provided: pos, neg and reverse
Parameters: - atoms (
Atomic
) – an object with atom and coordinate data. This should be a complete atomic model. It is ok to be missing some side chain atoms and hydrogens, but not fragments, such as loops. - num_modes (int) – number of modes to calculate Default is 2
- max_rmsd (float) – maximum rmsd for non-zero mode 1 Default is 2.
- num_steps (int) – number of conformers in each direction for each mode Default is 5
- tolerance (float) – tolerance for energy minimisation in OpenMM in kilojoule/mole/nanometer. Default is 10 as in OpenMM
- skip_modes (int) – number of modes to skip Default is 0
- anm (
NMA
,ANM
,ModeSet
) – your own NMA modes or ModeSet to use instead Default is None
[CM22] Mary Hongying Cheng, James M Krieger, Anupam Banerjee, Yufei Xiang, Burak Kaynak, Yi Shi, Moshe Arditi, Ivet Bahar. Impact of new variants on SARS-CoV-2 infectivity and neutralization: A molecular assessment of the alterations in the spike-host protein interactions. iScience 2022 25(3):103939. - atoms (