Spaces:
Sleeping
Sleeping
File size: 226 Bytes
6ae852e |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from rdkit.Chem.EState import Fingerprinter
import numpy as np
_type = 'Estate-based'
def GetEstateFPs(mol):
'''
79 bits Estate fps
'''
x = Fingerprinter.FingerprintMol(mol)[0]
return x.astype(np.bool_)
|