プログラミング初心者です。
minicondaでRDKiTを進めていたところ以下のエラーが出ました。
エラー解決するためhttps://github.com/rdkit/rdkit/issues/715
のサイトを参考にして試してみましたが解決できませんでした。
解決策を教えてください
python
1 2ht = HeteroShuffle(mol1, core1) 3res = ht.generate_mols() 4print(len(res)) 5Draw.MolsToGridImage(res, molsPerRows=5) 6 77 80 9 10 11--------------------------------------------------------------------------- 12ArgumentError Traceback (most recent call last) 13<ipython-input-24-f39904f95965> in <module> 14 2 res = ht.generate_mols() 15 3 print(len(res)) 16----> 4 Draw.MolsToGridImage(res, molsPerRows=5) 17 18 19~\Miniconda3\lib\site-packages\rdkit\Chem\Draw\IPythonConsole.py in ShowMols(mols, maxMols, **kwargs) 20 191 if prop in kwargs: 21 192 kwargs[prop] = kwargs[prop][:maxMols] 22--> 193 res = fn(mols, drawOptions=drawOptions, **kwargs) 23 194 if kwargs['useSVG']: 24 195 return SVG(res) 25 26~\Miniconda3\lib\site-packages\rdkit\Chem\Draw\__init__.py in MolsToGridImage(mols, molsPerRow, subImgSize, legends, highlightAtomLists, highlightBondLists, useSVG, **kwargs) 27 491 return _MolsToGridSVG(mols, molsPerRow=molsPerRow, subImgSize=subImgSize, legends=legends, 28 492 highlightAtomLists=highlightAtomLists, 29--> 493 highlightBondLists=highlightBondLists, **kwargs) 30 494 else: 31 495 return _MolsToGridImage(mols, molsPerRow=molsPerRow, subImgSize=subImgSize, legends=legends, 32 33~\Miniconda3\lib\site-packages\rdkit\Chem\Draw\__init__.py in _MolsToGridSVG(mols, molsPerRow, subImgSize, legends, highlightAtomLists, highlightBondLists, drawOptions, **kwargs) 34 473 del kwargs[k] 35 474 d2d.DrawMolecules(list(mols), legends=legends, highlightAtoms=highlightAtomLists, 36--> 475 highlightBonds=highlightBondLists, **kwargs) 37 476 d2d.FinishDrawing() 38 477 res = d2d.GetDrawingText() 39 40ArgumentError: Python argument types in 41 MolDraw2D.DrawMolecules(MolDraw2DSVG, list) 42did not match C++ signature: 43 DrawMolecules(class RDKit::MolDraw2D {lvalue} self, class boost::python::api::object mols, class boost::python::api::object highlightAtoms=None, class boost::python::api::object highlightBonds=None, class boost::python::api::object highlightAtomColors=None, class boost::python::api::object highlightBondColors=None, class boost::python::api::object highlightAtomRadii=None, class boost::python::api::object confIds=None, class boost::python::api::object legends=None) 44
あなたの回答
tips
プレビュー