Adaptyv
Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein s…
维护者 Kuan-lin Huang · 最近更新 2026年4月1日
Molecular dynamics (MD) simulation computationally models the time evolution of molecular systems by integrating Newton's equations of motion. This skill covers two complementary tools: - **OpenMM** (https://openmm.org/): High-performance MD simulation engine with GPU support, Python API, and flexible force field support - **MDAnalysis** (https://mdanalysis.org/): Python library for reading, writing, and analy.
原始来源
https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/molecular-dynamics
技能摘要
原始文档
Use molecular dynamics when:
| System | Recommended Force Field | Water Model |
|---|---|---|
| Standard proteins | AMBER14 (amber14-all.xml) | TIP3P-FB |
| Proteins + small molecules | AMBER14 + GAFF2 | TIP3P-FB |
| Membrane proteins | CHARMM36m | TIP3P |
| Nucleic acids | AMBER99-bsc1 or AMBER14 | TIP3P |
| Disordered proteins | ff19SB or CHARMM36m | TIP3P |
from openff.toolkit import Molecule, ForceField as OFFForceField from openff.interchange import Interchange
def parameterize_ligand(smiles, ff_name="openff-2.0.0.offxml"): """Generate GAFF2/OpenFF parameters for a small molecule.""" mol = Molecule.from_smiles(smiles) mol.generate_conformers(n_conformers=1)
off_ff = OFFForceField(ff_name)
interchange = off_ff.create_interchange(mol.to_topology())
return interchange
相关技能
Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein s…
Validate protein designs using AlphaFold2 structure prediction. Use this skill when: (1) Validating designed sequences f…
AlphaFold DB is a public repository of AI-predicted 3D protein structures for over 200 million proteins, maintained by D…
End-to-end binder design using BindCraft hallucination. Use this skill when: (1) Designing protein binders with built-in…