mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
11 lines
309 B
Python
11 lines
309 B
Python
#!python
|
|
'''
|
|
FeatFinderCLI reads molecules as SMILES from the first column of a tab, comma or space
|
|
separated file and annotates the atoms of the molecules with their pharmacophore property.
|
|
|
|
Use 'FeatFinderCLI.py --help' for further information
|
|
'''
|
|
from rdkit.Chem import FeatFinderCLI
|
|
|
|
FeatFinderCLI.main()
|