-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathUniformizedSubstitutionModel.java
More file actions
247 lines (205 loc) · 8.96 KB
/
Copy pathUniformizedSubstitutionModel.java
File metadata and controls
247 lines (205 loc) · 8.96 KB
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
/*
* UniformizedSubstitutionModel.java
*
* Copyright (c) 2002-2015 Alexei Drummond, Andrew Rambaut and Marc Suchard
*
* This file is part of BEAST.
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership and licensing.
*
* BEAST is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* BEAST 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with BEAST; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
*/
package dr.evomodel.substmodel;
import dr.inference.markovjumps.*;
import dr.inference.model.Model;
import dr.math.MathUtils;
import java.util.logging.Logger;
/**
* A class extension for implementing Markov chain-induced counting processes (markovjumps)
* via uniformization in BEAST using BEAGLE
* <p/>
* This work is supported by NSF grant 0856099
* <p/>
* Minin VN and Suchard MA (2008) Counting labeled transitions in continuous-time Markov models of evolution.
* Journal of Mathematical Biology, 56, 391-412.
* <p/>
* Rodrigue N, Philippe H and Lartillot N (2006) Uniformization for sampling realizations of Markov processes:
* applications to Bayesian implementations of codon substitution models. Bioinformatics, 24, 56-62.
* <p/>
* Hobolth A and Stone E (2009) Simulation from endpoint-conditioned, continuous-time Markov chains on a finite
* state space, with applications to molecular evolution. Annals of Applied Statistics, 3, 1204-1231.
*
* @author Marc Suchard
* @author Vladimir Minin
*/
public class UniformizedSubstitutionModel extends MarkovJumpsSubstitutionModel {
public UniformizedSubstitutionModel(SubstitutionModel substModel) {
this(substModel, MarkovJumpsType.COUNTS);
}
public UniformizedSubstitutionModel(SubstitutionModel substModel, MarkovJumpsType type) {
this(substModel, type, 1);
}
public UniformizedSubstitutionModel(SubstitutionModel substModel, MarkovJumpsType type, int numSimulants) {
super(substModel, type);
this.numSimulants = numSimulants;
updateSubordinator = true;
}
protected void setupStorage() {
super.setupStorage();
tmp = new double[stateCount * stateCount];
}
protected void storeState() {
storedSubordinator = subordinator;
}
protected void restoreState() {
subordinator = storedSubordinator;
}
private void constructSubordinator() {
substModel.getInfinitesimalMatrix(tmp);
subordinator = new SubordinatedProcess(tmp, stateCount);
updateSubordinator = false;
}
protected void handleModelChangedEvent(Model model, Object object, int index) {
if (model == substModel) {
updateSubordinator = true;
}
super.handleModelChangedEvent(model, object, index);
}
public void setSaveCompleteHistory(boolean in) {
saveCompleteHistory = in;
}
public void computeCondStatMarkovJumps(double time,
double[] countMatrix) {
throw new IllegalArgumentException("Not implemented for UniformizedSubstitutionModel");
}
public void computeCondStatMarkovJumps(double time,
double[] transitionProbs,
double[] countMatrix) {
throw new IllegalArgumentException("Not implemented for UniformizedSubstitutionModel");
}
public void computeJointStatMarkovJumps(double time,
double[] countMatrix) {
throw new IllegalArgumentException("Not implemented for UniformizedSubstitutionModel");
}
public double computeCondStatMarkovJumps(int startingState,
int endingState,
double time) {
substModel.getTransitionProbabilities(time, tmp);
return computeCondStatMarkovJumps(startingState, endingState, time,
tmp[startingState * stateCount + endingState]);
}
public String getCompleteHistory() {
return getCompleteHistory(null, null);
}
public String getCompleteHistory(Double newStartTime, Double newEndTime) {
return getCompleteHistory(-1, newStartTime, newEndTime);
}
public String getCompleteHistory(int site, Double newStartTime, Double newEndTime) {
return getCompleteHistory(site, newStartTime, newEndTime, true);
}
public String getCompleteHistory(int site, Double newStartTime, Double newEndTime, boolean wrap) {
if (newStartTime != null && newEndTime != null) {
// Rescale time of events
completeHistory.rescaleTimesOfEvents(newStartTime, newEndTime);
}
return completeHistory.toStringChanges(site, dataType, wrap); //, 0.0);
}
public int getNumberOfJumpsInCompleteHistory() {
return completeHistory == null ? -1 : completeHistory.getNumberOfJumps();
}
static void warn() {
if (reportWarning) {
Logger.getLogger("dr.app.beagle").info(
"Unable to compute a robust count; this is most likely due to poor starting values."
);
}
reportWarning = false;
}
public double computeCondStatMarkovJumps(int startingState,
int endingState,
double time,
double transitionProbability) {
if (updateSubordinator) {
constructSubordinator();
}
double total = 0;
for (int i = 0; i < numSimulants; i++) {
StateHistory history = null;
try {
history = UniformizedStateHistory.simulateConditionalOnEndingState(
0.0,
startingState,
time,
endingState,
transitionProbability,
stateCount,
subordinator
);
} catch (SubordinatedProcess.Exception e) {
if (RETURN_UNIFORMLY_DISTRIBUTED_EVENT) {
warn();
history = new StateHistory(0.0, startingState, stateCount);
if (startingState != endingState) {
history.addChange(new StateChange(MathUtils.nextDouble() * time, endingState));
}
history.addEndingState(new StateChange(time, endingState));
} else if (RETURN_NAN) {
warn();
return Double.NaN;
} else {
// Error in uniformization; try rejection sampling
System.err.println("Attempting rejection sampling after uniformization failure");
substModel.getInfinitesimalMatrix(tmp);
int attempts = 0;
boolean success = false;
while (!success) {
if (attempts >= maxRejectionAttempts) {
throw new RuntimeException("Rejection sampling failure, after uniformization failure");
}
history = StateHistory.simulateUnconditionalOnEndingState(0.0, startingState, time, tmp, stateCount);
if (history.getEndingState() == endingState) {
success = true;
}
attempts++;
}
}
}
total += getProcessForSimulant(history);
if (saveCompleteHistory) {
if (numSimulants == 1) {
completeHistory = history;
} else {
throw new RuntimeException("Use single simulant when saving complete histories");
}
}
}
return total / (double) numSimulants;
}
public StateHistory getStateHistory() {
return completeHistory;
}
private final int numSimulants;
private boolean updateSubordinator;
private SubordinatedProcess subordinator;
private SubordinatedProcess storedSubordinator;
private boolean saveCompleteHistory = false;
private StateHistory completeHistory = null;
private double[] tmp;
private static int maxRejectionAttempts = 100000;
private static final boolean RETURN_NAN = true;
private static final boolean RETURN_UNIFORMLY_DISTRIBUTED_EVENT = true;
private static boolean reportWarning = true;
}