mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
* update .gitignore * foundation for 3D descriptors move PBF into core * cleanup work * a bit more cleanup * move the principal moments calc to MolTransforms * cleanup * cleanups * add caching of the principal moments and values * do not include the 3D descriptors in MolDescriptors.h * the properties are computed * add PMI descriptors and tests * add tests for NPR descriptors * return 0 when the largest PMI is zero * PMI edge case tests * NPR edge case tests * PBF edge case tests * PBF edge case tests * more edge cases * add a few more 3d descriptors * add defns to docs * tests for the new descriptors * add versions to new descriptors * add 3d descriptors to python wrapper * add eigen support to the travis build * try to get non-windows builds working * remove computeCovarianceMatrix() from java wrapper * make pmi property names "private"
121 lines
3.3 KiB
C++
121 lines
3.3 KiB
C++
//
|
|
// 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/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());
|
|
int nDone=0;
|
|
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;
|
|
++nDone;
|
|
}
|
|
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;
|
|
m.addAtom(new RDKit::Atom(6));
|
|
m.addAtom(new RDKit::Atom(6));
|
|
m.addAtom(new RDKit::Atom(6));
|
|
m.addAtom(new RDKit::Atom(6));
|
|
m.addAtom(new RDKit::Atom(6));
|
|
m.addAtom(new RDKit::Atom(6));
|
|
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(int argc, char *argv[])
|
|
{
|
|
RDLog::InitLogs();
|
|
test1();
|
|
testPBFEdges();
|
|
}
|