Hi
I tried to execute the following workflow :
03_Clustering – KNIME Community Hub
But have one error on the 2nd script Python script “attach the sidechains
using code in a Jupyter notebook”
nb = knime_jupyter.load_notebook(notebook_directory=“knime://knime.workflow/”,
notebook_name=“Enumerate.ipynb”,
only_include_tag=“export”)
from rdkit import Chem
import pandas as pd
new_mols =
try:
for core,chains in zip(input_table[‘Explicit Core’],input_table[‘sidechains’]):
chains = Chem.MolFromSmiles(chains)
new_mols.append(nb.attach_sidechains_to_core(core,chains))
output_table = input_table.copy()
output_table['mol'] = new_mols
Issue :
WARNING: not removing hydrogen atom with dummy atom neighbors
Can’t kekulize mol. Unkekulized atoms: 11 12 14 15 16
Thanks , if anyone have some solution to resolve this issue