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
|
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
#include <BALL/CONCEPT/classTest.h>
#include <BALLTestConfig.h>
///////////////////////////
#include <BALL/QSAR/ringPerceptionProcessor.h>
#include <BALL/FORMAT/SDFile.h>
#include <BALL/FORMAT/PDBFile.h>
#include <BALL/KERNEL/system.h>
#include <BALL/KERNEL/atom.h>
#include <BALL/KERNEL/bond.h>
#include <BALL/KERNEL/forEach.h>
#include <BALL/KERNEL/molecule.h>
///////////////////////////
START_TEST(RingPerceptionProcessor)
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
using namespace BALL;
SDFile infile(BALL_TEST_DATA_PATH(descriptors_test.sdf));
System S;
infile >> S;
infile.close();
Molecule * molecule;
Size limit = S.countMolecules();
CHECK(RingPerceptionProcessor)
RingPerceptionProcessor rpp;
Size results_atoms[9] = {6, 6, 6, 6, 6, 13, 0, 6, 4};
Size results_bonds[9] = {6, 6, 6, 6, 6, 14, 0, 6, 6};
for (Size i = 0; i != limit; ++i)
{
molecule = S.getMolecule(i);
molecule->apply(rpp);
Size num_ringed = 0;
// atoms
AtomConstIterator a_it = molecule->beginAtom();
for (; a_it != molecule->endAtom(); ++a_it)
{
if (a_it->getProperty("InRing").getBool())
{
++num_ringed;
}
}
TEST_EQUAL(num_ringed, results_atoms[i])
// bonds
num_ringed = 0;
a_it = molecule->beginAtom();
Atom::BondConstIterator b_it = a_it->beginBond();
BALL_FOREACH_BOND(*molecule, a_it, b_it)
{
if (b_it->getProperty("InRing").getBool())
{
++num_ringed;
}
}
TEST_EQUAL(num_ringed, results_bonds[i])
}
RESULT
CHECK(DNA)
// For some reason this does currently not work!
// We found that the number of bonds was always lower than the number of
// atoms in each AtomContainer: thus there could not be any rings.
// HOWEVER: loading the file in BALLView and using "Count items"
// always gave the correct result.
PDBFile pdb(BALL_TEST_DATA_PATH(1BNA.pdb));
System s2;
pdb >> s2;
RingPerceptionProcessor rpp;
vector<vector<Atom*> > rings;
for(AtomContainerIterator mit = s2.beginAtomContainer(); +mit; ++mit)
{
rings.clear();
mit->apply(rpp);
rpp.calculateSSSR(rings, *mit);
}
RESULT
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
END_TEST
|