1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
|
// Copyright (c) 2017, Novartis Institutes for BioMedical Research Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following
// disclaimer in the documentation and/or other materials provided
// with the distribution.
// * Neither the name of Novartis Institutes for BioMedical Research Inc.
// nor the names of its contributors may be used to endorse or promote
// products derived from this software without specific prior written
// permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
#include <RDGeneral/export.h>
#ifndef RDKIT_SUBSTRUCT_LIBRARY
#define RDKIT_SUBSTRUCT_LIBRARY
#include <GraphMol/RDKitBase.h>
#include <GraphMol/MolPickler.h>
#include <GraphMol/SmilesParse/SmilesParse.h>
#include <GraphMol/SmilesParse/SmilesWrite.h>
#include <GraphMol/Fingerprints/Fingerprints.h>
#include <DataStructs/ExplicitBitVect.h>
#include <DataStructs/BitOps.h>
namespace RDKit {
//! Base class API for holding molecules to substructure search.
/*!
This is an API that hides the implementation details used for
indexing molecules for substructure searching. It simply
provides an API for adding and getting molecules from a set.
*/
class RDKIT_SUBSTRUCTLIBRARY_EXPORT MolHolderBase {
public:
virtual ~MolHolderBase() {}
//! Add a new molecule to the substructure search library
//! Returns the molecules index in the library
virtual unsigned int addMol(const ROMol &m) = 0;
// implementations should throw IndexError on out of range
virtual boost::shared_ptr<ROMol> getMol(unsigned int) const = 0;
//! Get the current library size
virtual unsigned int size() const = 0;
};
//! Concrete class that holds molecules in memory
/*!
This is currently one of the faster implementations.
However it is very memory intensive.
*/
class RDKIT_SUBSTRUCTLIBRARY_EXPORT MolHolder : public MolHolderBase {
std::vector<boost::shared_ptr<ROMol>> mols;
public:
MolHolder() : MolHolderBase(), mols() {}
virtual unsigned int addMol(const ROMol &m) {
mols.push_back(boost::make_shared<ROMol>(m));
return size() - 1;
}
virtual boost::shared_ptr<ROMol> getMol(unsigned int idx) const {
if (idx >= mols.size()) throw IndexErrorException(idx);
return mols[idx];
}
virtual unsigned int size() const {
return rdcast<unsigned int>(mols.size());
}
};
//! Concrete class that holds binary cached molecules in memory
/*!
This implementation uses quite a bit less memory than the
non cached implementation. However, due to the reduced speed
it should be used in conjunction with a pattern fingerprinter.
See RDKit::FPHolder
*/
class RDKIT_SUBSTRUCTLIBRARY_EXPORT CachedMolHolder : public MolHolderBase {
std::vector<std::string> mols;
public:
CachedMolHolder() : MolHolderBase(), mols() {}
virtual unsigned int addMol(const ROMol &m) {
mols.push_back(std::string());
MolPickler::pickleMol(m, mols.back());
return size() - 1;
}
//! Adds a pickled binary molecule, no validity checking of the input
//! is done.
unsigned int addBinary(const std::string &pickle) {
mols.push_back(pickle);
return size() - 1;
}
virtual boost::shared_ptr<ROMol> getMol(unsigned int idx) const {
if (idx >= mols.size()) throw IndexErrorException(idx);
boost::shared_ptr<ROMol> mol(new ROMol);
MolPickler::molFromPickle(mols[idx], mol.get());
return mol;
}
virtual unsigned int size() const {
return rdcast<unsigned int>(mols.size());
}
};
//! Concrete class that holds smiles strings in memory
/*!
This implementation uses quite a bit less memory than the
cached binary or uncached implementation. However, due to the
reduced speed it should be used in conjunction with a pattern
fingerprinter.
See RDKit::FPHolder
*/
class RDKIT_SUBSTRUCTLIBRARY_EXPORT CachedSmilesMolHolder : public MolHolderBase {
std::vector<std::string> mols;
public:
CachedSmilesMolHolder() : MolHolderBase(), mols() {}
virtual unsigned int addMol(const ROMol &m) {
bool doIsomericSmiles = true;
mols.push_back(MolToSmiles(m, doIsomericSmiles));
return size() - 1;
}
//! Add a smiles to the dataset, no validation is done
//! to the inputs.
unsigned int addSmiles(const std::string &smiles) {
mols.push_back(smiles);
return size() - 1;
}
virtual boost::shared_ptr<ROMol> getMol(unsigned int idx) const {
if (idx >= mols.size()) throw IndexErrorException(idx);
boost::shared_ptr<ROMol> mol(SmilesToMol(mols[idx]));
return mol;
}
virtual unsigned int size() const {
return rdcast<unsigned int>(mols.size());
}
};
//! Concrete class that holds trusted smiles strings in memory
/*!
A trusted smiles is essentially a smiles string that
RDKit has generated. This indicates that fewer
sanitization steps are required. See
http://rdkit.blogspot.com/2016/09/avoiding-unnecessary-work-and.html
This implementation uses quite a bit less memory than the
cached binary or uncached implementation. However, due to the
reduced speed it should be used in conjunction with a pattern
fingerprinter.
See RDKit::FPHolder
*/
class RDKIT_SUBSTRUCTLIBRARY_EXPORT CachedTrustedSmilesMolHolder : public MolHolderBase {
std::vector<std::string> mols;
public:
CachedTrustedSmilesMolHolder() : MolHolderBase(), mols() {}
virtual unsigned int addMol(const ROMol &m) {
bool doIsomericSmiles = true;
mols.push_back(MolToSmiles(m, doIsomericSmiles));
return size() - 1;
}
//! Add a smiles to the dataset, no validation is done
//! to the inputs.
unsigned int addSmiles(const std::string &smiles) {
mols.push_back(smiles);
return size() - 1;
}
virtual boost::shared_ptr<ROMol> getMol(unsigned int idx) const {
if (idx >= mols.size()) throw IndexErrorException(idx);
RWMol *m = SmilesToMol(mols[idx], 0, false);
m->updatePropertyCache();
return boost::shared_ptr<ROMol>(m);
}
virtual unsigned int size() const {
return rdcast<unsigned int>(mols.size());
}
};
//! Base FPI for the fingerprinter used to rule out impossible matches
class RDKIT_SUBSTRUCTLIBRARY_EXPORT FPHolderBase {
std::vector<ExplicitBitVect *> fps;
public:
virtual ~FPHolderBase() {
for (size_t i = 0; i < fps.size(); ++i) delete fps[i];
}
//! Adds a molecule to the fingerprinter
unsigned int addMol(const ROMol &m) {
fps.push_back(makeFingerprint(m));
return rdcast<unsigned int>(fps.size() - 1);
}
//! Adds a raw bit vector to the fingerprinter
unsigned int addFingerprint(const ExplicitBitVect &v) {
fps.push_back(new ExplicitBitVect(v));
return rdcast<unsigned int>(fps.size() - 1);
}
//! Return false if a substructure search can never match the molecule
bool passesFilter(unsigned int idx, const ExplicitBitVect &query) const {
if (idx >= fps.size()) throw IndexErrorException(idx);
return AllProbeBitsMatch(query, *fps[idx]);
}
//! Get the bit vector at the specified index (throws IndexError if out of
//! range)
const ExplicitBitVect &getFingerprint(unsigned int idx) const {
if (idx >= fps.size()) throw IndexErrorException(idx);
return *fps[idx];
}
//! make the query vector
//! Caller owns the vector!
virtual ExplicitBitVect *makeFingerprint(const ROMol &m) const = 0;
};
//! Uses the pattern fingerprinter to rule out matches
class RDKIT_SUBSTRUCTLIBRARY_EXPORT PatternHolder : public FPHolderBase {
public:
//! Caller owns the vector!
virtual ExplicitBitVect *makeFingerprint(const ROMol &m) const {
return PatternFingerprintMol(m, 2048);
}
};
//! Substructure Search a library of molecules
/*! This class allows for multithreaded substructure searches os
large datasets.
The implementations can use fingerprints to speed up searches
and have molecules cached as binary forms to reduce memory
usage.
basic usage:
\code
SubstructLibrary lib;
lib.addMol(mol);
std::vector<unsigned int> results = lib.getMatches(query);
for(std::vector<unsigned int>::const_iterator matchIndex=results.begin();
matchIndex != results.end();
++matchIndex) {
boost::shared_ptr<ROMol> match = lib.getMol(*matchIndex);
}
\endcode
Using different mol holders and pattern fingerprints.
\code
boost::shared_ptr<CachedTrustedSmilesMolHolder> molHolder = \
boost::make_shared<CachedTrustedSmilesMolHolder>();
boost::shared_ptr<PatternHolder> patternHolder = \
boost::make_shared<PatternHolder>();
SubstructLibrary lib(molHolder, patternHolder);
lib.addMol(mol);
\endcode
Cached molecule holders create molecules on demand. There are currently
three styles of cached molecules.
CachedMolHolder: stores molecules in the rdkit binary format.
CachedSmilesMolHolder: stores molecules in smiles format.
CachedTrustedSmilesMolHolder: stores molecules in smiles format.
The CachedTrustedSmilesMolHolder is made to add molecules from
a trusted source. This makes the basic assumption that RDKit was
used to sanitize and canonicalize the smiles string. In practice
this is considerably faster than using arbitrary smiles strings since
certain assumptions can be made.
When loading from external data, as opposed to using the "addMol" API,
care must be taken to ensure that the pattern fingerprints and smiles
are synchronized.
Each pattern holder has an API point for making its fingerprint. This
is useful to ensure that the pattern stored in the database will be
compatible with the patterns made when analyzing queries.
\code
boost::shared_ptr<CachedTrustedSmilesMolHolder> molHolder = \
boost::make_shared<CachedTrustedSmilesMolHolder>();
boost::shared_ptr<PatternHolder> patternHolder = \
boost::make_shared<PatternHolder>();
// the PatternHolder instance is able to make fingerprints.
// These, of course, can be read from a file. For demonstration
// purposes we construct them here.
const std::string trustedSmiles = "c1ccccc1";
ROMol *m = SmilesToMol(trustedSmiles);
const ExplicitBitVect *bitVector = patternHolder->makeFingerprint(*m);
// The trusted smiles and bitVector can be read from any source.
// This is the fastest way to load a substruct library.
molHolder->addSmiles( trustedSmiles );
patternHolder->addFingerprint( *bitVector );
SubstructLibrary lib(molHolder, patternHolder);
delete m;
delete bitVector;
\endcode
*/
class RDKIT_SUBSTRUCTLIBRARY_EXPORT SubstructLibrary {
boost::shared_ptr<MolHolderBase> molholder;
boost::shared_ptr<FPHolderBase> fpholder;
MolHolderBase *mols; // used for a small optimization
FPHolderBase *fps;
public:
SubstructLibrary()
: molholder(new MolHolder),
fpholder(),
mols(molholder.get()),
fps(NULL) {}
SubstructLibrary(boost::shared_ptr<MolHolderBase> molecules)
: molholder(molecules), fpholder(), mols(molholder.get()), fps(0) {}
SubstructLibrary(boost::shared_ptr<MolHolderBase> molecules,
boost::shared_ptr<FPHolderBase> fingerprints)
: molholder(molecules),
fpholder(fingerprints),
mols(molholder.get()),
fps(fpholder.get()) {}
//! Get the underlying molecule holder implementation
MolHolderBase &getMolHolder() {
PRECONDITION(mols, "Molecule holder NULL in SubstructLibrary");
return *mols;
}
const MolHolderBase &getMolecules() const {
PRECONDITION(mols, "Molecule holder NULL in SubstructLibrary");
return *mols;
}
//! Get the underlying fingerprint implementation.
/*! Throws a value error if no fingerprints have been set */
FPHolderBase &getFingerprints() {
if (!fps)
throw ValueErrorException("Substruct Library does not have fingerprints");
return *fps;
}
const FPHolderBase &getFingerprints() const {
if (!fps)
throw ValueErrorException("Substruct Library does not have fingerprints");
return *fps;
}
//! Add a molecule to the library
/*!
\param mol Molecule to add
returns index for the molecule in the library
*/
unsigned int addMol(const ROMol &mol);
//! Get the matching indices for the query
/*!
\param query Query to match against molecules
\param recursionPossible flags whether or not recursive matches are allowed
[ default true ]
\param useChirality use atomic CIP codes as part of the comparison [
default true ]
\param useQueryQueryMatches if set, the contents of atom and bond queries [
default false ]
will be used as part of the matching
\param numThreads If -1 use all available processors [default -1]
\param maxResults Maximum results to return, -1 means return all [default
-1]
*/
std::vector<unsigned int> getMatches(const ROMol &query,
bool recursionPossible = true,
bool useChirality = true,
bool useQueryQueryMatches = false,
int numThreads = -1,
int maxResults = -1);
//! Get the matching indices for the query between the given indices
/*!
\param query Query to match against molecules
\param startIdx Start index of the search
\param endIdx Ending idx (non-inclusive) of the search.
\param recursionPossible flags whether or not recursive matches are allowed
[ default true ]
\param useChirality use atomic CIP codes as part of the comparison [
default true ]
\param useQueryQueryMatches if set, the contents of atom and bond queries [
default false ]
will be used as part of the matching
\param numThreads If -1 use all available processors [default -1]
\param maxResults Maximum results to return, -1 means return all [default
-1]
*/
std::vector<unsigned int> getMatches(
const ROMol &query, unsigned int startIdx, unsigned int endIdx,
bool recursionPossible = true, bool useChirality = true,
bool useQueryQueryMatches = false, int numThreads = -1,
int maxResults = -1);
//! Return the number of matches for the query
/*!
\param query Query to match against molecules
\param recursionPossible flags whether or not recursive matches are allowed
[ default true ]
\param useChirality use atomic CIP codes as part of the comparison [
default true ]
\param useQueryQueryMatches if set, the contents of atom and bond queries [
default false ]
will be used as part of the matching
\param numThreads If -1 use all available processors [default -1]
*/
unsigned int countMatches(const ROMol &query, bool recursionPossible = true,
bool useChirality = true,
bool useQueryQueryMatches = false,
int numThreads = -1);
//! Return the number of matches for the query between the given indices
/*!
\param query Query to match against molecules
\param startIdx Start index of the search
\param endIdx Ending idx (non-inclusive) of the search.
\param recursionPossible flags whether or not recursive matches are allowed
[ default true ]
\param useChirality use atomic CIP codes as part of the comparison [
default true ]
\param useQueryQueryMatches if set, the contents of atom and bond queries [
default false ]
will be used as part of the matching
\param numThreads If -1 use all available processors [default -1]
*/
unsigned int countMatches(const ROMol &query, unsigned int startIdx,
unsigned int endIdx, bool recursionPossible = true,
bool useChirality = true,
bool useQueryQueryMatches = false,
int numThreads = -1);
//! Returns true if any match exists for the query
/*!
\param query Query to match against molecules
\param recursionPossible flags whether or not recursive matches are allowed
[ default true ]
\param useChirality use atomic CIP codes as part of the comparison [
default true ]
\param useQueryQueryMatches if set, the contents of atom and bond queries [
default false ]
will be used as part of the matching
\param numThreads If -1 use all available processors [default -1]
*/
bool hasMatch(const ROMol &query, bool recursionPossible = true,
bool useChirality = true, bool useQueryQueryMatches = false,
int numThreads = -1);
//! Returns true if any match exists for the query between the specified
//! indices
/*!
\param query Query to match against molecules
\param startIdx Start index of the search
\param endIdx Ending idx (inclusive) of the search.
\param recursionPossible flags whether or not recursive matches are allowed
[ default true ]
\param useChirality use atomic CIP codes as part of the comparison [
default true ]
\param useQueryQueryMatches if set, the contents of atom and bond queries [
default false ]
will be used as part of the matching
\param numThreads If -1 use all available processors [default -1]
*/
bool hasMatch(const ROMol &query, unsigned int startIdx, unsigned int endIdx,
bool recursionPossible = true, bool useChirality = true,
bool useQueryQueryMatches = false, int numThreads = -1);
//! Returns the molecule at the given index
/*!
\param idx Index of the molecule in the library
*/
boost::shared_ptr<ROMol> getMol(unsigned int idx) const {
// expects implementation to throw IndexError if out of range
PRECONDITION(mols, "molholder is null in SubstructLibrary");
return mols->getMol(idx);
}
//! Returns the molecule at the given index
/*!
\param idx Index of the molecule in the library
*/
boost::shared_ptr<ROMol> operator[](unsigned int idx) {
// expects implementation to throw IndexError if out of range
PRECONDITION(mols, "molholder is null in SubstructLibrary");
return mols->getMol(idx);
}
//! return the number of molecules in the library
unsigned int size() const {
PRECONDITION(mols, "molholder is null in SubstructLibrary");
return rdcast<unsigned int>(molholder->size());
}
};
}
#endif
|