Browse Source
Update README
Signed-off-by: shiyu22 <shiyu.chen@zilliz.com>
main
1 changed files with
2 additions and
2 deletions
-
README.md
|
@ -33,7 +33,7 @@ An example that use the Morgan algorithm to generate a fingerprint of the molecu |
|
|
import towhee |
|
|
import towhee |
|
|
|
|
|
|
|
|
towhee.dc(['Cc1ccc(cc1)S(=O)(=O)N']) \ |
|
|
towhee.dc(['Cc1ccc(cc1)S(=O)(=O)N']) \ |
|
|
.molecular_fingerprinting.rdkit() \ |
|
|
|
|
|
|
|
|
.molecular_fingerprinting() \ |
|
|
.show() |
|
|
.show() |
|
|
``` |
|
|
``` |
|
|
<img src="./result1.png" height="35px"/> |
|
|
<img src="./result1.png" height="35px"/> |
|
@ -44,7 +44,7 @@ towhee.dc(['Cc1ccc(cc1)S(=O)(=O)N']) \ |
|
|
import towhee |
|
|
import towhee |
|
|
|
|
|
|
|
|
towhee.dc['smiles'](['Cc1ccc(cc1)S(=O)(=O)N']) \ |
|
|
towhee.dc['smiles'](['Cc1ccc(cc1)S(=O)(=O)N']) \ |
|
|
.molecular_fingerprinting.rdkit['smiles', 'fingerprint']() \ |
|
|
|
|
|
|
|
|
.molecular_fingerprinting['smiles', 'fingerprint']() \ |
|
|
.show() |
|
|
.show() |
|
|
``` |
|
|
``` |
|
|
<img src="./result2.png" height="75px"/> |
|
|
<img src="./result2.png" height="75px"/> |
|
|