File: peptides.C

package info (click to toggle)
ball 1.5.0%2Bgit20180813.37fc53c-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 239,888 kB
  • sloc: cpp: 326,149; ansic: 4,208; python: 2,303; yacc: 1,778; lex: 1,099; xml: 958; sh: 322; makefile: 95
file content (485 lines) | stat: -rw-r--r-- 13,688 bytes parent folder | download | duplicates (4)
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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//

#include <BALL/STRUCTURE/peptides.h>
#include <BALL/KERNEL/protein.h>

#include <list>
#include <vector>
#include <algorithm>

#include <BALL/FORMAT/lineBasedFile.h>
#include <BALL/SYSTEM/path.h>
	
using namespace std;

namespace BALL 
{
	namespace Peptides
	{

		const String one_letter_codes = "ARNDCQEGHILKMFPSTWYV";
		const String three_letter_codes = "ALA@ARG@ASN@ASP@CYS@GLN@GLU@GLY@HIS@ILE@LEU@LYS@MET@PHE@PRO@SER@THR@TRP@TYR@VAL@";

		char OneLetterCode(const String& aa)
		{
			if (aa.size() == 3)
			{
				String tmp = aa + "@";
				tmp.toUpper();
				Position idx = three_letter_codes.find(tmp);
				if (idx != String::EndPos)
				{
					return one_letter_codes[idx / 4];
				}
			}
			
			return '?';
		}

		String ThreeLetterCode(char aa)
		{
			aa = toupper(aa);
			Position idx = one_letter_codes.find(aa);
			return ((idx == String::EndPos) ? String("UNK") : String(three_letter_codes, idx * 4, 3));
		}
	 	
		bool IsOneLetterCode(char aa)
		{
			aa = toupper(aa);
			Position idx = one_letter_codes.find(aa);
			return ((idx == String::EndPos) ? false : true); 
		}
 		
		bool IsThreeLetterCode(const String& aa)
		{
			if (aa.size() == 3)
			{
				String tmp = aa + "@";
				tmp.toUpper();
				Position idx = three_letter_codes.find(tmp);
				return ((idx == String::EndPos) ? false : true);
			}
			return false;
		}

		
		OneLetterAASequence ThreeLetterToOneLetter(const ThreeLetterAASequence& sequence)
		{
			OneLetterAASequence tmp;
			ThreeLetterAASequence::const_iterator it(sequence.begin());
			for (; it != sequence.end(); ++it)
			{
				tmp += OneLetterCode(*it);
			}
			return tmp;
		}

		ThreeLetterAASequence OneLetterToThreeLetter(const OneLetterAASequence& sequence)
		{
			ThreeLetterAASequence tmp;
			for (Position i = 0; i < (Size)sequence.size(); i++)
			{
				tmp.push_back(ThreeLetterCode(sequence[i]));
			}
			return tmp;
		}

		OneLetterAASequence GetSequence(const Protein& protein)
		{
			return GetSequence(protein.beginResidue());
		}

		OneLetterAASequence GetSequence(const Chain& chain)
		{
			return GetSequence(chain.beginResidue());
		}

		OneLetterAASequence GetSequence(ResidueConstIterator it)
		{
			// iterate over all residues in the protein
			OneLetterAASequence tmp;
			for (; +it; ++it)
			{
				//...and add the corresponding one-letter code to the sequence
				tmp += OneLetterCode(it->getName());
			}

			// return the sequence
			return tmp;
		}

		/***************************************
		 *          Name Converter class
		 ***************************************/	

		const char*  NameConverter::Option::INIFile = "iniFile";
		const String NameConverter::Default::INIFile = "NMR/nameConversions.map";
		const char*  NameConverter::Option::PSEUDO_ATOMS_INIFile = "pseudo_atoms_iniFile";
		const String NameConverter::Default::PSEUDO_ATOMS_INIFile = "NMR/pseudoAtoms.map";

		NameConverter::NameConverter()
			: options(),
				conventions_(),
				conversion_table_(),
				pseudo_conventions_(),
				pseudo_conversion_table_()
		{
			setDefaultOptions();
			readConversionTable_();
			readPseudoAtomsConversionTable_();
		}

		void NameConverter::setDefaultOptions()
		{		
			options.setDefault(NameConverter::Option::INIFile,
		                     NameConverter::Default::INIFile);
			options.setDefault(NameConverter::Option::PSEUDO_ATOMS_INIFile,
		                     NameConverter::Default::PSEUDO_ATOMS_INIFile);			
		}
		
		void NameConverter::readConversionTable_()
		{
			// Open parameter file
			Path path;
			String filename = path.find(options[Option::INIFile]);
			if (filename == "") 
			{
				throw Exception::FileNotFound(__FILE__, __LINE__, options[Option::INIFile]);
			}

			String key   = "";
			String value = "";

			LineBasedFile file(filename);
			while (file.readLine())
			{
				String line = file.getLine();

				// do not read comments
				if ((line[0]=='#') || (line.trim() == ""))
				{
					continue;
				}

				vector<String> fields;
				line.split(fields);

				if (fields[0] == "A.A.") // this is the line containing the names of the mapping
				{
					for (Position i=1; i<fields.size(); ++i)
					{
						fields[i].toUpper();
						conventions_.push_back(fields[i]);
					}
				}
				else if (fields.size() != (conventions_.size()+1)) // we do not store the AA as separate column
				{
					Log.error() << "Error in " << filename << " expected " << conventions_.size() 
											<< " entries, but got " << fields.size() << " in " << std::endl;
					Log.error() << file.getLine() << std::endl;
				}
				else
				{
					String amino_acid = fields[0];

					if (IsThreeLetterCode(amino_acid))
						amino_acid = OneLetterCode(amino_acid);

					conversion_table_.push_back(vector<String>());
					
					for (Position i=1; i<fields.size(); ++i)
					{
						String complete_name = amino_acid+":"+fields[i];
						conversion_table_.back().push_back(complete_name);
					}
				}	
			}
/*	
			for (Size j=0; j<conversion_table_.size(); j++)
			{
					std::cout << conversion_table_[j][0] << " " << conversion_table_[j][2] << std::endl;
			}
*/
			file.close();
		}
		
		void NameConverter::readPseudoAtomsConversionTable_()
		{
			// Open parameter file
			Path path;
			String filename = path.find(options[Option::PSEUDO_ATOMS_INIFile]);
			if (filename == "") 
			{
				throw Exception::FileNotFound(__FILE__, __LINE__, options[Option::PSEUDO_ATOMS_INIFile]);
			}

			String key   = "";
			String value = "";

			LineBasedFile file(filename);
			while (file.readLine())
			{
				String line = file.getLine();

				// do not read comments
				if ((line[0]=='#') || (line.trim() == ""))
				{
					continue;
				}

				vector<String> fields;
				vector<String> atom_fields;
				line.split(fields);

				if (fields[0] == "AA") // this is the line containing the names of the mapping
				{
					for (Position i=2; i<fields.size(); ++i)
					{
						fields[i].toUpper();
						pseudo_conventions_.push_back(fields[i]);
					}
				}
				else if (fields.size() != (pseudo_conventions_.size()+2)) // we do not store both AA as separate columns
				{
					Log.error() << "Error in " << filename << " expected " << pseudo_conventions_.size() 
											<< " entries, but got " << fields.size() << " in " << std::endl;
					Log.error() << file.getLine() << std::endl;
				}
				else
				{
					String amino_acid = fields[0];
					
					if (IsThreeLetterCode(amino_acid))
						amino_acid = OneLetterCode(amino_acid);

					pseudo_conversion_table_.push_back(vector<vector<String> >());
				
					// iterate over all conventions	
					for (Position i=2; i<fields.size(); ++i)
					{
						fields[i].split(atom_fields, ",");
						pseudo_conversion_table_.back().push_back(vector<String>());
						
						for (Position j=0; j<atom_fields.size(); j++)
						{
							String complete_name = amino_acid+":"+atom_fields[j];
							pseudo_conversion_table_.back().back().push_back(complete_name);
						}
					}
				}	
			}
			
		/*for (Size i=0; i<pseudo_conversion_table_.size();i++)
			{	
				for (Size j=0; j<pseudo_conversion_table_[i].size(); j++)
				{
					std::cout << " # " << pseudo_conversion_table_[i][j][0] << " ";
						//std::cout << pseudo_conversion_table_[i][j][0] << " " << conversion_table_[i][j].size() << " - " ; 
					for (Size k=1; k<pseudo_conversion_table_[i][j].size(); k++)
					{	
						std::cout << pseudo_conversion_table_[i][j][k] << " " ;
					} 
				}
				std::cout << std::endl;
			}
			*/

			file.close();
		}

		String NameConverter::convertName(const String& amino_acid, const String& old_atom_name,
				                              const String& old_naming_scheme, const String& new_naming_scheme) const
		{
			// first, find the naming schemes
			String old_naming_scheme_upper = old_naming_scheme;
			old_naming_scheme_upper.toUpper();

			String new_naming_scheme_upper = new_naming_scheme;
			new_naming_scheme_upper.toUpper();

			Index old_scheme_index = -1, new_scheme_index = -1;
			for (Position i=0; i<conventions_.size(); ++i)
			{
				if (conventions_[i] == old_naming_scheme_upper)
					old_scheme_index = i;
				if (conventions_[i] == new_naming_scheme_upper)
					new_scheme_index = i;
			}

			if (old_scheme_index*new_scheme_index < 0)
			{
				return old_atom_name;
			}
		
			// we use OneLetterCode	
			String amino_acid_one_letter = amino_acid;
			if (IsThreeLetterCode(amino_acid_one_letter))
				amino_acid_one_letter = OneLetterCode(amino_acid_one_letter);
			else
				amino_acid_one_letter.toUpper();

			// try to find the old atom name in the table
			String to_find = amino_acid_one_letter+":"+old_atom_name;

			Index row_index = -1;
			for (Position i=0; i<conversion_table_.size(); ++i)
			{
				if (conversion_table_[i][old_scheme_index] == to_find)
				{
					row_index = i;
					break;
				}
			}

			if (row_index < 0)
			{
				return old_atom_name;
			}
				
			String ret_string = conversion_table_[row_index][new_scheme_index];
			ret_string = ret_string.getSubstring(2, ret_string.size()-2);

			return ret_string; 
		}
				
		std::vector<String> NameConverter::resolvePseudoAtoms(const String& amino_acid, const String& atom_name, 
		                                                      const String& old_naming_scheme, const String& new_naming_scheme) const
		{
			// first build up the search string
			// we use OneLetterCode	
			String amino_acid_one_letter = amino_acid;
			if (IsThreeLetterCode(amino_acid_one_letter))
				amino_acid_one_letter = OneLetterCode(amino_acid_one_letter);
			else
				amino_acid_one_letter.toUpper();

			// then find the naming schemes
			String old_naming_scheme_upper = old_naming_scheme;
			old_naming_scheme_upper.toUpper();

			String new_naming_scheme_upper = new_naming_scheme;
			new_naming_scheme_upper.toUpper();

			
			// try to find the old atom name in the pseudo atom table
			Index old_scheme_index = -1;
			Index new_scheme_index = -1;
			for (Position i=0; i<pseudo_conventions_.size(); ++i)
			{
				if (pseudo_conventions_[i] == old_naming_scheme_upper)
					old_scheme_index = i;
				if (pseudo_conventions_[i] == new_naming_scheme_upper)
					new_scheme_index = i;
			}

			std::vector<String> result;

			String to_find = amino_acid_one_letter+":"+atom_name;
			bool found = false;
			if (old_scheme_index*new_scheme_index > 0)
			{
				for (Position i=0; i<pseudo_conversion_table_.size() && !found; ++i)
				{
					for (Position j=0; j<pseudo_conversion_table_[i][old_scheme_index].size() && !found; j++)
					{
						if (pseudo_conversion_table_[i][old_scheme_index][j] == to_find)
						{
							std::vector<String> const& current_entry = pseudo_conversion_table_[i][new_scheme_index];
							for (Position k=0; k<current_entry.size(); k++)
							{
								result.push_back(current_entry[k].getSubstring(2, current_entry[k].size()-2));
								found = true;
							}
						}
					}
				}
			}
			
			if (!found)
				result.push_back(atom_name);

			return result;
		}

		bool NameConverter::matches(const String& amino_acid, const String& old_atom_name,
											 const String& old_naming_scheme, const String& new_atom_name,
				               const String& new_naming_scheme) const
		{	
			// check if the name converter supports the naming scheme		
			if ( !supportsNamingScheme(old_naming_scheme)) 
			{
				Log.error() << "NameConverter does not support naming scheme " << old_naming_scheme << "." << std::endl;
				Log.error() << "Consider extending file" <<  options[Option::INIFile] << "." << std::endl;
				return false;
			}
			if (!supportsNamingScheme(new_naming_scheme))
			{
				Log.error() << "NameConverter does not support naming scheme " << new_naming_scheme << "." << std::endl;
				Log.error() << "Consider extending file" <<  options[Option::INIFile] << "." << std::endl;
				return false;
			}

			String converted_name = convertName(amino_acid, old_atom_name, old_naming_scheme, new_naming_scheme);

			if (converted_name == new_atom_name)
				return true; // we found a match

			if (!supportsPseudoAtomNamingScheme(old_naming_scheme))
			{	
				Log.error() << "NameConverter does not support naming scheme " << old_naming_scheme << "." << std::endl;
				Log.error() << "Consider extending file " <<  options[Option::PSEUDO_ATOMS_INIFile] << "." << std::endl;
				return false;
			}
			
			if (!supportsPseudoAtomNamingScheme(new_naming_scheme))
			{	
				Log.error() << "NameConverter does not support naming scheme " << new_naming_scheme << "." << std::endl;
				Log.error() << "Consider extending file " <<  options[Option::PSEUDO_ATOMS_INIFile] << "." << std::endl;
				return false;
			}

			// if we arrive here, we need to look for pseudo atoms, too
			std::vector<String> pseudos = resolvePseudoAtoms(amino_acid, old_atom_name, old_naming_scheme, new_naming_scheme);

			for (Position i=0; i<pseudos.size(); ++i)
				if (pseudos[i] == new_atom_name)
					return true;

			return false;
		}


		bool NameConverter::supportsNamingScheme(const String& scheme_name) const
		{
			bool ret_value = false;
			String naming_scheme_upper = scheme_name;
			naming_scheme_upper.toUpper();
			
			for (Position i=0; i<conventions_.size(); ++i)
			{
				if (conventions_[i] == naming_scheme_upper)
					ret_value = true;
			}
			return ret_value;
		}

		bool NameConverter::supportsPseudoAtomNamingScheme(const String& scheme_name) const
		{
			bool ret_value = false;
			String naming_scheme_upper = scheme_name;
			naming_scheme_upper.toUpper();
			
			for (Position i=0; i<pseudo_conventions_.size(); ++i)
			{
				if (pseudo_conventions_[i] == naming_scheme_upper)
					ret_value = true;
			}
			return ret_value;
		}

	} // namespace Peptides

} // namespace BALL