I have a list of 298 SMILES and I want to turn those 298 into mol objects however rdkit is giving me the above error.
TypeError: No registered converter was able to produce a C++
rvalue of type std::basic_string<wchar_t,
std::char_traits<wchar_t>, std::allocator<wchar_t> > from this
Python object of type float
This is my code:
for mol in str_smiles:
Chem.MolFromSmiles(mol)
mol_object_list.append(mol)
Can someone tell what's wrong?