Skip to content

Commit

Permalink
fix wrong fingerprint usage
Browse files Browse the repository at this point in the history
  • Loading branch information
JochenSiegWork committed Nov 21, 2024
1 parent ab1e2de commit 03b1e81
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_elements/test_mol2any/test_mol2concatenated.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
from molpipeline.abstract_pipeline_elements.core import MolToAnyPipelineElement
from molpipeline.any2mol import SmilesToMol
from molpipeline.mol2any import (
Mol2PathFP,
MolToConcatenatedVector,
MolToMACCSFP,
MolToMorganFP,
MolToNetCharge,
MolToRDKitPhysChem,
Expand Down Expand Up @@ -166,11 +168,11 @@ def test_features_names(self) -> None: # pylint: disable-msg=too-many-locals
)
path_elem = (
"PathFP",
MolToMorganFP(n_bits=15),
Mol2PathFP(n_bits=15),
)
maccs_elem = (
"MACCSFP",
MolToMorganFP(n_bits=14),
MolToMACCSFP(),
)

elements = [
Expand Down

0 comments on commit 03b1e81

Please sign in to comment.