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
|
/**********************************************************************
obfit = Fit molecules according to a SMART pattern
Copyright (C) 2003 Fabien Fontaine
Some portions Copyright (C) 2004-2005 Geoffrey R. Hutchison
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.
***********************************************************************/
/*
Require a fixed molecule, a set of molecules to move,
a SMART pattern to match the fixed and the moving molecules
If the SMART is not found in the fixed molecule the program exits
If the SMART is not found in a moving molecule, the molecule is not moved
example of command line:
obfit "[nh]1c2c(=O)n(C)c(=O)n(C)c2cc1" testref.sdf testmv.sdf
*/
// used to set import/export for Cygwin DLLs
#ifdef WIN32
#define USING_OBDLL
#endif
#include <openbabel/babelconfig.h>
#include <openbabel/mol.h>
#include <openbabel/atom.h>
#include <openbabel/parsmart.h>
#include <openbabel/obutil.h>
#include <openbabel/generic.h>
#include <openbabel/obconversion.h>
#ifndef _MSC_VER
#include <unistd.h>
#endif
using namespace std;
using namespace OpenBabel;
//find the center of mass of a list of atoms
vector3 mass_c( vector<int> &aindex, OBMol &mol);
///////////////////////////////////////////////////////////////////////////////
//! \brief superimpose a set of molecules on the atoms of a reference molecule
//! The atoms used for the overlay are defined by the SMART pattern
int main(int argc,char **argv)
{
int errflg=0;
char *FileRef=nullptr, *FileMove=nullptr, *Pattern=nullptr;
string err;
char *program_name=argv[0];
// parse the command line
if (argc!=4)
{
errflg++;
}
else
{
FileRef = argv[2];
FileMove = argv[3];
Pattern = argv[1];
}
if (errflg)
{
err = "Usage: ";
err += program_name;
err += " \"PATTERN\" <fixed_structure> <moving_structures>\n";
ThrowError(err);
exit(-1);
}
// create the pattern
OBSmartsPattern sp;
if (!sp.Init(Pattern))
{
err = program_name;
err += ": Unable to read the SMART: ";
err += Pattern;
ThrowError(err);
exit(-1);
}
// Find Input filetypes
OBConversion conv;
OBFormat *refFormat = conv.FormatFromExt(FileRef);
if (!refFormat || !conv.SetInAndOutFormats(refFormat,refFormat))
{
cerr << program_name << ": cannot read fixed molecule format!" << endl;
exit (-1);
}
OBFormat *moveFormat = conv.FormatFromExt(FileMove);
if (!moveFormat || !conv.SetInAndOutFormats(moveFormat,moveFormat))
{
cerr << program_name << ": cannot read moving molecule(s) format!" << endl;
exit (-1);
}
conv.SetInAndOutFormats(refFormat,moveFormat);
ifstream ifsref;
OBMol molref;
vector< vector <int> > maplist; // list of matched atoms
vector< vector <int> >::iterator i; // and its iterators
vector< int >::iterator j;
vector <int> refatoms;
//Read the reference structure
ifsref.open(FileRef);
if (!ifsref)
{
cerr << program_name << ": cannot read fixed molecule file: "
<< FileRef << endl;
exit (-1);
}
molref.Clear();
conv.Read(&molref,&ifsref);
// and check if the SMART match
sp.Match(molref);
maplist = sp.GetUMapList(); // get unique matches
if (maplist.empty())
{
err = program_name;
err += ": Unable to map SMART: ";
err += Pattern;
err += " in reference molecule: ";
err += FileRef;
ThrowError(err);
exit(-1);
}
// Find the matching atoms
for (i = maplist.begin(); i != maplist.end(); ++i)
{
refatoms.clear(); // Save only the last set of atoms
for(j= (*i).begin(); j != (*i).end(); ++j)
{
refatoms.push_back(*j);
}
}
if(refatoms.size() > molref.NumAtoms())
{
cerr << program_name
<< ": The SMARTS pattern produces more matching atoms than are in the reference molecule"
<< endl;
exit(-1);
}
// set the translation vector
vector3 tvref(0,0,0);
OBAtom *atom;
unsigned int c;
tvref = mass_c(refatoms, molref);
// center the molecule
molref.Translate(-tvref);
//get the coordinates of the SMART atoms
double *refcoor = new double[refatoms.size()*3];
for(c=0; c<refatoms.size(); ++c)
{
atom = molref.GetAtom(refatoms[c]);
refcoor[c*3] = atom->x();
refcoor[c*3+1] = atom->y();
refcoor[c*3+2] = atom->z();
}
conv.SetInAndOutFormats(moveFormat,moveFormat);
ifstream ifsmv;
OBMol molmv;
vector <int> mvatoms;
vector3 tvmv;
unsigned int size=0;
double rmatrix[3][3];
//Read the moving structures
ifsmv.open(FileMove);
if (!ifsmv)
{
cerr << program_name << ": cannot read file: "
<< FileMove << endl;
exit (-1);
}
for (;;)
{
molmv.Clear();
conv.Read(&molmv,&ifsmv); // Read molecule
if (molmv.Empty())
break;
if (sp.Match(molmv)) // if match perform rotation
{
maplist = sp.GetMapList(); // get all matches
// Find the matching atoms
// Looping over all matches to find best match
double rmsd;
double best_rmsd = 999.999;
vector <int> best_mvatoms;
for (i = maplist.begin(); i != maplist.end(); ++i)
{
mvatoms.clear(); // Save only the last set of atoms
for(j= (*i).begin(); j != (*i).end(); ++j)
{
mvatoms.push_back(*j);
}
tvmv = mass_c(mvatoms, molmv);
// center the molecule
molmv.Translate(-tvmv);
//Find the rotation matrix
size = mvatoms.size();
if (size != refatoms.size())
{
err = program_name;
err += ": Error: not the same number of SMART atoms";
ThrowError(err);
exit(-1);
}
double *mvcoor = new double[size*3];
for(c=0; c < size; ++c)
{
atom = molmv.GetAtom(mvatoms[c]);
mvcoor[c*3] = atom->x();
mvcoor[c*3+1] = atom->y();
mvcoor[c*3+2] = atom->z();
}
// quaternion fit
qtrfit(refcoor, mvcoor, size, rmatrix);
//rotate all the atoms
molmv.Rotate(rmatrix);
// update mvcoor after rotation
for(c=0; c < size; ++c)
{
atom = molmv.GetAtom(mvatoms[c]);
mvcoor[c*3] = atom->x();
mvcoor[c*3+1] = atom->y();
mvcoor[c*3+2] = atom->z();
}
tvmv = mass_c(mvatoms, molmv);
// center the molecule
molmv.Translate(-tvmv);
//Find the rotation matrix
size = mvatoms.size();
if (size != refatoms.size())
{
err = program_name;
err += ": Error: not the same number of SMART atoms";
ThrowError(err);
exit(-1);
}
for(c=0; c<size; ++c)
{
atom = molmv.GetAtom(mvatoms[c]);
mvcoor[c*3] = atom->x();
mvcoor[c*3+1] = atom->y();
mvcoor[c*3+2] = atom->z();
}
// quaternion fit
qtrfit(refcoor, mvcoor, size, rmatrix);
//rotate all the atoms
molmv.Rotate(rmatrix);
for(c=0; c<size; ++c)
{
atom = molmv.GetAtom(mvatoms[c]);
mvcoor[c*3] = atom->x();
mvcoor[c*3+1] = atom->y();
mvcoor[c*3+2] = atom->z();
}
rmsd = calc_rms(refcoor,mvcoor,size);
char rmsd_string[80];
sprintf(rmsd_string,"%f", rmsd);
OBPairData *dp = new OBPairData;
string field_name = "RMSD";
dp->SetAttribute(field_name);
dp->SetValue(rmsd_string);
dp->SetOrigin(external);
molmv.SetData(dp);
cerr << "RMSD: " << rmsd_string << endl;
//translate the rotated molecule
molmv.Translate(tvref);
delete[] mvcoor;
conv.Write(&molmv,&cout);
} // loop through matches
}
}
delete[] refcoor;
return(0);
}
///////////////////////////////////////////////////////////////////////////////
//find the center of mass of a list of atoms
vector3 mass_c( vector<int> &aindex, OBMol &mol)
{
vector3 center(0,0,0);
vector< int >::iterator j;
OBAtom *atom;
for(j= aindex.begin(); j != aindex.end(); ++j)
{
atom = mol.GetAtom(*j);
center += atom->GetVector();
}
center /= (float) aindex.size();
return (center);
}
/* obfit man page*/
/** \page obfit superimpose two molecules based on a pattern
*
* \n
* \par SYNOPSIS
*
* \b obfit <SMARTS-pattern> \<fixed-file\> \<outfile\>
*
* \par DESCRIPTION
*
* Superimpose two molecules using a quaternion fit. The atoms used to fit the
* two molecules are defined by the SMARTS pattern given by the user. It is
* useful to align congeneric series of molecules on a common structural
* scaffold for 3D-QSAR studies. It can also be useful for displaying the
* results of conformational generation.
* \n\n
* Any molecules matching the supplied SMARTS pattern will be rotated and
* translated to provide the smallest possible RMSD between the matching
* regions. If a molecule does not match the SMARTS pattern, it will be output
* with no transformation.
*
* \par EXAMPLES
* - Align all the molecules in 'moving.sdf' on a single molecule of 'fixed.sdf'
* by superimposing them on its N-methylpiperidyl portion \n
* obfit "[nh]1c2c(=O)n(C)c(=O)n(C)c2cc1" testref.sdf testmv.sdf
*
* \par AUTHORS
*
* The obfit program was contributed by \b Fabien \b Fontaine.
*
* Open Babel is currently maintained by \b Geoff \b Hutchison, \b Chris \b Morley and \b Michael \b Banck.
*
* For more contributors to Open Babel, see http://openbabel.org/THANKS.shtml
*
* \par COPYRIGHT
* Copyright (C) 1998-2001 by OpenEye Scientific Software, Inc.
* Some portions Copyright (C) 2001-2005 by Geoffrey R. Hutchison \n \n
* 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.\n \n
* 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.
*
* \par SEE ALSO
* The web pages for Open Babel can be found at http://openbabel.org/ \n
* A guide for constructing SMARTS patterns can be found at http://www.daylight.com/dayhtml/doc/theory/theory.smarts.html
**/
|