Tools for Desmond molecular dynamics
Project description
Python Utilities for Desmond Molecular Dynamics
Introduction
DesmondTools have a set of command-line scripts and a python library written to make setting up the molecular dynamics simulations easier for Desmond.
Install
$ pip install desmondtools
Documentation
See https://sunghunbae.github.io/desmondtools/
Use of desmondtools library
from desmondtools import Multisim
# read template .msj and .cfg
md_msj = Multisim(template="desmond-md.msj")
md_cfg = Multisim(template="desmond-md.cfg")
with open(msj_file,"w") as msj:
# modify desmond msj template
md_msj.dot.simulate[-1].cfg_file = cfg_file_basename
# Setting up restraints using the restraints keyword:
# https://www.schrodinger.com/kb/332119
if args.posres_force > 0.0:
# print the restraints in the multisim log file
md_msj.dot.simulate[-1].print_restraint = 'true'
# add the new terms defined in "restraints.new" to existing restraints.
# The default is restraints.existing = ignore which will
# delete existing terms before adding any new ones.
# md_msj.dot.simulate[-1].restraints.existing = 'retain'
md_msj.dot.simulate[-1].restraints.new = [
{
'name' : 'posre_harm',
'atoms' : [ f'"{args.posres}"' ],
'force_constants' : [ args.posres_force, ] * 3,
}
]
# force constants in the x, y, and z direction
md_msj.write(msj)
with open(cfg_file,"w") as cfg:
# modify desmond cfg template
md_cfg.dot.randomize_velocity.seed = random.randint(1000, 9999)
md_cfg.dot.time = total_simulation_time
md_cfg.dot.temperature = t_schedule
md_cfg.dot.trajectory.interval = args.interval
md_cfg.write(cfg)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
desmondtools-1.0.0.tar.gz
(28.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file desmondtools-1.0.0.tar.gz.
File metadata
- Download URL: desmondtools-1.0.0.tar.gz
- Upload date:
- Size: 28.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8195bd6ac9352ee16b291044b6ade1aede447b5a9596c163a279581d3126c6d7
|
|
| MD5 |
0f347783feffdd1dfdcbc99d627935c2
|
|
| BLAKE2b-256 |
a0c57e0304a44a8642b87e7f801353e2cf45e6de45038baf5cdf0c9ad481b9a0
|
File details
Details for the file desmondtools-1.0.0-py3-none-any.whl.
File metadata
- Download URL: desmondtools-1.0.0-py3-none-any.whl
- Upload date:
- Size: 35.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3368df4216bcd36bb4387148b2c2795b071dad424dcb1b05707392e0917b84cc
|
|
| MD5 |
a069d4f0693ebdbb3fc0c5b142cbf7ff
|
|
| BLAKE2b-256 |
f5448751cac9087d0c9ceb2293654e9d1127fd23934b5206e9036cfece05ad90
|