Skip to content

Tool collection to integrate and mix OpenEye and OpenMM

License

Notifications You must be signed in to change notification settings

bergazin/oeommtools

 
 

Repository files navigation

Build Status

Anaconda Badge

OEOMMTools

These are a collection of tools developed to integrate and mix the OE Toolkit with the OpenMM API

Prerequisites

  • OE Toolkit
  • OpenMM

Authors

Installation

conda install -c openeye/label/Orion oeommtools -c omnia

Usage

The following example solvate a benzene molecule in a box of water:

from oeommtools import packmol
from openeye import oechem
from openeye import oeomega

# Benzene smiles string
benzene = 'c1ccccc1'
# Empty OEMol
solute = oechem.OEMol()


# Conformer generation
omegaOpts = oeomega.OEOmegaOptions()
omegaOpts.SetMaxConfs(1)
omega = oeomega.OEOmega(omegaOpts)

# OEMol generation
if not oechem.OESmilesToMol(solute, benzene):
    oechem.OEThrow.Fatal("SMILES string parsing fails for the string: {}".format(benzene))
if not omega(solute):
    oechem.OEThrow.Fatal("Conformer generation fails for the molecule with smiles string: {}".format(benzene))

# Solvate the system in water
solvate_mol = packmol.oesolvate(solute, density=1.0, padding_distance=10.0, geometry='box',
                                solvents='[H]O[H]', molar_fractions='1.0', close_solvent=True,
                                salt='[Na+], [Cl-]', salt_concentration=0.0, neutralize_solute=True)

# Save the solvated system
ofs = oechem.oemolostream("solvated.pdb")
oechem.OEWriteConstMolecule(ofs, solvate_mol)
ofs.close()

Issues

  • OEOmmTools is in debugging stage and it has been tested on Ubuntu 16.04 and Mac OSX Sierra
  • OEOmmTools has been tested in python 3.5 and 3.6

Disclaimers

  • This code is currently in alpha release status. Use at your own risk. We will almost certainly be making changes to the API in the near future.

About

Tool collection to integrate and mix OpenEye and OpenMM

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.9%
  • Shell 0.1%