This file is indexed.

/usr/include/Bpp/Seq/Alphabet/CodonAlphabet.h is in libbpp-seq-dev 2.4.0-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
//
// File: CodonAlphabet.h
// Created by: Julien Dutheil
// Created on: Sun Oct 12 17:41:56 2003
//

/*
  Copyright or © or Copr. Bio++ Development Team, (November 17, 2004)

  This software is a computer program whose purpose is to provide classes
  for sequences analysis.

  This software is governed by the CeCILL license under French law and
  abiding by the rules of distribution of free software. You can use,
  modify and/ or redistribute the software under the terms of the CeCILL
  license as circulated by CEA, CNRS and INRIA at the following URL
  "http://www.cecill.info".

  As a counterpart to the access to the source code and rights to copy,
  modify and redistribute granted by the license, users are provided
  only with a limited warranty and the software's author, the holder of
  the economic rights, and the successive licensors have only limited
  liability.

  In this respect, the user's attention is drawn to the risks associated
  with loading, using, modifying and/or developing or reproducing the
  software by the user in light of its specific status of free software,
  that may mean that it is complicated to manipulate, and that also
  therefore means that it is reserved for developers and experienced
  professionals having in-depth computer knowledge. Users are therefore
  encouraged to load and test the software's suitability as regards
  their requirements in conditions enabling the security of their
  systems and/or data to be ensured and, more generally, to use and
  operate it in the same conditions as regards security.

  The fact that you are presently reading this means that you have had
  knowledge of the CeCILL license and that you accept its terms.
*/

#ifndef _CODONALPHABET_H_
#define _CODONALPHABET_H_

#include "NucleicAlphabet.h"
#include "WordAlphabet.h"
 
// From the STL:
#include <string>
#include <memory>

namespace bpp
{

/**
 * @brief Codon alphabet class.
 * @author Laurent Guéguen, Julien Dutheil
 * 
 * Since codons are made of 3 nucleic bases (RNA or DNA), this class
 * has a NucleicAlphabet field used to check char description. This
 * nucleic alphabet is passed to the constructor. This class also adds
 * some methods specific to codon manipulation.
 */
  
  class CodonAlphabet:
    public virtual CoreWordAlphabet,
    public AbstractAlphabet
  {
  protected:
    const NucleicAlphabet* nAlph_;
  
  public: // Constructor and destructor.
		
    /**
     * @brief Builds a new codon alphabet from a nucleic alphabet.
     * 
     * @param alpha The nucleic alphabet to be used.
     */
    CodonAlphabet(const NucleicAlphabet* alpha) :
      AbstractAlphabet(),
      nAlph_(alpha)
    {
      build_();  
    }

    CodonAlphabet(const CodonAlphabet& bia) :
      AbstractAlphabet(bia),
      nAlph_(bia.nAlph_)
    {}

    CodonAlphabet& operator=(const CodonAlphabet& bia)
    {
      AbstractAlphabet::operator=(bia);
      nAlph_ = bia.nAlph_;
    
      return *this;
    }
  
    CodonAlphabet* clone() const
    {
      return new CodonAlphabet(*this);
    }

    virtual ~CodonAlphabet() {}
  
    std::string getAlphabetType() const
    {
      return "Codon(letter="+ nAlph_->getAlphabetType() + ")";
    }

  private:
    /**
     * @name Inner utilitary functions
     *
     * @{
     */
    bool containsUnresolved(const std::string& state) const;
    
    bool containsGap(const std::string& state) const;

    void build_();

    /** @} */

  public:

    /**
     * @name From AbstractAlphabet
     *
     * @{
     */
  
    unsigned int getNumberOfTypes() const {return 65;}
  
    unsigned int getSize() const 
    {
      return 64;
    }

    int getUnknownCharacterCode() const 
    {
      return 64;
    }

    bool isUnresolved(int state) const
    {
      return state>=64;
    }

    bool isUnresolved(const std::string& state) const
    {
      return isUnresolved(charToInt(state));
    }

    std::vector<int> getAlias(int state) const;

    std::vector<std::string> getAlias(const std::string& state) const;
    
    int getGeneric(const std::vector<int>& states) const
    {
      return states[0];
    }

    std::string getGeneric(const std::vector<std::string>& states) const
    {
      return states[0];
    }
    
    int charToInt(const std::string& state) const
    {
      if (state.size() != 3)
        throw BadCharException(state, "CodonAlphabet::charToInt", this);
      if (containsUnresolved(state))
        return static_cast<int>(getSize());
      if (containsGap(state))
        return -1;
      else return AbstractAlphabet::charToInt(state);
    }

    /**
     * @name Codon specific methods
     *
     * @{
     */

    /**
     * @brief Get the int code for a codon given the int code of the three underlying positions.
     *
     * The int code of each position must match the nucleic alphabet specified for this alphabet.
     * @param pos1 Int description for position 1.
     * @param pos2 Int description for position 2.
     * @param pos3 Int description for position 3.
     * @return The int code of the codon.
     */
    int getCodon(int pos1, int pos2, int pos3) const
    {
      return (nAlph_->isUnresolved(pos1)
              || nAlph_->isUnresolved(pos2)
              || nAlph_->isUnresolved(pos3))? getUnknownCharacterCode()
        : pos3 + 4*pos2 + 16 * pos1;
    }

    /**
     * @brief Get the char code for a codon given the char code of the
     * three underlying positions.
     *
     * The char code of each position must match the nucleic alphabet
     * specified for this alphabet.
     *
     * NB: This performs pos1 + pos2 + pos3 after checking for each
     * position validity.
     *
     * @param pos1 Char description for position 1.
     * @param pos2 Char description for position 2.
     * @param pos3 Char description for position 3.
     * @return The Char code of the codon.
     */

    std::string getCodon(const std::string& pos1, const std::string& pos2, const std::string& pos3) const
    {
      return pos1+pos2+pos3;
    }
  
    /**
     * @brief Get the int code of the first position of a codon given its int description.
     * 
     * @param codon The int description of the codon.
     * @return The int description of the first position of the codon.
     */
    
    int getFirstPosition(int codon) const
    {
      return isUnresolved(codon)?nAlph_->charToInt("N"):codon / 16;
    }
  
    /**
     * @brief Get the int code of the second position of a codon given its int description.
     * 
     * @param codon The int description of the codon.
     * @return The int description of the second position of the codon.
     */

    int getSecondPosition(int codon) const
    {
      return isUnresolved(codon)?nAlph_->charToInt("N"):(codon / 4) % 4;
    }
  
  
    /**
     * @brief Get the int code of the third position of a codon given its int description.
     * 
     * @param codon The int description of the codon.
     * @return The int description of the third position of the codon.
     */

    int getThirdPosition(int codon) const
    {
      return isUnresolved(codon)?nAlph_->charToInt("N"):codon % 4;
    }
  
    /**
     * @brief Get the char code of the first position of a codon given its char description.
     * 
     * @param codon The char description of the codon.
     * @return The char description of the first position of the codon.
     */

    std::string getFirstPosition (const std::string& codon) const
    {
      return codon.substr(0,1);
    }
  
  
    /**
     * @brief Get the char code of the second position of a codon given its char description.
     * 
     * @param codon The char description of the codon.
     * @return The char description of the second position of the codon.
     */
  
    std::string getSecondPosition(const std::string& codon) const
    {
      return codon.substr(1,1);
    }
  

    /**
     * @brief Get the char code of the third position of a codon given its char description.
     * 
     * @param codon The char description of the codon.
     * @return The char description of the third position of the codon.
     */

    std::string getThirdPosition(const std::string& codon) const
    {
      return codon.substr(2,1);
    }


    /**
     * @name From CoreWordAlphabet
     *
     * @{
     */
    
    unsigned int getLength() const 
    {
      return 3;
    }
    
    bool hasUniqueAlphabet() const 
    {
      return true;
    }

    const Alphabet* getNAlphabet(size_t n) const 
    {
      return nAlph_;
    }

    int getWord(const Sequence& seq, size_t pos = 0) const
    {
      if (seq.size() < pos + 3)
        throw IndexOutOfBoundsException("CodonAlphabet::getWord", pos, 0, seq.size() - 3);
      return getCodon(seq[pos], seq[pos+1], seq[pos+2]);
    }

    /**
     * @brief Get the char code for a word given the char code of the
     * underlying positions.
     *
     * The char code of each position must match the corresponding alphabet specified at this position.
     * @param vpos vector description for all the positions.
     * @param pos the start position to match in the vector.
     * @return The string of the word.
     * @throw IndexOutOfBoundsException In case of wrong position.
     */
    std::string getWord(const std::vector<std::string>& vpos, size_t pos = 0) const
    {    
      if (vpos.size() < pos + 3)
        throw IndexOutOfBoundsException("CodonAlphabet::getWord", pos, 0, vpos.size() - 3);

      return getCodon(vpos[pos], vpos[pos+1], vpos[pos+2]);
    }

    int getWord(const std::vector<int>& vpos, size_t pos = 0) const
    {    
      if (vpos.size() < pos + 3)
        throw IndexOutOfBoundsException("CodonAlphabet::getWord", pos, 0, vpos.size() - 3);

      return getCodon(vpos[pos], vpos[pos+1], vpos[pos+2]);
    }

    
    int getNPosition(int codon, size_t pos) const 
    {
      if (isUnresolved(codon))
        return nAlph_->getUnknownCharacterCode();
      else
        return (pos==0 ? codon/16:
                (pos==1? (codon/4)%4
                 : codon%4));
    }
    
    /**
     * @brief Get the int codes of each position of a word given its int description.
     *
     * @param word The int description of the word.
     * @return The int description of the positions of the codon.
     */

    std::vector<int> getPositions(int word) const
    {
      if (isUnresolved(word))
      {
        int n=nAlph_->getUnknownCharacterCode();
        return std::vector<int>{n,n,n};
      }
      else
        return std::vector<int>{word / 16, (word/4)%4, word%4};
    }


    /**
     * @brief Get the char code of the Nth position of a codon given its char description.
     * 
     * @param codon The char description of the codon.
     * @param pos the position in the codon (starting at 0)
     * @return The char description of the position of the codon.
     */

    std::string getNPosition(const std::string& codon, size_t pos) const
    {
      return codon.substr(pos,1);
    }

    /**
     * @brief Get the char codes of each position of a word given its char description.
     *
     * @param word The char description of the word.
     * @return The char description of the three positions of the word.
     */
    std::vector<std::string> getPositions(const std::string& word) const
    {
      return std::vector<std::string>{word.substr(0,1), word.substr(1,1), word.substr(2,1)};
    }

    /**
     * @brief Translate a whole sequence from letters alphabet to words alphabet.
     *
     * @param sequence A sequence in letters alphabet.
     * @param pos the start postion (default 0)
     * @return The corresponding sequence in words alphabet.
     * @throw AlphabetMismatchException If the sequence alphabet do not match the source alphabet.
     * @throw Exception                 Other kind of error, depending on the implementation.
     */
    Sequence* translate(const Sequence &sequence, size_t = 0) const;

    /**
     * @brief Translate a whole sequence from words alphabet to letters alphabet.
     *
     * @param sequence A sequence in words alphabet.
     * @return The corresponding sequence in letters alphabet.
     * @throw AlphabetMismatchException If the sequence alphabet do not match the target alphabet.
     * @throw Exception                 Other kind of error, depending on the implementation.
     */
    Sequence* reverse(const Sequence& sequence) const;

    /*
     *
     * @}
     */
    
    /**
     * @brief Get the number of G+C in codon
     * @param codon The int description of the codon.
     *
     * @return The number of G+C in codon
     */
    int getGCinCodon(int codon) const;

    /**
     * @return The nucleic alphabet associated to this codon alphabet.
     */
    const NucleicAlphabet* const getNucleicAlphabet() const
    {
      return nAlph_;
    }

    /**
     * @name Overloaded AbstractAlphabet methods.
     * @{
     */
    unsigned int getStateCodingSize() const { return 3; }
    /** @} */
  };

} //end of namespace bpp.

#endif	//_CODONALPHABET_H_