-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathParameter_rate.cpp
455 lines (384 loc) · 11.7 KB
/
Parameter_rate.cpp
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
/*
* DPPDiv version 1.0b source code (git: 9c0ac3d2258f89827cfe9ba2b5038f0f656b82c1)
* Copyright 2009-2011
* Tracy Heath(1,2,3) (NSF postdoctoral fellowship in biological informatics DBI-0805631)
* Mark Holder(1)
* John Huelsenbeck(2)
*
* (1) Department of Ecology and Evolutionary Biology, University of Kansas, Lawrence, KS 66045
* (2) Integrative Biology, University of California, Berkeley, CA 94720-3140
* (3) email: tracyh@berkeley.edu
*
* DPPDiv 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; either version 3 of the License, or
* (at your option) any later version.
*
* 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 (the file gpl.txt included with this
* distribution or http://www.gnu.org/licenses/gpl.txt for more
* details.
*
* Some of this code is from publicly available source by John Huelsenbeck
*/
#include "MbRandom.h"
#include "Model.h"
#include "Parameter.h"
#include "Parameter_rate.h"
#include "Parameter_tree.h"
#include "util.h"
#include <iostream>
#include <string>
using namespace std;
void RateGroup::print(std::ostream &ss) const {
ss << "Rate Group Elements: (" << rate << ") -> ";
for (set<int>::const_iterator p=rateElements.begin(); p != rateElements.end(); p++)
ss << *p << " ";
ss << '\n';
}
void RateGroup::updateRelevantNodesinTre(Tree *t) {
for (set<int>::const_iterator p=rateElements.begin(); p != rateElements.end(); p++)
t->updateToRootClsTis(*p);
}
void RateGroup::coutElementsInGroup() {
for (set<int>::const_iterator p=rateElements.begin(); p != rateElements.end(); p++){
cout << (*p) << " ";
}
}
void RateGroup::setRateValuesForEachElem(Tree *t) {
for (set<int>::const_iterator p=rateElements.begin(); p != rateElements.end(); p++){
Node *b = t->getNodeByIndex((*p));
b->setRtGrpVal(rate);
b->setRtGrpIdx(indx);
}
}
NodeRate::NodeRate(MbRandom *rp, Model *mp, int nn, double a, double b,
double cp, double fxrt, int rm) : Parameter(rp, mp) {
alpha = a;
beta = b;
concentrationParm = cp;
numNodes = nn;
name = "DP";
numAuxTabs = 5;
subRateModelType = rm;
int ntax = (nn + 1) / 2;
rootID = ntax;
// initialize from prior
if(subRateModelType == 2){
double fixrate = fxrt;
if(fixrate < 0.0){
fixrate = ranPtr->gammaRv(alpha, beta);
cout << "Strict clock, initial substitution rate = " << fixrate << endl;
}
else
cout << "Strict clock, rates fixed to = " << fixrate << endl;
RateGroup *rg = new RateGroup(fixrate);
rateGroups.push_back( rg );
for (int i=0; i<numNodes; i++){
if(i != rootID)
rg->addRateElement(i);
}
}
else if(subRateModelType == 3){
for (int i=0; i<numNodes; i++){
if(i != rootID){
int nodesin = 0;
if(i < rootID) nodesin = i;
else nodesin = i - 1;
RateGroup *rg = new RateGroup(ranPtr->gammaRv(alpha, beta));
rateGroups.push_back( rg );
rg->addRateElement(i);
}
}
}
else{
for (int i=0; i<numNodes; i++){
if(i != rootID){
int nodesin = 0;
if(i < rootID) nodesin = i;
else nodesin = i - 1;
double probNewTable = concentrationParm / (nodesin + concentrationParm);
if ( ranPtr->uniformRv() < probNewTable ){
RateGroup *rg = new RateGroup(ranPtr->gammaRv(alpha, beta));
rateGroups.push_back( rg );
rg->addRateElement(i);
}
else{
double u = ranPtr->uniformRv();
double sum = 0.0;
for (vector<RateGroup *>::iterator p=rateGroups.begin(); p != rateGroups.end(); p++){
sum += (double)((*p)->getNumRateElements()) / nodesin;
if ( u < sum ){
(*p)->addRateElement(i);
break;
}
}
}
}
}
}
labelTables();
print(std::cout);
}
NodeRate::~NodeRate(void) {
for (vector<RateGroup *>::iterator p=rateGroups.begin(); p != rateGroups.end(); p++)
delete (*p);
}
NodeRate& NodeRate::operator=(const NodeRate &r) {
if (this != &r)
clone(r);
return *this;
}
void NodeRate::clone(const NodeRate &r) {
}
double NodeRate::update(double &oldLnL) {
if(subRateModelType == 2)
return updateCLOCK(oldLnL);
else if(subRateModelType == 3)
return updateUnCorrGamma(oldLnL);
else
return updateDPM(oldLnL);
}
double NodeRate::updateDPM(double &oldLnL) {
Tree *t = modelPtr->getActiveTree();
double oldLike = oldLnL;
t->upDateAllCls();
t->upDateAllTis();
const double tuning = log(2.0);
for (vector<RateGroup *>::iterator p=rateGroups.begin(); p != rateGroups.end(); p++){
double oldR = (*p)->getRate();
double newR = oldR * exp(tuning*(ranPtr->uniformRv()-0.5));
(*p)->setRate(newR);
(*p)->updateRelevantNodesinTre(t);
modelPtr->setTiProb();
double newLnL = modelPtr->lnLikelihood();
double lnR = (newLnL-oldLike) +
(ranPtr->lnGammaPdf(alpha, beta, newR)-ranPtr->lnGammaPdf(alpha, beta, oldR)) +
(log(newR)-log(oldR));
double r = modelPtr->safeExponentiation(lnR);
if ( ranPtr->uniformRv() < r ){
oldLike = newLnL;
}
else{
(*p)->setRate(oldR);
(*p)->updateRelevantNodesinTre(t);
}
}
const int numAuxiliary = numAuxTabs;
const double lnConcOverNumAux = log(concentrationParm/numAuxiliary);
RateGroup **auxiliaryRateGroups = new RateGroup*[numAuxiliary];
for (int i=0; i<numNodes; i++){
if(i != rootID) {
RateGroup *origGroup = findRateGroupWithElementIndexed( i );
origGroup->removeRateElement( i );
if (origGroup->getNumRateElements() == 0)
removeRateGroup(origGroup);
vector<double> lnProb;
lnProb.reserve(rateGroups.size() + numAuxiliary);
for (vector<RateGroup *>::iterator p=rateGroups.begin(); p != rateGroups.end(); p++){
const int numSeatedElements = (*p)->getNumRateElements();
(*p)->addRateElement(i);
t->updateToRootClsTis(i);
modelPtr->setTiProb();
double rglnl = modelPtr->lnLikelihood();
lnProb.push_back( log(numSeatedElements) + rglnl );
(*p)->removeRateElement(i);
}
for (int j=0; j<numAuxiliary; j++)
auxiliaryRateGroups[j] = new RateGroup(ranPtr->gammaRv(alpha, beta));
for (int j=0; j<numAuxiliary; j++){
RateGroup *tempGrp = NULL;
tempGrp = auxiliaryRateGroups[j];
rateGroups.push_back( tempGrp );
auxiliaryRateGroups[j]->addRateElement(i);
t->updateToRootClsTis(i);
modelPtr->setTiProb();
double rglnl = modelPtr->lnLikelihood();
lnProb.push_back( lnConcOverNumAux + rglnl );
auxiliaryRateGroups[j]->removeRateElement(i);
removeRateGroup(tempGrp);
}
normalizeVector(lnProb);
unsigned whichTable = ranPtr->categoricalRv(&lnProb[0], lnProb.size());
RateGroup *newGroup = NULL;
if ( whichTable < rateGroups.size() ){
newGroup = rateGroups[whichTable];
newGroup->addRateElement(i);
}
else{
newGroup = auxiliaryRateGroups[whichTable-rateGroups.size()];
rateGroups.push_back( newGroup );
newGroup->addRateElement(i);
}
for (int j=0; j<numAuxiliary; j++){
if (auxiliaryRateGroups[j] != newGroup)
delete auxiliaryRateGroups[j];
}
t->updateToRootClsTis(i);
}
}
delete [] auxiliaryRateGroups;
t->flipAllCls();
t->flipAllTis();
t->upDateAllCls();
t->upDateAllTis();
modelPtr->setTiProb();
oldLnL = modelPtr->lnLikelihood();
labelTables();
setRatesForNodes(t);
modelPtr->setLnLGood(true);
return 0.0;
}
double NodeRate::updateCLOCK(double &oldLnL) {
Tree *t = modelPtr->getActiveTree();
double oldLike = oldLnL;
t->upDateAllCls();
t->upDateAllTis();
const double tuning = log(2.0);
for (vector<RateGroup *>::iterator p=rateGroups.begin(); p != rateGroups.end(); p++){
double oldR = (*p)->getRate();
double newR = oldR * exp(tuning*(ranPtr->uniformRv()-0.5));
(*p)->setRate(newR);
(*p)->updateRelevantNodesinTre(t);
modelPtr->setTiProb();
double newLnL = modelPtr->lnLikelihood();
double lnR = (newLnL-oldLike) +
(ranPtr->lnGammaPdf(alpha, beta, newR)-ranPtr->lnGammaPdf(alpha, beta, oldR)) +
(log(newR)-log(oldR));
double r = modelPtr->safeExponentiation(lnR);
if ( ranPtr->uniformRv() < r )
oldLike = newLnL;
else{
(*p)->setRate(oldR);
(*p)->updateRelevantNodesinTre(t);
}
}
t->flipAllCls();
t->flipAllTis();
t->upDateAllCls();
t->upDateAllTis();
modelPtr->setTiProb();
oldLnL = modelPtr->lnLikelihood();
labelTables();
setRatesForNodes(t);
modelPtr->setLnLGood(true);
return 0.0;
}
double NodeRate::updateUnCorrGamma(double &oldLnL) {
Tree *t = modelPtr->getActiveTree();
double oldLike = oldLnL;
t->upDateAllCls();
t->upDateAllTis();
const double tuning = log(2.0);
for (vector<RateGroup *>::iterator p=rateGroups.begin(); p != rateGroups.end(); p++){
double oldR = (*p)->getRate();
double newR = oldR * exp(tuning*(ranPtr->uniformRv()-0.5));
(*p)->setRate(newR);
(*p)->updateRelevantNodesinTre(t);
modelPtr->setTiProb();
double newLnL = modelPtr->lnLikelihood();
double lnR = (newLnL-oldLike) +
(ranPtr->lnGammaPdf(alpha, beta, newR)-ranPtr->lnGammaPdf(alpha, beta, oldR)) +
(log(newR)-log(oldR));
double r = modelPtr->safeExponentiation(lnR);
if ( ranPtr->uniformRv() < r )
oldLike = newLnL;
else{
(*p)->setRate(oldR);
(*p)->updateRelevantNodesinTre(t);
}
}
t->flipAllCls();
t->flipAllTis();
t->upDateAllCls();
t->upDateAllTis();
modelPtr->setTiProb();
oldLnL = modelPtr->lnLikelihood();
labelTables();
setRatesForNodes(t);
modelPtr->setLnLGood(true);
return 0.0;
}
void NodeRate::labelTables(void) {
int n = 0;
for (vector<RateGroup *>::const_iterator p=rateGroups.begin(); p != rateGroups.end(); p++){
(*p)->setTableIndex(n);
n++;
}
}
double NodeRate::lnPrior(void) {
return 0.0;
}
void NodeRate::print(std::ostream & o) const {
for (vector<RateGroup *>::const_iterator p=rateGroups.begin(); p != rateGroups.end(); p++)
(*p)->print(o);
}
int NodeRate::getTableNumForNodeIndexed(int idx) {
int num = -1;
for (vector<RateGroup *>::iterator p=rateGroups.begin(); p != rateGroups.end(); p++){
if ( (*p)->isElementPresent(idx) == true ){
num = (*p)->getTableIndex();
break;
}
}
if(num == -1) {
cerr << "ERROR: index " << idx << " not in rateGroups" << endl;
exit(1);
}
return num;
}
double NodeRate::getRateForNodeIndexed(int idx) {
double theRate = 0.0;
for (vector<RateGroup *>::iterator p=rateGroups.begin(); p != rateGroups.end(); p++){
if ( (*p)->isElementPresent(idx) == true ){
theRate = (*p)->getRate();
break;
}
}
if(theRate == 0.0) {
cerr << "ERROR: index " << idx << " not in rateGroups" << endl;
exit(1);
}
return theRate;
}
RateGroup* NodeRate::findRateGroupWithElementIndexed(int idx) {
RateGroup *theRateGroup = NULL;
for (vector<RateGroup *>::iterator p=rateGroups.begin(); p != rateGroups.end(); p++){
if ( (*p)->isElementPresent(idx) == true ){
theRateGroup = (*p);
break;
}
}
return theRateGroup;
}
void NodeRate::removeRateGroup(RateGroup *g) {
for (vector<RateGroup *>::iterator p=rateGroups.begin(); p != rateGroups.end(); p++){
if ( (*p) == g ){
rateGroups.erase( p );
break;
}
}
}
double NodeRate::getAverageRate(){
double sumRt = 0.0;
for(int i=0; i<numNodes; i++) {
if(i != rootID)
sumRt += getRateForNodeIndexed(i);
}
return sumRt / (numNodes - 1);
}
string NodeRate::writeParam(void){
stringstream ss;
ss << "Total Rate Groups = " << getNumRateGroups() << " (" << concentrationParm << ")\n";
ss << "Average Rate = " << getAverageRate() << "\n";
for (vector<RateGroup *>::iterator p=rateGroups.begin(); p != rateGroups.end(); p++)
(*p)->print(ss);
string outp = ss.str();
return outp;
}
void NodeRate::setRatesForNodes(Tree *t){
for (vector<RateGroup *>::iterator p=rateGroups.begin(); p != rateGroups.end(); p++)
(*p)->setRateValuesForEachElem(t);
}