Skip to content

Instantly share code, notes, and snippets.

@greglandrum
Created July 19, 2022 14:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save greglandrum/5b96e0f9ed00ea548501e2b67b600673 to your computer and use it in GitHub Desktop.
Save greglandrum/5b96e0f9ed00ea548501e2b67b600673 to your computer and use it in GitHub Desktop.
AddHeteroHs.ipynb
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "from rdkit import Chem\nfrom rdkit.Chem.Draw import IPythonConsole",
"execution_count": 1,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "def AddHeteroHs(mol):\n res = Chem.RWMol(Chem.AddHs(mol))\n res.BeginBatchEdit()\n for atom in res.GetAtoms():\n if atom.GetAtomicNum()==1 and atom.GetDegree()==1:\n if atom.GetNeighbors()[0].GetAtomicNum()==6:\n res.RemoveAtom(atom.GetIdx())\n res.CommitBatchEdit()\n return res\n \n ",
"execution_count": 2,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "Chem.MolToSmiles(AddHeteroHs(Chem.MolFromSmiles('CC(CS)CO')))",
"execution_count": 3,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 3,
"data": {
"text/plain": "'[H]OCC(C)CS[H]'"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "",
"execution_count": null,
"outputs": []
}
],
"metadata": {
"kernelspec": {
"name": "python3",
"display_name": "Python 3",
"language": "python"
},
"toc": {
"nav_menu": {},
"number_sections": true,
"sideBar": true,
"skip_h1_title": false,
"base_numbering": 1,
"title_cell": "Table of Contents",
"title_sidebar": "Contents",
"toc_cell": false,
"toc_position": {},
"toc_section_display": true,
"toc_window_display": false
},
"language_info": {
"name": "python",
"version": "3.9.1",
"mimetype": "text/x-python",
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"pygments_lexer": "ipython3",
"nbconvert_exporter": "python",
"file_extension": ".py"
},
"gist": {
"id": "",
"data": {
"description": "AddHeteroHs.ipynb",
"public": true
}
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment