Version 2.0.1¶
OEChem 2.0.1¶
New features¶
- OEMolBase.SetCoordswill now reset the atom and bond stereo perception flags,- OEPerceived_AtomStereoand- OEPerceived_BondStereorespectively. This can force reperception of the stereo information from the new coordinates by other functions that may need it. For example, a later call to- OEWriteMoleculewill now automatically call- OE3DToAtomStereo.
- OECopyMolfunction added to make a copy of a molecule and return the atom or bond associations between the source and destination molecules.
- OEMolBase.ClearBasemethod added to allow clearing generic data on the OEMolBase without destroying the molecule itself.
- OEUniMolecularRxn.SetValidateKekulemethod added to allow skipping the Kekule validation step after the reaction is applied. Note, this allows OEUniMolecularRxn to return radicals, leaving clean up to the user.
- OESuppressHydrogenscan now suppress hydrogens at specific heavy atom sites.
- OENthAtom predicate’s 2nd argument now defaults to - 0to be easier to use.
- OEGetMolDatabaseIdxFileNameadded to generate index file names from database file names using the same rules as- OECreateMolDatabaseIdxand- Save.
- OEAtomBondSet now supports the - strPython built-in function. Calling- stron an OEAtomBondSet will now return a string like the following:- >>> mol = OEGraphMol() >>> OESmilesToMol(mol, "c1ccccc1O") True >>> str(OEAtomBondSet(mol.GetAtoms())) '[7] 0C 1C 2C 3C 4C 5C 6O ' 
- oemolistream, oemolithread, oemolostream, oemolothread now support the Python - withstatement. This ensures that files are automatically flushed and closed whenever falling out of the- withscope. For example:- mol = # some initialized molecule with oemolostream("file.oeb") as ofs: OEWriteMolecule(ofs, mol) # file.oeb is guaranteed to contain the molecule with oemolistream("file.oeb") as ifs: for mol in ifs.GetOEMols(): # do something with mol 
Major bug fixes¶
- OEMMFFAtomTypewill no longer crash whenever an unbonded sulfur with a single implicit hydrogen is encountered.
- OEAssignAromaticFlagsnow invokes the- OEFindRingAtomsAndBondsfunction, when necessary. If no ring atoms are detected in the molecule, the- OEAssignAromaticFlagsfunctions returns after setting all atoms and bonds of the molecule to be non-aromatic.
- The OESubSearch class now throws a warning in the following two cases: - If there are only explicit hydrogens in the pattern, but the target has only implicit hydrogens. 
- If there are only implicit hydrogens in the pattern, but the target has only explicit hydrogens. 
 - These warnings are necessary in order to avoid substructure match failures that are the result of mismatched hydrogen representation. 
- The - OEGetFileTypefunction now returns- OEFormat_UNDEFINEDfor file extensions that contain extra characters after the known file extension. For example,- ismamaused to inappropriately return- OEFormat_ISM. The only exception is if the extra characters are preceded by “.”. Therefore, the following strings are still considered valid:- sdf.gz,- sdf.bin, and- sdf.zip.
- V3000 entries with a broken atom or bond block will no longer crash, the reader will now throw a warning and skip the molecule. 
- OEMDLPerceiveBondStereofunction will no longer clear wavy bonds,- OEBondStereo_Wavy, since this property can not be re-perceived from other information. The MDL bond stereo can be removed by calling the new- OEMDLClearBondStereofunction.
- OEWriteMDLFileno longer has a subtle race condition that could lead to incorrect time stamps being written in the header. The race condition was caused by the use of the standard C library- localtimefunction.
- OEChem::oemolithread::open will no longer crash when given an empty - .csvfile.
- OEReadMDLReactionQueryFilepreviously incorrectly required “M END” lines between reactant and product blocks. These lines are no longer required and will be ignored if they are encountered. This change allows reaction query files to be read that are generated by ChemDraw and the Accelrys Enterprise Platform.
Minor bug fixes¶
- OEMolDatabase.GetTitlewill no longer return a corrupted title for multi-molecule- .mol2files.
- OEGenerate2DCoordinateswill now handle a molecule as a reaction if any of its atoms have a reaction role other than- OERxnRole_None. Previously, only molecules that returned- truefrom- OEMolBase.IsRxnwould be handled as reactions.
- OEChem 2.0.0, the previous release, introduced automatic 2D coordinate generation when writing to the following file formats: - OEFormat_SDF,- OEFormat_MDL, and- OEFormat_CDX. However, coordinate generation will only occur if- OEMolBase.GetDimensiondoes not return 2 or 3, indicating that the molecule already contains coordinates.- OEWriteMoleculewill now throw a warning message if coordinates are detected on the molecule and- OEMolBase.SetDimensionwas not appropriately called. Users should either call- OEMolBase.SetDimensionto the appropriate dimensionality of the molecule, or clear the molecule’s coordinates.- Note - .cdxfiles will still automatically generate 2D coordinates from 3D molecules since- .cdxis a 2D molecule format only.
- OEAssignAromaticFlagsused to only set atoms to non-aromatic if no ring bonds were found. Bond aromaticity will now be cleared as well if no ring atoms are found.
- OECreateMolDatabaseIdxwill no longer crash whenever called inside a directory without write permissions.
- OEChem::oemolostream::seekp removed since it did not do anything. 
- OESmartsLexReplaceargument is now- constsince the function does not need to alter the vector.
- Removed unbounded stack allocations. 
- The partial support for CPSS-style rxnfiles has been entirely removed as this format is documented as obsolete in the CTfile format specification. 
- OEAddExplicitHydrogensno longer has the rare chance of using uninitialized memory when sprouting hydrogens in 3D.
- OEReadMDLQueryFilewill now interpret- ![N,O,S]as- ![N,O,S,H]to be consistent with MDL matching behavior.
- OEOmegaConfTest.CompareMols,- OEIsomericConfTest.CompareMols,- OEAbsoluteConfTest.CompareMolswill all now return- trueif the only difference between the bonds of the two molecules is whether the- Bgnand- Endbonds have been swapped.
Documentation fixes¶
- All examples should now use - OESmilesToMolinstead of- OEParseSmiles.- OESmilesToMolis the preferred safer method for parsing SMILES.
- Simplified the documentation for the basic molecule class hierarchy. Previously, documentation was spread between the base class and the concrete classes. The base class sections should now be the canonical place to look for specific method documentation. - For OEGraphMol methods, see the OEMolBase section 
- For OEMol methods, see the OEMCMolBase section 
 
- Added documentation for OEConfBase and OEMCMolBase classes that are instantiations of - OEChem::OEConfBaseTand- OEChem::OEMCMolBaseTtemplate classes, respectively.
- Added missing documentation for the OEConfBase and OEMCMolBase classes. 
- Generated new images for the Explicit Hydrogens section of the Substructure Search with MDL Queries chapter 
- Memory leak fixed in - NewConfFromCoordsdocumentation example.
- Corrected a link to the CTfile format document from Accelrys, Inc. 
- OEPropertynamespace formatting fixed in PDF files to actually be readable.
- OEOmegaConfTest added to the conformer test section for Input and Output. 
OEBio 2.0.1¶
Major bug fixes¶
- OESetRotamercan properly set rotamers with angles of 0.0. Previously the angle was silently left unchanged.
OESystem 2.0.1¶
New features¶
- OEInterface can now report all the OpenEye toolkit libraries being used by specifying - --help versionson the command line.
- OEParseCommandLinenow accepts an argument for specifying the program’s version number. This version number will be printed whenever- --versionis found on the command line.
- OEMemPoolMode_Spinlockedmemory pool mode added to provide a more efficient mutual exclusion mechanism than mutexes for the small object caches.
- Added the following functions to provide predefined sets of colors: 
- Added the following colors: 
- OESystem_OEGold(the original color was renamed to- OESystem_OEMandarin)
 
- OEBase.SetDatanow accepts Python sequences of strings for data. Note, this data can not be read or written to- .oebfiles.
- OEColor will now - reprto a more appropriate string representation suitable for the Python interpreter as shown below.
>>> OERed
OEColor(r=255,g=0,b=0,a=255)
>>> OEGreen
OEColor(r=0,g=255,b=0,a=255)
>>> OETransparentColor
OEColor(r=255,g=255,b=255,a=0)
Minor bug fixes¶
- Removed unbounded stack allocations. 
- SetDateno longer has a subtle race condition due to the use of the standard C library- localtimefunction.
- OE*Arrayclasses will now throw a reasonable error message when attempting to index with a floating point number. This can occur more easily due to division change in Python 3.
Documentation fixes¶
- Added missing documentation for the following colors: 
OEPlatform 2.0.1¶
New features¶
Major bug fixes¶
- OEGetPlatformInfowill now return Windows versions for- Windows Vistathrough- Windows 8.1.
- OEGetProcessorInfowould previously only show Pentium III for newer chips on Windows. The function will now interrogate the chip using the- cpuidinstruction.
Minor bug fixes¶
- OEAddLicenseFromHttpwill now accept HTTP responses with a content-type of- text/html; charset=utf-8. Previously, only- text/plainwas accepted.
Documentation fixes¶
- OEAddLicenseFromHttpnow includes example code in the documentation for its use.
OEGrid 1.4.6¶
New Features¶
- OEMakeMolecularGaussianGridnow has an overload to allow a grid with existing dimensions, mid-point, and spacing to be filled. Previously, the grid size would always be recreated based upon the size of the molecule.
Major bug fixes¶
- Better support for output of non crystallographic grids to CCP4 file. Now the CCP4 ARMS value is set to 1.0 and the CCP4 MEAN is set to 0.0 to prevent scaling and offsetting in CCP4 map visualizers. Additionally, the spacegroup is now output as 146 (H3) as opposed to the nonstandard 1146 (R3) to facilitate viewing in MOE. Please note that values appearing outside of the specified unit cell will be incorrect. 
Documentation fixes¶
- Adding missing - OEMTZMapTypenamespace to the documentation.
- OEChem release notes for 2.0.0 and 1.9.3 had the OEGrid version slightly wrong. The OEGrid version numbers have been corrected to 1.4.5 and 1.4.4 respectively.