legend1234's picture
Initial draft (#252)
bbcd4a0 unverified
# -*- coding: utf-8 -*-
# The DiverseSelector library provides a set of tools to select molecule
# subset with maximum molecular diversity.
#
# Copyright (C) 2022 The QC-Devs Community
#
# This file is part of DiverseSelector.
#
# DiverseSelector is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# DiverseSelector is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>
#
# --
"""Feature generation module."""
import os
from pathlib import PurePath
import sys
from typing import Union
import numpy as np
import pandas as pd
from rdkit import Chem
from rdkit.Chem import AllChem, Descriptors, MACCSkeys, rdMHFPFingerprint, Draw
__all__ = [
"DescriptorGenerator",
"FingerprintGenerator",
"feature_reader",
"aug_features",
]
class DescriptorGenerator:
"""Compute molecular features."""
def __init__(self,
mols: list = None):
"""Coinstructor of DescriptorGenerator."""
self.mols = mols
def mordred_desc(self, ignore_3D: bool = False): # noqa: N803
"""Mordred molecular descriptor generation.
Parameters
----------
ignore_3D : bool, optional
Ignore 3D coordinates. The default=False.
Returns
-------
df_features: PandasDataFrame
A `pandas.DataFrame` object with compute Mordred descriptors.
"""
from mordred import Calculator, descriptors # pylint: disable=C0415
# if only compute 2D descriptors, set ignore_3D=True
calc = Calculator(descs=descriptors, ignore_3D=ignore_3D)
df_features = pd.DataFrame(calc.pandas(self.mols))
return df_features
@staticmethod
def padelpy_desc(mol_file: Union[str, PurePath],
keep_csv: bool = False,
maxruntime: int = -1,
waitingjobs: int = -1,
threads: int = -1,
d_2d: bool = True,
d_3d: bool = True,
config: str = None,
convert3d: bool = False,
descriptortypes: str = None,
detectaromaticity: bool = False,
fingerprints: bool = False,
log: bool = False,
maxcpdperfile: int = 0,
removesalt: bool = False,
retain3d: bool = False,
standardizenitro: bool = False,
standardizetautomers: bool = False,
tautomerlist: str = None,
usefilenameasmolname: bool = False,
sp_timeout: int = None,
headless: bool = True): # pylint: disable=R0201
"""PADEL molecular descriptor generation.
Parameters
----------
mol_file : str
Molecule file name.
keep_csv : bool, optional
If True, the csv file is kept. Default=False.
maxruntime : int, optional
Additional keyword arguments.
See https://github.com/ecrl/padelpy/blob/master/padelpy/wrapper.py.
Returns
-------
df_features: PandasDataFrame
A `pandas.DataFrame` object with compute Mordred descriptors.
"""
cwd = os.path.dirname(os.path.abspath(__file__))
sys.path.append(os.path.join(cwd, "padelpy"))
from padelpy import padeldescriptor # pylint: disable=C0415
# if only compute 2D descriptors,
# ignore_3D=True
csv_fname = (
str(os.path.basename(mol_file)).split(".", maxsplit=1)[0]
+ "_padel_descriptors.csv"
)
padeldescriptor(
maxruntime=maxruntime,
waitingjobs=waitingjobs,
threads=threads,
d_2d=d_2d,
d_3d=d_3d,
config=config,
convert3d=convert3d,
descriptortypes=descriptortypes,
detectaromaticity=detectaromaticity,
mol_dir=mol_file,
d_file=csv_fname,
fingerprints=fingerprints,
log=log,
maxcpdperfile=maxcpdperfile,
removesalt=removesalt,
retain3d=retain3d,
retainorder=True,
standardizenitro=standardizenitro,
standardizetautomers=standardizetautomers,
tautomerlist=tautomerlist,
usefilenameasmolname=usefilenameasmolname,
sp_timeout=sp_timeout,
headless=headless,
)
df_features = pd.read_csv(csv_fname, sep=",", index_col="Name")
if not keep_csv:
os.remove(csv_fname)
return df_features
def rdkit_desc(self,
use_fragment: bool = True,
ipc_avg: bool = True):
"""Generation RDKit molecular descriptors.
Parameters
----------
use_fragment : bool, optional
If True, the return value includes the fragment binary descriptors like "fr_XXX".
ipc_avg : bool, optional
If True, the IPC descriptor calculates with avg=True option.
Returns
-------
df_features: PandasDataFrame
A `pandas.DataFrame` object with compute Mordred descriptors.
"""
# parsing descriptor information
# parsing descriptor information
desc_list = []
descriptor_types = []
for descriptor, function in Descriptors.descList:
if use_fragment is False and descriptor.startswith("fr_"):
continue
descriptor_types.append(descriptor)
desc_list.append((descriptor, function))
# check initialization
assert len(descriptor_types) == len(desc_list)
arr_features = np.full(shape=(len(self.mols), len(desc_list)),
fill_value=np.nan)
for idx_row, mol in enumerate(self.mols):
# this part is modified from
# https://github.com/deepchem/deepchem/blob/master/deepchem/feat/molecule_featurizers/
# rdkit_descriptors.py#L11-L98
for idx_col, (desc_name, function) in enumerate(desc_list):
if desc_name == "Ipc" and ipc_avg:
feature = function(mol, avg=True)
else:
feature = function(mol)
arr_features[idx_row, idx_col] = feature
df_features = pd.DataFrame(arr_features, columns=descriptor_types)
return df_features
def rdkit_frag_desc(self):
"""Generation of the RDKit fragment features.
Returns
-------
df_features: PandasDataFrame
A `pandas.DataFrame` object with compute Mordred descriptors.
"""
# http://rdkit.org/docs/source/rdkit.Chem.Fragments.html
# this implementation is taken from https://github.com/Ryan-Rhys/FlowMO/blob/
# e221d989914f906501e1ad19cd3629d88eac1785/property_prediction/data_utils.py#L111
fragments = {d[0]: d[1] for d in Descriptors.descList[115:]}
frag_features = np.zeros((len(self.mols), len(fragments)))
for idx, mol in enumerate(self.mols):
features = [fragments[d](mol) for d in fragments]
frag_features[idx, :] = features
feature_names = [desc[0] for desc in Descriptors.descList[115:]]
df_features = pd.DataFrame(data=frag_features, columns=feature_names)
return df_features
class FingerprintGenerator:
"""Fingerprint generator."""
def __init__(self, mols: list) -> None:
"""Fingerprint generator.
Parameters
----------
mols : RDKitMol
Molecule object.
"""
self.mols = mols
# molecule names
mol_names = [
Chem.MolToSmiles(mol)
if mol.GetPropsAsDict().get("_Name") is None
else mol.GetProp("_Name")
for mol in mols
]
self.mol_names = mol_names
def compute_fingerprint(
self,
fp_type: str = "SECFP",
n_bits: int = 2048,
radius: int = 3,
min_radius: int = 1,
random_seed: int = 12345,
rings: bool = True,
isomeric: bool = True,
kekulize: bool = False,
):
"""Compute fingerprints.
Parameters
----------
fp_type : str, optional
Supported fingerprints: SECFP, ECFP, Morgan, RDKitFingerprint and MACCSkeys.
Default="SECFP".
n_bits : int, optional
Number of bits of fingerprint. Default=2048.
radius : int, optional
The maximum radius of the substructure that is generated at each atom. Default=3.
min_radius : int, optional
The minimum radius that is used to extract n-grams.
random_seed : int, optional
The random seed number. Default=12345.
rings : bool, optional
Whether the rings (SSSR) are extracted from the molecule and added to the shingling.
Default=True.
isomeric : bool, optional
Whether the SMILES added to the shingling are isomeric. Default=False.
kekulize : bool, optional
Whether the SMILES added to the shingling are kekulized. Default=True.
"""
if fp_type.upper() in [
"SECFP",
"ECFP",
"MORGAN",
"RDKFINGERPRINT",
"MACCSKEYS",
]:
fps = [
self.rdkit_fingerprint_low(
mol,
fp_type=fp_type,
n_bits=n_bits,
radius=radius,
min_radius=min_radius,
random_seed=random_seed,
rings=rings,
isomeric=isomeric,
kekulize=kekulize,
)
for mol in self.mols
]
# todo: add support of e3fp
# other cases
else:
raise ValueError(f"{fp_type} is not an supported fingerprint type.")
df_fps = pd.DataFrame(np.array(fps), index=self.mol_names)
return df_fps
@staticmethod
def rdkit_fingerprint_low(
mol,
fp_type: str = "SECFP",
n_bits: int = 2048,
radius: int = 3,
min_radius: int = 1,
random_seed: int = 12345,
rings: bool = True,
isomeric: bool = False,
kekulize: bool = False,
):
"""
Generate required molecular fingerprints.
Parameters
----------
mols : RDKitMol
Molecule object.
fp_type : str, optional
Supported fingerprints: SECFP, ECFP, Morgan, RDKitFingerprint and MACCSkeys.
Default="SECFP".
n_bits : int, optional
Number of bits of fingerprint. Default=2048.
radius : int, optional
The maximum radius of the substructure that is generated at each atom. Default=3.
min_radius : int, optional
The minimum radius that is used to extract n-grams.
random_seed : int, optional
The random seed number. Default=12345.
rings : bool, optional
Whether the rings (SSSR) are extracted from the molecule and added to the shingling.
Default=True.
isomeric : bool, optional
Whether the SMILES added to the shingling are isomeric. Default=False.
kekulize : bool, optional
Whether the SMILES added to the shingling are kekulized. Default=True.
Returns
-------
fp : ExplicitBitVector
The computed molecular fingerprint.
Notes
-----
fingerprint types:
1. topological fingerprints: RDKFingerprint, Tanimoto, Dice, Cosine, Sokal, Russel,
Kulczynski, McConnaughey, and Tversky
2. MACCS keys:
3. Atom pairs and topological torsions
4. Morgan fingerprints (circular fingerprints): Morgan, ECFP, FCFP
"""
# SECFP: SMILES extended connectivity fingerprint
# https://jcheminf.biomedcentral.com/articles/10.1186/s13321-018-0321-8
if fp_type.upper() == "SECFP":
secfp_encoder = rdMHFPFingerprint.MHFPEncoder(random_seed)
fp = secfp_encoder.EncodeSECFPMol(
mol,
radius=radius,
rings=rings,
isomeric=isomeric,
kekulize=kekulize,
min_radius=min_radius,
length=n_bits,
)
# ECFP
# https://github.com/deepchem/deepchem/blob/1a2d2e9ff097fdbf58894d1f91359fe466c65810/deepchem/utils/rdkit_utils.py#L414
# https://www.rdkit.org/docs/source/rdkit.Chem.rdMolDescriptors.html
elif fp_type.upper() == "ECFP":
# radius=3 --> ECFP6
fp = AllChem.GetMorganFingerprintAsBitVect(
mol=mol,
radius=radius,
nBits=n_bits,
useChirality=isomeric,
useFeatures=False,
)
elif fp_type.upper() == "MORGAN":
fp = AllChem.GetMorganFingerprintAsBitVect(
mol=mol,
radius=radius,
nBits=n_bits,
useChirality=isomeric,
useFeatures=True,
)
# https://www.rdkit.org/docs/source/rdkit.Chem.rdmolops.html#rdkit.Chem.rdmolops.RDKFingerprint
elif fp_type.upper() == "RDKFINGERPRINT":
fp = Chem.rdmolops.RDKFingerprint(
mol=mol,
minPath=1,
# maxPath=mol.GetNumBonds(),
maxPath=10,
fpSize=n_bits,
nBitsPerHash=2,
useHs=True,
tgtDensity=0,
minSize=128,
branchedPaths=True,
useBondOrder=True,
)
# SMARTS-based implementation of the 166 public MACCS keys
# https://www.rdkit.org/docs/GettingStartedInPython.html#fingerprinting-and-molecular-similarity
elif fp_type == "MaCCSKeys":
fp = MACCSkeys.GenMACCSKeys(mol)
else:
# todo: add more
# https://github.com/keiserlab/e3fp
# https://chemfp.readthedocs.io/en/latest/fp_types.html
# https://xenonpy.readthedocs.io/en/stable/_modules/xenonpy/descriptor/fingerprint.html
raise NotImplementedError(f"{fp_type} is not implemented yet.")
return fp
def feature_reader(file_name: str,
sep: str = ",",
engine: str = "python",
**kwargs):
"""Load molecule features/descriptors.
Parameters
----------
file_name : str
File name that provides molecular features.
sep : str, optional
Separator use for CSV like files. Default=",".
engine : str, optional
Engine name used for reading files, where "python" supports regular expression for CSV
formats, “xlrd” supports old-style Excel files (.xls), “openpyxl” supports newer Excel file
formats, “odf” supports OpenDocument file formats (.odf, .ods, .odt), “pyxlsb” supports
binary Excel files. One should note that the dependency should be installed properly to
make it work. Default="python".
**kwargs
Additional keyword arguments passed to
`pd.read_csv() <https://pandas.pydata.org/docs/reference/api/pandas.read_csv.html>`_
or `pd.read_excel() <https://pandas.pydata.org/docs/reference/api/pandas.read_excel.html>`_.
Returns
-------
df : PandasDataFrame
A `pandas.DataFrame` object with molecular features.
"""
# use `str` function to support PosixPath
if str(file_name).lower().endswith((".csv", ".txt")):
df = pd.read_csv(file_name, sep=sep, engine=engine, *kwargs)
elif (
str(file_name)
.lower()
.endswith((".xlsx", ".xls", "xlsb", ".odf", ".ods", ".odt"))
):
df = pd.read_excel(file_name, engine=engine, *kwargs)
return df
def aug_features(features,
target_prop,
weight: Union[np.ndarray, float, int] = None) -> np.ndarray:
r"""Augmented features.
Parameters
----------
features : np.ndarray or PandasDataFrame
Molecular features.
target_prop : np.ndarray or PandasDataFrame
Target properties.
weight : np.ndarray, optional
Weight for each molecule. When weight is not provided (None), the property will be
directly augmented to the features without repeats. Default=None.
Returns
-------
aug_features : np.ndarray
Augmented features matrix.
Notes
-----
When the property becomes the focus instead of structural diversity, we can just use the
property matrix as the feature matrix without using fingerprints or molecular descriptors.
The augmented feature matrix is a concatenation of the original features matrix and the
property matrix. When a weight matrix is provided, then the repeat-value for each property to
be :math:`repeats = \left \lceil weight \times n_{features} \right \rceil`
where :math:`n_{features}` denotes the number of features (length of the
fingerprint/descriptors), and the final augmented features matrix is of feature matrix
augmented by the property matrix for :math:`repeat` times.
To achieve sampling with respect to target properties and diversity with respect to a
fingerprint/feature-vector, you need to append the target properties to the feature vector.
For each property, specify the :math:`repeats`: the more times you repeat the property
value the higher its weight.
"""
if isinstance(features, pd.DataFrame):
features = features.to_numpy()
if isinstance(target_prop, pd.DataFrame):
target_prop = target_prop.to_numpy()
# define the repeat-value for each property
if weight is not None:
repeats = np.ceil(np.multiply(weight, features.shape[1]))
else:
repeats = 1
features_new = np.hstack((features,
np.repeat(target_prop, repeats=repeats, axis=1)))
return features_new