This is the backup of https://github.com/dfwlab/mybinder-rdkit
本仓库用于在 MyBinder 上运行 Jupyter Notebook,并支持 RDKit 进行化学分子处理。
点击以下按钮,在 Binder 中打开 Notebook:
- 通过
Dockerfile安装 Jupyter 和 RDKit - 也可以使用
environment.yml让 Binder 创建 Conda 环境
在 index.ipynb 中,包含 RDKit 的基本操作示例:
from rdkit import Chem
from rdkit.Chem import Draw
mol = Chem.MolFromSmiles("c1ccccc1")
Draw.MolToImage(mol)