From 10a8824e997d9aff4a61e01d685cb9116fd7c128 Mon Sep 17 00:00:00 2001 From: Alexander Korolyov <165139697+alkorolyov-selvita@users.noreply.github.com> Date: Wed, 20 Nov 2024 06:38:57 +0100 Subject: [PATCH] Remove unserializable list params Removed unhashable list params due to failure to run `pattern` and `layered` fingerprint calculators when using dm.parallelized(). --- molfeat/calc/fingerprints.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/molfeat/calc/fingerprints.py b/molfeat/calc/fingerprints.py index 3130b50..4fd32b6 100644 --- a/molfeat/calc/fingerprints.py +++ b/molfeat/calc/fingerprints.py @@ -109,7 +109,7 @@ }, "pattern": { "fpSize": 2048, - "atomCounts": [], + # "atomCounts": [], "setOnlyBits": None, "tautomerFingerprints": False, }, @@ -117,7 +117,7 @@ "fpSize": 2048, "minPath": 1, "maxPath": 7, - "atomCounts": [], + # "atomCounts": [], "setOnlyBits": None, "branchedPaths": True, "fromAtoms": 0,