libokj's picture
Upload 110 files
c0ec7e6
raw
history blame
226 Bytes
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_)