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
|
/**********************************************************************
addhtest.cpp - Test adding hydrogens
Copyright (C) 2019 David R. Koes
This file is part of the Open Babel project.
For more information, see <http://openbabel.org/>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
***********************************************************************/
// used to set import/export for Cygwin DLLs
#ifdef WIN32
#define USING_OBDLL
#endif
#include <cstdlib>
#include <openbabel/babelconfig.h>
#include <openbabel/mol.h>
#include <openbabel/obconversion.h>
#include <openbabel/atom.h>
#include <openbabel/bond.h>
#include <openbabel/obiter.h>
#include <openbabel/elements.h>
#include <openbabel/generic.h>
#include <stdio.h>
#include <iostream>
#include <fstream>
#if defined(__sun)
#include <alloca.h>
#endif
using namespace std;
using namespace OpenBabel;
//add hydrogens and then perform some sanity checks
void addh_check(OBMol *mol)
{
unsigned len = mol->NumAtoms();
unsigned *vcnts = (unsigned*)alloca(len*sizeof(unsigned));
memset(vcnts, 0, sizeof(unsigned)*len);
//chemistry is weird, so can't rely on MaxBonds in general
//we recod the valence count before adding hydrogens
FOR_ATOMS_OF_MOL(atom, mol) {
int total_valence = atom->GetExplicitValence();
assert(atom->GetIndex() < len);
vcnts[atom->GetIndex()] = total_valence;
}
mol->AddHydrogens();
//check valences and bond lengths
FOR_ATOMS_OF_MOL(atom, mol) {
int total_valence = atom->GetTotalValence();
if(atom->GetIndex() >= len) {
assert(total_valence == 1); //H
continue;
}
int maxval = max(OBElements::GetMaxBonds(atom->GetAtomicNum()), vcnts[atom->GetIndex()]);
if(total_valence > maxval) {
cerr << "Hydrogens added when already greater than MaxBonds " << total_valence << " vs "
<< OBElements::GetMaxBonds(atom->GetAtomicNum()) << " for atom "
<< atom->GetId() << " " << OBElements::GetSymbol(atom->GetAtomicNum()) << "\n";
//exit(-1);
}
}
FOR_BONDS_OF_MOL(bond, mol) {
if(bond->GetLength() > 5) {
cerr << "Bond length between " << bond->GetBeginAtom()->GetId()
<< " and " << bond->GetEndAtom()->GetId() << " is too long: "
<< bond->GetLength() << "\n";
//exit(-1);
}
}
}
// 1
// reads addh.in, which has a file name on each line,
// reads molecule, adds hydrogens
int addhtest(int argc, char* argv[])
{
int choice = 1;
if (argc > 1) {
if(sscanf(argv[1], "%d", &choice) != 1) {
printf("Couldn't parse that input as a number\n");
return -1;
}
}
if(choice != 1) //eh, not bothering to split this up
{
cout << "Test number " << choice << " does not exist!\n";
return -1;
}
cout << endl << "# Testing addh handling... " << endl;
#ifdef TESTDATADIR
string testdatadir(TESTDATADIR);
string infile = testdatadir + "addh.in";
#else
string infile = "files/addh.in";
#endif
#ifdef FORMATDIR
char env[BUFF_SIZE];
snprintf(env, BUFF_SIZE, "BABEL_LIBDIR=%s", FORMATDIR);
putenv(env);
#endif
ifstream ifs(infile.c_str());
if (!ifs)
{
cout << "Bail out! Cannot read " << infile << endl;
return(-1);
}
//gzip.in specifies what files to read and their canonical smiles
string line;
string filepath;
vector<string> correctResults; //read from file
OBConversion conv;
OBMol mol;
while(getline(ifs, line))
{
if(line.length() == 0)
continue; //ignore blank lines
if(line[0] != '#')
{
stringstream str(line);
string fname;
str >> fname;
OBFormat *format = conv.FormatFromExt(fname.c_str());
conv.SetInFormat(format);
#ifdef TESTDATADIR
filepath = testdatadir + fname;
#else
filepath = "files/" + fname;
#endif
conv.ReadFile(&mol,filepath);
cerr << filepath << "\n";
addh_check(&mol);
}
}
return(0);
}
|