MORSEFingerprint#

class skfp.fingerprints.MORSEFingerprint(sparse: bool = False, n_jobs: int | None = None, batch_size: int | None = None, verbose: int = 0)#

MoRSE (Molecule Representation of Structures based on Electron diffraction) fingerprint.

The implementation uses RDKit. This is a descriptor-based fingerprint, where features encode basic 3D atomic coordinates (molecule structure) with a constant-size vector, based on principles similar to electron diffraction.

MoRSE features are scattered electron intensity values for different values of scattering s. It uses general molecular transform which, for all atoms i and j with distance \(r_{ij}\) in the molecule with N atoms, is defined as:

\[RDF(r) = \sum_{i}^{N-1} \sum_{j > i}^N w_i * w_j * \frac{\sin(s * r_{ij})}{s * r_{ij}}\]

7 weighting variants are used, unweighted and 6 based on atomic features: unweighted, atomic mass, van der Waals volume, electronegativity, polarizability, ion polarity, and IState [1] [2]. They are relative to the carbon, e.g. molecular weight is: MW(atom_type) / MW(carbon).

Scattering values between 0 and 31 (inclusive) are used, in angstroms (Å). This results in 224 features. See [3] [4] [5] [6] [7] for details.

Parameters:
  • sparse (bool, default=False) – Whether to return dense NumPy array, or sparse SciPy CSR array.

  • n_jobs (int, default=None) – The number of jobs to run in parallel. transform() is parallelized over the input molecules. None means 1 unless in a joblib.parallel_backend context. -1 means using all processors. See Scikit-learn documentation on n_jobs for more details.

  • batch_size (int, default=None) – Number of inputs processed in each batch. None divides input data into equal-sized parts, as many as n_jobs.

  • verbose (int, default=0) – Controls the verbosity when computing fingerprints.

n_features_out#

Number of output features, size of fingerprints.

Type:

int = 224

requires_conformers#

Value is always True, as this fingerprint is 3D based. It always requires molecules with conformers as inputs, with conf_id integer property set.

Type:

bool = True

See also

RDFFingerprint

Related fingerprint, which uses radial distribution function (RDF) instead of scattered electron intensity.

References

Examples

>>> from skfp.fingerprints import MORSEFingerprint
>>> from skfp.preprocessing import MolFromSmilesTransformer, ConformerGenerator
>>> smiles = ["O", "CC", "[C-]#N", "CC=O"]
>>> fp = MORSEFingerprint()
>>> fp
MORSEFingerprint()
>>> mol_from_smiles = MolFromSmilesTransformer()
>>> mols = mol_from_smiles.transform(smiles)
>>> conf_gen = ConformerGenerator()
>>> mols = conf_gen.transform(mols)
>>> fp.transform(mols)  
array([[ 3.0000e+00,  2.3090e+00,  9.0900e-01, ..., -1.3000e-02,
        -8.3000e-02, -5.3000e-02],
       [ 2.8000e+01,  1.2408e+01, -8.1900e-01, ...,  3.5400e-01,
         4.8200e-01, -1.2000e-01],
       [ 1.0000e+00,  7.9500e-01,  3.2700e-01, ...,  8.6700e-01,
         1.2400e-01, -7.1200e-01],
       [ 2.1000e+01,  9.2430e+00, -4.3800e-01, ..., -5.8700e-01,
         2.7400e-01, -3.9000e-02]])

Methods

fit(X[, y])

Unused, kept for Scikit-learn compatibility.

fit_transform(X[, y])

The same as transform method, kept for Scikit-learn compatibility.

get_feature_names_out([input_features])

Get output feature names for transformation.

get_metadata_routing()

Get metadata routing of this object.

get_params([deep])

Get parameters for this estimator.

set_output(*[, transform])

Set output container.

set_params(**params)

Set the parameters of this estimator.

set_transform_request(*[, copy])

Request metadata passed to the transform method.

transform(X[, copy])

fit(X, y=None, **fit_params)#

Unused, kept for Scikit-learn compatibility.

Parameters:
  • X (any) – Unused, kept for Scikit-learn compatibility.

  • Y (any) – Unused, kept for Scikit-learn compatibility.

  • **fit_params (dict) – Unused, kept for Scikit-learn compatibility.

Return type:

self

fit_transform(X, y=None, **fit_params)#

The same as transform method, kept for Scikit-learn compatibility.

Parameters:
  • X (any) – See transform method.

  • y (any) – See transform method.

  • **fit_params (dict) – Unused, kept for Scikit-learn compatibility.

Returns:

X_new – See transform method.

Return type:

any

get_feature_names_out(input_features=None)#

Get output feature names for transformation.

The feature names out will prefixed by the lowercased class name. For example, if the transformer outputs 3 features, then the feature names out are: [“class_name0”, “class_name1”, “class_name2”].

Parameters:

input_features (array-like of str or None, default=None) – Only used to validate feature names with the names seen in fit.

Returns:

feature_names_out – Transformed feature names.

Return type:

ndarray of str objects

get_metadata_routing()#

Get metadata routing of this object.

Please check User Guide on how the routing mechanism works.

Returns:

routing – A MetadataRequest encapsulating routing information.

Return type:

MetadataRequest

get_params(deep=True)#

Get parameters for this estimator.

Parameters:

deep (bool, default=True) – If True, will return the parameters for this estimator and contained subobjects that are estimators.

Returns:

params – Parameter names mapped to their values.

Return type:

dict

set_output(*, transform=None)#

Set output container.

See Introducing the set_output API for an example on how to use the API.

Parameters:

transform ({"default", "pandas", "polars"}, default=None) –

Configure output of transform and fit_transform.

  • ”default”: Default output format of a transformer

  • ”pandas”: DataFrame output

  • ”polars”: Polars output

  • None: Transform configuration is unchanged

Added in version 1.4: “polars” option was added.

Returns:

self – Estimator instance.

Return type:

estimator instance

set_params(**params)#

Set the parameters of this estimator.

The method works on simple estimators as well as on nested objects (such as Pipeline). The latter have parameters of the form <component>__<parameter> so that it’s possible to update each component of a nested object.

Parameters:

**params (dict) – Estimator parameters.

Returns:

self – Estimator instance.

Return type:

estimator instance

set_transform_request(*, copy: bool | None | str = '$UNCHANGED$') MORSEFingerprint#

Request metadata passed to the transform method.

Note that this method is only relevant if enable_metadata_routing=True (see sklearn.set_config()). Please see User Guide on how the routing mechanism works.

The options for each parameter are:

  • True: metadata is requested, and passed to transform if provided. The request is ignored if metadata is not provided.

  • False: metadata is not requested and the meta-estimator will not pass it to transform.

  • None: metadata is not requested, and the meta-estimator will raise an error if the user provides it.

  • str: metadata should be passed to the meta-estimator with this given alias instead of the original name.

The default (sklearn.utils.metadata_routing.UNCHANGED) retains the existing request. This allows you to change the request for some parameters and not others.

Added in version 1.3.

Note

This method is only relevant if this estimator is used as a sub-estimator of a meta-estimator, e.g. used inside a Pipeline. Otherwise it has no effect.

Parameters:

copy (str, True, False, or None, default=sklearn.utils.metadata_routing.UNCHANGED) – Metadata routing for copy parameter in transform.

Returns:

self – The updated object.

Return type:

object