Source code for arc.species.converter

"""
A module for performing various species-related format conversions.
"""

import numpy as np
import os
from typing import TYPE_CHECKING, Dict, Iterable, List, Optional, Tuple, Union

import qcelemental as qcel
from ase import Atoms
from openbabel import openbabel as ob
from openbabel import pybel
from rdkit import Chem
from rdkit.Chem import rdMolTransforms as rdMT
from rdkit.Chem import SDWriter
from rdkit.Chem.rdchem import AtomValenceException

from arkane.common import get_element_mass, mass_by_symbol, symbol_by_number
import rmgpy.constants as constants
from rmgpy.exceptions import AtomTypeError
from rmgpy.molecule.molecule import Atom, Bond, Molecule
from rmgpy.quantity import ArrayQuantity
from rmgpy.species import Species
from rmgpy.statmech import Conformer

from arc.common import (almost_equal_lists,
                        calc_rmsd,
                        get_atom_radius,
                        get_logger,
                        generate_resonance_structures,
                        is_str_float,
                        )
from arc.exceptions import ConverterError, InputError, SanitizationError, SpeciesError
from arc.species.xyz_to_2d import MolGraph
from arc.species.xyz_to_smiles import xyz_to_smiles
from arc.species.zmat import (KEY_FROM_LEN,
                              _compare_zmats,
                              get_all_neighbors,
                              get_atom_indices_from_zmat_parameter,
                              get_parameter_from_atom_indices,
                              zmat_to_coords,
                              xyz_to_zmat)

if TYPE_CHECKING:
    from arc.species.species import ARCSpecies


ob.obErrorLog.SetOutputLevel(0)
logger = get_logger()


[docs]def str_to_xyz(xyz_str: str, project_directory: Optional[str] = None, ) -> dict: """ Convert a string xyz format to the ARC dict xyz style. Note: The ``xyz_str`` argument could also direct to a file path to parse the data from. The xyz string format may have optional Gaussian-style isotope specification, e.g.:: C(Iso=13) 0.6616514836 0.4027481525 -0.4847382281 N -0.6039793084 0.6637270105 0.0671637135 H -1.4226865648 -0.4973210697 -0.2238712255 H -0.4993010635 0.6531020442 1.0853092315 H -2.2115796924 -0.4529256762 0.4144516252 H -1.8113671395 -0.3268900681 -1.1468957003 which will also be parsed into the ARC xyz dictionary format, e.g.:: {'symbols': ('C', 'N', 'H', 'H', 'H', 'H'), 'isotopes': (13, 14, 1, 1, 1, 1), 'coords': ((0.6616514836, 0.4027481525, -0.4847382281), (-0.6039793084, 0.6637270105, 0.0671637135), (-1.4226865648, -0.4973210697, -0.2238712255), (-0.4993010635, 0.6531020442, 1.0853092315), (-2.2115796924, -0.4529256762, 0.4144516252), (-1.8113671395, -0.3268900681, -1.1468957003))} Args: xyz_str (str): The string xyz format to be converted. project_directory (str, optional): The path to the project directory. Raises: ConverterError: If xyz_str is not a string or does not have four space-separated entries per non-empty line. Returns: dict The ARC xyz format. """ if isinstance(xyz_str, dict): return xyz_str if not isinstance(xyz_str, str): raise ConverterError(f'Expected a string input, got {type(xyz_str)}') if project_directory is not None and os.path.isfile(os.path.join(project_directory, xyz_str)): xyz_str = os.path.join(project_directory, xyz_str) if os.path.isfile(xyz_str): from arc.parser import parse_xyz_from_file return parse_xyz_from_file(xyz_str) xyz_str = xyz_str.replace(',', ' ') if len(xyz_str.splitlines()) and len(xyz_str.splitlines()[0]) == 1: # this is a zmat return zmat_to_xyz(zmat=str_to_zmat(xyz_str), keep_dummy=False) xyz_dict = {'symbols': tuple(), 'isotopes': tuple(), 'coords': tuple()} if all([len(line.split()) == 6 for line in xyz_str.splitlines() if line.strip()]): # Convert Gaussian output format, e.g., " 1 8 0 3.132319 0.769111 -0.080869" # not considering isotopes in this method! for line in xyz_str.splitlines(): if line.strip(): splits = line.split() symbol = symbol_by_number[int(splits[1])] coord = (float(splits[3]), float(splits[4]), float(splits[5])) xyz_dict['symbols'] += (symbol,) xyz_dict['isotopes'] += (get_most_common_isotope_for_element(symbol),) xyz_dict['coords'] += (coord,) else: # this is a "regular" string xyz format, if it has isotope information it will be preserved for line in xyz_str.strip().splitlines(): if len(line.split()) in [0, 1]: continue if line.strip(): splits = line.split() if len(splits) != 4: raise ConverterError(f'xyz_str has an incorrect format, expected 4 elements in each line, ' f'got "{line}" in:\n{xyz_str}') symbol = splits[0] if '(iso=' in symbol.lower(): isotope = int(symbol.split('=')[1].strip(')')) symbol = symbol.split('(')[0] else: # no specific isotope is specified in str_xyz isotope = get_most_common_isotope_for_element(symbol) coord = (float(splits[1]), float(splits[2]), float(splits[3])) xyz_dict['symbols'] += (symbol,) xyz_dict['isotopes'] += (isotope,) xyz_dict['coords'] += (coord,) return xyz_dict
[docs]def xyz_to_str(xyz_dict: dict, isotope_format: Optional[str] = None, ) -> Optional[str]: """ Convert an ARC xyz dictionary format, e.g.:: {'symbols': ('C', 'N', 'H', 'H', 'H', 'H'), 'isotopes': (13, 14, 1, 1, 1, 1), 'coords': ((0.6616514836, 0.4027481525, -0.4847382281), (-0.6039793084, 0.6637270105, 0.0671637135), (-1.4226865648, -0.4973210697, -0.2238712255), (-0.4993010635, 0.6531020442, 1.0853092315), (-2.2115796924, -0.4529256762, 0.4144516252), (-1.8113671395, -0.3268900681, -1.1468957003))} to a string xyz format with optional Gaussian-style isotope specification, e.g.:: C(Iso=13) 0.6616514836 0.4027481525 -0.4847382281 N -0.6039793084 0.6637270105 0.0671637135 H -1.4226865648 -0.4973210697 -0.2238712255 H -0.4993010635 0.6531020442 1.0853092315 H -2.2115796924 -0.4529256762 0.4144516252 H -1.8113671395 -0.3268900681 -1.1468957003 Args: xyz_dict (dict): The ARC xyz format to be converted. isotope_format (str, optional): The format for specifying the isotope if it is not the most abundant one. By default, isotopes will not be specified. Currently the only supported option is 'gaussian'. Raises: ConverterError: If input is not a dict or does not have all attributes. Returns: Optional[str] The string xyz format. """ if xyz_dict is None: return None xyz_dict = check_xyz_dict(xyz_dict) recognized_isotope_formats = ['gaussian'] if any([key not in list(xyz_dict.keys()) for key in ['symbols', 'isotopes', 'coords']]): raise ConverterError(f'Missing keys in the xyz dictionary. Expected to find "symbols", "isotopes", and ' f'"coords", but got {list(xyz_dict.keys())} in\n{xyz_dict}') if any([len(xyz_dict['isotopes']) != len(xyz_dict['symbols']), len(xyz_dict['coords']) != len(xyz_dict['symbols'])]): raise ConverterError(f'Got different lengths for "symbols", "isotopes", and "coords": ' f'{len(xyz_dict["symbols"])}, {len(xyz_dict["isotopes"])}, and {len(xyz_dict["coords"])}, ' f'respectively, in xyz:\n{xyz_dict}') if any([len(xyz_dict['coords'][i]) != 3 for i in range(len(xyz_dict['coords']))]): raise ConverterError(f'Expected 3 coordinates for each atom (x, y, and z), got:\n{xyz_dict}') xyz_list = list() for symbol, isotope, coord in zip(xyz_dict['symbols'], xyz_dict['isotopes'], xyz_dict['coords']): common_isotope = get_most_common_isotope_for_element(symbol) if isotope_format is not None and common_isotope != isotope: # consider the isotope number if isotope_format == 'gaussian': element_with_isotope = '{0}(Iso={1})'.format(symbol, isotope) row = '{0:14}'.format(element_with_isotope) else: raise ConverterError('Recognized isotope formats for printing are {0}, got: {1}'.format( recognized_isotope_formats, isotope_format)) else: # don't consider the isotope number row = '{0:4}'.format(symbol) row += '{0:14.8f}{1:14.8f}{2:14.8f}'.format(*coord) xyz_list.append(row) return '\n'.join(xyz_list)
[docs]def xyz_to_x_y_z(xyz_dict: dict) -> Optional[Tuple[tuple, tuple, tuple]]: """ Get the X, Y, and Z coordinates separately from the ARC xyz dictionary format. Args: xyz_dict (dict): The ARC xyz format. Returns: Optional[Tuple[tuple, tuple, tuple]] The X coordinates, the Y coordinates, the Z coordinates. """ if xyz_dict is None: return None xyz_dict = check_xyz_dict(xyz_dict) x, y, z = tuple(), tuple(), tuple() for coord in xyz_dict['coords']: x += (coord[0],) y += (coord[1],) z += (coord[2],) return x, y, z
[docs]def xyz_to_coords_list(xyz_dict: dict) -> Optional[List[List[float]]]: """ Get the coords part of an xyz dict as a (mutable) list of lists (rather than a tuple of tuples). Args: xyz_dict (dict): The ARC xyz format. Returns: Optional[List[List[float]]] The coordinates. """ if xyz_dict is None: return None xyz_dict = check_xyz_dict(xyz_dict) coords_tuple = xyz_dict['coords'] coords_list = list() for coords_tup in coords_tuple: coords_list.append([coords_tup[0], coords_tup[1], coords_tup[2]]) return coords_list
[docs]def xyz_to_np_array(xyz_dict: dict) -> Optional[np.ndarray]: """ Get the coords part of an xyz dict as a numpy array. Args: xyz_dict (dict): The ARC xyz format. Returns: Optional[np.ndarray] The coordinates. """ return np.array(xyz_to_coords_list(xyz_dict), dtype=np.float64) if xyz_dict is not None else None
[docs]def xyz_to_xyz_file_format(xyz_dict: dict, comment: str = '', ) -> Optional[str]: """ Get the `XYZ file format <https://en.wikipedia.org/wiki/XYZ_file_format>`_ representation from the ARC xyz dictionary format. This function does not consider isotopes. Args: xyz_dict (dict): The ARC xyz format. comment (str, optional): A comment to be shown in the output's 2nd line. Raises: ConverterError: If ``xyz_dict`` is of wrong format or ``comment`` is a multiline string. Returns: Optional[str] The XYZ file format. """ if xyz_dict is None: return None xyz_dict = check_xyz_dict(xyz_dict) if len(comment.splitlines()) > 1: raise ConverterError('The comment attribute cannot be a multiline string, got:\n{0}'.format(list(comment))) return str(len(xyz_dict['symbols'])) + '\n' + comment.strip() + '\n' + xyz_to_str(xyz_dict) + '\n'
[docs]def xyz_to_turbomol_format(xyz_dict: dict, charge: Optional[int] = None, unpaired: Optional[int] = None, ) -> Optional[str]: """ Get the respective Turbomole coordinates format. $eht charge=0 unpaired=0 Args: xyz_dict (dict): The ARC xyz format. charge (int, optional): The net charge. unpaired (int, optional): The number of unpaired electrons. Returns: str: The respective Turbomole coordinates. """ if xyz_dict is None: return None xyz_dict = check_xyz_dict(xyz_dict) coords_list = ['$coord angs'] for symbol, coord in zip(xyz_dict['symbols'], xyz_dict['coords']): row = '{0:11.8f}{1:14.8f}{2:14.8f}'.format(*coord) row += f' {symbol.lower()}' coords_list.append(row) if charge is not None and unpaired is not None: coords_list.append(f'$eht charge={charge} unpaired={unpaired}') coords_list.append('$end\n') return '\n'.join(coords_list)
[docs]def xyz_to_coords_and_element_numbers(xyz: dict) -> Tuple[list, list]: """ Convert xyz to a coords list and an atomic number list. Args: xyz (dict): The coordinates. Returns: Tuple[list, list]: Coords and atomic numbers. """ coords = xyz_to_coords_list(xyz) z_list = [qcel.periodictable.to_Z(symbol) for symbol in xyz['symbols']] return coords, z_list
[docs]def xyz_to_kinbot_list(xyz_dict: dict) -> List[Union[str, float]]: """ Get the KinBot xyz format of a single running list of: [symbol0, x0, y0, z0, symbol1, x1, y1, z1,...] Args: xyz_dict (dict): The ARC xyz format. Returns: List[Union[str, float]] The respective KinBot xyz format. """ kinbot_xyz = list() for symbol, coords in zip(xyz_dict['symbols'], xyz_dict['coords']): kinbot_xyz.extend([symbol, coords[0], coords[1], coords[2]]) return kinbot_xyz
[docs]def xyz_to_dmat(xyz_dict: dict) -> Optional[np.array]: """ Convert Cartesian coordinates to a distance matrix. Args: xyz_dict (dict): The Cartesian coordinates. Returns: Optional[np.array]: The distance matrix. """ if xyz_dict is None or isinstance(xyz_dict, dict) and any(not val for val in xyz_dict.values()): return None xyz_dict = check_xyz_dict(xyz_dict) dmat = qcel.util.misc.distance_matrix(a=np.array(xyz_to_coords_list(xyz_dict)), b=np.array(xyz_to_coords_list(xyz_dict))) return dmat
[docs]def xyz_file_format_to_xyz(xyz_file: str) -> dict: """ Get the ARC xyz dictionary format from an `XYZ file format <https://en.wikipedia.org/wiki/XYZ_file_format>`_ representation. Args: xyz_file (str): The content of an XYZ file Raises: ConverterError: If cannot identify the number of atoms entry, or if it is different that the actual number. Returns: dict The ARC dictionary xyz format. """ lines = xyz_file.strip().splitlines() if not lines[0].isdigit(): raise ConverterError('Cannot identify the number of atoms from the XYZ file format representation. ' 'Expected a number, got: {0} of type {1}'.format(lines[0], type(lines[0]))) number_of_atoms = int(lines[0]) lines = lines[2:] if len(lines) != number_of_atoms: raise ConverterError('The actual number of atoms ({0}) does not match the expected number parsed ({1}).'.format( len(lines), number_of_atoms)) xyz_str = '\n'.join(lines) return str_to_xyz(xyz_str)
[docs]def xyz_from_data(coords, numbers=None, symbols=None, isotopes=None) -> dict: """ Get the ARC xyz dictionary format from raw data. Either ``numbers`` or ``symbols`` must be specified. If ``isotopes`` isn't specified, the most common isotopes will be assumed for all elements. Args: coords (tuple, list): The xyz coordinates. numbers (tuple, list, optional): Element nuclear charge numbers. symbols (tuple, list, optional): Element symbols. isotopes (tuple, list, optional): Element isotope numbers. Raises: ConverterError: If neither ``numbers`` nor ``symbols`` are specified, if both are specified, or if the input lengths aren't consistent. Returns: dict: The ARC dictionary xyz format. """ if isinstance(coords, np.ndarray): coords = tuple(tuple(coord.tolist()) for coord in coords) elif isinstance(coords, list): coords = tuple(tuple(coord) for coord in coords) if numbers is not None and isinstance(numbers, np.ndarray): numbers = tuple(numbers.tolist()) elif numbers is not None and isinstance(numbers, list): numbers = tuple(numbers) if symbols is not None and isinstance(symbols, list): symbols = tuple(symbols) if isotopes is not None and isinstance(isotopes, list): isotopes = tuple(isotopes) if not isinstance(coords, tuple): raise ConverterError('Expected coords to be a tuple, got {0} which is a {1}'.format(coords, type(coords))) if numbers is not None and not isinstance(numbers, tuple): raise ConverterError('Expected numbers to be a tuple, got {0} which is a {1}'.format(numbers, type(numbers))) if symbols is not None and not isinstance(symbols, tuple): raise ConverterError('Expected symbols to be a tuple, got {0} which is a {1}'.format(symbols, type(symbols))) if isotopes is not None and not isinstance(isotopes, tuple): raise ConverterError('Expected isotopes to be a tuple, got {0} which is a {1}'.format(isotopes, type(isotopes))) if numbers is None and symbols is None: raise ConverterError('Must set either "numbers" or "symbols". Got neither.') if numbers is not None and symbols is not None: raise ConverterError('Must set either "numbers" or "symbols". Got both.') if numbers is not None: symbols = tuple(symbol_by_number[number] for number in numbers) if len(coords) != len(symbols): raise ConverterError(f'The length of the coordinates ({len(coords)}) is different than the length of the ' f'numbers/symbols ({len(symbols)}).') if isotopes is not None and len(coords) != len(isotopes): raise ConverterError(f'The length of the coordinates ({len(coords)}) is different than the length of isotopes ' f'({len(isotopes)}).') if isotopes is None: isotopes = tuple(get_most_common_isotope_for_element(symbol) for symbol in symbols) xyz_dict = {'symbols': symbols, 'isotopes': isotopes, 'coords': coords} return xyz_dict
[docs]def species_to_sdf_file(species: 'ARCSpecies', path: str, ): """ Write an SDF file with coordinates and connectivity information. Args: species (ARCSpecies): The ARCSpecies object instance. path (str): The full path to the .sdf file that will be saved. """ if species.mol is None: species.mol_from_xyz() if species.mol is not None: rdkit_mol = rdkit_conf_from_mol(species.mol, species.get_xyz())[1] w = SDWriter(path) w.write(rdkit_mol) w.close()
[docs]def sort_xyz_using_indices(xyz_dict: dict, indices: Optional[List[int]], ) -> dict: """ Sort the tuples in an xyz dict according to the given indices. Args: xyz_dict (dict): The Cartesian coordinates. indices (Optional[List[int]]): Entries are 0-indices of the desired order. Returns: dict: The ordered xyz. """ if indices is None: logger.error('Cannot sort xyz without a map.') return xyz_dict if len(indices) != len(xyz_dict['coords']): raise ValueError(f"The number of indices {len(indices)} does not match " f"the number of coordinates {len(xyz_dict['coords'])}") if any(i >= len(xyz_dict['coords']) for i in indices): raise ValueError(f"All indices must be lower than the length of the coordinates tuple. " f"Got {len(xyz_dict['coords'])} coordinates, and indices of:\n{indices}") coords, symbols, isotopes = list(), list(), list() for i in indices: coords.append(xyz_dict['coords'][i]) symbols.append(xyz_dict['symbols'][i]) isotopes.append(xyz_dict['isotopes'][i]) return xyz_from_data(coords=coords, symbols=symbols, isotopes=isotopes)
[docs]def xyz_to_ase(xyz_dict: dict) -> Atoms: """ Convert an xyz dict to an ASE Atoms object. Args: xyz_dict (dict): The ARC xyz format. Returns: Type[Atoms]: The corresponding ASE Atom object. """ return Atoms(xyz_dict['symbols'], xyz_dict['coords'])
[docs]def translate_xyz(xyz_dict: dict, translation: Tuple[float, float, float], ) -> dict: """ Translate xyz. Args: xyz_dict (dict): The ARC xyz format. translation (Tuple[float, float, float]): The x, y, z translation vector. Returns: dict: The translated xyz. """ if all(t == 0 for t in translation): return xyz_dict coords = list() for coord in xyz_dict['coords']: coords.append(tuple(coord[i] + translation[i] for i in range(3))) new_xyz = {'symbols': xyz_dict['symbols'], 'isotopes': xyz_dict['isotopes'], 'coords': tuple(coords), } return new_xyz
[docs]def displace_xyz(xyz: dict, displacement: np.ndarray, amplitude: float = 0.25, use_weights: bool = True, ) -> Tuple[dict, dict]: """ Displace the coordinates using the ``displacement`` by the requested ``amplitude`` using atom mass weights. Args: xyz (dict): The coordinates. displacement (list): The corresponding xyz displacement for each atom. amplitude (float, optional): The factor multiplication for the displacement. use_weights( bool, optional): Whether to scale displacements by the square root of the respective element mass. Returns: Tuple[dict, dict]: The two displaced xyz's, one for each direction (+/-) of the weighted ``displacement``. """ coords = xyz_to_coords_list(xyz) weights = [mass ** 0.5 for mass in get_element_mass_from_xyz(xyz)] if use_weights else [1] * len(xyz['symbols']) coords_1 = [[float(coord[0] + amplitude * displacement[i][0] * weights[i]), float(coord[1] + amplitude * displacement[i][1] * weights[i]), float(coord[2] + amplitude * displacement[i][2] * weights[i])] for i, coord in enumerate(coords)] coords_2 = [[float(coord[0] - amplitude * displacement[i][0] * weights[i]), float(coord[1] - amplitude * displacement[i][1] * weights[i]), float(coord[2] - amplitude * displacement[i][2] * weights[i])] for i, coord in enumerate(coords)] xyz_1 = xyz_from_data(coords=coords_1, symbols=xyz['symbols'], isotopes=xyz['isotopes']) xyz_2 = xyz_from_data(coords=coords_2, symbols=xyz['symbols'], isotopes=xyz['isotopes']) return xyz_1, xyz_2
[docs]def get_element_mass_from_xyz(xyz: dict) -> List[float]: """ Get a list of element masses corresponding to the given ``xyz`` considering isotopes. Args: xyz (dict): The coordinates. Returns: List[float]: The corresponding list of mass in amu. """ return [get_element_mass(symbol, isotope)[0] for symbol, isotope in zip(xyz['symbols'], xyz['isotopes'])]
[docs]def hartree_to_si(e: float, kilo: bool = True, ) -> float: """ Convert Hartree units into J/mol or into kJ/mol. Args: e (float): Energy in Hartree. kilo (bool, optional): Whether to return kJ/mol units. ``True`` by default. """ if not isinstance(e, (int, float)): raise ValueError(f'Expected a float, got {e} which is a {type(e)}.') factor = 0.001 if kilo else 1 return e * constants.E_h * constants.Na * factor
[docs]def rmg_conformer_to_xyz(conformer): """ Convert xyz coordinates from an rmgpy.statmech.Conformer object into the ARC dict xyz style. Notes: Only the xyz information (symbols and coordinates) will be taken from the Conformer object. Other properties such as electronic energy will not be converted. We also assume that we can get the isotope number by rounding the mass Args: conformer (Conformer): An rmgpy.statmech.Conformer object containing the desired xyz coordinates Raises: TypeError: If conformer is not an rmgpy.statmech.Conformer object Returns: dict: The ARC xyz format """ if not isinstance(conformer, Conformer): raise TypeError(f'Expected conformer to be an rmgpy.statmech.Conformer object but instead got {conformer}, ' f'which is a {type(conformer)} object.') symbols = tuple(symbol_by_number[n] for n in conformer.number.value) isotopes = tuple(int(round(m)) for m in conformer.mass.value) coords = tuple(tuple(coord) for coord in conformer.coordinates.value) xyz_dict = {'symbols': symbols, 'isotopes': isotopes, 'coords': coords} return xyz_dict
[docs]def xyz_to_rmg_conformer(xyz_dict: dict) -> Optional[Conformer]: """ Convert the Arc dict xyz style into an rmgpy.statmech.Conformer object containing these coordinates. Notes: Only the xyz information will be supplied to the newly created Conformer object Args: xyz_dict (dict): The ARC dict xyz style coordinates Returns: Optional[Conformer]: An rmgpy.statmech.Conformer object containing the desired xyz coordinates. """ if xyz_dict is None: return None xyz_dict = check_xyz_dict(xyz_dict) mass_and_number = (get_element_mass(*args) for args in zip(xyz_dict['symbols'], xyz_dict['isotopes'])) mass, number = zip(*mass_and_number) mass = ArrayQuantity(mass, 'amu') number = ArrayQuantity(number, '') coordinates = ArrayQuantity(xyz_dict['coords'], 'angstroms') conformer = Conformer(number=number, mass=mass, coordinates=coordinates) return conformer
[docs]def standardize_xyz_string(xyz_str, isotope_format=None): """ A helper function to correct xyz string format input (string to string). Usually empty lines are added by the user either in the beginning or the end, here we remove them along with other common issues. Args: xyz_str (str): The string xyz format, or a Gaussian output format. isotope_format (str, optional): The format for specifying the isotope if it is not the most abundant one. By default, isotopes will not be specified. Currently the only supported option is 'gaussian'. Returns: str: The string xyz format in standardized format. Raises: ConverterError: If ``xyz_str`` is of wrong type. """ if not isinstance(xyz_str, str): raise ConverterError('Expected a string format, got {0}'.format(type(xyz_str))) xyz_dict = str_to_xyz(xyz_str) return xyz_to_str(xyz_dict=xyz_dict, isotope_format=isotope_format)
[docs]def check_xyz_dict(xyz: Union[dict, str], project_directory: Optional[str] = None, ) -> Optional[dict]: """ Check that the xyz dictionary entered is valid. If it is a string, convert it. If it is a Z matrix, convert it to cartesian coordinates, If isotopes are not in xyz_dict, common values will be added. If a part of the xyz structure is a np.ndarray type, convert it by always calling xyz_from_data(). Args: xyz (Union[dict, str]): The xyz dictionary. project_directory (str, optional): The path to the project directory. Raises: ConverterError: If ``xyz`` is of wrong type or is missing symbols or coords. Returns: Optional[dict] The cartesian coordinates in a dictionary format. """ if xyz is None: return None xyz_dict = str_to_xyz(xyz, project_directory) if isinstance(xyz, str) else xyz if not isinstance(xyz_dict, dict): raise ConverterError(f'Expected a dictionary, got {type(xyz_dict)}') if 'vars' in list(xyz_dict.keys()): # this is a zmat, convert to cartesian xyz_dict = zmat_to_xyz(zmat=xyz_dict, keep_dummy=False) if 'symbols' not in list(xyz_dict.keys()): raise ConverterError(f'XYZ dictionary is missing symbols. Got:\n{xyz_dict}') if 'coords' not in list(xyz_dict.keys()): raise ConverterError(f'XYZ dictionary is missing coords. Got:\n{xyz_dict}') if len(xyz_dict['symbols']) != len(xyz_dict['coords']): raise ConverterError(f'Got {len(xyz_dict["symbols"])} symbols and {len(xyz_dict["coords"])} ' f'coordinates:\n{xyz_dict}') xyz_dict = xyz_from_data(coords=xyz_dict['coords'], symbols=xyz_dict['symbols'], isotopes=xyz_dict['isotopes'] if 'isotopes' in list(xyz_dict.keys()) else None) if len(xyz_dict['symbols']) != len(xyz_dict['isotopes']): raise ConverterError(f'Got {len(xyz_dict["symbols"])} symbols and {len(xyz_dict["isotopes"])} ' f'isotopes:\n{xyz_dict}') return xyz_dict
[docs]def check_zmat_dict(zmat: Union[dict, str]) -> dict: """ Check that the zmat dictionary entered is valid. If it is a string, convert it. If it represents cartesian coordinates, convert it to internal coordinates. If a map isn't given, a trivial one will be added. Args: zmat (dict, str): The zmat dictionary. Raises: ConverterError: If ``zmat`` is of wrong type or is missing vars or coords. """ zmat_dict = str_to_zmat(zmat) if isinstance(zmat, str) else zmat if not isinstance(zmat_dict, dict): raise ConverterError(f'Expected a dictionary, got {type(zmat_dict)}') if 'vars' not in list(zmat_dict.keys()): # this is probably a representation of cartesian coordinates, convert to zmat zmat_dict = zmat_from_xyz(xyz=check_xyz_dict(zmat_dict), consolidate=True) if 'symbols' not in list(zmat_dict.keys()): raise ConverterError(f'zmat dictionary is missing symbols. Got:\n{zmat_dict}') if 'coords' not in list(zmat_dict.keys()): raise ConverterError(f'zmat dictionary is missing coords. Got:\n{zmat_dict}') if len(zmat_dict['symbols']) != len(zmat_dict['coords']): raise ConverterError(f'Got {len(zmat_dict["symbols"])} symbols and {len(zmat_dict["coords"])} ' f'coordinates:\n{zmat_dict}') if 'map' not in list(zmat_dict.keys()): # add a trivial map zmat_dict['map'] = {i: i for i in range(len(zmat_dict['symbols']))} if len(zmat_dict['symbols']) != len(zmat_dict['map']): raise ConverterError(f'Got {len(zmat_dict["symbols"])} symbols and {len(zmat_dict["isotopes"])} ' f'isotopes:\n{zmat_dict}') for i, coord in enumerate(zmat_dict['coords']): for j, param in enumerate(coord): if param is not None: indices = get_atom_indices_from_zmat_parameter(param) if not any(i == index_tuple[0] for index_tuple in indices): raise ConverterError(f'The {param} parameter in the zmat is ill-defined:\n{zmat_dict}') if (i == 0 or i == 1 and j in [1, 2] or i == 2 and j == 3) and param is not None: raise ConverterError(f'The zmat is ill-defined:\n{zmat_dict}') return zmat_dict
[docs]def remove_dummies(xyz): """ Remove dummy ('X') atoms from cartesian coordinates. Args: xyz (dict, str): The cartesian coordinate, either in a dict or str format. Returns: dict: The coordinates w/o dummy atoms. Raises: InputError: If ``xyz`` if of wrong type. """ if isinstance(xyz, str): xyz = str_to_xyz(xyz) if not isinstance(xyz, dict): raise InputError(f'xyz must be a dictionary, got {type(xyz)}') symbols, isotopes, coords = list(), list(), list() for symbol, isotope, coord in zip(xyz['symbols'], xyz['isotopes'], xyz['coords']): if symbol != 'X': symbols.append(symbol) isotopes.append(isotope) coords.append(coord) return xyz_from_data(coords=coords, symbols=symbols, isotopes=isotopes)
[docs]def zmat_from_xyz(xyz: Union[dict, str], mol: Optional[Molecule] = None, constraints: Optional[dict] = None, consolidate: bool = True, consolidation_tols: dict = None, is_ts: bool = False, ) -> dict: """ Generate a Z matrix from xyz. Args: xyz (Union[dict, str]): The cartesian coordinate, either in a dict or str format. mol (Molecule, optional): The corresponding RMG Molecule with connectivity information. constraints (dict, optional): Accepted keys are: 'R_atom', 'R_group', 'A_atom', 'A_group', 'D_atom', 'D_group', or 'D_groups'. 'R', 'A', and 'D' constrain distances, angles, and dihedrals, respectively. Values are lists of atom indices (0-indexed) tuples. The atom indices order matters. Specifying '_atom' will cause only the last atom in the specified list values to translate/rotate if the corresponding zmat parameter is changed. Specifying '_group' will cause the entire group connected to the last atom to translate/rotate if the corresponding zmat parameter is changed. Specifying '_groups' (only valid for D) will cause the groups connected to the last two atoms to translate/rotate if the corresponding parameter is changed. consolidate (bool, optional): Whether to consolidate the zmat after generation, ``True`` to consolidate. consolidation_tols (dict, optional): Keys are 'R', 'A', 'D', values are floats representing absolute tolerance for consolidating almost equal internal coordinates. is_ts (bool, optional): Whether this is a representation of a TS. If it is not, a ``mol`` object will be generated if not given. Raises: InputError: If ``xyz`` if of a wrong type. Returns: dict: The Z matrix. """ xyz = str_to_xyz(xyz) if isinstance(xyz, str) else xyz if not isinstance(xyz, dict): raise InputError(f'xyz must be a dictionary, got {type(xyz)}') xyz = remove_dummies(xyz) if mol is None and not is_ts: mol = molecules_from_xyz(xyz=xyz)[1] return xyz_to_zmat(xyz, mol=mol, constraints=constraints, consolidate=consolidate, consolidation_tols=consolidation_tols, )
[docs]def zmat_to_xyz(zmat, keep_dummy=False, xyz_isotopes=None): """ Generate the xyz dict coordinates from a zmat dict. Most common isotopes assumed, unless a reference xyz dict is given. Args: zmat (dict): The zmat. keep_dummy (bool): Whether to keep dummy atoms ('X'), ``True`` to keep, default is ``False``. xyz_isotopes (dict): A reference xyz dictionary to take isotope information from. Must be ordered as the original mol/xyz used to create ``zmat``. Returns: dict: The xyz cartesian coordinates. """ coords, symbols = zmat_to_coords(zmat, keep_dummy=keep_dummy) isotopes = xyz_isotopes['isotopes'] if xyz_isotopes is not None else None xyz_dict = translate_to_center_of_mass(xyz_from_data(coords=coords, symbols=symbols, isotopes=isotopes)) return xyz_dict
[docs]def zmat_to_str(zmat, zmat_format='gaussian', consolidate=True): """ Convert a zmat to a string format. Args: zmat (dict): The Z Matrix to convert. zmat_format (str, optional): The requested format to output (varies by ESS). Allowed values are: 'gaussian', 'qchem', 'molpro', 'orca', 'cfour', or 'psi4'. The default format is 'gaussian'. consolidate (bool): Whether to return a consolidated zmat (geometry optimization will be more efficient). Returns: str: The string representation of the zmat in the requested format. Raises: ConverterError: If ``zmat`` is of wrong type or missing keys, or if ``zmat_format`` is not recognized. """ if not isinstance(zmat, dict): raise ConverterError(f'zmat has to be a dict, got: {type(zmat)}') if 'symbols' not in zmat or 'coords' not in zmat or 'vars' not in zmat: raise ConverterError(f'zmat must contain the "symbols", "coords", and "vars" keys, got: ' f'{list(zmat.keys())}.') if zmat_format == 'terachem': raise ConverterError('TeraChem does not accept a zmat as input (it has its own internal conversions).') if zmat_format not in ['gaussian', 'qchem', 'molpro', 'orca', 'psi4', 'cfour']: raise ConverterError(f'zmat_format must be either gaussian, qchem, molpro, orca, cfour, or psi4, ' f'got: {zmat_format}.') if zmat_format == 'orca': # replace dummy atom symbols symbols = list() for symbol in zmat['symbols']: symbols.append(symbol if symbol != 'X' else 'DA') else: symbols = zmat['symbols'] if zmat_format == 'orca': # Redundant internal coordinates are automatically used by Orca, # parametarized internal coordinates are hence not supported consolidate = False separator = ',' if zmat_format in ['molpro'] else '' var_separator = '=' if zmat_format in ['gaussian', 'molpro', 'qchem', 'psi4', 'cfour'] else ' ' zmat_str, variables_str, variables = '', '', list() type_indices = {'R': 1, 'A': 1, 'D': 1} # consolidation counters variables_dict = dict() # keys are coord (e.g., 'R_2|4_0|0'), values are vars (e.g., 'R1') for i, (symbol, coords) in enumerate(zip(symbols, zmat['coords'])): line = f'{symbol:>3}' for coord in coords: if coord is not None: index_tuples = get_atom_indices_from_zmat_parameter(coord) for indices in index_tuples: if indices[0] == i: break if consolidate: if coord in list(variables_dict.keys()): var_str = variables_dict[coord] else: var_type = coord[0] # 'R', 'A', or 'D' var_str = f'{var_type}{type_indices[var_type]}' type_indices[var_type] += 1 variables_dict[coord] = var_str variables.append(f'{var_str}{var_separator}{zmat["vars"][coord]:.4f}\n') line += f'{separator}{indices[-1] + 1:8d}{separator}{var_str:>8}' # convert to 1-indexed else: line += f'{separator}{indices[-1] + 1:8d}{separator}{zmat["vars"][coord]:10.4f}' if zmat_format == 'orca' and consolidate: symbol, indices, coordinates = '', '', '' for j, entry in enumerate(line.split()): if j == 0: symbol = entry + ' ' elif j % 2 == 0: coordinates += entry + ' ' else: indices += entry + ' ' while len(indices.split()) < 3: indices += '0 ' while len(coordinates.split()) < 3: coordinates += '0.0 ' line = symbol + indices + coordinates[:-1] zmat_str += line + '\n' if zmat_format in ['gaussian']: variables_str = ''.join(sorted(variables)) result = f'{zmat_str}Variables:\n{variables_str}' if consolidate else zmat_str elif zmat_format in ['qchem', 'psi4', 'orca', 'cfour']: variables_str = ''.join(sorted(variables)) result = f'{zmat_str}\n{variables_str}' if consolidate else zmat_str elif zmat_format in ['molpro']: variables_str = ''.join(sorted(variables)) result = f'{variables_str}\n{zmat_str}' if consolidate else zmat_str else: result = zmat_str + variables_str return result
[docs]def str_to_zmat(zmat_str): """ Convert a string Z Matrix format to the ARC dict zmat style. Note: The ``zmat_str`` argument could also direct to a file path to parse the data from. A typical zmat string format may look like this:: C H 1 R1 H 1 R1 2 A1 H 1 R1 2 A1 3 D1 H 1 R1 2 A1 3 D2 A1=109.4712 D1=120.0000 D2=240.0000 R1=1.0912 The resulting zmat for the above example is:: {'symbols': ('C', 'H', 'H', 'H', 'H'), 'coords': ((None, None, None), ('R_1_0', None, None), ('R_2_1', 'A_2_1_0', None), ('R_3_2', 'A_3_2_0', 'D_3_2_0_1'), ('R_4_3', 'A_4_3_0', 'D_4_3_0_2')), 'vars': {'R_1_0': 1.0912, 'R_2_1': 1.782, 'A_2_1_0': 35.2644, 'R_3_2': 1.782, 'A_3_2_0': 35.2644, 'D_3_2_0_1': 120.0, 'R_4_3': 1.782, 'A_4_3_0': 35.2644, 'D_4_3_0_2': 240.0}, 'map': {0: 0, 1: 1, 2: 2, 3: 3, 4: 4}} Args: zmat_str (str): The string zmat format to be converted. Returns: dict: The ARC zmat format. Raises: ConverterError: If zmat_str is not a string or does not have enough values per line. """ if not isinstance(zmat_str, str): raise ConverterError(f'Expected a string input, got {type(zmat_str)}') if os.path.isfile(zmat_str): with open(zmat_str, 'r') as f: zmat_str = f.read() symbols, coords, variables = list(), list(), dict() coords_str = split_str_zmat(zmat_str)[0] index = 1 for i, line in enumerate(coords_str.splitlines()): splits = line.split() if i == 1: # the atom index in this line must point to the first atom in the zmat, # deduce whether this zmat is in a 0-index or a 1-index format index = int(splits[1]) if len(splits) not in (1, 3, 5, 7): raise ConverterError(f'Could not interpret the zmat line {line}') symbols.append(splits[0]) r_key = f'R_{i}_{int(splits[1]) - index}' if len(splits) >= 3 else None # convert to 0-index a_key = 'A' + r_key[1:] + f'_{int(splits[3]) - index}' if len(splits) >= 5 else None d_key = 'D' + a_key[1:] + f'_{int(splits[5]) - index}' if len(splits) == 7 else None coords.append((r_key, a_key, d_key)) if r_key is not None: variables[r_key] = float(splits[2]) if is_str_float(splits[2]) \ else get_zmat_str_var_value(zmat_str, splits[2]) if a_key is not None: variables[a_key] = float(splits[4]) if is_str_float(splits[4]) \ else get_zmat_str_var_value(zmat_str, splits[4]) if d_key is not None: variables[d_key] = float(splits[6]) if is_str_float(splits[6]) \ else get_zmat_str_var_value(zmat_str, splits[6]) map_ = {i: i for i in range(len(symbols))} # trivial map zmat_dict = {'symbols': tuple(symbols), 'coords': tuple(coords), 'vars': variables, 'map': map_} return zmat_dict
[docs]def split_str_zmat(zmat_str) -> Tuple[str, Optional[str]]: """ Split a string zmat into its coordinates and variables sections. Args: zmat_str (str): The zmat. Returns: Tuple[str, Optional[str]]: The coords section and the variables section if it exists, else ``None``. """ coords, variables = list(), list() flag = False if 'variables' in zmat_str.lower(): for line in zmat_str.splitlines(): if 'variables' in line.lower(): flag = True continue elif flag and line: variables.append(line) elif line: coords.append(line) else: splits = zmat_str.splitlines() if len(splits[0].split()) == len(splits[1].split()) and \ (len(splits[0].split()) == 2 or (len(splits[0].split()) == 1 and len(splits[1]) != 1)): # this string starts with the variables section for line in splits: if flag and line: coords.append(line) if not flag and len(line.split()) == len(splits[0].split()) and line: variables.append(line) else: flag = True elif len(splits[-1].split()) == len(splits[-2].split()) and len(splits[-1].split()) in [1, 2]: # this string starts with the coordinates section for line in splits: if flag and len(line.split()) == len(splits[-1].split()) and line: variables.append(line) if not flag and line: coords.append(line) else: flag = True coords = '\n'.join(coords) if len(coords) else zmat_str variables = '\n'.join(variables) if len(variables) else None return coords, variables
[docs]def get_zmat_str_var_value(zmat_str, var): """ Returns the value of a zmat variable from a string-represented zmat. Args: zmat_str (str): The string representation of the zmat. var (str): The variable to look for. Returns: float: The value corresponding to the ``var``. """ for line in reversed(zmat_str.splitlines()): if var in line and len(line.split()) in [1, 2]: return float(line.replace('=', ' ').split()[-1]) raise ConverterError(f'Could not find var "{var}" in zmat:\n{zmat_str}')
[docs]def get_zmat_param_value(coords: Dict[str, tuple], indices: List[int], mol: Molecule, index: int = 0, ) -> float: """ Generates a zmat similarly to modify_coords(), but instead of modifying it, only reports on the value of a requested parameter. Args: coords (dict): Either cartesian (xyz) or internal (zmat) coordinates. indices (list): The indices to change. Specifying a list of length 2, 3, or 4 will result in a bond length, angle, or a dihedral angle parameter, respectively. mol (Molecule, optional): The corresponding RMG molecule with the connectivity information. index (bool, optional): Whether the specified atoms are 0- or 1-indexed. Returns: float: The parameter value in Angstrom or degrees. """ if index < 0 or index > 1: raise ValueError(f'The index argument must be either 0 or 1, got {index}.') indices = [i - index for i in indices] # make sure indices are 0-indexed modification_type = KEY_FROM_LEN[len(indices)] + '_' + 'atom' # e.g., R_atom if 'map' in list(coords.keys()): # a zmat was given, we actually need xyz to recreate a specific zmat for the parameter modification. xyz = zmat_to_xyz(zmat=coords) else: # coords represents xyz xyz = coords constraints = {modification_type: [tuple(indices)]} zmat = xyz_to_zmat(xyz=xyz, mol=mol, consolidate=False, constraints=constraints) param = get_parameter_from_atom_indices(zmat, indices, xyz_indexed=True) if isinstance(param, str): return zmat["vars"][param] elif isinstance(param, list): return sum(zmat["vars"][par] for par in param)
[docs]def relocate_zmat_dummy_atoms_to_the_end(zmat_map: dict) -> dict: """ Relocate all dummy atoms in a ZMat to the end of the corresponding Cartesian coordinates atom list. Only modifies the values of the ZMat map. Args: zmat_map (dict): The ZMat map. Returns: dict: The updated ZMat map. """ no_x_map = {key: val for key, val in zmat_map.items() if isinstance(val, int)} x_map = {key: val for key, val in zmat_map.items() if isinstance(val, str) and 'X' in val} for x_atom_number_in_zmat, x_atom_val in x_map.items(): x_atom_number_in_cartesian = int(x_atom_val[1:]) if any(x_atom_number_in_cartesian < number_in_cartesian for number_in_cartesian in no_x_map.values()): no_x_map = {key: val - 1 if x_atom_number_in_cartesian < val else val for key, val in no_x_map.items()} num_no_x_atoms = len(no_x_map.keys()) x_map = {key: f'X{num_no_x_atoms + i}' for i, (key, val) in enumerate(x_map.items())} no_x_map.update(x_map) return no_x_map
[docs]def modify_coords(coords: Dict[str, tuple], indices: List[int], new_value: float, modification_type: str, mol: Optional[Molecule] = None, index: int = 0, fragments: Optional[List[List[int]]] = None, ) -> Dict[str, tuple]: """ Modify either a bond length, angle, or dihedral angle in the given coordinates. The coordinates input could either be cartesian (preferred) or internal (will be first converter to cartesian, then to internal back again since a specific zmat must be created). Internal coordinates will be used for the modification (using folding and unfolding). Specifying an 'atom' modification type will only translate/rotate the atom represented by the first index if the corresponding zmat parameter is changed. Specifying a 'group' modification type will cause the entire group connected to the first atom to translate/rotate if the corresponding zmat parameter is changed. Specifying a 'groups' modification type (only valid for dihedral angles) will cause the groups connected to the first two atoms to translate/rotate if the corresponding zmat parameter is changed. Args: coords (dict): Either cartesian (xyz) or internal (zmat) coordinates. indices (list): The indices to change. Specifying a list of length 2, 3, or 4 will result in changing a bond length, angle, or a dihedral angle, respectively. new_value (float): The new value to set (in Angstrom or degrees). modification_type (str): Either 'atom', 'group', or 'groups' ('groups' is only allowed for dihedral angles). Note that D 'groups' is a composite constraint, equivalent to calling D 'group' for each 1st neighboring atom in a torsion top. mol (Molecule, optional): The corresponding RMG molecule with the connectivity information. Mandatory if the modification type is 'group' or 'groups'. index (bool, optional): Whether the specified atoms in ``indices`` and ``fragments`` are 0- or 1-indexed. fragments (List[List[int]], optional): Fragments represented by the species, i.e., as in a VdW well or a TS. Entries are atom index lists of all atoms in a fragment, each list represents a different fragment. indices are 0-indexed. Raises: InputError: If ``coords`` is not give, or if a group/s modification type is requested but ``mol`` is ``None``, or if a 'groups' modification type was specified for 'R' or 'A'. Returns: dict: The respective cartesian (xyz) coordinates reflecting the desired modification. """ if coords is None: raise InputError(f'coords must be given.') if modification_type not in ['atom', 'group', 'groups']: raise InputError(f'Allowed modification types are atom, group, or groups, got: {modification_type}.') if mol is None and 'group' in modification_type: raise InputError(f'A molecule must be given for a {modification_type} modification type.') modification_type = KEY_FROM_LEN[len(indices)] + '_' + modification_type # e.g., R_group if modification_type == 'groups' and modification_type[0] != 'D': raise InputError(f'The "groups" modification type is only supported for dihedrals (D), ' f'not for an {modification_type[0]} parameter.') if index < 0 or index > 1: raise ValueError(f'The index argument must be either 0 or 1, got {index}.') if 'map' in list(coords.keys()): # a zmat was given, we actually need xyz to recreate a specific zmat for the parameter modification. xyz = zmat_to_xyz(zmat=coords) else: # coords represents xyz xyz = coords indices = [i - index for i in indices] # make sure indices are 0-indexed if fragments is None: fragments = [list(range(len(xyz['symbols'])))] else: new_fragments = list() for fragment in fragments: new_fragments.append([f - index for f in fragment]) # make sure indices are 0-indexed fragments = new_fragments if any([i < 0 for i in indices]): raise ValueError(f'indices cannot be negative, got {indices}') for fragment in fragments: if any([f < 0 for f in fragment]): raise ValueError(f'fragment indices cannot be negative, got {fragments}') constraints_list = [tuple(indices)] if modification_type == 'D_groups': # this is a special constraint for which neighbor dihedrals must be considered as well. neighbors = get_all_neighbors(mol=mol, atom_index=indices[1]) for neighbor in neighbors: if neighbor not in indices: constraints_list.append(tuple([neighbor] + indices[1:])) modification_type = 'D_group' new_xyz = xyz increment = None for constraint in constraints_list: constraint_dict = {modification_type: [constraint]} zmat = xyz_to_zmat(xyz=new_xyz, mol=mol, consolidate=False, constraints=constraint_dict, fragments=fragments) param = get_parameter_from_atom_indices(zmat, constraint, xyz_indexed=True) if modification_type == 'D_group' and increment is None: # determine the dihedral increment, will be used for all other D-group modifications increment = new_value - zmat["vars"][param] if isinstance(param, str): if increment is None: zmat['vars'][param] = new_value else: zmat['vars'][param] += increment elif isinstance(param, list): # The requested parameter represents an angle split by a dummy atom, # a list of the two corresponding parameters was returned. zmat['vars'][param[0]] = new_value - sum(zmat['vars'][par] for par in param[1:]) new_xyz = zmat_to_xyz(zmat=zmat) return new_xyz
[docs]def get_most_common_isotope_for_element(element_symbol): """ Get the most common isotope for a given element symbol. Args: element_symbol (str): The element symbol. Returns: int: The most common isotope number for the element. Returns ``None`` for dummy atoms ('X'). """ if element_symbol == 'X': # this is a dummy atom (such as in a zmat) return None mass_list = mass_by_symbol[element_symbol] if len(mass_list[0]) == 2: # isotope contribution is unavailable, just get the first entry isotope = mass_list[0][0] else: # isotope contribution is unavailable, get the most common isotope isotope, isotope_contribution = mass_list[0][0], mass_list[0][2] for iso in mass_list: if iso[2] > isotope_contribution: isotope_contribution = iso[2] isotope = iso[0] return isotope
[docs]def xyz_to_pybel_mol(xyz: dict): """ Convert xyz into an Open Babel molecule object. Args: xyz (dict): ARC's xyz dictionary format. Returns: Optional[OBmol] An Open Babel molecule. """ if xyz is None: return None xyz = check_xyz_dict(xyz) try: pybel_mol = pybel.readstring('xyz', xyz_to_xyz_file_format(xyz)) except (IOError, InputError): return None return pybel_mol
[docs]def pybel_to_inchi(pybel_mol, has_h=True): """ Convert an Open Babel molecule object to InChI Args: pybel_mol (OBmol): An Open Babel molecule. has_h (bool): Whether the molecule has hydrogen atoms. ``True`` if it does. Returns: str: The respective InChI representation of the molecule. """ if has_h: inchi = pybel_mol.write('inchi', opt={'F': None}).strip() # Add fixed H layer else: inchi = pybel_mol.write('inchi').strip() return inchi
[docs]def rmg_mol_from_inchi(inchi: str): """ Generate an RMG Molecule object from InChI. Args: inchi (str): The InChI string. Returns: Molecule: The respective RMG Molecule object. """ try: rmg_mol = Molecule().from_inchi(inchi, raise_atomtype_exception=False) except (AtomTypeError, ValueError, KeyError, TypeError) as e: logger.debug(f'Got an Error when trying to create an RMG Molecule object from InChI "{inchi}":\n{e}') if 'got an unexpected keyword argument' in str(e): raise ConverterError('Make sure RMG-Py is up to date and compiled!') return None return rmg_mol
[docs]def elementize(atom): """ Convert the atom type of an RMG ``Atom`` object into its general parent element atom type (e.g., 'S4d' into 'S'). Args: atom (Atom): The atom to process. """ atom_type = atom.atomtype atom_type = [at for at in atom_type.generic if at.label != 'R' and at.label != 'R!H' and 'Val' not in at.label] if atom_type: atom.atomtype = atom_type[0]
[docs]def molecules_from_xyz(xyz: Optional[Union[dict, str]], multiplicity: Optional[int] = None, charge: int = 0, ) -> Tuple[Optional[Molecule], Optional[Molecule]]: """ Creating RMG:Molecule objects from xyz with correct atom labeling. Based on the MolGraph.perceive_smiles method. If `multiplicity` is given, the returned species multiplicity will be set to it. Args: xyz (dict): The ARC dict format xyz coordinates of the species. multiplicity (int, optional): The species spin multiplicity. charge (int, optional): The species net charge. Returns: Tuple[Optional[Molecule], Optional[Molecule]] - The respective Molecule object with only single bonds. - The respective Molecule object with perceived bond orders. """ if xyz is None: return None, None xyz = check_xyz_dict(xyz) # 1. Generate a molecule with no bond order information with atoms ordered as in xyz. mol_graph = MolGraph(symbols=xyz['symbols'], coords=xyz['coords']) inferred_connections = mol_graph.infer_connections() if inferred_connections: mol_s1 = mol_graph.to_rmg_mol() # An RMG Molecule with single bonds, atom order corresponds to xyz. else: mol_s1 = s_bonds_mol_from_xyz(xyz) # An RMG Molecule with single bonds, atom order corresponds to xyz. if mol_s1 is None: logger.error(f'Could not create a 2D graph representation from xyz:\n{xyz_to_str(xyz)}') return None, None if multiplicity is not None: mol_s1.multiplicity = multiplicity mol_s1_updated = update_molecule(mol_s1, to_single_bonds=True) # 2. Generate a molecule with bond order information using pybel: mol_bo = None pybel_mol = xyz_to_pybel_mol(xyz) if pybel_mol is not None: inchi = pybel_to_inchi(pybel_mol, has_h=bool(len([atom.is_hydrogen() for atom in mol_s1_updated.atoms]))) mol_bo = rmg_mol_from_inchi(inchi) # An RMG Molecule with bond orders, but without preserved atom order. # 3. Generate a molecule with bond order information using xyz_to_smiles. if mol_bo is None: try: smiles_list = xyz_to_smiles(xyz=xyz, charge=charge) if smiles_list is not None: mol_bo = Molecule(smiles=smiles_list[0]) except: pass if mol_bo is not None: if multiplicity is not None: try: set_multiplicity(mol_bo, multiplicity, charge) except SpeciesError as e: logger.warning(f'Cannot infer 2D graph connectivity, failed to set species multiplicity with the ' f'following error:\n{e}') return mol_s1_updated, None mol_s1_updated.multiplicity = mol_bo.multiplicity try: order_atoms(ref_mol=mol_s1_updated, mol=mol_bo) except SanitizationError: logger.warning(f'Could not order atoms for {mol_s1_updated.copy(deep=True).to_smiles()}!') try: set_multiplicity(mol_s1_updated, mol_bo.multiplicity, charge, radical_map=mol_bo) except (ConverterError, SpeciesError) as e: logger.warning(f'Cannot infer 2D graph connectivity, failed to set species multiplicity with the ' f'following error:\n{e}') for mol in [mol_s1_updated, mol_bo]: if mol is not None and mol.multiplicity == 1: for atom in mol.atoms: atom.radical_electrons = 0 return mol_s1_updated, mol_bo
[docs]def set_multiplicity(mol, multiplicity, charge, radical_map=None): """ Set the multiplicity and charge of a molecule. If a `radical_map`, which is an RMG Molecule object with the same atom order, is given, it'll be used to set radicals (useful if bond orders aren't known for a molecule). Args: mol (Molecule): The RMG Molecule object. multiplicity (int) The spin multiplicity. charge (int): The species net charge. radical_map (Molecule, optional): An RMG Molecule object with the same atom order to be used as a radical map. Raises: ConverterError: If ``radical_map`` is of wrong type. SpeciesError: If number of radicals and multiplicity do not match or if connectivity cannot be inferred. """ mol.multiplicity = multiplicity if radical_map is not None: if not isinstance(radical_map, Molecule): raise ConverterError(f'radical_map sent to set_multiplicity() has to be a Molecule object. ' f'Got {type(radical_map)}') set_radicals_by_map(mol, radical_map) radicals = mol.get_radical_count() if mol.multiplicity != radicals + 1: # this is not the trivial "multiplicity = number of radicals + 1" case # either the number of radicals was not identified correctly from the 3D structure (i.e., should be lone pairs), # or their spin isn't determined correctly if mol.multiplicity > radicals + 1: # there are sites that should have radicals, but weren't identified as such. # try adding radicals according to missing valances add_rads_by_atom_valance(mol) if mol.multiplicity > radicals + 1: # still problematic, currently there's no automated solution to this case, raise an error raise SpeciesError(f'A multiplicity of {mol.multiplicity} was given, but only {radicals} radicals ' f'were identified. Cannot infer 2D graph representation for this species.\nMore ' f'info:{mol.copy(deep=True).to_smiles()}\n{mol.copy(deep=True).to_adjacency_list()}') add_lone_pairs_by_atom_valance(mol) # final check: an even number of radicals results in an odd multiplicity, and vice versa if divmod(mol.multiplicity, 2)[1] == divmod(radicals, 2)[1]: if not charge: raise SpeciesError('Number of radicals ({0}) and multiplicity ({1}) for {2} do not match.\n{3}'.format( radicals, mol.multiplicity, mol.copy(deep=True).to_smiles(), mol.copy(deep=True).to_adjacency_list())) else: logger.warning('Number of radicals ({0}) and multiplicity ({1}) for {2} do not match. It might be OK since ' 'this species is charged and charged molecules are currently not perceived well in ARC.' '\n{3}'.format(radicals, mol.multiplicity, mol.copy(deep=True).to_smiles(), mol.copy(deep=True).to_adjacency_list()))
[docs]def add_rads_by_atom_valance(mol): """ A helper function for assigning radicals if not identified automatically, and they are missing according to the given multiplicity. We assume here that all partial charges were already set, but this assumption could be wrong. Note: This implementation might also be problematic for aromatic species with undefined bond orders. Args: mol (Molecule): The Molecule object to process. """ for atom in mol.atoms: if atom.is_non_hydrogen(): atomic_orbitals = atom.lone_pairs + atom.radical_electrons + atom.get_total_bond_order() missing_electrons = 4 - atomic_orbitals if missing_electrons: atom.radical_electrons = missing_electrons
[docs]def add_lone_pairs_by_atom_valance(mol): """ A helper function for assigning lone pairs instead of carbenes/nitrenes if not identified automatically, and they are missing according to the given multiplicity. Args: mol (Molecule): The Molecule object to process. """ radicals = mol.get_radical_count() if mol.multiplicity < radicals + 1: carbenes, nitrenes = 0, 0 for atom in mol.atoms: if atom.is_carbon() and atom.radical_electrons >= 2: carbenes += 1 elif atom.is_nitrogen() and atom.radical_electrons >= 2: nitrenes += 1 if 2 * (carbenes + nitrenes) + mol.multiplicity == radicals + 1: # this issue can be solved by converting carbenes/nitrenes to lone pairs: if carbenes: for i in range(len(mol.atoms)): atom = mol.atoms[i] if atom.is_carbon() and atom.radical_electrons >= 2: atom.lone_pairs += 1 atom.radical_electrons -= 2 if nitrenes: for i in range(len(mol.atoms)): atom = mol.atoms[i] if atom.is_nitrogen() and atom.radical_electrons >= 2: for atom2, bond12 in atom.edges.items(): if atom2.is_sulfur() and atom2.lone_pairs >= 2 and bond12.is_single(): bond12.set_order_num(3) atom2.lone_pairs -= 1 break elif atom2.is_sulfur() and atom2.lone_pairs == 1 and bond12.is_single(): bond12.set_order_num(2) atom2.lone_pairs -= 1 atom2.charge += 1 atom.charge -= 1 break elif atom2.is_nitrogen() and atom2.lone_pairs == 1 and bond12.is_single(): bond12.set_order_num(2) atom2.lone_pairs -= 1 atom.lone_pairs += 1 atom2.charge += 1 atom.charge -= 1 break else: atom.lone_pairs += 1 atom.radical_electrons -= 2 if len(mol.atoms) == 1 and mol.multiplicity == 1 and mol.atoms[0].radical_electrons == 4: # This is a singlet atomic C or Si, convert all radicals to lone pairs mol.atoms[0].radical_electrons = 0 mol.atoms[0].lone_pairs = 2
[docs]def set_radicals_by_map(mol, radical_map): """ Set radicals in ``mol`` by ``radical_map``. Args: mol (Molecule): The RMG Molecule object to process. radical_map (Molecule): An RMG Molecule object with the same atom order to be used as a radical map. Raises: ConverterError: If atom order does not match. """ for i, atom in enumerate(mol.atoms): if atom.element.number != radical_map.atoms[i].element.number: raise ConverterError('Atom order in mol and radical_map in set_radicals_by_map() do not match. ' '{0} is not {1}.'.format(atom.element.symbol, radical_map.atoms[i].symbol)) atom.radical_electrons = radical_map.atoms[i].radical_electrons
[docs]def order_atoms_in_mol_list(ref_mol, mol_list) -> bool: """ Order the atoms in all molecules of ``mol_list`` by the atom order in ``ref_mol``. Args: ref_mol (Molecule): The reference Molecule object. mol_list (list): Entries are Molecule objects whose atoms will be reordered according to the reference. Raises: TypeError: If ``ref_mol`` or the entries in ``mol_list`` have a wrong type. Returns: bool: Whether the reordering was successful, ``True`` if it was. """ if not isinstance(ref_mol, Molecule): raise TypeError(f'expected mol to be a Molecule instance, got {ref_mol} which is a {type(ref_mol)}.') if mol_list is not None: for mol in mol_list: if not isinstance(mol, Molecule): raise TypeError(f'expected enrties of mol_list to be Molecule instances, got {mol} ' f'which is a {type(mol)}.') try: # TODO: flag as unordered (or solve) order_atoms(ref_mol, mol) except SanitizationError as e: logger.warning(f'Could not order atoms in\n' f'{mol.copy(deep=True).to_adjacency_list()}\n' f'Got the following error:\n{e}') return False else: logger.warning('Could not order atoms') return False return True
[docs]def order_atoms(ref_mol, mol): """ Order the atoms in ``mol`` by the atom order in ``ref_mol``. Args: ref_mol (Molecule): The reference Molecule object. mol (Molecule): The Molecule object to process. Raises: SanitizationError: If atoms could not be re-ordered. TypeError: If ``mol`` has a wrong type. """ if not isinstance(mol, Molecule): raise TypeError(f'expected mol to be a Molecule instance, got {mol} which is a {type(mol)}.') if ref_mol is not None and mol is not None: ref_mol_is_iso_copy = ref_mol.copy(deep=True) mol_is_iso_copy = mol.copy(deep=True) ref_mol_find_iso_copy = ref_mol.copy(deep=True) mol_find_iso_copy = mol.copy(deep=True) ref_mol_is_iso_copy = update_molecule(ref_mol_is_iso_copy, to_single_bonds=True) mol_is_iso_copy = update_molecule(mol_is_iso_copy, to_single_bonds=True) ref_mol_find_iso_copy = update_molecule(ref_mol_find_iso_copy, to_single_bonds=True) mol_find_iso_copy = update_molecule(mol_find_iso_copy, to_single_bonds=True) if mol_is_iso_copy.is_isomorphic(ref_mol_is_iso_copy, save_order=True, strict=False): mapping = mol_find_iso_copy.find_isomorphism(ref_mol_find_iso_copy, save_order=True) if len(mapping): if isinstance(mapping, list): mapping = mapping[0] index_map = {ref_mol_find_iso_copy.atoms.index(val): mol_find_iso_copy.atoms.index(key) for key, val in mapping.items()} mol.atoms = [mol.atoms[index_map[i]] for i, _ in enumerate(mol.atoms)] else: # logger.debug('Could not map molecules {0}, {1}:\n\n{2}\n\n{3}'.format( # ref_mol.copy(deep=True).to_smiles(), mol.copy(deep=True).to_smiles(), # ref_mol.copy(deep=True).to_adjacency_list(), mol.copy(deep=True).to_adjacency_list())) raise SanitizationError('Could not map molecules') else: # logger.debug('Could not map non isomorphic molecules {0}, {1}:\n\n{2}\n\n{3}'.format( # ref_mol.copy(deep=True).to_smiles(), mol.copy(deep=True).to_smiles(), # ref_mol.copy(deep=True).to_adjacency_list(), mol.copy(deep=True).to_adjacency_list())) raise SanitizationError('Could not map non isomorphic molecules')
[docs]def update_molecule(mol, to_single_bonds=False): """ Updates the molecule, useful for isomorphism comparison. Args: mol (Molecule): The RMG Molecule object to process. to_single_bonds (bool, optional): Whether to convert all bonds to single bonds. ``True`` to convert. Returns: Molecule: The updated molecule. """ new_mol = Molecule() try: atoms = mol.atoms except AttributeError: return None atom_mapping = dict() for atom in atoms: new_atom = new_mol.add_atom(Atom(atom.element)) atom_mapping[atom] = new_atom for atom1 in atoms: for atom2 in atom1.bonds.keys(): bond_order = 1.0 if to_single_bonds else atom1.bonds[atom2].get_order_num() bond = Bond(atom_mapping[atom1], atom_mapping[atom2], bond_order) new_mol.add_bond(bond) try: new_mol.update_atomtypes(raise_exception=False) except KeyError: pass new_mol.multiplicity = mol.multiplicity return new_mol
[docs]def s_bonds_mol_from_xyz(xyz: dict) -> Optional[Molecule]: """ Create a single bonded molecule from xyz using RMG's connect_the_dots() method. Args: xyz (dict): The xyz coordinates. Returns: Optional[Molecule] The respective molecule with only single bonds. """ if xyz is None: return None xyz = check_xyz_dict(xyz) mol = Molecule() for symbol, coord in zip(xyz['symbols'], xyz['coords']): atom = Atom(element=symbol) atom.coords = np.array([coord[0], coord[1], coord[2]], np.float64) mol.add_atom(atom) mol.connect_the_dots(raise_atomtype_exception=False) # only adds single bonds, but we don't care return mol
[docs]def to_rdkit_mol(mol, remove_h=False, sanitize=True): """ Convert a molecular structure to an RDKit RDMol object. Uses `RDKit <https://rdkit.org/>`_ to perform the conversion. Perceives aromaticity. Adopted from rmgpy/molecule/converter.py Args: mol (Molecule): An RMG Molecule object for the conversion. remove_h (bool, optional): Whether to remove hydrogen atoms from the molecule, ``True`` to remove. sanitize (bool, optional): Whether to sanitize the RDKit molecule, ``True`` to sanitize. Returns: RDMol: An RDKit molecule object corresponding to the input RMG Molecule object. """ atom_id_map = dict() # only manipulate a copy of ``mol`` mol_copy = mol.copy(deep=True) if not mol_copy.atom_ids_valid(): mol_copy.assign_atom_ids() for i, atom in enumerate(mol_copy.atoms): atom_id_map[atom.id] = i # keeps the original atom order before sorting # mol_copy.sort_atoms() # Sort the atoms before converting to ensure output is consistent between different runs atoms_copy = mol_copy.vertices rd_mol = Chem.rdchem.EditableMol(Chem.rdchem.Mol()) for rmg_atom in atoms_copy: rd_atom = Chem.rdchem.Atom(rmg_atom.element.symbol) if rmg_atom.element.isotope != -1: rd_atom.SetIsotope(rmg_atom.element.isotope) rd_atom.SetNumRadicalElectrons(rmg_atom.radical_electrons) rd_atom.SetFormalCharge(rmg_atom.charge) if rmg_atom.element.symbol == 'C' and rmg_atom.lone_pairs == 1 and mol_copy.multiplicity == 1: # hard coding for carbenes rd_atom.SetNumRadicalElectrons(2) if not (remove_h and rmg_atom.symbol == 'H'): rd_mol.AddAtom(rd_atom) rd_bonds = Chem.rdchem.BondType orders = {'S': rd_bonds.SINGLE, 'D': rd_bonds.DOUBLE, 'T': rd_bonds.TRIPLE, 'B': rd_bonds.AROMATIC, 'Q': rd_bonds.QUADRUPLE} # Add the bonds for atom1 in atoms_copy: for atom2, bond12 in atom1.edges.items(): if bond12.is_hydrogen_bond(): continue if atoms_copy.index(atom1) < atoms_copy.index(atom2): rd_mol.AddBond(atom_id_map[atom1.id], atom_id_map[atom2.id], orders[bond12.get_order_str()]) # Make editable mol and rectify the molecule rd_mol = rd_mol.GetMol() if sanitize: try: Chem.SanitizeMol(rd_mol) except AtomValenceException: # [C-]#[O+] raises this pass if remove_h: rd_mol = Chem.RemoveHs(rd_mol, sanitize=sanitize) return rd_mol
[docs]def rdkit_conf_from_mol(mol: Molecule, xyz: dict, ) -> tuple: """ Generate an RDKit Conformer object from an RMG Molecule object. Args: mol (Molecule): The RMG Molecule object. xyz (dict): The xyz coordinates of the conformer, atoms must be ordered as in ``mol``. Raises: ConverterError: if ``xyz`` is of wrong type. Returns: tuple: - Conformer: An RDKit Conformer object. - RDMol: An RDKit Molecule object. """ if mol is None: raise ConverterError(f'A mol argument must be given, got None.') if not isinstance(xyz, dict): raise ConverterError('The xyz argument seem to be of wrong type. Expected a dictionary, ' 'got\n{0}\nwhich is a {1}'.format(xyz, type(xyz))) rd_mol = to_rdkit_mol(mol=mol, remove_h=False) try: Chem.AllChem.EmbedMolecule(rd_mol) except: pass conf = None if rd_mol.GetNumConformers(): conf = rd_mol.GetConformer(id=0) for i in range(rd_mol.GetNumAtoms()): conf.SetAtomPosition(i, xyz['coords'][i]) # reset atom coordinates return conf, rd_mol
[docs]def set_rdkit_dihedrals(conf, rd_mol, torsion, deg_increment=None, deg_abs=None): """ A helper function for setting dihedral angles using RDKit. Either ``deg_increment`` or ``deg_abs`` must be specified. Args: conf: The RDKit conformer with the current xyz information. rd_mol: The respective RDKit molecule. torsion (list, tuple): The 0-indexed atom indices of the four atoms defining the torsion. deg_increment (float, optional): The required dihedral increment in degrees. deg_abs (float, optional): The required dihedral in degrees. Returns: dict: The xyz with the new dihedral, ordered according to the map. Raises: ConverterError: If the dihedral cannot be set. """ if deg_increment is None and deg_abs is None: raise ConverterError('Cannot set dihedral without either a degree increment or an absolute degree') if deg_increment is not None: deg0 = rdMT.GetDihedralDeg(conf, torsion[0], torsion[1], torsion[2], torsion[3]) # get original dihedral deg = deg0 + deg_increment else: deg = deg_abs rdMT.SetDihedralDeg(conf, torsion[0], torsion[1], torsion[2], torsion[3], deg) coords = list() symbols = list() for i, atom in enumerate(list(rd_mol.GetAtoms())): coords.append([conf.GetAtomPosition(i).x, conf.GetAtomPosition(i).y, conf.GetAtomPosition(i).z]) symbols.append(atom.GetSymbol()) new_xyz = xyz_from_data(coords=coords, symbols=symbols) return new_xyz
[docs]def check_isomorphism(mol1, mol2, filter_structures=True, convert_to_single_bonds=False): """ Convert ``mol1`` and ``mol2`` to RMG Species objects, and generate resonance structures. Then check Species isomorphism. This function first makes copies of the molecules, since isIsomorphic() changes atom orders. Args: mol1 (Molecule): An RMG Molecule object. mol2 (Molecule): An RMG Molecule object. filter_structures (bool, optional): Whether to apply the filtration algorithm when generating resonance structures. ``True`` to apply. convert_to_single_bonds (bool, optional): Whether to convert both molecules to single bonds, avoiding a bond order comparison (only compares connectivity). Resonance structures will not be generated. Returns: bool: Whether one of the molecules in the Species derived from ``mol1`` is isomorphic to one of the molecules in the Species derived from ``mol2``. ``True`` if it is. """ if mol1 is None or mol2 is None: logger.error('Cannot check isomorphism without the molecule objects.') return False mol1.reactive, mol2.reactive = True, True if convert_to_single_bonds: mol1_copy = mol1.to_single_bonds(raise_atomtype_exception=False) mol2_copy = mol2.to_single_bonds(raise_atomtype_exception=False) else: mol1_copy = mol1.copy(deep=True) mol2_copy = mol2.copy(deep=True) spc1 = Species(molecule=[mol1_copy]) spc2 = Species(molecule=[mol2_copy]) if not convert_to_single_bonds: generate_resonance_structures(spc1, filter_structures=filter_structures) generate_resonance_structures(spc2, filter_structures=filter_structures) for molecule1 in spc1.molecule: for molecule2 in spc2.molecule: if molecule1.is_isomorphic(molecule2, save_order=True): return True return False
[docs]def get_center_of_mass(xyz): """ Get the center of mass of xyz coordinates. Assumes arc.converter.standardize_xyz_string() was already called for xyz. Note that xyz from ESS output is usually already centered at the center of mass (to some precision). Args: xyz (dict): The xyz coordinates. Returns: tuple: The center of mass coordinates. """ masses = get_element_mass_from_xyz(xyz) cm_x, cm_y, cm_z = 0, 0, 0 for coord, mass in zip(xyz['coords'], masses): cm_x += coord[0] * mass cm_y += coord[1] * mass cm_z += coord[2] * mass cm_x /= sum(masses) cm_y /= sum(masses) cm_z /= sum(masses) return float(cm_x), float(cm_y), float(cm_z)
[docs]def translate_to_center_of_mass(xyz): """ Translate coordinates to their center of mass. Args: xyz (dict): The 3D coordinates. Returns: dict: The translated coordinates. """ # identify and remove dummy atoms for center of mass determination (but then do translate dummy atoms as well) dummies = list() for i, symbol in enumerate(xyz['symbols']): if symbol == 'X': dummies.append(i) no_dummies_xyz = {'symbols': [symbol for i, symbol in enumerate(xyz['symbols']) if i not in dummies], 'isotopes': [isotope for i, isotope in enumerate(xyz['isotopes']) if i not in dummies], 'coords': [coord for i, coord in enumerate(xyz['coords']) if i not in dummies]} cm_x, cm_y, cm_z = get_center_of_mass(no_dummies_xyz) x = [coord[0] - cm_x for coord in xyz['coords']] y = [coord[1] - cm_y for coord in xyz['coords']] z = [coord[2] - cm_z for coord in xyz['coords']] for i in range(len(x)): x[i] = x[i] if abs(x[i]) > 1e-10 else 0.0 y[i] = y[i] if abs(y[i]) > 1e-10 else 0.0 z[i] = z[i] if abs(z[i]) > 1e-10 else 0.0 translated_coords = tuple((xi, yi, zi) for xi, yi, zi in zip(x, y, z)) return xyz_from_data(coords=translated_coords, symbols=xyz['symbols'], isotopes=xyz['isotopes'])
[docs]def get_xyz_radius(xyz): """ Determine the largest distance from the coordinate system origin attributed to one of the atoms in 3D space. Returns: float: The radius in Angstrom. """ translated_xyz = translate_to_center_of_mass(xyz) border_elements = list() # a list of the farthest element/s r = 0 x, y, z = xyz_to_x_y_z(translated_xyz) for si, xi, yi, zi in zip(translated_xyz['symbols'], x, y, z): ri = xi ** 2 + yi ** 2 + zi ** 2 if ri == r: border_elements.append(si) elif ri > r: r = ri border_elements = [si] # also consider the atom's radius: atom_r = max([get_atom_radius(si) if get_atom_radius(si) is not None else 1.50 for si in border_elements]) radius = r ** 0.5 + atom_r return radius
[docs]def compare_zmats(z1, z2, r_tol=0.01, a_tol=2, d_tol=2, verbose=False, symmetric_torsions=None, index=1): """ Compare internal coordinates of two conformers of the same species. The comparison could principally be done using all dihedrals, which is information this module readily has, but this function uses Z matrices instead for better robustness (this way rings are considered as well). Args: z1 (dict): Z matrix of conformer 1. z2 (dict): Z matrix of conformer 2. r_tol (float, optional): A tolerance for comparing distances (in Angstrom). a_tol (float, optional): A tolerance for comparing angles (in degrees). d_tol (float, optional): A tolerance for comparing dihedral angles (in degrees). verbose (bool, optional): Whether to print a reason for determining the zmats are different if they are, ``True`` to print. symmetric_torsions (dict, optional): Keys are tuples scan indices (0- or 1-indexed), values are internal rotation symmetry numbers (sigma). Conformers which only differ by an integer number of 360 degrees / sigma are considered identical. index (int, optional): Either ``0`` or ``1`` to specify the starting index in the keys of ``symmetric_torsions`` Returns: bool: Whether the coordinates represent the same conformer within the given tolerance, ``True`` if they do. Raises: InputError: If ``xyz1`` and ``xyz2`` are of wrong type. """ # convert the keys of symmetric_torsions to 0-indexed torsion tuples symmetric_torsions = {tuple([torsion[i] - index for i in range(4)]): sigma for torsion, sigma in symmetric_torsions.items()} if symmetric_torsions is not None else None if not all(isinstance(z, dict) for z in [z1, z2]): raise InputError(f'xyz1 and xyz2 must be dictionaries, got {type(z1)} and {type(z2)}, respectively') if z1['symbols'] != z2['symbols']: return False return _compare_zmats(z1, z2, r_tol=r_tol, a_tol=a_tol, d_tol=d_tol, verbose=verbose, symmetric_torsions=symmetric_torsions)
[docs]def compare_confs(xyz1: dict, xyz2: dict, rtol: float = 0.01, atol: float = 0.1, rmsd_score: bool = False, ) -> Union[float, bool]: """ Compare two Cartesian coordinates representing conformers using distance matrices. The relative difference (``rtol`` * abs(value in xyz2)) and the absolute difference ``atol`` are added together to compare against the absolute difference between (value in xyz1) and (value in xyz2). Args: xyz1 (dict): Conformer 1. xyz2 (dict): Conformer 2. rtol (float): The relative tolerance parameter (see Notes). atol (float): The absolute tolerance parameter (see Notes). rmsd_score (bool): Whether to output a root-mean-square deviation score of the two distance matrices. Returns: Union[float, bool]: - If ``rmsd_score`` is ``False`` (default): Whether the two conformers have almost equal atom distances. ``True`` if they do. - If ``rmsd_score`` is ``True``: The RMSD score of two distance matrices. """ xyz1, xyz2 = check_xyz_dict(xyz1), check_xyz_dict(xyz2) dmat1, dmat2 = xyz_to_dmat(xyz1), xyz_to_dmat(xyz2) if rmsd_score: # Distance matrix is symmetric, only need the upper triangular part to compute rmsd. rmsd = calc_rmsd(np.triu(dmat1), np.triu(dmat2)) return rmsd else: return almost_equal_lists(dmat1, dmat2, rtol=rtol, atol=atol)
[docs]def cluster_confs_by_rmsd(xyzs: Iterable[Dict[str, tuple]], rmsd_threshold: float = 1e-2, ) -> Tuple[Dict[str, tuple]]: """ Cluster conformers with the same atom orders using RMSD of distance matrices. Works for both TS and non-TS conformers. Intended for finding structurally distinct conformers from a pool of conformers. Suitable scenario: Filter a pool of conformers with their geometry optimized at some level. Not suitable for clustering conformers (not optimized) that are sampling of a well or a saddle point (these conformers may have large difference in RMSE, but they really should be representing the same well or saddle point). Args: xyzs (Iterable): Conformers with the same atom orders. rmsd_threshold (float): The minimum RMSD to consider two conformers as distinct (i.e., if rmsd > rmsd_threshold, then two conformers are considered distinctive). Returns: Tuple[Dict[str, tuple]]: Conformers with distinctive geometries. """ xyzs = tuple(xyzs) distinct_xyzs = [xyzs[0]] for xyz in xyzs: rmsd_list = [compare_confs(xyz, distinct_xyz, rmsd_score=True) for distinct_xyz in tuple(distinct_xyzs)] if all([rmsd > rmsd_threshold for rmsd in tuple(rmsd_list)]): distinct_xyzs.append(xyz) return tuple(distinct_xyzs)
[docs]def ics_to_scan_constraints(ics: list, software: Optional[str] = 'gaussian', ) -> str: """ A helper function for converting internal coordinate (ic) info into a str block which can be read as scan constraints by ESS. Args: ics (list): A list of internal coordinates (ic, stored as lists of atom indices). software (str, optional): The electronic structure software. Returns: str: A str block can be read as scan constraints by ESS. """ scan_trsh = '' if software == 'gaussian': for ic in ics: if len(ic) == 2: scan_trsh += 'B ' elif len(ic) == 3: scan_trsh += 'A ' elif len(ic) == 4: scan_trsh += 'D ' scan_trsh += ''.join([str(num) + ' ' for num in ic]) + 'F\n' else: raise NotImplementedError(f'Given software {software} is not implemented ' f'for ics_to_scan_constraints().') return scan_trsh