A Toolset For Molecular Dynamics
Project description
Python Utilities for Molecular Dynamics
Introduction
MDScribe is a set of command-line scripts and a library written to make setting up the molecular dynamics simulations easier for Desmond, OpenMM, and Amber.
Install
$ pip install mdscribe
Documentation
See https://sunghunbae.github.io/mdscribe/
Example for Desmond
from mdscribe.desmond 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
mdscribe-0.7.4.tar.gz
(52.5 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
mdscribe-0.7.4-py3-none-any.whl
(57.8 kB
view details)
File details
Details for the file mdscribe-0.7.4.tar.gz.
File metadata
- Download URL: mdscribe-0.7.4.tar.gz
- Upload date:
- Size: 52.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdba2627ac7b40f134b1fb216d8d7e50fbad1469180fdc3f15a19ecc28368c0b
|
|
| MD5 |
29aa4bec1dfe0fe707947ee187b90f52
|
|
| BLAKE2b-256 |
10cea74477891d3c792284d58e605c2544fb3fd5fcfd40c1eb0da2a54cee8589
|
File details
Details for the file mdscribe-0.7.4-py3-none-any.whl.
File metadata
- Download URL: mdscribe-0.7.4-py3-none-any.whl
- Upload date:
- Size: 57.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f3acee88b2b0292cc1d03059ef9674a93e5b823b85fc8722083b85982657dc1
|
|
| MD5 |
e23e4071f8bb7144e33edc1a012ad7de
|
|
| BLAKE2b-256 |
acde79d68930411015e2255312d796a760b0f1f5f8d6e3a78df64a44dbe219b9
|