Re: [Rdkit-discuss] Problem with DrawMorganBits of Indolizine

2019-04-29 Thread Jasmin
Hi, Thanks for your reply. I'm running version 2019.03.1. Am 30.04.2019 05:24 schrieb Greg Landrum: Hi, I’m out-of-office this week and don’t have access to a computer, but I suspect that that is a bug. The drawing code should not generate errors like that. Which version of the rdkit are you

Re: [Rdkit-discuss] Problem with DrawMorganBits of Indolizine

2019-04-29 Thread Greg Landrum
Hi, I’m out-of-office this week and don’t have access to a computer, but I suspect that that is a bug. The drawing code should not generate errors like that. Which version of the rdkit are you running? -greg On Mon, 29 Apr 2019 at 15:55, Jasmin wrote: > Hello! > > When running the following

[Rdkit-discuss] Problem with DrawMorganBits of Indolizine

2019-04-29 Thread Jasmin
Hello! When running the following Code: testmol = Chem.MolFromSmiles('c1cccn212') info = {} fp = AllChem.GetMorganFingerprintAsBitVect(testmol, 2, nBits=1024, bitInfo=info) drawing = [] for key in info: drawing.append((testmol, key, {key: info[key]})) Draw.D