mimicpy 0.2.0__py3-none-any.whl → 0.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mimicpy/__init__.py +1 -1
- mimicpy/__main__.py +726 -2
- mimicpy/_authors.py +2 -2
- mimicpy/_version.py +2 -2
- mimicpy/coords/__init__.py +1 -1
- mimicpy/coords/base.py +1 -1
- mimicpy/coords/cpmdgeo.py +1 -1
- mimicpy/coords/gro.py +1 -1
- mimicpy/coords/pdb.py +1 -1
- mimicpy/core/__init__.py +1 -1
- mimicpy/core/prepare.py +3 -3
- mimicpy/core/selector.py +1 -1
- mimicpy/force_matching/__init__.py +34 -0
- mimicpy/force_matching/bonded_forces.py +628 -0
- mimicpy/force_matching/compare_top.py +809 -0
- mimicpy/force_matching/dresp.py +435 -0
- mimicpy/force_matching/nonbonded_forces.py +32 -0
- mimicpy/force_matching/opt_ff.py +2114 -0
- mimicpy/force_matching/qm_region.py +1960 -0
- mimicpy/plugins/__main_installer__.py +76 -0
- mimicpy/{__main_vmd__.py → plugins/__main_vmd__.py} +2 -2
- mimicpy/plugins/pymol.py +56 -0
- mimicpy/plugins/vmd.tcl +78 -0
- mimicpy/scripts/__init__.py +1 -1
- mimicpy/scripts/cpmd.py +1 -1
- mimicpy/scripts/fm_input.py +265 -0
- mimicpy/scripts/fmdata.py +120 -0
- mimicpy/scripts/mdp.py +1 -1
- mimicpy/scripts/ndx.py +1 -1
- mimicpy/scripts/script.py +1 -1
- mimicpy/topology/__init__.py +1 -1
- mimicpy/topology/itp.py +603 -35
- mimicpy/topology/mpt.py +1 -1
- mimicpy/topology/top.py +254 -15
- mimicpy/topology/topol_dict.py +233 -4
- mimicpy/utils/__init__.py +1 -1
- mimicpy/utils/atomic_numbers.py +1 -1
- mimicpy/utils/constants.py +17 -3
- mimicpy/utils/elements.py +1 -1
- mimicpy/utils/errors.py +1 -1
- mimicpy/utils/file_handler.py +1 -1
- mimicpy/utils/strings.py +1 -1
- mimicpy-0.3.0.dist-info/METADATA +156 -0
- mimicpy-0.3.0.dist-info/RECORD +50 -0
- {mimicpy-0.2.0.dist-info → mimicpy-0.3.0.dist-info}/WHEEL +1 -1
- mimicpy-0.3.0.dist-info/entry_points.txt +4 -0
- mimicpy-0.2.0.dist-info/METADATA +0 -86
- mimicpy-0.2.0.dist-info/RECORD +0 -38
- mimicpy-0.2.0.dist-info/entry_points.txt +0 -3
- {mimicpy-0.2.0.dist-info → mimicpy-0.3.0.dist-info/licenses}/COPYING +0 -0
- {mimicpy-0.2.0.dist-info → mimicpy-0.3.0.dist-info/licenses}/COPYING.LESSER +0 -0
- {mimicpy-0.2.0.dist-info → mimicpy-0.3.0.dist-info}/top_level.txt +0 -0
- {mimicpy-0.2.0.dist-info → mimicpy-0.3.0.dist-info}/zip-safe +0 -0
mimicpy/utils/elements.py
CHANGED
mimicpy/utils/errors.py
CHANGED
mimicpy/utils/file_handler.py
CHANGED
mimicpy/utils/strings.py
CHANGED
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mimicpy
|
|
3
|
+
Version: 0.3.0
|
|
4
|
+
Summary: Companion library to the MiMiC framework for input preparation.
|
|
5
|
+
Home-page: https://gitlab.com/mimic-project/mimicpy
|
|
6
|
+
Author: Bharath Raghavan, Florian K. Schackert, Sachin Shivakumar
|
|
7
|
+
Author-email: b.raghavan@fz-juelich.de
|
|
8
|
+
License: GNU Lesser General Public License v3 or later (LGPLv3+)
|
|
9
|
+
Project-URL: Issues, https://gitlab.com/mimic-project/mimicpy/issues
|
|
10
|
+
Project-URL: User Support, https://gitlab.com/mimic-project/user-support
|
|
11
|
+
Project-URL: Documentation, https://mimic-project.org/
|
|
12
|
+
Platform: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
17
|
+
Requires-Python: >=3.5,<3.12
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: COPYING
|
|
20
|
+
License-File: COPYING.LESSER
|
|
21
|
+
Requires-Dist: numpy>=1.12.0
|
|
22
|
+
Requires-Dist: pandas>=0.24.0
|
|
23
|
+
Requires-Dist: h5py>=3.0.0
|
|
24
|
+
Requires-Dist: mdanalysis>=2.0
|
|
25
|
+
Dynamic: author
|
|
26
|
+
Dynamic: author-email
|
|
27
|
+
Dynamic: classifier
|
|
28
|
+
Dynamic: description
|
|
29
|
+
Dynamic: description-content-type
|
|
30
|
+
Dynamic: home-page
|
|
31
|
+
Dynamic: license
|
|
32
|
+
Dynamic: license-file
|
|
33
|
+
Dynamic: platform
|
|
34
|
+
Dynamic: project-url
|
|
35
|
+
Dynamic: requires-dist
|
|
36
|
+
Dynamic: requires-python
|
|
37
|
+
Dynamic: summary
|
|
38
|
+
|
|
39
|
+
# MiMiCPy
|
|
40
|
+
MiMiCPy is the companion library to the MiMiC framework for streamline preparation of input files. It includes a suite of command line tools and plugins for PyMOL/VMD. Visit the [MiMiC homepage](https://mimic-project.org/) for more details and documentation.
|
|
41
|
+
|
|
42
|
+
## Requirements
|
|
43
|
+
|
|
44
|
+
### Python
|
|
45
|
+
- Python >= 3.5, < 3.12 (Python 3.11 and below)
|
|
46
|
+
|
|
47
|
+
### Core Dependencies
|
|
48
|
+
- pandas >= 0.24.0
|
|
49
|
+
- numpy >= 1.12.0
|
|
50
|
+
|
|
51
|
+
### Force Matching Module
|
|
52
|
+
The force matching module requires additional dependencies:
|
|
53
|
+
- h5py >= 3.0.0
|
|
54
|
+
- MDAnalysis >= 2.0
|
|
55
|
+
- GROMACS (must be installed and accessible in the system PATH)
|
|
56
|
+
|
|
57
|
+
### Optional
|
|
58
|
+
- PyMOL (for PrepQM plugin) - tested with version 2.3.4
|
|
59
|
+
- VMD (for PrepQM plugin) - tested with version 1.9.4a38
|
|
60
|
+
|
|
61
|
+
## Installation
|
|
62
|
+
To install, run the following command:
|
|
63
|
+
|
|
64
|
+
```
|
|
65
|
+
pip install mimicpy
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
The PrepQM plugins for PyMOL and/or VMD can be optionally installed by running:
|
|
69
|
+
|
|
70
|
+
```
|
|
71
|
+
mimicpy_plugin_installer -pymoldir /path/to/plugin/ -vmddir /path/to/plugin/
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
The path to the plugin is usually either the path to the PyMOL/VMD installation, or the user home directory.
|
|
75
|
+
|
|
76
|
+
## Demo
|
|
77
|
+
A demo of atom selection for the QM region, and generation of the MiMiC-based CPMD input file using MiMiCPy is shown below.
|
|
78
|
+
```console
|
|
79
|
+
user@system:~$ mimicpy prepqm -top acetone.top -coords acetone.gro
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
***** MiMiCPy *****
|
|
83
|
+
|
|
84
|
+
For more information type mimicpy [subcommand] --help
|
|
85
|
+
|
|
86
|
+
=====> Running prepqm <=====
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
**Reading topology**
|
|
90
|
+
|
|
91
|
+
Cannot find path to Gromacs installation.
|
|
92
|
+
Read atoms from acetone.itp.
|
|
93
|
+
No atoms found in acetone.top.
|
|
94
|
+
|
|
95
|
+
Some atom types had no atom numbers information.
|
|
96
|
+
They were guessed as follows:
|
|
97
|
+
|
|
98
|
+
+---------------------+
|
|
99
|
+
| Atom Type | Element |
|
|
100
|
+
+---------------------+
|
|
101
|
+
| c | C |
|
|
102
|
+
+---------------------+
|
|
103
|
+
| c3 | C |
|
|
104
|
+
+---------------------+
|
|
105
|
+
| o | O |
|
|
106
|
+
+---------------------+
|
|
107
|
+
| hc | H |
|
|
108
|
+
+---------------------+
|
|
109
|
+
|
|
110
|
+
**Reading coordinates** |Done
|
|
111
|
+
|
|
112
|
+
Please enter selection below. For more information type 'help'
|
|
113
|
+
> add resname is ACT
|
|
114
|
+
> q
|
|
115
|
+
Using default values for maxstep and timestep
|
|
116
|
+
Wrote Gromacs index file to index.ndx
|
|
117
|
+
Wrote new CPMD input script to cpmd.inp
|
|
118
|
+
|
|
119
|
+
=====> Done <=====
|
|
120
|
+
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
## Force Matching
|
|
124
|
+
|
|
125
|
+
The force matching module in MiMiCPy automates the parameterization of molecular mechanics (MM) force field parameters by fitting to reference QM/MM data. It optimizes both non-bonded interactions (atomic charges via DRESP) and bonded interactions (bonds, angles, dihedrals) to reproduce QM forces and electrostatic properties.
|
|
126
|
+
|
|
127
|
+
### Required Input Files
|
|
128
|
+
|
|
129
|
+
The force matching workflow requires the following input files:
|
|
130
|
+
|
|
131
|
+
- `-top`: GROMACS topology file (`.top`)
|
|
132
|
+
- `-sele`: QM region selection file (`.txt` or `.dat`) - specifies which atoms are in the QM region
|
|
133
|
+
- `-fmdata`: Force matching data file (`.json` or `.h5`) - contains QM/MM reference data (forces, charges, electrostatic potentials/fields)
|
|
134
|
+
- `-fi`: Force matching input file (`.dat`) - configuration file with optimization parameters
|
|
135
|
+
- `-trr`: GROMACS trajectory file (`.trr`) - trajectory from QM/MM simulation
|
|
136
|
+
- `-ndx`: GROMACS index file (`.ndx`) - atom index groups
|
|
137
|
+
- `-coords`: Coordinate file (`.gro`) - initial structure
|
|
138
|
+
- `-mdp`: GROMACS MDP file (`.mdp`, optional) - MD parameters for force recalculation
|
|
139
|
+
|
|
140
|
+
### Basic Usage
|
|
141
|
+
|
|
142
|
+
The basic force matching command is:
|
|
143
|
+
|
|
144
|
+
```console
|
|
145
|
+
mimicpy fm -top system.top -sele qm_selection.txt -fmdata fm_data.json -fi fm_input.inp -trr trajectory.trr -ndx index.ndx -coords system.gro -mdp run.mdp
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
### Common Options
|
|
149
|
+
|
|
150
|
+
- `-dresp`: Run only DRESP charge optimization (skip bonded parameter optimization)
|
|
151
|
+
- `-opt_ff`: Run only force field parameter optimization (skip DRESP, uses existing charges)
|
|
152
|
+
- `-grid_search`: Perform grid search over DRESP weight parameters (wv, we, wh)
|
|
153
|
+
- `-ff`: Path to force field data directory (optional)
|
|
154
|
+
- `-gmx`: GROMACS executable name (default: `gmx`)
|
|
155
|
+
- `-n_processes`: Number of processes for parallel force computation
|
|
156
|
+
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
mimicpy/__init__.py,sha256=hiUHelysweSgSpCFQ1mwY6iRwJxwYZSg1arfqtpnseY,1480
|
|
2
|
+
mimicpy/__main__.py,sha256=wAUmbIXx89wIQucY2W623dlZ5N19YFCF3y1vATk5nUM,63840
|
|
3
|
+
mimicpy/_authors.py,sha256=E5jp9evBsXwI6xaDYHM1m4qcDFgLNPewQNMF5b3wsiI,926
|
|
4
|
+
mimicpy/_version.py,sha256=HVtndh_CBdc9PEo1kuoJhG0Rr9kI7t5R3ncZYuUoktI,877
|
|
5
|
+
mimicpy/coords/__init__.py,sha256=4C_srP9E0UB3VJb-iGerR869xn3l2CAyER7ZcB1QZTI,853
|
|
6
|
+
mimicpy/coords/base.py,sha256=_QslEV0z9b9X1QsAEY8dFoDnlVTcGgxM2MLSxtFx2eU,4805
|
|
7
|
+
mimicpy/coords/cpmdgeo.py,sha256=S8xX7DFOeBwFCrEECJH_lMfGWl9daXYEKwwx5o3QW2c,3853
|
|
8
|
+
mimicpy/coords/gro.py,sha256=WUQ1KAin2KUJsSLqjVxDMTfy2dRIDUZQLqqPgTian7s,3254
|
|
9
|
+
mimicpy/coords/pdb.py,sha256=-jXqkz2UCNVSh3pn_HGMrDhByn8XSDDDBPqtwIXm-3c,5431
|
|
10
|
+
mimicpy/core/__init__.py,sha256=C2QsBXrA7OIMsYWCDmqSJBDE0Y2xlxkmMzq2goBU1T0,855
|
|
11
|
+
mimicpy/core/prepare.py,sha256=-Y91gfj17cSkc3C4zaIS89CK57g_E4iu0i4irRJWjrk,12781
|
|
12
|
+
mimicpy/core/selector.py,sha256=DWPDyI74TfWn7yVbH4Ie39LYC2c44TTIHC03D08I8dU,8500
|
|
13
|
+
mimicpy/force_matching/__init__.py,sha256=VROwc4sd5s6OdKzs6obUanXDhI8bDLO4rOSESq7H0BQ,778
|
|
14
|
+
mimicpy/force_matching/bonded_forces.py,sha256=0fuxID4d-QfvH-EPLk8cMXomdn4B1UKQ6VQreajQHT4,25378
|
|
15
|
+
mimicpy/force_matching/compare_top.py,sha256=vOkCVjG-LI9LXaH69-4jvoiqHhMJvFAubFxLo8ZZbJk,36689
|
|
16
|
+
mimicpy/force_matching/dresp.py,sha256=Zo_tpxTRoHiNrWpdLSaBTzic9EFeg63y4EotBBkFA8k,17570
|
|
17
|
+
mimicpy/force_matching/nonbonded_forces.py,sha256=ZSuLgbmEn8mUbbdccLLQlQa9iFg4b-grJ2_ypt61I-Y,978
|
|
18
|
+
mimicpy/force_matching/opt_ff.py,sha256=n2chvfE6urdXtTo6QkxZZd8geNrNT1L9ycJ1uYiB1R8,90764
|
|
19
|
+
mimicpy/force_matching/qm_region.py,sha256=SRE8UnltRyeY3HeY_zZ5BPPwjq-82ioyWyFV-7FKIoM,98071
|
|
20
|
+
mimicpy/plugins/__main_installer__.py,sha256=i3RZ-oCWHo3ukkS2-DeqRYFxjGQdyPO2F1hzFQcFtVA,2635
|
|
21
|
+
mimicpy/plugins/__main_vmd__.py,sha256=M92NrIyJWhFPxbTKhHbtrfW6Gu0T4Czake8ocpN-3Ac,5623
|
|
22
|
+
mimicpy/plugins/pymol.py,sha256=YdEapIvKlbE3Qo5KuSFI66Kz6hNnaSacdCGsH9MH9FM,2023
|
|
23
|
+
mimicpy/plugins/vmd.tcl,sha256=5vc7tKCZhOfzjsDjtjh2lEyxKHl4101_tMQZqCw4LAY,2591
|
|
24
|
+
mimicpy/scripts/__init__.py,sha256=C2QsBXrA7OIMsYWCDmqSJBDE0Y2xlxkmMzq2goBU1T0,855
|
|
25
|
+
mimicpy/scripts/cpmd.py,sha256=rgtYSI2oc-UQetnq99uC15b05Hm0C71OoShTAO_U7mw,10301
|
|
26
|
+
mimicpy/scripts/fm_input.py,sha256=Z4OmG9jgMRqOiozd2sorndnWRYwpfYLq7yHZ9GmMGoc,13861
|
|
27
|
+
mimicpy/scripts/fmdata.py,sha256=G8zcqBRfr6u6L3_JWjcaP3g6J1fKlXnDQV2NnhnHhCQ,4559
|
|
28
|
+
mimicpy/scripts/mdp.py,sha256=wg0o6ut2rUZ_1NaFLJxfMTKMey8o2FGa_L1hcmUMplM,2189
|
|
29
|
+
mimicpy/scripts/ndx.py,sha256=gw-rwX08tqMHz6JlZ_LSYdXKJjxUAA5vdrg21j-zXsQ,2142
|
|
30
|
+
mimicpy/scripts/script.py,sha256=IVbNayP6mJD9nIPQspRteWqOoGkZPQMI4dWyR5oiYxo,2864
|
|
31
|
+
mimicpy/topology/__init__.py,sha256=4C_srP9E0UB3VJb-iGerR869xn3l2CAyER7ZcB1QZTI,853
|
|
32
|
+
mimicpy/topology/itp.py,sha256=P-RPyGyCWUiZOClWMXNjLXMdGonn57WVgyiuyBDDiHQ,39428
|
|
33
|
+
mimicpy/topology/mpt.py,sha256=htoo0WlHFQl7EyXqsgylsdVVlFbsBFFEi4g6mywqJoA,13949
|
|
34
|
+
mimicpy/topology/top.py,sha256=TRKysJQO9VZJzZIlAXQRESPn-46jnH9a9ZOHuP3gnwE,18484
|
|
35
|
+
mimicpy/topology/topol_dict.py,sha256=LA5_0MddUic2OSkF0Zi9_fRyD7dRgoVnM2uTEabhB3c,11108
|
|
36
|
+
mimicpy/utils/__init__.py,sha256=1exsqbozDs_84hwtAFGUrnrOGnHm3stEpanCj68kr2g,856
|
|
37
|
+
mimicpy/utils/atomic_numbers.py,sha256=CzdU4S4PfmHD1Xj4zNAXjUpktjCaHZZQdMR-AhotLFQ,2168
|
|
38
|
+
mimicpy/utils/constants.py,sha256=ZrlktPHNncFts9UWljfiZAKEEXdSLcH2Qdro-I0knQU,1261
|
|
39
|
+
mimicpy/utils/elements.py,sha256=PyG6Dk9b67RelYJxYCHMsjot_1q0EpghuldZX7O9heA,2671
|
|
40
|
+
mimicpy/utils/errors.py,sha256=RlCg5NVx2h3QWawQ4W7a4Ibh_poyv9ht9CcbEQsYEnw,1962
|
|
41
|
+
mimicpy/utils/file_handler.py,sha256=kUc3qQgQ4RVLikfckndtBoy1vqJTqgMCnOruwkBotkk,2216
|
|
42
|
+
mimicpy/utils/strings.py,sha256=aqXbo4Mgh8tTgL_rYhskjfb0VM9plOHjKyX8JgU8Y04,2177
|
|
43
|
+
mimicpy-0.3.0.dist-info/licenses/COPYING,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
|
|
44
|
+
mimicpy-0.3.0.dist-info/licenses/COPYING.LESSER,sha256=pWgb-bBdsU2Gd2kwAXxketnm5W_2u8_fIeWEgojfrxs,7651
|
|
45
|
+
mimicpy-0.3.0.dist-info/METADATA,sha256=ELLVtgHNoWn4OmS515sOUyTjG_LTPJP41mnLtcmibI0,5263
|
|
46
|
+
mimicpy-0.3.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
47
|
+
mimicpy-0.3.0.dist-info/entry_points.txt,sha256=0gPuK3fK-iZedAQ3DEssITLby-FMKUkqhVAZdJNnqUs,165
|
|
48
|
+
mimicpy-0.3.0.dist-info/top_level.txt,sha256=0EOwttsQadsiIEMxQf3yPwXZ8OpdurbfQOsn6o-5a9Y,8
|
|
49
|
+
mimicpy-0.3.0.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
50
|
+
mimicpy-0.3.0.dist-info/RECORD,,
|
mimicpy-0.2.0.dist-info/METADATA
DELETED
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: mimicpy
|
|
3
|
-
Version: 0.2.0
|
|
4
|
-
Summary: Companion library to the MiMiC framework for input preparation.
|
|
5
|
-
Home-page: https://gitlab.com/MiMiC-projects/mimicpy
|
|
6
|
-
Author: Bharath Raghavan, Florian K. Schackert
|
|
7
|
-
Author-email: b.raghavan@fz-juelich.de
|
|
8
|
-
License: GNU Lesser General Public License v3 or later (LGPLv3+)
|
|
9
|
-
Project-URL: Issues, https://gitlab.com/MiMiC-projects/mimicpy/issues
|
|
10
|
-
Project-URL: User Support, https://gitlab.com/MiMiC-projects/user-support
|
|
11
|
-
Project-URL: Documentation, https://mimic-project.org/
|
|
12
|
-
Platform: OS Independent
|
|
13
|
-
Classifier: Programming Language :: Python :: 3
|
|
14
|
-
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
|
|
15
|
-
Classifier: Operating System :: OS Independent
|
|
16
|
-
Requires-Python: >=3.5
|
|
17
|
-
Description-Content-Type: text/markdown
|
|
18
|
-
License-File: COPYING
|
|
19
|
-
License-File: COPYING.LESSER
|
|
20
|
-
Requires-Dist: numpy (>=1.12.0)
|
|
21
|
-
Requires-Dist: pandas (>=0.24.0)
|
|
22
|
-
|
|
23
|
-
# MiMiCPy
|
|
24
|
-
MiMiCPy is the companion library to the MiMiC framework. It comes with a set of command lines tools to prepare input files. Additionally, plugins for PyMOL and VMD are also provided. Visit the [MiMiC homepage](https://mimic-project.org/) for more details.
|
|
25
|
-
|
|
26
|
-
## Installation
|
|
27
|
-
To install, run the following command:
|
|
28
|
-
|
|
29
|
-
```
|
|
30
|
-
pip install mimicpy
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
To install with PyMOL and/or VMD support, pass the plugin path to ```PYMOLDIR``` or ```VMDDIR```. This path is usually either the path to PyMOL/VMD installation folder, or the user home directory. For example,
|
|
34
|
-
```
|
|
35
|
-
PYMOLDIR="/home/user/" VMDDIR="/home/user/" pip install mimicpy
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
## Portability Issues
|
|
39
|
-
MiMiCPy requires Python >= 3.5, pandas >= 0.24.0 and numpy >= 1.12.0. The plugins have been tested with PyMOL version 2.3.4 and VMD version 1.9.4a38, although other versions are expected to work. If any incompatibilities are found, please post an issue on [here](https://gitlab.com/MiMiC-projects/user-support).
|
|
40
|
-
|
|
41
|
-
## Demo
|
|
42
|
-
A demo of atom selection for the QM region, and generation of the MiMiC-based CPMD input file using MiMiCPy is shown below.
|
|
43
|
-
```console
|
|
44
|
-
user@system:~$ mimicpy prepqm -top acetone.top -coords acetone.gro
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
***** MiMiCPy *****
|
|
48
|
-
|
|
49
|
-
For more information type mimicpy [subcommand] --help
|
|
50
|
-
|
|
51
|
-
=====> Running prepqm <=====
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
**Reading topology**
|
|
55
|
-
|
|
56
|
-
Cannot find path to Gromacs installation.
|
|
57
|
-
Read atoms from acetone.itp.
|
|
58
|
-
No atoms found in acetone.top.
|
|
59
|
-
|
|
60
|
-
Some atom types had no atom numbers information.
|
|
61
|
-
They were guessed as follows:
|
|
62
|
-
|
|
63
|
-
+---------------------+
|
|
64
|
-
| Atom Type | Element |
|
|
65
|
-
+---------------------+
|
|
66
|
-
| c | C |
|
|
67
|
-
+---------------------+
|
|
68
|
-
| c3 | C |
|
|
69
|
-
+---------------------+
|
|
70
|
-
| o | O |
|
|
71
|
-
+---------------------+
|
|
72
|
-
| hc | H |
|
|
73
|
-
+---------------------+
|
|
74
|
-
|
|
75
|
-
**Reading coordinates** |Done
|
|
76
|
-
|
|
77
|
-
Please enter selection below. For more information type 'help'
|
|
78
|
-
> add resname is ACT
|
|
79
|
-
> q
|
|
80
|
-
Using default values for maxstep and timestep
|
|
81
|
-
Wrote Gromacs index file to index.ndx
|
|
82
|
-
Wrote new CPMD input script to cpmd.inp
|
|
83
|
-
|
|
84
|
-
=====> Done <=====
|
|
85
|
-
|
|
86
|
-
```
|
mimicpy-0.2.0.dist-info/RECORD
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
mimicpy/__init__.py,sha256=OURlgAzVXRPt2y_g9zjtxRjI7pg6fm3B2YwPyCZ7PsI,1480
|
|
2
|
-
mimicpy/__main__.py,sha256=tninXIl7e4ay6EcwlPQIc7T45tpkxdpvgOtf-FISEVw,31447
|
|
3
|
-
mimicpy/__main_vmd__.py,sha256=KkH6hMYwiWftnFV4a0vEjapxp1WwIMxQl7_PTkR3o7s,5588
|
|
4
|
-
mimicpy/_authors.py,sha256=CT9Ib4aORLppY3tKDPvJ9BIO8ZpIkocEmMsJE5QKVFc,910
|
|
5
|
-
mimicpy/_version.py,sha256=KYV-xJH5rZn9e1wIvbxcXdrwSlKlKA5tCtgrnVEFi8I,877
|
|
6
|
-
mimicpy/coords/__init__.py,sha256=Cu0um-Udo7A1T2sqsdvnakza0b3J3AVNcXobQB6AwxA,853
|
|
7
|
-
mimicpy/coords/base.py,sha256=MCwqA6_NsA64P9BghVPBAaQFSi6xvNTgAUcA3W0b4fA,4805
|
|
8
|
-
mimicpy/coords/cpmdgeo.py,sha256=IZ3vs6KxfM4BJ_t2WSz9XT0p6zLEb2n4gTZ2qI-V0hQ,3853
|
|
9
|
-
mimicpy/coords/gro.py,sha256=p6I4IkR-PEGXrovPbTy4q_tzyb94oOFoWD9FI5COWMQ,3254
|
|
10
|
-
mimicpy/coords/pdb.py,sha256=eWSgNnjs-WG2TTpQ7o1NnwwlLLMp0CODe7GeVA3BpqI,5431
|
|
11
|
-
mimicpy/core/__init__.py,sha256=WeDywU9WrXTHklgDZX7BrW43spP9FqtV_naQc6xy33o,855
|
|
12
|
-
mimicpy/core/prepare.py,sha256=56MVXLsq1BESSkZCLDweIx_qwhY2HscbwY0_vUiujMs,12786
|
|
13
|
-
mimicpy/core/selector.py,sha256=wo-4_5ACtpkPyKWltih5VOhcV9ZldI7hOlbjxvnv5nA,8500
|
|
14
|
-
mimicpy/scripts/__init__.py,sha256=WeDywU9WrXTHklgDZX7BrW43spP9FqtV_naQc6xy33o,855
|
|
15
|
-
mimicpy/scripts/cpmd.py,sha256=NSbZrRcHAkpyvpZlSg9AA21NjLXuU1GeKe4TFovPBDI,10301
|
|
16
|
-
mimicpy/scripts/mdp.py,sha256=Wo_2-11GAjriCS8AFP3a6e1QRtMwUCzuse38nYdpPIs,2189
|
|
17
|
-
mimicpy/scripts/ndx.py,sha256=9UtqOXDvXzO3s0V94kg-hvxGZQXrMERB12Pan_T_THo,2142
|
|
18
|
-
mimicpy/scripts/script.py,sha256=r6OYcWUD9_0Mmu5pcdMVlGqnQ5bLlUWEnDadEbpB7wU,2864
|
|
19
|
-
mimicpy/topology/__init__.py,sha256=Cu0um-Udo7A1T2sqsdvnakza0b3J3AVNcXobQB6AwxA,853
|
|
20
|
-
mimicpy/topology/itp.py,sha256=PlVwftm_i4LUpGJMvHLX-pwCbB1wh6Z2Eum0pvYq5Yw,13797
|
|
21
|
-
mimicpy/topology/mpt.py,sha256=9n4Ml9d-hH9mPS1eKjAeT_40_TP9WUiGaP1bN0UMz8U,13949
|
|
22
|
-
mimicpy/topology/top.py,sha256=KDnKQQIGbtfjUK0pWlIl_of4BLgGEzmv1xISZ-mm-VI,7114
|
|
23
|
-
mimicpy/topology/topol_dict.py,sha256=cP0SITJjLn06X4W8PuNrU0Get3m_gT5sbvQGtrfmZm8,2594
|
|
24
|
-
mimicpy/utils/__init__.py,sha256=6N93l5RqMpAi2HeQM51TtapK2KFVQZTnMaJibK12ztI,856
|
|
25
|
-
mimicpy/utils/atomic_numbers.py,sha256=Ztl4iBhX0xXhnhaZeunZ5avNYCYmOUIvAw5My5YEYkA,2168
|
|
26
|
-
mimicpy/utils/constants.py,sha256=STDEAS48KErMNrCJh1oQGqr5bHJZIpq4IEhlQzxwSdU,942
|
|
27
|
-
mimicpy/utils/elements.py,sha256=k2upeTMxw73SRIIg5UaW4dTaTsdKnQjGVUrDmFHMkw8,2671
|
|
28
|
-
mimicpy/utils/errors.py,sha256=r6jT7kHmQLjGzNJ-YHCZLy2tT7RhACNP-_xCHG7U2fg,1962
|
|
29
|
-
mimicpy/utils/file_handler.py,sha256=J1aqHJ3jvSDPAbequ9PsRphvZc2Los8Ms9vPG14o9v0,2216
|
|
30
|
-
mimicpy/utils/strings.py,sha256=_u3NIva81x36zXU8ip2-S3iuJj9T7XF1VNY90HhVlVk,2177
|
|
31
|
-
mimicpy-0.2.0.dist-info/COPYING,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
|
|
32
|
-
mimicpy-0.2.0.dist-info/COPYING.LESSER,sha256=pWgb-bBdsU2Gd2kwAXxketnm5W_2u8_fIeWEgojfrxs,7651
|
|
33
|
-
mimicpy-0.2.0.dist-info/METADATA,sha256=AMeA5fN6iTsUePCi6GZvjdKx0vsvnjMuBuPni8bmV2A,2971
|
|
34
|
-
mimicpy-0.2.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
35
|
-
mimicpy-0.2.0.dist-info/entry_points.txt,sha256=2mJU1oYBxmxN94dwnnRstFF7ucaguvT64YRmA-R07c8,90
|
|
36
|
-
mimicpy-0.2.0.dist-info/top_level.txt,sha256=0EOwttsQadsiIEMxQf3yPwXZ8OpdurbfQOsn6o-5a9Y,8
|
|
37
|
-
mimicpy-0.2.0.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
38
|
-
mimicpy-0.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|