Mercurial > repos > pablocarb > synbiodesign
view rpviz/smile2picture.py @ 30:0ad6fda90f41 draft default tip
planemo upload commit f74fd52b330cc7460d98121b9bb78c08ca915d1e
author | pablocarb |
---|---|
date | Thu, 29 Aug 2019 06:59:58 -0400 |
parents | fe78fd6b315a |
children |
line wrap: on
line source
# -*- coding: utf-8 -*- """ Created on Fri May 31 13:29:59 2019 @author: anael """ from __future__ import print_function from rdkit import Chem from rdkit.Chem import rdDepictor from rdkit.Chem.Draw import rdMolDraw2D def picture(smile): image={} for i in smile : mol = Chem.MolFromSmiles(smile[i]) rdDepictor.Compute2DCoords(mol) drawer = rdMolDraw2D.MolDraw2DSVG(200,200) drawer.DrawMolecule(mol) drawer.FinishDrawing() svg = drawer.GetDrawingText() image[i]=svg.split("?>\n")[1] return(image)