Re: [Rdkit-devel] Writing Fingerprints

2012-03-08 Thread Greg Landrum
On Thu, Mar 8, 2012 at 6:04 PM, Nicholas Firth wrote: > Hi All, > I've run into a few more problems with Fingerprinting, I'm trying to create > a database of these fingerprints, I've tried a few different methods to > write the fingerprints > > SparseIntVect *finger; > mol=SmilesToMol(line); > fin

Re: [Rdkit-devel] Writing Fingerprints

2012-03-08 Thread Uwe Hoffmann
Am 08.03.2012 18:04, schrieb Nicholas Firth: > cout << finger.toString() << endl; give finger->toString() a try. regards uwe -- Virtualization & Cloud Management Using Capacity Planning Cloud computing makes use o

[Rdkit-devel] Writing Fingerprints

2012-03-08 Thread Nicholas Firth
Hi All, I've run into a few more problems with Fingerprinting, I'm trying to create a database of these fingerprints, I've tried a few different methods to write the fingerprints SparseIntVect *finger; mol=SmilesToMol(line); finger = MorganFingerprints::getFingerprint(*mol, 2); cout << finger.to