Skip to content

graphchem.preprocessing.MoleculeEncoder

Bases: object

A class to encode molecular SMILES strings into numerical (integer) representations using tokenized atom and bond information.

Attributes

_atom_tokenizer : Tokenizer integer Tokenizer for atom representations. _bond_tokenizer : Tokenizer integer Tokenizer for bond representations.

Source code in graphchem/preprocessing/features.py
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
class MoleculeEncoder(object):
    """
    A class to encode molecular SMILES strings into numerical (integer)
    representations using tokenized atom and bond information.

    Attributes
    ----------
    _atom_tokenizer : Tokenizer
        integer Tokenizer for atom representations.
    _bond_tokenizer : Tokenizer
        integer Tokenizer for bond representations.
    """

    def __init__(self, smiles: List[str]):
        """
        Initializes the MoleculeEncoder with a list of SMILES strings and
        creates/trains integer tokenizers for atoms and bonds.

        Parameters
        ----------
        smiles : List[str]
            A list of SMILES strings representing molecules used for tokenizer
            creation/training.

        Raises
        ------
        ValueError
            If any provided SMILES string cannot be parsed by RDKit.
        """
        mols = [Chem.MolFromSmiles(smi) for smi in smiles]
        for idx, mol in enumerate(mols):
            if mol is None:
                raise ValueError(f"Unable to parse SMILES: {smiles[idx]}")

        atoms = np.concatenate([mol.GetAtoms() for mol in mols])
        atom_reprs = [atom_to_str(atom) for atom in atoms]
        bond_reprs = np.concatenate([
            [bond_to_str(bond) for bond in atom.GetBonds()]
            for atom in atoms
        ])

        self._atom_tokenizer = Tokenizer()
        for rep in atom_reprs:
            self._atom_tokenizer(rep)
        self._atom_tokenizer.train = False

        self._bond_tokenizer = Tokenizer()
        for rep in bond_reprs:
            self._bond_tokenizer(rep)
        self._bond_tokenizer.train = False

    @property
    def vocab_sizes(self) -> Tuple[int, int]:
        """
        Returns the vocabulary sizes of the atom and bond tokenizers.

        Returns
        -------
        Tuple[int, int]
            A tuple containing two integers representing the sizes of the atom
            and bond tokenizers' vocabularies respectively.
        """
        return (
            self._atom_tokenizer.vocab_size,
            self._bond_tokenizer.vocab_size
        )

    def encode(
            self,
            smiles: str
         ) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor]:
        """
        Encodes a single SMILES string into three tensors representing atoms,
        bonds, and connectivity.

        Parameters
        ----------
        smiles : str
            A SMILES string representing the molecule to be encoded.

        Returns
        -------
        Tuple[torch.Tensor, torch.Tensor, torch.Tensor]
            A tuple containing:
                - A tensor of atom encodings, shape (n_atoms,).
                - A tensor of bond encodings, shape (n_bonds,).
                - A connectivity matrix as a tensor, shape (2, n_bonds).

        Raises
        ------
        ValueError
            If the provided SMILES string cannot be parsed by RDKit.
        """
        mol = rdkit.Chem.MolFromSmiles(smiles)
        if mol is None:
            raise ValueError(f"Unable to parse SMILES string: {smiles}")
        atoms = mol.GetAtoms()

        atom_reprs = [atom_to_str(atom) for atom in atoms]
        enc_atoms = torch.tensor([
            self._atom_tokenizer(atom) for atom in atom_reprs
        ]).type(torch.int)

        bond_reprs = np.concatenate([
            [bond_to_str(bond) for bond in atom.GetBonds()]
            for atom in atoms
        ])
        enc_bonds = torch.tensor([
            self._bond_tokenizer(bond) for bond in bond_reprs
        ]).type(torch.int)

        connectivity = np.zeros((2, 2 * mol.GetNumBonds()))
        bond_index = 0
        for atom in atoms:
            start_idx = atom.GetIdx()
            for bond in atom.GetBonds():
                if bond.GetBeginAtomIdx() == start_idx:
                    connectivity[0, bond_index] = bond.GetBeginAtomIdx()
                    connectivity[1, bond_index] = bond.GetEndAtomIdx()
                else:
                    connectivity[0, bond_index] = bond.GetEndAtomIdx()
                    connectivity[1, bond_index] = bond.GetBeginAtomIdx()
                bond_index += 1
        connectivity = torch.tensor(connectivity).type(torch.long)

        return enc_atoms, enc_bonds, connectivity

    def encode_many(
            self,
            smiles: Iterable[str]
         ) -> List[Tuple[torch.Tensor, torch.Tensor, torch.Tensor]]:
        """
        Encodes a list of SMILES strings into tensors representing atoms,
        bonds, and connectivities.

        Parameters
        ----------
        smiles : Iterable[str]
            An iterable collection of SMILES strings representing molecules to
            be encoded.

        Returns
        -------
        List[Tuple[torch.Tensor, torch.Tensor, torch.Tensor]]
            A list containing tuples with three elements:
                - A tensor of atom encodings, shape (n_atoms,).
                - A tensor of bond encodings, shape (n_bonds,).
                - A connectivity matrix as a tensor, shape (2, n_bonds).

        Raises
        ------
        ValueError
            If any provided SMILES string cannot be parsed by RDKit.
        """
        encodings = []
        for smi in smiles:
            encodings.append(self.encode(smi))
        return encodings

    def save(self, filename: str) -> None:
        """
        Save the encoder to a file.

        Parameters
        ----------
        filename : str
            filename/path to save the encoder to.
        """
        with open(filename, "wb") as outp:
            pickle.dump(self, outp, pickle.HIGHEST_PROTOCOL)

vocab_sizes property

Returns the vocabulary sizes of the atom and bond tokenizers.

Returns

Tuple[int, int] A tuple containing two integers representing the sizes of the atom and bond tokenizers' vocabularies respectively.

__init__(smiles)

Initializes the MoleculeEncoder with a list of SMILES strings and creates/trains integer tokenizers for atoms and bonds.

Parameters

smiles : List[str] A list of SMILES strings representing molecules used for tokenizer creation/training.

Raises

ValueError If any provided SMILES string cannot be parsed by RDKit.

Source code in graphchem/preprocessing/features.py
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
def __init__(self, smiles: List[str]):
    """
    Initializes the MoleculeEncoder with a list of SMILES strings and
    creates/trains integer tokenizers for atoms and bonds.

    Parameters
    ----------
    smiles : List[str]
        A list of SMILES strings representing molecules used for tokenizer
        creation/training.

    Raises
    ------
    ValueError
        If any provided SMILES string cannot be parsed by RDKit.
    """
    mols = [Chem.MolFromSmiles(smi) for smi in smiles]
    for idx, mol in enumerate(mols):
        if mol is None:
            raise ValueError(f"Unable to parse SMILES: {smiles[idx]}")

    atoms = np.concatenate([mol.GetAtoms() for mol in mols])
    atom_reprs = [atom_to_str(atom) for atom in atoms]
    bond_reprs = np.concatenate([
        [bond_to_str(bond) for bond in atom.GetBonds()]
        for atom in atoms
    ])

    self._atom_tokenizer = Tokenizer()
    for rep in atom_reprs:
        self._atom_tokenizer(rep)
    self._atom_tokenizer.train = False

    self._bond_tokenizer = Tokenizer()
    for rep in bond_reprs:
        self._bond_tokenizer(rep)
    self._bond_tokenizer.train = False

encode(smiles)

Encodes a single SMILES string into three tensors representing atoms, bonds, and connectivity.

Parameters

smiles : str A SMILES string representing the molecule to be encoded.

Returns

Tuple[torch.Tensor, torch.Tensor, torch.Tensor] A tuple containing: - A tensor of atom encodings, shape (n_atoms,). - A tensor of bond encodings, shape (n_bonds,). - A connectivity matrix as a tensor, shape (2, n_bonds).

Raises

ValueError If the provided SMILES string cannot be parsed by RDKit.

Source code in graphchem/preprocessing/features.py
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
def encode(
        self,
        smiles: str
     ) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor]:
    """
    Encodes a single SMILES string into three tensors representing atoms,
    bonds, and connectivity.

    Parameters
    ----------
    smiles : str
        A SMILES string representing the molecule to be encoded.

    Returns
    -------
    Tuple[torch.Tensor, torch.Tensor, torch.Tensor]
        A tuple containing:
            - A tensor of atom encodings, shape (n_atoms,).
            - A tensor of bond encodings, shape (n_bonds,).
            - A connectivity matrix as a tensor, shape (2, n_bonds).

    Raises
    ------
    ValueError
        If the provided SMILES string cannot be parsed by RDKit.
    """
    mol = rdkit.Chem.MolFromSmiles(smiles)
    if mol is None:
        raise ValueError(f"Unable to parse SMILES string: {smiles}")
    atoms = mol.GetAtoms()

    atom_reprs = [atom_to_str(atom) for atom in atoms]
    enc_atoms = torch.tensor([
        self._atom_tokenizer(atom) for atom in atom_reprs
    ]).type(torch.int)

    bond_reprs = np.concatenate([
        [bond_to_str(bond) for bond in atom.GetBonds()]
        for atom in atoms
    ])
    enc_bonds = torch.tensor([
        self._bond_tokenizer(bond) for bond in bond_reprs
    ]).type(torch.int)

    connectivity = np.zeros((2, 2 * mol.GetNumBonds()))
    bond_index = 0
    for atom in atoms:
        start_idx = atom.GetIdx()
        for bond in atom.GetBonds():
            if bond.GetBeginAtomIdx() == start_idx:
                connectivity[0, bond_index] = bond.GetBeginAtomIdx()
                connectivity[1, bond_index] = bond.GetEndAtomIdx()
            else:
                connectivity[0, bond_index] = bond.GetEndAtomIdx()
                connectivity[1, bond_index] = bond.GetBeginAtomIdx()
            bond_index += 1
    connectivity = torch.tensor(connectivity).type(torch.long)

    return enc_atoms, enc_bonds, connectivity

encode_many(smiles)

Encodes a list of SMILES strings into tensors representing atoms, bonds, and connectivities.

Parameters

smiles : Iterable[str] An iterable collection of SMILES strings representing molecules to be encoded.

Returns

List[Tuple[torch.Tensor, torch.Tensor, torch.Tensor]] A list containing tuples with three elements: - A tensor of atom encodings, shape (n_atoms,). - A tensor of bond encodings, shape (n_bonds,). - A connectivity matrix as a tensor, shape (2, n_bonds).

Raises

ValueError If any provided SMILES string cannot be parsed by RDKit.

Source code in graphchem/preprocessing/features.py
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
def encode_many(
        self,
        smiles: Iterable[str]
     ) -> List[Tuple[torch.Tensor, torch.Tensor, torch.Tensor]]:
    """
    Encodes a list of SMILES strings into tensors representing atoms,
    bonds, and connectivities.

    Parameters
    ----------
    smiles : Iterable[str]
        An iterable collection of SMILES strings representing molecules to
        be encoded.

    Returns
    -------
    List[Tuple[torch.Tensor, torch.Tensor, torch.Tensor]]
        A list containing tuples with three elements:
            - A tensor of atom encodings, shape (n_atoms,).
            - A tensor of bond encodings, shape (n_bonds,).
            - A connectivity matrix as a tensor, shape (2, n_bonds).

    Raises
    ------
    ValueError
        If any provided SMILES string cannot be parsed by RDKit.
    """
    encodings = []
    for smi in smiles:
        encodings.append(self.encode(smi))
    return encodings

save(filename)

Save the encoder to a file.

Parameters

filename : str filename/path to save the encoder to.

Source code in graphchem/preprocessing/features.py
355
356
357
358
359
360
361
362
363
364
365
def save(self, filename: str) -> None:
    """
    Save the encoder to a file.

    Parameters
    ----------
    filename : str
        filename/path to save the encoder to.
    """
    with open(filename, "wb") as outp:
        pickle.dump(self, outp, pickle.HIGHEST_PROTOCOL)