~ubuntu-branches/ubuntu/saucy/libbpp-phyl/saucy

« back to all changes in this revision

Viewing changes to src/Bpp/Phyl/Model/CodonRateFrequenciesSubstitutionModel.h

  • Committer: Package Import Robot
  • Author(s): Julien Dutheil
  • Date: 2013-02-09 16:00:00 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130209160000-5v65ba68z8032nzj
Tags: 2.0.3-1
* Reorganized model hierarchy
* New pairwise models
* Several bugs fixed

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// File: CodonRateSubstitutionModel.h
 
3
// Created by: Laurent Gueguen
 
4
// Created on: Tue Dec 24 11:03:53 2003
 
5
//
 
6
 
 
7
/*
 
8
   Copyright or © or Copr. CNRS, (November 16, 2004)
 
9
 
 
10
   This software is a computer program whose purpose is to provide classes
 
11
   for phylogenetic data analysis.
 
12
 
 
13
   This software is governed by the CeCILL  license under French law and
 
14
   abiding by the rules of distribution of free software.  You can  use,
 
15
   modify and/ or redistribute the software under the terms of the CeCILL
 
16
   license as circulated by CEA, CNRS and INRIA at the following URL
 
17
   "http://www.cecill.info".
 
18
 
 
19
   As a counterpart to the access to the source code and  rights to copy,
 
20
   modify and redistribute granted by the license, users are provided only
 
21
   with a limited warranty  and the software's author,  the holder of the
 
22
   economic rights,  and the successive licensors  have only  limited
 
23
   liability.
 
24
 
 
25
   In this respect, the user's attention is drawn to the risks associated
 
26
   with loading,  using,  modifying and/or developing or reproducing the
 
27
   software by the user in light of its specific status of free software,
 
28
   that may mean  that it is complicated to manipulate,  and  that  also
 
29
   therefore means  that it is reserved for developers  and  experienced
 
30
   professionals having in-depth computer knowledge. Users are therefore
 
31
   encouraged to load and test the software's suitability as regards their
 
32
   requirements in conditions enabling the security of their systems and/or
 
33
   data to be ensured and,  more generally, to use and operate it in the
 
34
   same conditions as regards security.
 
35
 
 
36
   The fact that you are presently reading this means that you have had
 
37
   knowledge of the CeCILL license and that you accept its terms.
 
38
 */
 
39
 
 
40
#ifndef _CODONRATEFREQUENCIESSUBSTITUTIONMODEL_H_
 
41
#define _CODONRATEFREQUENCIESSUBSTITUTIONMODEL_H_
 
42
 
 
43
#include "AbstractCodonSubstitutionModel.h"
 
44
#include "AbstractCodonFrequenciesSubstitutionModel.h"
 
45
 
 
46
namespace bpp
 
47
{
 
48
/**
 
49
 * @brief Class for substitution models on non stop codons, with
 
50
 * different parametrized rates on the models, depending on their
 
51
 * phase and defined through a specific equilibrium distribution.
 
52
 *
 
53
 * @author Laurent Guéguen
 
54
 *
 
55
 * This class should be used with models which equilibrium
 
56
 * distribution is fixed, ans does not depend on the parameters.
 
57
 * Otherwise there may be problems of identifiability of the
 
58
 * parameters.
 
59
 *
 
60
 * See description in AbstractCodonRateSubstitutionModel and
 
61
 * AbstractCodonFrequenciesSubstitutionModel class.
 
62
 *
 
63
 */
 
64
 
 
65
class CodonRateFrequenciesSubstitutionModel :
 
66
    public AbstractCodonSubstitutionModel,
 
67
    public AbstractCodonFrequenciesSubstitutionModel
 
68
{
 
69
public:
 
70
  /**
 
71
   *@brief Build a new CodonRateSubstitutionModel object from
 
72
   *a pointer to NucleotideSubstitutionModels.
 
73
   * @author Laurent Guéguen
 
74
   *
 
75
   *@param palph pointer to a CodonAlphabet
 
76
   *@param pmod pointer to the NucleotideSubstitutionModel to use in the
 
77
   *       three positions. It is owned by the instabce.
 
78
   *@param pfreq pointer to the FrequenciesSet* equilibrium frequencies
 
79
   */
 
80
 
 
81
  CodonRateFrequenciesSubstitutionModel(const CodonAlphabet* palph,
 
82
                                        NucleotideSubstitutionModel* pmod,
 
83
                                        FrequenciesSet* pfreq);
 
84
 
 
85
  /**
 
86
   *@brief Build a new CodonRateSubstitutionModel object
 
87
   *from three pointers to NucleotideSubstitutionModels.
 
88
   *
 
89
   *@param palph pointer to a CodonAlphabet
 
90
   *@param pmod1, pmod2, pmod3 pointers to the
 
91
   *   NucleotideSubstitutionModel to use in the three positions.
 
92
   *   All the models must be different objects to avoid parameters
 
93
   *   redondancy, otherwise only the first model is used. The used models
 
94
   *   are owned by the instance.
 
95
   *@param pfreq pointer to the FrequenciesSet* equilibrium frequencies
 
96
   */
 
97
 
 
98
  CodonRateFrequenciesSubstitutionModel(const CodonAlphabet* palph,
 
99
                                        NucleotideSubstitutionModel* pmod1,
 
100
                                        NucleotideSubstitutionModel* pmod2,
 
101
                                        NucleotideSubstitutionModel* pmod3,
 
102
                                        FrequenciesSet* pfreq);
 
103
 
 
104
  ~CodonRateFrequenciesSubstitutionModel(){}
 
105
 
 
106
#ifndef NO_VIRTUAL_COV
 
107
  CodonRateFrequenciesSubstitutionModel*
 
108
#else
 
109
  Clonable*
 
110
#endif
 
111
  clone() const { return new CodonRateFrequenciesSubstitutionModel(*this); }
 
112
 
 
113
public:
 
114
  void fireParameterChanged(const ParameterList& parameterlist);
 
115
  
 
116
  std::string getName() const;
 
117
 
 
118
  double getCodonsMulRate(unsigned int, unsigned int) const;
 
119
 
 
120
  void setNamespace(const std::string& st);
 
121
 
 
122
  void setFreq(std::map<int,double>& frequencies);
 
123
};
 
124
} // end of namespace bpp.
 
125
 
 
126
#endif
 
127