-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathStructuredMigrationSkyline.java
More file actions
465 lines (372 loc) · 11.9 KB
/
Copy pathStructuredMigrationSkyline.java
File metadata and controls
465 lines (372 loc) · 11.9 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
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
package mascot.dynamics;
import beast.base.core.Citation;
import beast.base.core.Description;
import beast.base.core.Input;
import beast.base.core.Input.Validate;
import beast.base.core.Loggable;
import beast.base.spec.inference.parameter.BoolVectorParam;
import mascot.parameterdynamics.NeDynamicsList;
import java.io.PrintStream;
@Description("Wrapper class that takes parametric and non parametric dynamics as input.")
@Citation( "Nicola F. Müller, Remco R. Bouckaert, Chieh-Hsi Wu, Trevor Bedford (2025)\n"+
" MASCOT-Skyline integrates population and migration dynamics\n"+
" to enhance phylogeographic reconstructions\n"+
" PLOS Computational Biology 21(9):e1013421,\n"+
" https://doi.org/10.1371/journal.pcbi.1013421")
public class StructuredMigrationSkyline extends Dynamics implements Loggable {
public Input<NeDynamicsList> NeFunctionInput = new Input<>(
"NeDynamics", "input of the log effective population sizes", Validate.REQUIRED);
public Input<NeDynamicsList> migrationFunctionInput = new Input<>(
"migrationDynamics", "input of the log migration rates over time", Validate.REQUIRED);
public Input<RateShifts> rateShiftsInput = new Input<>(
"rateShifts", "timing of the rate shifts", Validate.REQUIRED);
public Input<BoolVectorParam> indicatorInput = new Input<>(
"indicators", "input of backwards in time migration rates", Validate.REQUIRED);
public Input<Double> maxRateInput = new Input<>(
"maxRate", "maximum rate used for integration", Double.POSITIVE_INFINITY);
double[] intTimes;
double[] storedIntTimes;
int firstlargerzero;
boolean isForward = false;
boolean intTimesKnown = false;
NeDynamicsList migration;
NeDynamicsList parametricFunction;
int[][] dirs;
@Override
public void initAndValidate() {
super.initAndValidate();
if (dimensionInput.get()<1)
dimensionInput.set(getNrTypes());
migration = migrationFunctionInput.get();
isForward = true;
// check the dimension of the migration rates
if (dimensionInput.get()*(dimensionInput.get()-1)!=migration.size()){
throw new IllegalArgumentException("the dimension of " + migration.getID() + " is set to " + (dimensionInput.get()*(dimensionInput.get()-1)) + " from " + migration.size());
}
parametricFunction = NeFunctionInput.get();
// check that all the inputs have the correct dimension
if (dimensionInput.get()!=parametricFunction.size() && !fromBeautiInput.get()){
throw new IllegalArgumentException("the number of parametric functions given as Input does not match the dimension/number of states");
}
//get the first non zero element
firstlargerzero = 0;
for (int i=0; i < rateShiftsInput.get().getDimension(); i++) {
if (rateShiftsInput.get().getValue(i)>0) {
firstlargerzero=i;
break;
}
}
computeIntTimes();
// set the Ne dimension for all skygrid dynamics.
for (int i = 0; i < parametricFunction.size(); i++)
parametricFunction.get(i).setNrIntervals(intTimes.length);
// Set the dimension of the indicator variables
if (indicatorInput.get().size() != migration.size())
indicatorInput.get().setDimension(migration.size());
hasIndicators = true;
dirs = new int[dimensionInput.get()][dimensionInput.get()];
int c = 0;
for (int a = 0; a < dimensionInput.get(); a++) {
for (int b = 0; b < dimensionInput.get(); b++) {
if (a!=b) {
dirs[a][b] = c;
c++;
}
}
}
}
private void computeIntTimes() {
// initialize the intervals
intTimes = new double[rateShiftsInput.get().getDimension()-firstlargerzero];
for (int i=0; i < intTimes.length; i++) {
if (i==0) {
intTimes[i] = rateShiftsInput.get().getValue(i+firstlargerzero);
}
else {
intTimes[i] = rateShiftsInput.get().getValue(i+firstlargerzero)-rateShiftsInput.get().getValue(i-1+firstlargerzero);
}
}
intTimesKnown=true;
}
/**
* Returns the time to the next interval.
*/
@Override
public double getInterval(int i) {
if (!intTimesKnown)
computeIntTimes();
if (i >= intTimes.length){
return Double.POSITIVE_INFINITY;
}else{
return intTimes[i];
}
}
@Override
public double[] getIntervals() {
if (!intTimesKnown)
computeIntTimes();
return intTimes;
}
@Override
public double[] getCoalescentRate(int i){
if (!intTimesKnown)
computeIntTimes();
int intervalNr;
if (i >= rateShiftsInput.get().getDimension()-firstlargerzero-1)
intervalNr = rateShiftsInput.get().getDimension()-2;
else
intervalNr = i + firstlargerzero;
// get the current time as the midpoint of the current intervals
double t = rateShiftsInput.get().getIntervalMidpoint(intervalNr);
double[] coal = new double[getDimension()];
for (int j = 0; j < coal.length; j++){
if (parametricFunction.get(j).isTime)
coal[j] = Math.min(maxRateInput.get(), 1/parametricFunction.get(j).getNeTime(t));
else
coal[j] = Math.min(maxRateInput.get(), 1/parametricFunction.get(j).getNeInterval(intervalNr));
}
return coal;
}
@Override
public double[] getBackwardsMigration(int i){
if (!intTimesKnown)
computeIntTimes();
int intervalNr;
if (i >= rateShiftsInput.get().getDimension()-firstlargerzero-1)
intervalNr = rateShiftsInput.get().getDimension()-2;
else
intervalNr = i + firstlargerzero;
int dim = dimensionInput.get();
int start = intervalNr*dim*(dim-1);
double[] m = new double[dim * dim];
double[] NeInt = new double[dim];
double t = rateShiftsInput.get().getIntervalMidpoint(intervalNr);
for (int j = 0; j < NeInt.length; j++){
if (parametricFunction.get(j).isTime)
NeInt[j] = parametricFunction.get(j).getNeTime(t);
else
NeInt[j] = parametricFunction.get(j).getNeInterval(intervalNr);
}
for (int a = 0; a < dim; a++){
for (int b = 0; b < dim; b++){
if (a!=b){
if (indicatorInput.get().get(dirs[b][a]))
m[a * dim + b] = Math.min(maxRateInput.get(), NeInt[b]*migration.get(dirs[b][a]).getNeTime(t)/NeInt[a]);
else
m[a * dim + b] = 0.0;
}
}
}
return m;
}
// @Override
// public void recalculate() {
// // TODO Auto-generated method stub
//
// }
//
// @Override
// public void init(PrintStream out) {
// for (int j = 0; j < dimensionInput.get(); j++){
// for (int i = 0; i < rateShifts.getDimension(); i++){
// out.print(String.format("Ne.%d.%d\t", j,i));
// }
// }
// }
//
// @Override
// public void log(long sample, PrintStream out) {
// for (int j = 0; j < dimensionInput.get(); j++){
// for (int i = 0; i < rateShifts.getDimension(); i++){
// out.print(Math.exp(Ne.getArrayValue(dimensionInput.get()*i+j))*NeMean.getValue() + "\t");
// }
// }
// }
@Override
public int[] getIndicators(int i) {
int nrTrue = 0;
for (int j = 0; j < indicatorInput.get().size(); j++)
if (indicatorInput.get().get(j))
nrTrue++;
int[] m = new int[nrTrue*2];
int c = 0;
int mi = 0;
if (isForward){
for (int a = 0; a < dimensionInput.get(); a++){
for (int b = 0; b < dimensionInput.get(); b++){
if (a!=b){
if (indicatorInput.get().get(dirs[b][a])){
m[mi * 2 + 0] = a;
m[mi * 2 + 1] = b;
mi++;
}
c++;
}
}
}
}else{
// int c1=0,c2=0;
// start = 0;
// for (int a = 0; a < dim; a++){
// for (int b = 0; b < dim; b++){
// if (a!=b){
// if (indicatorInput.get().get(c2))
// m[c1] = migration.getArrayValue(start+c2);
// else
// m[c1] = 0;
// c2++;
// }
// c1++;
// }
// }
}
return m;
// if (isBackwardsMigration){
// if (migrationType == MigrationType.asymmetric){
// for (int a = 0; a < NeInput.get().getDimension(); a++){
// for (int b = 0; b < NeInput.get().getDimension(); b++){
// if (a!=b){
// if (indicatorInput.get().get(c)){
// m[mi * 2 + 0] = a;
// m[mi * 2 + 1] = b;
// mi++;
// }
// c++;
// }
// }
// }
// }else{
// for (int a = 0; a < NeInput.get().getDimension(); a++){
// for (int b = a+1; b < NeInput.get().getDimension(); b++){
// if (a!=b){
// if (indicatorInput.get().get(c)){
// m[mi * 2 + 0] = a;
// m[mi * 2 + 1] = b;
// mi++;
// m[mi * 2 + 0] = b;
// m[mi * 2 + 1] = a;
// mi++;
// }
// c++;
// }
// }
// }
// }
// }else{
// if (migrationType == MigrationType.asymmetric){
// for (int a = 0; a < NeInput.get().getDimension(); a++){
// for (int b = 0; b < NeInput.get().getDimension(); b++){
// if (a!=b){
// if (indicatorInput.get().get(c)){
// m[mi * 2 + 0] = a;
// m[mi * 2 + 1] = b;
// mi++;
// }
// c++;
// }
// }
// }
// }else{
// for (int a = 0; a < NeInput.get().getDimension(); a++){
// for (int b = a+1; b < NeInput.get().getDimension(); b++){
// if (a!=b){
// if (indicatorInput.get().get(c)){
// m[mi * 2 + 0] = a;
// m[mi * 2 + 1] = b;
// mi++;
// m[mi * 2 + 0] = b;
// m[mi * 2 + 1] = a;
// mi++;
// }
// c++;
// }
// }
// }
// }
// }
//
// return m;
}
@Override
public int getEpochCount() {
return rateShiftsInput.get().getCorrectedDimension();
}
@Override
public boolean intervalIsDirty(int j) {
for (int i = 0; i < parametricFunction.size(); i++)
if(parametricFunction.get(i).isDirty())
return true;
for (int i = 0; i < migration.size(); i++)
if(migration.get(i).isDirty())
return true;
if(rateShiftsInput.get().somethingIsDirty()) {
intTimesKnown = false;
return true;
}
return false;
}
@Override
public void init(PrintStream out) {
if (isForward){
for (int a = 0; a < dimensionInput.get(); a++) {
for (int b = 0; b < intTimes.length; b++) {
out.print(String.format("Ne_%s.%d\t", getStringStateValue(a), b));
}
}
for (int a = 0; a < dimensionInput.get(); a++)
for (int b = 0; b < dimensionInput.get(); b++)
if (a!=b)
for (int i = 0; i < intTimes.length; i++)
out.print(String.format("f_%s.%s_to_%s.%d\t", migration.get(dirs[a][b]).getID(), getStringStateValue(a), getStringStateValue(b), i));
}
}
@Override
public void log(long sample, PrintStream out) {
int c=0;
if (isForward){
for (int a = 0; a < dimensionInput.get(); a++) {
for (int b = 0; b < intTimes.length; b++) {
double t = rateShiftsInput.get().getIntervalMidpoint(b);
double ne;
if (parametricFunction.get(a).isTime)
ne = parametricFunction.get(a).getNeTime(t);
else
ne = parametricFunction.get(a).getNeInterval(b);
out.print(Math.log(ne) + "\t");
}
}
for (int a = 0; a < dimensionInput.get(); a++) {
for (int b = 0; b < dimensionInput.get(); b++) {
if (a!=b) {
for (int i = 0; i < intTimes.length; i++) {
double t = rateShiftsInput.get().getIntervalMidpoint(i);
if (indicatorInput.get().get(dirs[a][b]))
out.print(migration.get(dirs[a][b]).getNeTime(t) + "\t");
else
out.print(0.0 + "\t");
}
c++;
}
}
}
}
}
@Override
public void close(PrintStream out) {
// TODO Auto-generated method stub
}
@Override
public void recalculate() {
// TODO Auto-generated method stub
}
public void store() {
storedIntTimes = new double[intTimes.length];
System.arraycopy(intTimes, 0, storedIntTimes, 0, intTimes.length);
super.store();
}
@Override
public void restore() {
System.arraycopy(storedIntTimes, 0, intTimes, 0, storedIntTimes.length);
super.restore();
}
}