How can I use conformers generated and optimized with the RDKit Knime nodes in a Python snippet using RDKit? And to be specific in a way as explained in the RDKit Documentation. See example below:
AllChem.AlignMolConformers(m2, RMSlist=rmslist)
In Python m2 is generated by:
AllChem.EmbedMultipleConfs(m2, numConfs=10)
Is it possible to again combine the conformers generated in KNIME into 1 python object as m2 is?