Re: [Rdkit-discuss] Virtual hydrogens for metals (smiles and smarts)

2023-05-18 Thread Francois Berenger
For mere humans, working with SMARTS is always a pain. But, some nice people are trying to make your life easier: https://smarts.plus/ [2] K. Schomburg, H.-C. Ehrlich, K. Stierand, M.Rarey; From Structure Diagrams to Visual Chemical Patterns, J. Chem. Inf. Model., 2010, 50 (9), pp 1529-1535

Re: [Rdkit-discuss] Virtual hydrogens for metals (smiles and smarts)

2023-05-18 Thread Wim Dehaen
[Zr;H1] this smarts pattern should match an Zirconium with hcount of exactly one. see below for a demonstration: m=Chem.MolFromSmiles("[ZrH]CC") pat=Chem.MolFromSmarts("[Zr;H1]") len(m.GetSubstructMatches(pat)) 1 hope this helps, wim On Fri, May 19, 2023 at 12:33 AM Jarod Younker wrote: >

[Rdkit-discuss] Virtual hydrogens for metals (smiles and smarts)

2023-05-18 Thread Jarod Younker
I’ve got the following two smiles strings: [Zr]C [ZrH] The smarts string [Zr][CH3] matches [Zr]C. What’s the smarts for [ZrH]? I’ve tried [Zr][H]. It does not match. Sent from my iPhone ___ Rdkit-discuss mailing list

Re: [Rdkit-discuss] How to decompose the UFF (or MMFF94) scoring of a small molecule?

2023-05-18 Thread Geoffrey Hutchison
But it’s not so simple. If you rotate a dihedral, all the non-bonded VdW interactions also change. Calculating a force field energy at one particular geometry is extremely fast, and the current version allows you to run multiple energies in parallel. Generate a bunch of geometries at once and

Re: [Rdkit-discuss] How to decompose the UFF (or MMFF94) scoring of a small molecule?

2023-05-18 Thread Paolo Tosco
Hi Francois, I have replied on GitHub ~10’ ago. p. > On 18 May 2023, at 10:23, Francois Berenger wrote: > > Dear list, > > I asked this question in rdkit's github discussions: > > https://github.com/rdkit/rdkit/discussions/6377 > > But, apparently that's not more responsive than the ML,

[Rdkit-discuss] How to decompose the UFF (or MMFF94) scoring of a small molecule?

2023-05-18 Thread Francois Berenger
Dear list, I asked this question in rdkit's github discussions: https://github.com/rdkit/rdkit/discussions/6377 But, apparently that's not more responsive than the ML, so here is my question: --- I have a ligand, I would like to score its current conformer using rdkit's UFF implementation.