File: patty.cpp

package info (click to toggle)
ghemical 0.82-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 9,448 kB
  • ctags: 18,571
  • sloc: ansic: 68,828; cpp: 51,774; fortran: 35,324; sh: 2,505; makefile: 475; perl: 70
file content (253 lines) | stat: -rw-r--r-- 5,476 bytes parent folder | download | duplicates (2)
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
/**********************************************************************
Copyright (C) 1998-2001 by OpenEye Scientific Software, Inc.

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.
***********************************************************************/

#include "mol.h"
#include "obutil.h"
#include "parsmart.h"
#include "patty.h"

// Simple programmable atom typer
// WPW - 070199
// Usage is in sample main below

namespace OpenBabel {

void patty::read_rules(const string &infile)
{
  ifstream ifs, ifs1, *ifsP;
  vector<string> vs;
  char buffer[BUFF_SIZE];
  char tmp_str[BUFF_SIZE];
  char patty_dir[BUFF_SIZE];

  _sp.resize(1000);
  
  ifs.open(infile.c_str());
  ifsP= &ifs;
  if (!ifs)
    {
      if (getenv("BABEL_DATADIR") == NULL)
      {
        cerr << "The BABEL_DATADIR environment variable is not defined" << endl;
        cerr << "Please define it so the program can find " << infile << endl;
        exit(0);
      }
      else
        strcpy(patty_dir,getenv("BABEL_DATADIR"));
      strcat(patty_dir,FILE_SEP_CHAR);  
      strcat(patty_dir,infile.c_str());  
      ifs1.open(patty_dir);  
      ifsP= &ifs1;
 //     if (!ifs1)
  //    {
   //     cerr << "Could not open " << patty_dir << endl;
    //    exit(0);
     // }
    }

  int i = 0;
  if (!ifsP){
        cerr << "Could not open " << patty_dir << endl;
        exit(0);
  }
  while (ifsP->getline(buffer,BUFF_SIZE))
    {
      if (buffer[0] != '#')
    {
      tokenize(vs,buffer," \t\n");
      if (vs.size() >= 2)
        {
          strcpy(tmp_str,vs[0].c_str());
          _sp[i]->Init(tmp_str);
          smarts.push_back(vs[0]);
          typ.push_back(vs[1]);
          i++;
        }
    }
    }
  _sp.resize(i);
}

void patty::assign_rules(vector<string> &rules)
{
	vector<string> vs;
	char buffer[BUFF_SIZE];
	char tmp_str[BUFF_SIZE];
	unsigned int i;

	_sp.resize(1000);
	for ( i = 0 ; i < rules.size() ; i++ )
	{
		strncpy(buffer, rules[i].c_str(), BUFF_SIZE);
		if (buffer[0] != '#')
		{
			tokenize(vs,buffer," \t\n");
			if (vs.size() >= 2)
			{
				strcpy(tmp_str,vs[0].c_str());
				_sp[i]->Init(tmp_str);
				smarts.push_back(vs[0]);
				typ.push_back(vs[1]);
			}
			else
				i--;
		}
		else
			i--;
	}
	_sp.resize(i);  
}

void patty::assign_types(OBMol &mol,vector<string> &atm_typ)
{
  atm_typ.resize(mol.NumAtoms()+1);

  for (unsigned int i = 0; i < _sp.size(); i++)
    {
      _sp[i]->Match(mol);
      vector<vector<int> > match = _sp[i]->GetMapList();
      //vector<vector<int> >& match = _sp[i]->GetMapList();
      if (match.size())
	{
	  if (debug)
	    cout << typ[i] << " " << smarts[i] << " matched " ;
      
	  for (unsigned int j = 0; j < match.size(); j++)
	    {
	      if (debug)
		cout << match[j][0] << " ";
	      atm_typ[match[j][0]] = typ[i];
	    }
	  if (debug)
	    cout << endl;
	}
    }
}

void patty::assign_types(OBMol &mol,vector<int> &atm_typ)
{
  atm_typ.resize(mol.NumAtoms()+1);

  for (unsigned int i = 0; i < _sp.size(); i++)
    {
      _sp[i]->Match(mol);
      vector<vector<int> > match = _sp[i]->GetMapList();
      //vector<vector<int> >& match = _sp[i]->GetMapList();
      if (match.size())
	{
	  if (debug)
	    cout << typ[i] << " " << smarts[i] << " matched " ;
      
	  for (unsigned int j = 0; j < match.size(); j++)
	    {
	      if (debug)
		cout << match[j][0] << " ";
	      atm_typ[match[j][0]] = type_to_int(typ[i]);
	    }
	  if (debug)
	    cout << endl;
	}
    }
}


int patty::type_to_int(const string &type, bool failOnUndefined)
{

  int result;


    switch(toupper(type.c_str()[0]))
      {
      case 'C' : // CAT - CATION
         result = PT_CATION;
         break;
      case 'A' :
         if (toupper(type.c_str()[1]) == 'N') // ANI - ANION
            result = PT_ANION;
         else
            result = PT_ACCEPTOR;
         break;
      case 'P' : // POL - POLAR
         result = PT_POLAR;
         break;
      case 'D' : // DON - DONOR
         result = PT_DONOR;
         break;
      case 'H' : // HYD - HYDROPHOBIC
         result = PT_HYDROPHOBIC;
         break;
			case 'M' : // Metal
				 result = PT_METAL;
				 break;
      case 'O' : // OTH - OTHER
         result = PT_OTHER;
         break;
      default :
          // This was added by Brian,
          // Behavior will fail if type is undefined
          if (failOnUndefined){
              cerr << "Unable to find type of feature passed in " << endl;
              cerr << "Feature passed in is " << type << endl;
              exit(-1);
          }else{
              result = 7;
          }
      }
      return(result);
}

}

#ifdef I_EVER_BUY_A_MICHAEL_BOLTON_ALBUM

int main(int argc, char *argv[])
{
  OBMol mol(SDF,SDF);
  vector<string> types;

  ifstream ifs(argv[1]);
  if (!ifs)
    {
      cerr << "Could not open argv[1] " << endl;
      exit(0);
    }

  patty p("simple.txt");
  for (;;)
    {
      ifs >> mol;
      if (!mol.NumAtoms()) break;
      p.assign_types(mol,types);
      mol.Clear();
    }

  for (int i = 1; i < types.size(); i++)
    {
      cout << i << " " << types[i] << endl;
    }
}

#endif