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
|
//
// Copyright (C) 2012-2016 Greg Landrum
// @@ All Rights Reserved @@
//
// This file is part of the RDKit.
// The contents are covered by the terms of the BSD license
// which is included in the file license.txt, found at the root
// of the RDKit source tree.
//
#include <RDGeneral/test.h>
#include <RDGeneral/Invariant.h>
#include <GraphMol/RDKitBase.h>
#include <GraphMol/FileParsers/MolSupplier.h>
#include <GraphMol/FileParsers/FileParsers.h>
#include <RDGeneral/RDLog.h>
#include <vector>
#include <algorithm>
#include <fstream>
#include <GraphMol/Descriptors/PBF.h>
void test1() {
BOOST_LOG(rdErrorLog) << "-------------------------------------" << std::endl;
BOOST_LOG(rdErrorLog) << " Basic PBF tests." << std::endl;
std::string pathName = getenv("RDBASE");
std::string sdfName =
pathName + "/Code/GraphMol/Descriptors/test_data/PBF_egfr.sdf";
RDKit::SDMolSupplier reader(sdfName, true, false);
std::string fName =
pathName + "/Code/GraphMol/Descriptors/test_data/PBF_egfr.out";
std::ifstream instrm(fName.c_str());
while (!reader.atEnd()) {
RDKit::ROMol *m = reader.next();
TEST_ASSERT(m);
std::string nm;
m->getProp("_Name", nm);
double dpbf = RDKit::Descriptors::PBF(*m);
std::string inm;
double ref;
instrm >> inm;
instrm >> ref;
TEST_ASSERT(inm == nm);
if (fabs(ref - dpbf) > .001) {
std::cerr << "value mismatch: " << inm << " " << ref << " " << dpbf
<< std::endl;
}
TEST_ASSERT(fabs(ref - dpbf) < 0.001);
delete m;
}
BOOST_LOG(rdErrorLog) << " done" << std::endl;
}
void testPBFEdges() {
BOOST_LOG(rdErrorLog) << "-------------------------------------" << std::endl;
BOOST_LOG(rdErrorLog) << " PBF edge cases." << std::endl;
{
std::string pathName = getenv("RDBASE");
std::string sdfName =
pathName + "/Code/GraphMol/Descriptors/test_data/linear.mol";
RDKit::ROMol *m = RDKit::MolFileToMol(sdfName);
TEST_ASSERT(m);
double dpbf = RDKit::Descriptors::PBF(*m);
TEST_ASSERT(dpbf <= 1e-4);
delete m;
}
{
std::string pathName = getenv("RDBASE");
std::string sdfName =
pathName + "/Code/GraphMol/Descriptors/test_data/linear_2atom.mol";
RDKit::ROMol *m = RDKit::MolFileToMol(sdfName);
TEST_ASSERT(m);
double dpbf = RDKit::Descriptors::PBF(*m);
TEST_ASSERT(dpbf <= 1e-4);
delete m;
}
{
std::string pathName = getenv("RDBASE");
std::string sdfName =
pathName + "/Code/GraphMol/Descriptors/test_data/planar.mol";
RDKit::ROMol *m = RDKit::MolFileToMol(sdfName);
TEST_ASSERT(m);
double dpbf = RDKit::Descriptors::PBF(*m);
TEST_ASSERT(dpbf <= 1e-4);
delete m;
}
{
std::string pathName = getenv("RDBASE");
std::string sdfName =
pathName + "/Code/GraphMol/Descriptors/test_data/planar_3atom.mol";
RDKit::ROMol *m = RDKit::MolFileToMol(sdfName);
TEST_ASSERT(m);
double dpbf = RDKit::Descriptors::PBF(*m);
TEST_ASSERT(dpbf <= 1e-4);
delete m;
}
{
RDKit::RWMol m;
bool updateLabel = true;
bool takeOwnership = true;
m.addAtom(new RDKit::Atom(6), updateLabel, takeOwnership);
m.addAtom(new RDKit::Atom(6), updateLabel, takeOwnership);
m.addAtom(new RDKit::Atom(6), updateLabel, takeOwnership);
m.addAtom(new RDKit::Atom(6), updateLabel, takeOwnership);
m.addAtom(new RDKit::Atom(6), updateLabel, takeOwnership);
m.addAtom(new RDKit::Atom(6), updateLabel, takeOwnership);
m.addConformer(new RDKit::Conformer(m.getNumAtoms()));
double dpbf = RDKit::Descriptors::PBF(m);
TEST_ASSERT(dpbf <= 1e-4);
}
BOOST_LOG(rdErrorLog) << " done" << std::endl;
}
int main() {
RDLog::InitLogs();
test1();
testPBFEdges();
}
|