From b63e1344f657d74c27c1d8acd2cbc8654a3cf7e0 Mon Sep 17 00:00:00 2001 From: shiyu22 Date: Thu, 21 Apr 2022 14:56:29 +0800 Subject: [PATCH] Update README Signed-off-by: shiyu22 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 788a956..d72fd24 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ An example that use the Morgan algorithm to generate a fingerprint of the molecu import towhee towhee.dc(['Cc1ccc(cc1)S(=O)(=O)N']) \ - .molecular_fingerprinting.rdkit() \ + .molecular_fingerprinting() \ .show() ``` @@ -44,7 +44,7 @@ towhee.dc(['Cc1ccc(cc1)S(=O)(=O)N']) \ import towhee towhee.dc['smiles'](['Cc1ccc(cc1)S(=O)(=O)N']) \ - .molecular_fingerprinting.rdkit['smiles', 'fingerprint']() \ + .molecular_fingerprinting['smiles', 'fingerprint']() \ .show() ```