Greg, as always: Thank you very much for your help! Greg Landrum wrote: > Hi Markus, > > On Wed, Jun 9, 2010 at 8:28 AM, markus kossner <[email protected]> wrote: > >> Hi Greg, >> I just searched for a possibility to query an Atom for its van der Waals >> Radius, but did not find a 'pythonic way' like an Atom-Property or the >> like in the docu. >> Do you have a hint on the best way to get this information using the RDKit? >> > > yes, you need to ask the periodic table: > >>>> m = Chem.MolFromSmiles('c1ncccc1') >>>> for a in m.GetAtoms(): print >>>> Chem.GetPeriodicTable().GetRvdw(a.GetAtomicNum()) >>>> > > > Best Regards, > -greg >
------------------------------------------------------------------------------ ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit. See the prize list and enter to win: http://p.sf.net/sfu/thinkgeek-promo _______________________________________________ Rdkit-discuss mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/rdkit-discuss

