stk.BuildingBlock

class stk.BuildingBlock(smiles, functional_groups=(), placer_ids=None, position_matrix=None)[source]

Bases: Molecule

Represents a building block of a ConstructedMolecule.

A BuildingBlock can represent either an entire molecule or a molecular fragments used to construct a ConstructedMolecule. The building block uses FunctionalGroup instances to identify which atoms are modified during construction.

See also

  • Atom: Represents atoms of a building block.

  • Bond: Represents bonds of a building block.

Parameters:
  • smiles (str) – A SMILES string of the molecule.

  • functional_groups (FunctionalGroup | FunctionalGroupFactory | list[FunctionalGroup | FunctionalGroupFactory]) – FunctionalGroup instances added to the building block and FunctionalGroupFactory instances used to create FunctionalGroup instances added to the building block. FunctionalGroup instances are used to identify which atoms are modified during ConstructedMolecule construction.

  • placer_ids (list[int]) –

    The ids of placer atoms. These are the atoms which should be used for calculating the position of the building block. Depending on the values passed to placer_ids, and the functional groups in the building block, different placer ids will be used by the building block.

    1. placer_ids is passed to the initializer: the passed placer ids will be used by the building block.

    2. placer_ids is None and the building block has functional groups: The placer ids of the functional groups will be used as the placer ids of the building block.

    3. placer_ids is None and functional_groups is empty. All atoms of the molecule will be used for placer ids.

  • position_matrix (ndarray | None) – The position matrix the building block should use. If None, rdkit.ETKDGv2() will be used to calculate it.

Raises:

RuntimeError – If embedding the molecule fails.

Methods

clone

Return a clone.

get_atomic_positions

Yield the positions of atoms.

get_atoms

Yield the atoms in the molecule, ordered by id.

get_bonds

Yield the bond in the molecule.

get_canonical_atom_ids

Map the id of each atom to its id under canonical ordering.

get_centroid

Return the centroid.

get_core_atom_ids

Yield ids of atoms which form the core of the building block.

get_direction

Return a vector of best fit through the atoms.

get_functional_groups

Yield the functional groups, ordered by id.

get_maximum_diameter

Return the maximum diameter.

get_num_atoms

Return the number of atoms in the molecule.

get_num_bonds

Return the number of bonds in the molecule.

get_num_functional_groups

Return the number of functional groups.

get_num_placers

Return the number of placer atoms in the building block.

get_placer_ids

Yield the ids of placer atoms.

get_plane_normal

Return the normal to the plane of best fit.

get_position_matrix

Return a matrix holding the atomic positions.

init

Initialize a BuildingBlock from its components.

init_from_file

Initialize from a file.

init_from_molecule

Initialize from a Molecule.

init_from_rdkit_mol

Initialize from an rdkit molecule.

init_from_vabene_molecule

Initialize from a vabene.Molecule.

to_rdkit_mol

Return an rdkit representation.

with_canonical_atom_ordering

Return a clone, with canonically ordered atoms.

with_centroid

Return a clone with its centroid at position.

with_displacement

Return a displaced clone.

with_functional_groups

Return a clone with specific functional groups.

with_position_matrix

Return a clone with atomic positions set by position_matrix.

with_rotation_about_axis

Return a rotated clone.

with_rotation_between_vectors

Return a rotated clone.

with_rotation_to_minimize_angle

Return a rotated clone.

with_structure_from_file

Return a clone, with its structure taken from a file.

write

Write the structure to a file.

clone()[source]

Return a clone.

Returns:

The clone.

Return type:

BuildingBlock

get_atomic_positions(atom_ids=None)

Yield the positions of atoms.

Parameters:

atom_ids (int | list[int] | None) – The ids of the atoms whose positions are desired. If None, all atoms are used.

Yields:

The x, y and z coordinates of an atom.

Return type:

Iterator[ndarray]

get_atoms(atom_ids=None)

Yield the atoms in the molecule, ordered by id.

Parameters:

atom_ids (int | list[int] | None) – The ids of atoms to yield. If None, all atoms are used.

Yields:

An atom in the molecule.

Return type:

Iterator[Atom]

get_bonds()

Yield the bond in the molecule.

Yields:

A bond in the molecule.

Return type:

Iterator[Bond]

get_canonical_atom_ids()

Map the id of each atom to its id under canonical ordering.

Returns:

Maps the id of each atom in the molecule to the id it would have under canonical ordering.

Return type:

dict[int, int]

get_centroid(atom_ids=None)

Return the centroid.

Parameters:

atom_ids (int | list[int] | None) – The ids of atoms which are used to calculate the centroid. If None, all atoms are used.

Returns:

The centroid of atoms specified by atom_ids.

Raises:

ValueError – If atom_ids has a length of 0.

Return type:

ndarray

get_core_atom_ids()[source]

Yield ids of atoms which form the core of the building block.

This includes all atoms in the building block not part of a functional group, as well as any atoms in a functional group, specifically labelled as core atoms.

See also

Yields:

The id of a core atom.

Return type:

Iterator[int]

get_direction(atom_ids=None)

Return a vector of best fit through the atoms.

Parameters:

atom_ids (int | list[int] | None) – The ids of atoms which should be used to calculate the vector. If None, all atoms are used.

Returns:

The vector of best fit.

Raises:

ValueError – If atom_ids has a length of 0.

Return type:

ndarray

get_functional_groups(fg_ids=None)[source]

Yield the functional groups, ordered by id.

Parameters:

fg_ids (int | list[int] | None) – The ids of functional groups yielded. If None, then all functional groups are yielded.

Yields:

A functional group of the building block.

Return type:

Iterator[FunctionalGroup]

get_maximum_diameter(atom_ids=None)

Return the maximum diameter.

This method does not account for the van der Waals radius of atoms.

Parameters:

atom_ids (int | list[int] | None) – The ids of atoms which are considered when looking for the maximum diameter. If None, all atoms are used.

Returns:

The maximum diameter in the molecule.

Raises:

ValueError – If atom_ids has a length of 0.

Return type:

float

get_num_atoms()

Return the number of atoms in the molecule.

Returns:

The number of atoms in the molecule.

Return type:

int

get_num_bonds()

Return the number of bonds in the molecule.

Returns:

The number of bonds in the molecule.

Return type:

int

get_num_functional_groups()[source]

Return the number of functional groups.

Returns:

The number of functional groups in the building block.

Return type:

int

get_num_placers()[source]

Return the number of placer atoms in the building block.

Returns:

The number of placer atoms in the building block.

Return type:

int

get_placer_ids()[source]

Yield the ids of placer atoms.

Placer atoms are those, which should be used to calculate the position of the building block.

See also

Yields:

The id of a placer atom.

Return type:

Iterator[int]

get_plane_normal(atom_ids=None)

Return the normal to the plane of best fit.

Parameters:

atom_ids (int | list[int] | None) – The ids of atoms which should be used to calculate the plane. If None, all atoms are used.

Returns:

Vector orthonormal to the plane of the molecule.

Raises:

ValueError – If atom_ids has a length of 0.

Return type:

ndarray

get_position_matrix()

Return a matrix holding the atomic positions.

Returns:

The array has the shape (n, 3). Each row holds the x, y and z coordinates of an atom.

Return type:

ndarray

classmethod init(atoms, bonds, position_matrix, functional_groups=(), placer_ids=None)[source]

Initialize a BuildingBlock from its components.

Parameters:
  • atoms (list[Atom]) – The atoms of the building block.

  • bonds (list[Bond]) – The bonds of the building block.

  • position_matrix (ndarray) – An (n, 3) position matrix of the building block.

  • functional_groups (FunctionalGroup | FunctionalGroupFactory | list[FunctionalGroup | FunctionalGroupFactory]) – FunctionalGroup instances added to the building block and FunctionalGroupFactory instances used to create FunctionalGroup instances added to the building block. FunctionalGroup instances are used to identify which atoms are modified during ConstructedMolecule construction.

  • placer_ids (list[int]) –

    The ids of placer atoms. These are the atoms which should be used for calculating the position of the building block. Depending on the values passed to placer_ids, and the functional groups in the building block, different placer ids will be used by the building block.

    1. placer_ids is passed to the initializer: the passed placer ids will be used by the building block.

    2. placer_ids is None and the building block has functional groups: The placer ids of the functional groups will be used as the placer ids of the building block.

    3. placer_ids is None and functional_groups is empty. All atoms of the molecule will be used for placer ids.

Returns:

The building block.

Return type:

BuildingBlock

classmethod init_from_file(path, functional_groups=(), placer_ids=None)[source]

Initialize from a file.

Parameters:
  • path (Path | str) –

    The path to a molecular structure file. Supported file types are:

    1. .mol, .sdf - MDL V3000 MOL file

  • functional_groups (FunctionalGroup | FunctionalGroupFactory | list[FunctionalGroup | FunctionalGroupFactory]) – FunctionalGroup instances added to the building block and FunctionalGroupFactory instances used to create FunctionalGroup instances added to the building block. FunctionalGroup instances are used to identify which atoms are modified during ConstructedMolecule construction.

  • placer_ids (list[int]) –

    The ids of placer atoms. These are the atoms which should be used for calculating the position of the building block. Depending on the values passed to placer_ids, and the functional groups in the building block, different placer ids will be used by the building block.

    1. placer_ids is passed to the initializer: the passed placer ids will be used by the building block.

    2. placer_ids is None and the building block has functional groups: The placer ids of the functional groups will be used as the placer ids of the building block.

    3. placer_ids is None and functional_groups is empty. All atoms of the molecule will be used for placer ids.

Returns:

The building block.

Return type:

BuildingBlock

Raises:

ValueError – If the file type cannot be used for initialization.

classmethod init_from_molecule(molecule, functional_groups=(), placer_ids=None)[source]

Initialize from a Molecule.

Parameters:
  • molecule (Molecule) – The molecule to initialize from.

  • functional_groups (FunctionalGroup | FunctionalGroupFactory | list[FunctionalGroup | FunctionalGroupFactory]) – FunctionalGroup instances added to the building block and FunctionalGroupFactory instances used to create FunctionalGroup instances added to the building block. FunctionalGroup instances are used to identify which atoms are modified during ConstructedMolecule construction.

  • placer_ids (list[int]) –

    The ids of placer atoms. These are the atoms which should be used for calculating the position of the building block. Depending on the values passed to placer_ids, and the functional groups in the building block, different placer ids will be used by the building block.

    1. placer_ids is passed to the initializer: the passed placer ids will be used by the building block.

    2. placer_ids is None and the building block has functional groups: The placer ids of the functional groups will be used as the placer ids of the building block.

    3. placer_ids is None and functional_groups is empty. All atoms of the molecule will be used for placer ids.

Returns:

The building block. It will have the same atoms, bonds and atomic positions as molecule.

Return type:

BuildingBlock

classmethod init_from_rdkit_mol(molecule, functional_groups=(), placer_ids=None)[source]

Initialize from an rdkit molecule.

Warning

For rdkit molecules with non-integer bond orders, such as 1.5, the molecule should be kekulized prior to calling this method. Otherwise, all bond orders will be set to an integer value in the building block.

Parameters:
  • molecule (Mol) – The molecule.

  • functional_groups (FunctionalGroup | FunctionalGroupFactory | list[FunctionalGroup | FunctionalGroupFactory]) – FunctionalGroup instances added to the building block and FunctionalGroupFactory instances used to create FunctionalGroup instances added to the building block. FunctionalGroup instances are used to identify which atoms are modified during ConstructedMolecule construction.

  • placer_ids (list[int]) –

    The ids of placer atoms. These are the atoms which should be used for calculating the position of the building block. Depending on the values passed to placer_ids, and the functional groups in the building block, different placer ids will be used by the building block.

    1. placer_ids is passed to the initializer: the passed placer ids will be used by the building block.

    2. placer_ids is None and the building block has functional groups: The placer ids of the functional groups will be used as the placer ids of the building block.

    3. placer_ids is None and functional_groups is empty. All atoms of the molecule will be used for placer ids.

Returns:

The building block.

Return type:

BuildingBlock

classmethod init_from_vabene_molecule(molecule, functional_groups=(), placer_ids=None, position_matrix=None)[source]

Initialize from a vabene.Molecule.

Notes

The molecule is given 3D coordinates with rdkit.ETKDGv2().

Parameters:
  • molecule (Molecule) – The vabene.Molecule from which to initialize.

  • functional_groups (FunctionalGroup | FunctionalGroupFactory | list[FunctionalGroup | FunctionalGroupFactory]) – FunctionalGroup instances added to the building block and FunctionalGroupFactory instances used to create FunctionalGroup instances added to the building block. FunctionalGroup instances are used to identify which atoms are modified during ConstructedMolecule construction.

  • placer_ids (list[int]) –

    The ids of placer atoms. These are the atoms which should be used for calculating the position of the building block. Depending on the values passed to placer_ids, and the functional groups in the building block, different placer ids will be used by the building block.

    1. placer_ids is passed to the initializer: the passed placer ids will be used by the building block.

    2. placer_ids is None and the building block has functional groups: The placer ids of the functional groups will be used as the placer ids of the building block.

    3. placer_ids is None and functional_groups is empty. All atoms of the molecule will be used for placer ids.

  • position_matrix (ndarray | None) – The position matrix the building block should use. If None, rdkit.ETKDGv2() will be used to calculate it.

Returns:

The building block.

Return type:

BuildingBlock

Raises:

RuntimeError – If embedding the molecule fails.

to_rdkit_mol()

Return an rdkit representation.

Returns:

The molecule in rdkit format.

Return type:

Mol

with_canonical_atom_ordering()[source]

Return a clone, with canonically ordered atoms.

Returns:

The clone.

Return type:

BuildingBlock

with_centroid(position, atom_ids=None)[source]

Return a clone with its centroid at position.

Parameters:
  • position (ndarray) – This array holds the position on which the centroid of the clone is going to be placed.

  • atom_ids (int | list[int] | None) – The ids of atoms which should have their centroid set to position. If None, all atoms are used.

Returns:

A clone with its centroid at position.

Return type:

BuildingBlock

with_displacement(displacement)[source]

Return a displaced clone.

Parameters:

displacement (ndarray) – The displacement vector to be applied.

Returns:

A displaced clone.

Return type:

BuildingBlock

with_functional_groups(functional_groups)[source]

Return a clone with specific functional groups.

Parameters:

functional_groups (list[FunctionalGroup]) – Functional groups the clone should have.

Returns:

The clone.

Return type:

BuildingBlock

with_position_matrix(position_matrix)[source]

Return a clone with atomic positions set by position_matrix.

Parameters:

position_matrix (ndarray) – The position matrix of the clone. The shape of the matrix is (n, 3).

Returns:

The clone.

Return type:

BuildingBlock

with_rotation_about_axis(angle, axis, origin)[source]

Return a rotated clone.

The clone is rotated by angle about axis on the origin.

Parameters:
  • angle (float) – The size of the rotation in radians.

  • axis (ndarray) – The axis about which the rotation happens. Must have unit magnitude.

  • origin (ndarray) – The origin about which the rotation happens.

Returns:

A rotated clone.

Return type:

BuildingBlock

with_rotation_between_vectors(start, target, origin)[source]

Return a rotated clone.

The rotation is equal to a rotation from start to target.

Given two direction vectors, start and target, this method applies the rotation required transform start to target onto the clone. The rotation occurs about the origin.

For example, if the start and target vectors are 45 degrees apart, a 45 degree rotation will be applied to the clone. The rotation will be along the appropriate direction.

The great thing about this method is that you as long as you can associate a geometric feature of the molecule with a vector, then the clone can be rotated so that this vector is aligned with target. The defined vector can be virtually anything. This means that any geometric feature of the molecule can be easily aligned with any arbitrary direction.

Parameters:
  • start (ndarray) – A vector which is to be rotated so that it transforms into the target vector.

  • target (ndarray) – The vector onto which start is rotated.

  • origin (ndarray) – The point about which the rotation occurs.

Returns:

A rotated clone.

Return type:

BuildingBlock

with_rotation_to_minimize_angle(start, target, axis, origin)[source]

Return a rotated clone.

The clone is rotated by the rotation required to minimize the angle between start and target.

Note that this function will not necessarily overlay the start and target vectors. This is because the possible rotation is restricted to the axis.

Parameters:
  • start (ndarray) – The vector which is rotated.

  • target (ndarray) – The vector which is stationary.

  • axis (ndarray) – The vector about which the rotation happens. Must have unit magnitude.

  • origin (ndarray) – The origin about which the rotation happens.

Returns:

A rotated clone.

Return type:

BuildingBlock

Raises:

ValueError – If target has a magnitude of 0. In this case it is not possible to calculate an angle between start and target.

with_structure_from_file(path, extension=None)[source]

Return a clone, with its structure taken from a file.

Multiple file types are supported, namely:

  1. .mol, .sdf - MDL V2000 and V3000 files

  2. .xyz - XYZ files

  3. .mae - Schrodinger Maestro files

  4. .coord - Turbomole files

  5. .pdb - PDB files

Parameters:
  • path (Path | str) – The path to a molecular structure file holding updated coordinates for the Molecule.

  • extension (str | None) – If you want to treat the file as though it has a particular extension, put it here. Include the dot.

Returns:

A clone with atomic positions found in path.

Return type:

BuildingBlock

write(path, atom_ids=None)[source]

Write the structure to a file.

This function will write the format based on the extension of path.

  1. .mol, .sdf - MDL V3000 MOL file

  2. .xyz - XYZ file

  3. .pdb - PDB file

Parameters:
  • path (Path | str) – The path to which the molecule should be written.

  • atom_ids (int | list[int] | None) – The ids of atoms to write. If None, all atoms are used. If you use this parameter, the atom ids in the file may not correspond to the atom ids in the molecule.

Returns:

The molecule.

Return type:

BuildingBlock