-
Notifications
You must be signed in to change notification settings - Fork 1
/
discrete_like.go
2036 lines (1960 loc) · 53.2 KB
/
discrete_like.go
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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package gophy
import (
"fmt"
"math"
"os"
"sort"
"gonum.org/v1/gonum/floats"
)
/**
* There are several different likelihood calculators here.
*
* General outline:
* PCalc* : parallel likelihood calculators.
* LogLike or Like or Sup
* Patterns
* Marked or Back
*
*/
/*
This is for calculating likelihoods for discrete states
*/
// PCalcLogLike this will calculate log like in parallel
func PCalcLogLike(t *Tree, x *DiscreteModel, nsites int, wks int) (fl float64) {
fl = 0.0
jobs := make(chan int, nsites)
//results := make(chan float64, nsites)
results := make(chan LikeResult, nsites)
// populate the P matrix dictionary without problems of race conditions
// just the first site
x.EmptyPDict()
fl += CalcLogLikeOneSite(t, x, 0)
for i := 0; i < wks; i++ {
go CalcLogLikeWork(t, x, jobs, results)
}
for i := 1; i < nsites; i++ {
jobs <- i
}
close(jobs)
rr := LikeResult{}
for i := 1; i < nsites; i++ {
rr = <-results
fl += rr.value
//fl += <-results
}
return
}
// PCalcLike parallel calculate likelihood
func PCalcLike(t *Tree, x *DiscreteModel, nsites int, wks int) (fl float64) {
fl = 0.0
jobs := make(chan int, nsites)
//results := make(chan float64, nsites)
results := make(chan LikeResult, nsites)
// populate the P matrix dictionary without problems of race conditions
// just the first site
x.EmptyPDict()
fl += math.Log(CalcLikeOneSite(t, x, 0))
for i := 0; i < wks; i++ {
go CalcLikeWork(t, x, jobs, results)
}
for i := 1; i < nsites; i++ {
jobs <- i
}
close(jobs)
rr := LikeResult{}
for i := 1; i < nsites; i++ {
rr = <-results
fl += math.Log(rr.value)
//fl += <-results
}
return
}
// PCalcLikePatterns parallel caclulation of likelihood with patterns
func PCalcLikePatterns(t *Tree, x *DiscreteModel, patternval []float64, wks int) (fl float64) {
fl = 0.0
nsites := len(patternval)
jobs := make(chan int, nsites)
//results := make(chan float64, nsites)
results := make(chan LikeResult, nsites)
// populate the P matrix dictionary without problems of race conditions
// just the first site
x.EmptyPDict()
fl += math.Log(CalcLikeOneSite(t, x, 0)) * patternval[0]
for i := 0; i < wks; i++ {
go CalcLikeWork(t, x, jobs, results)
}
for i := 1; i < nsites; i++ {
jobs <- i
}
close(jobs)
rr := LikeResult{}
for i := 1; i < nsites; i++ {
rr = <-results
fl += math.Log(rr.value) * patternval[rr.site]
//fl += <-results
}
return
}
func PCalcSupLikePatterns(t *Tree, x *DiscreteModel, patternval []float64, wks int) (fl float64) {
fl = 0.0
nsites := len(patternval)
jobs := make(chan int, nsites)
//results := make(chan float64, nsites)
results := make(chan LikeSupResult, nsites)
// populate the P matrix dictionary without problems of race conditions
// just the first site
x.EmptyPDict()
fl += CalcSupLikeOneSite(t, x, 0).GetLn().Float64() * patternval[0]
for i := 0; i < wks; i++ {
go CalcSupLikeWork(t, x, jobs, results)
}
for i := 1; i < nsites; i++ {
jobs <- i
}
close(jobs)
rr := LikeSupResult{}
for i := 1; i < nsites; i++ {
rr = <-results
fl += rr.value.GetLn().Float64() * patternval[rr.site]
}
return
}
// PCalcLikePatternsGamma parallel caclulation of likelihood with patterns with gamma
func PCalcLikePatternsGamma(t *Tree, x *DiscreteModel, patternval []float64, wks int) (fl float64) {
fl = 0.0
nsites := len(patternval)
jobs := make(chan int, nsites)
//results := make(chan float64, nsites)
results := make(chan LikeResult, nsites)
// populate the P matrix dictionary without problems of race conditions
// just the first site
x.EmptyPDict()
fl += math.Log(CalcLikeOneSiteGamma(t, x, 0)) * patternval[0]
for i := 0; i < wks; i++ {
go CalcLikeWorkGamma(t, x, jobs, results)
}
for i := 1; i < nsites; i++ {
jobs <- i
}
close(jobs)
rr := LikeResult{}
for i := 1; i < nsites; i++ {
rr = <-results
fl += math.Log(rr.value) * patternval[rr.site]
//fl += <-results
}
return
}
// PCalcLikePatternsMarked parallel likelihood caclulation with patterns and just update the values
func PCalcLikePatternsMarked(t *Tree, x *DiscreteModel, patternval []float64, wks int) (fl float64) {
fl = 0.0
nsites := len(patternval)
jobs := make(chan int, nsites)
//results := make(chan float64, nsites)
results := make(chan LikeResult, nsites)
// populate the P matrix dictionary without problems of race conditions
// just the first site
//x.EmptyPDict()
fl += math.Log(CalcLikeOneSiteMarked(t, x, 0)) * patternval[0]
for i := 0; i < wks; i++ {
go CalcLikeWorkMarked(t, x, jobs, results)
}
for i := 1; i < nsites; i++ {
jobs <- i
}
close(jobs)
rr := LikeResult{}
for i := 1; i < nsites; i++ {
rr = <-results
fl += math.Log(rr.value) * patternval[rr.site]
//fl += <-results
}
return
}
// PCalcLikePatternsMarkedGamma parallel likelihood caclulation with patterns and just update the values
func PCalcLikePatternsMarkedGamma(t *Tree, x *DiscreteModel, patternval []float64, wks int) (fl float64) {
fl = 0.0
nsites := len(patternval)
jobs := make(chan int, nsites)
//results := make(chan float64, nsites)
results := make(chan LikeResult, nsites)
// populate the P matrix dictionary without problems of race conditions
// just the first site
//x.EmptyPDict()
fl += math.Log(CalcLikeOneSiteMarkedGamma(t, x, 0)) * patternval[0]
for i := 0; i < wks; i++ {
go CalcLikeWorkMarkedGamma(t, x, jobs, results)
}
for i := 1; i < nsites; i++ {
jobs <- i
}
close(jobs)
rr := LikeResult{}
for i := 1; i < nsites; i++ {
rr = <-results
fl += math.Log(rr.value) * patternval[rr.site]
//fl += <-results
}
return
}
// PCalcLogLikePatterns parallel log likeliohood calculation including patterns
func PCalcLogLikePatterns(t *Tree, x *DiscreteModel, patternval []float64, wks int) (fl float64) {
fl = 0.0
nsites := len(patternval)
jobs := make(chan int, nsites)
//results := make(chan float64, nsites)
results := make(chan LikeResult, nsites)
// populate the P matrix dictionary without problems of race conditions
// just the first site
x.EmptyPDict()
x.EmptyPLDict()
fl += CalcLogLikeOneSite(t, x, 0) * patternval[0]
for i := 0; i < wks; i++ {
go CalcLogLikeWork(t, x, jobs, results)
}
for i := 1; i < nsites; i++ {
jobs <- i
}
close(jobs)
rr := LikeResult{}
for i := 1; i < nsites; i++ {
rr = <-results
fl += (rr.value * patternval[rr.site])
}
return
}
// PCalcLogLikePatternsGamma parallel log likeliohood calculation including patterns
func PCalcLogLikePatternsGamma(t *Tree, x *DiscreteModel, patternval []float64, wks int) (fl float64) {
fl = 0.0
nsites := len(patternval)
jobs := make(chan int, nsites)
//results := make(chan float64, nsites)
results := make(chan LikeResult, nsites)
// populate the P matrix dictionary without problems of race conditions
// just the first site
x.EmptyPDict()
x.EmptyPLDict()
fl += CalcLogLikeOneSiteGamma(t, x, 0) * patternval[0]
for i := 0; i < wks; i++ {
go CalcLogLikeWorkGamma(t, x, jobs, results)
}
for i := 1; i < nsites; i++ {
jobs <- i
}
close(jobs)
rr := LikeResult{}
for i := 1; i < nsites; i++ {
rr = <-results
fl += (rr.value * patternval[rr.site])
}
return
}
// PCalcLogLikeBack a bit of a shortcut. Could do better, but walks back from the n node to the root
func PCalcLogLikeBack(t *Tree, n *Node, x *DiscreteModel, nsites int, wks int) (fl float64) {
fl = 0.0
jobs := make(chan int, nsites)
results := make(chan float64, nsites)
// populate the P matrix dictionary without problems of race conditions
// just the first site
x.EmptyPDict()
fl += CalcLogLikeOneSiteBack(t, n, x, 0)
for i := 0; i < wks; i++ {
go CalcLogLikeWorkBack(t, n, x, jobs, results)
}
for i := 1; i < nsites; i++ {
jobs <- i
}
close(jobs)
for i := 1; i < nsites; i++ {
fl += <-results
}
return
}
// PCalcLogLikeMarked parallel calculation of loglike with just updating
func PCalcLogLikeMarked(t *Tree, x *DiscreteModel, nsites int, wks int) (fl float64) {
fl = 0.0
jobs := make(chan int, nsites)
results := make(chan float64, nsites)
// populate the P matrix dictionary without problems of race conditions
// just the first site
//x.EmptyPDict()
fl += CalcLogLikeOneSiteMarked(t, x, 0)
for i := 0; i < wks; i++ {
go CalcLogLikeWorkMarked(t, x, jobs, results)
}
for i := 1; i < nsites; i++ {
jobs <- i
}
close(jobs)
for i := 1; i < nsites; i++ {
fl += <-results
}
return
}
// CalcLogLikeOneSite just calculate the likelihood of one site
// probably used to populate the PDict in the DNA Model so that we can reuse the calculations
func CalcLogLikeOneSite(t *Tree, x *DiscreteModel, site int) float64 {
numstates := x.NumStates
sl := 0.0
for _, n := range t.Post {
if len(n.Chs) > 0 {
CalcLogLikeNode(n, x, site)
}
if t.Rt == n {
for i := 0; i < numstates; i++ {
t.Rt.Data[site][i] += math.Log(x.BF[i])
}
sl = floats.LogSumExp(t.Rt.Data[site])
}
}
return sl
}
// CalcLogLikeOneSiteGamma ...
func CalcLogLikeOneSiteGamma(t *Tree, x *DiscreteModel, site int) float64 {
numstates := x.NumStates
tsl := make([]float64, x.GammaNCats)
for p, g := range x.GammaCats {
for _, n := range t.Post {
if len(n.Chs) > 0 {
CalcLogLikeNodeGamma(n, x, site, g)
}
if t.Rt == n {
for i := 0; i < numstates; i++ {
t.Rt.Data[site][i] += math.Log(x.BF[i])
}
tsl[p] = (floats.LogSumExp(t.Rt.Data[site]) + (math.Log(1) - math.Log(float64(x.GammaNCats))))
}
}
}
return floats.LogSumExp(tsl)
}
// CalcLikeOneSite just one site
func CalcLikeOneSite(t *Tree, x *DiscreteModel, site int) float64 {
numstates := x.NumStates
sl := 0.0
for _, n := range t.Post {
if len(n.Chs) > 0 {
CalcLikeNode(n, x, site)
}
if t.Rt == n {
for i := 0; i < numstates; i++ {
t.Rt.Data[site][i] *= x.BF[i]
}
sl = floats.Sum(t.Rt.Data[site])
}
}
return sl
}
func CalcSupLikeOneSite(t *Tree, x *DiscreteModel, site int) *SupFlo {
numstates := x.NumStates
sl := NewSupFlo(0.0, 0)
for _, n := range t.Post {
if len(n.Chs) > 0 {
CalcSupLikeNode(n, x, site)
}
if t.Rt == n {
for i := 0; i < numstates; i++ {
t.Rt.BData[site][i].MulEqFloat(x.BF[i])
sl.AddEq(t.Rt.BData[site][i])
}
}
}
return sl
}
// CalcLikeOneSiteGamma just one site
func CalcLikeOneSiteGamma(t *Tree, x *DiscreteModel, site int) float64 {
numstates := x.NumStates
sl := 0.0
for _, g := range x.GammaCats {
for _, n := range t.Post {
if len(n.Chs) > 0 {
CalcLikeNodeGamma(n, x, site, g)
}
if t.Rt == n {
for i := 0; i < numstates; i++ {
t.Rt.Data[site][i] *= x.BF[i]
}
sl += floats.Sum(t.Rt.Data[site]) * (1. / float64(x.GammaNCats))
}
}
}
return sl
}
// CalcLogLikeOneSiteBack like the one above but from nb to the root only
func CalcLogLikeOneSiteBack(t *Tree, nb *Node, x *DiscreteModel, site int) float64 {
numstates := x.NumStates
sl := 0.0
going := true
cur := nb
for going {
if len(cur.Chs) > 0 {
CalcLogLikeNode(cur, x, site)
}
if cur == t.Rt {
for i := 0; i < numstates; i++ {
t.Rt.Data[site][i] += math.Log(x.BF[i])
}
sl = floats.LogSumExp(t.Rt.Data[site])
going = false
break
}
cur = cur.Par
}
return sl
}
// CalcLogLikeOneSiteMarked this uses the marked machinery to recalculate
func CalcLogLikeOneSiteMarked(t *Tree, x *DiscreteModel, site int) float64 {
numstates := x.NumStates
sl := 0.0
for _, n := range t.Post {
if len(n.Chs) > 0 {
if n.Marked == true {
CalcLogLikeNode(n, x, site)
if n != t.Rt {
n.Par.Marked = true
}
}
}
if t.Rt == n && n.Marked == true {
for i := 0; i < numstates; i++ {
t.Rt.Data[site][i] += math.Log(x.BF[i])
}
sl = floats.LogSumExp(t.Rt.Data[site])
} else {
sl = floats.LogSumExp(t.Rt.Data[site])
}
}
return sl
}
// CalcLikeOneSiteMarked this uses the marked machinery to recalculate
func CalcLikeOneSiteMarked(t *Tree, x *DiscreteModel, site int) float64 {
numstates := x.NumStates
sl := 0.0
for _, n := range t.Post {
if len(n.Chs) > 0 {
if n.Marked == true {
CalcLikeNode(n, x, site)
if n != t.Rt {
n.Par.Marked = true
}
}
}
if t.Rt == n && n.Marked == true {
for i := 0; i < numstates; i++ {
t.Rt.Data[site][i] *= x.BF[i]
}
sl = floats.Sum(t.Rt.Data[site])
} else {
sl = floats.Sum(t.Rt.Data[site])
}
}
return sl
}
// CalcLikeOneSiteMarkedGamma this uses the marked machinery to recalculate
func CalcLikeOneSiteMarkedGamma(t *Tree, x *DiscreteModel, site int) float64 {
numstates := x.NumStates
sl := 0.0
for _, g := range x.GammaCats {
for _, n := range t.Post {
if len(n.Chs) > 0 {
if n.Marked == true {
CalcLikeNodeGamma(n, x, site, g)
if n != t.Rt {
n.Par.Marked = true
}
}
}
if t.Rt == n && n.Marked == true {
for i := 0; i < numstates; i++ {
t.Rt.Data[site][i] *= x.BF[i]
}
sl += floats.Sum(t.Rt.Data[site]) * (1. / float64(x.GammaNCats))
} else {
sl += floats.Sum(t.Rt.Data[site]) * (1. / float64(x.GammaNCats))
}
}
}
return sl
}
// CalcLogLikeWork this is intended for a worker that will be executing this per site
func CalcLogLikeWork(t *Tree, x *DiscreteModel, jobs <-chan int, results chan<- LikeResult) { //results chan<- float64) {
numstates := x.NumStates
for j := range jobs {
sl := 0.0
for _, n := range t.Post {
if len(n.Chs) > 0 {
CalcLogLikeNode(n, x, j)
}
if t.Rt == n {
for i := 0; i < numstates; i++ {
t.Rt.Data[j][i] += math.Log(x.BF[i])
}
sl = floats.LogSumExp(t.Rt.Data[j])
}
}
results <- LikeResult{value: sl, site: j}
}
}
// CalcLogLikeWorkGamma this is intended for a worker that will be executing this per site
func CalcLogLikeWorkGamma(t *Tree, x *DiscreteModel, jobs <-chan int, results chan<- LikeResult) { //results chan<- float64) {
numstates := x.NumStates
for j := range jobs {
tsl := make([]float64, x.GammaNCats)
for p, g := range x.GammaCats {
for _, n := range t.Post {
if len(n.Chs) > 0 {
CalcLogLikeNodeGamma(n, x, j, g)
}
if t.Rt == n {
for i := 0; i < numstates; i++ {
t.Rt.Data[j][i] += math.Log(x.BF[i])
}
tsl[p] = (floats.LogSumExp(t.Rt.Data[j]) + (math.Log(1) - math.Log(float64(x.GammaNCats))))
}
}
}
results <- LikeResult{value: floats.LogSumExp(tsl), site: j}
}
}
// CalcLikeWork this is the worker
func CalcLikeWork(t *Tree, x *DiscreteModel, jobs <-chan int, results chan<- LikeResult) { //results chan<- float64) {
numstates := x.NumStates
for j := range jobs {
sl := 0.0
for _, n := range t.Post {
if len(n.Chs) > 0 {
CalcLikeNode(n, x, j)
}
if t.Rt == n {
for i := 0; i < numstates; i++ {
t.Rt.Data[j][i] *= x.BF[i]
}
sl = floats.Sum(t.Rt.Data[j])
}
}
results <- LikeResult{value: sl, site: j}
}
}
// CalcLikeWork this is the worker
func CalcSupLikeWork(t *Tree, x *DiscreteModel, jobs <-chan int, results chan<- LikeSupResult) { //results chan<- float64) {
numstates := x.NumStates
for j := range jobs {
sl := NewSupFlo(0.0, 0)
for _, n := range t.Post {
if len(n.Chs) > 0 {
CalcSupLikeNode(n, x, j)
}
if t.Rt == n {
for i := 0; i < numstates; i++ {
t.Rt.BData[j][i].MulEqFloat(x.BF[i])
sl.AddEq(t.Rt.BData[j][i])
}
}
}
results <- LikeSupResult{value: sl, site: j}
}
}
// CalcLikeWorkGamma ...
func CalcLikeWorkGamma(t *Tree, x *DiscreteModel, jobs <-chan int, results chan<- LikeResult) { //results chan<- float64) {
numstates := x.NumStates
for j := range jobs {
sl := 0.0
for _, g := range x.GammaCats {
for _, n := range t.Post {
if len(n.Chs) > 0 {
CalcLikeNodeGamma(n, x, j, g)
}
if t.Rt == n {
for i := 0; i < numstates; i++ {
t.Rt.Data[j][i] *= x.BF[i]
}
sl += floats.Sum(t.Rt.Data[j]) * (1. / float64(x.GammaNCats))
}
}
}
results <- LikeResult{value: sl, site: j}
}
}
// CalcLogLikeWorkBack this is intended for a worker that will be executing this per site
func CalcLogLikeWorkBack(t *Tree, nb *Node, x *DiscreteModel, jobs <-chan int, results chan<- float64) {
numstates := x.NumStates
for j := range jobs {
sl := 0.0
going := true
cur := nb
for going {
if len(cur.Chs) > 0 {
CalcLogLikeNode(cur, x, j)
}
if cur == t.Rt {
for i := 0; i < numstates; i++ {
t.Rt.Data[j][i] += math.Log(x.BF[i])
}
sl = floats.LogSumExp(t.Rt.Data[j])
going = false
break
}
cur = cur.Par
}
results <- sl
}
}
// CalcLikeWorkMarked this is intended to calculate only on the marked nodes back to teh root
func CalcLikeWorkMarked(t *Tree, x *DiscreteModel, jobs <-chan int, results chan<- LikeResult) {
numstates := x.NumStates
for j := range jobs {
sl := 0.0
for _, n := range t.Post {
if len(n.Chs) > 0 {
if n.Marked == true {
CalcLikeNode(n, x, j)
}
}
if t.Rt == n && n.Marked == true {
for i := 0; i < numstates; i++ {
t.Rt.Data[j][i] *= x.BF[i]
}
sl = floats.Sum(t.Rt.Data[j])
} else {
sl = floats.Sum(t.Rt.Data[j])
}
}
results <- LikeResult{value: sl, site: j}
}
}
// CalcLikeWorkMarkedGamma this is intended to calculate only on the marked nodes back to teh root
func CalcLikeWorkMarkedGamma(t *Tree, x *DiscreteModel, jobs <-chan int, results chan<- LikeResult) {
numstates := x.NumStates
for j := range jobs {
sl := 0.0
for _, g := range x.GammaCats {
for _, n := range t.Post {
if len(n.Chs) > 0 {
if n.Marked == true {
CalcLikeNodeGamma(n, x, j, g)
}
}
if t.Rt == n && n.Marked == true {
for i := 0; i < numstates; i++ {
t.Rt.Data[j][i] *= x.BF[i]
}
sl += floats.Sum(t.Rt.Data[j]) * (1. / float64(x.GammaNCats))
} else {
sl += floats.Sum(t.Rt.Data[j]) * (1. / float64(x.GammaNCats))
}
}
}
results <- LikeResult{value: sl, site: j}
}
}
// CalcLogLikeWorkMarked this is intended to calculate only on the marked nodes back to teh root
func CalcLogLikeWorkMarked(t *Tree, x *DiscreteModel, jobs <-chan int, results chan<- float64) {
numstates := x.NumStates
for j := range jobs {
sl := 0.0
for _, n := range t.Post {
if len(n.Chs) > 0 {
if n.Marked == true {
CalcLogLikeNode(n, x, j)
}
}
if t.Rt == n && n.Marked == true {
for i := 0; i < numstates; i++ {
t.Rt.Data[j][i] += math.Log(x.BF[i])
}
sl = floats.LogSumExp(t.Rt.Data[j])
} else {
sl = floats.LogSumExp(t.Rt.Data[j])
}
}
results <- sl
}
}
// CalcLogLikeNode calculates likelihood for node
func CalcLogLikeNode(nd *Node, model *DiscreteModel, site int) {
numstates := model.NumStates
for i := 0; i < numstates; i++ {
nd.Data[site][i] = 0.
}
x1 := 0.0
x2 := make([]float64, numstates)
for _, c := range nd.Chs {
if math.IsNaN(c.Len) {
c.Len = 0.0
}
if len(c.Chs) == 0 {
P := model.GetPMap(c.Len)
for i := 0; i < numstates; i++ {
x1 = 0.0
for j := 0; j < numstates; j++ {
x1 += P.At(i, j) * c.Data[site][j]
}
nd.Data[site][i] += math.Log(x1)
}
} else {
PL := model.GetPMapLogged(c.Len)
for i := 0; i < numstates; i++ {
for j := 0; j < numstates; j++ {
//x2[j] = math.Log(P.At(i, j)) + c.Data[site][j]
x2[j] = PL.At(i, j) + c.Data[site][j]
}
nd.Data[site][i] += floats.LogSumExp(x2)
}
}
}
}
// CalcLogLikeNodeGamma calculates likelihood for node
func CalcLogLikeNodeGamma(nd *Node, model *DiscreteModel, site int, gammav float64) {
numstates := model.NumStates
for i := 0; i < numstates; i++ {
nd.Data[site][i] = 0.
}
x1 := 0.0
x2 := make([]float64, numstates)
for _, c := range nd.Chs {
if math.IsNaN(c.Len) {
c.Len = 0.0
}
if len(c.Chs) == 0 {
P := model.GetPMap(c.Len * gammav)
for i := 0; i < numstates; i++ {
x1 = 0.0
for j := 0; j < numstates; j++ {
x1 += P.At(i, j) * c.Data[site][j]
}
nd.Data[site][i] += math.Log(x1)
}
} else {
PL := model.GetPMapLogged(c.Len * gammav)
for i := 0; i < numstates; i++ {
for j := 0; j < numstates; j++ {
//x2[j] = math.Log(P.At(i, j)) + c.Data[site][j]
x2[j] = PL.At(i, j) + c.Data[site][j]
}
nd.Data[site][i] += floats.LogSumExp(x2)
}
}
}
}
// CalcLikeNode calculate the likelihood of a node
func CalcLikeNode(nd *Node, model *DiscreteModel, site int) {
numstates := model.NumStates
for i := 0; i < numstates; i++ {
nd.Data[site][i] = 1.
}
x1 := 0.0
x2 := 0.0
for _, c := range nd.Chs {
P := model.GetPMap(c.Len)
if len(c.Chs) == 0 {
for i := 0; i < numstates; i++ {
x1 = 0.0
for j := 0; j < numstates; j++ {
x1 += P.At(i, j) * c.Data[site][j]
}
nd.Data[site][i] *= x1
}
} else {
for i := 0; i < numstates; i++ {
x2 = 0.0
for j := 0; j < numstates; j++ {
x2 += P.At(i, j) * c.Data[site][j]
}
nd.Data[site][i] *= x2
}
}
}
}
func CalcSupLikeNode(nd *Node, model *DiscreteModel, site int) {
numstates := model.NumStates
for i := 0; i < numstates; i++ {
nd.BData[site][i].SetFloat64(1.0)
}
x1 := NewSupFlo(0.0, 0)
x2 := NewSupFlo(0.0, 0)
tempSup := NewSupFlo(0.0, 0)
for _, c := range nd.Chs {
P := model.GetPMap(c.Len)
if len(c.Chs) == 0 {
for i := 0; i < numstates; i++ {
x1.SetFloat64(0.0)
for j := 0; j < numstates; j++ {
tempSup.SetMantExp(c.BData[site][j].GetMant()*P.At(i, j), c.BData[site][j].GetExp())
x1.AddEq(tempSup)
}
nd.BData[site][i].MulEq(x1)
}
} else {
for i := 0; i < numstates; i++ {
x2.SetFloat64(0.0)
for j := 0; j < numstates; j++ {
tempSup.SetMantExp(c.BData[site][j].GetMant()*P.At(i, j), c.BData[site][j].GetExp())
x2.AddEq(tempSup)
}
nd.BData[site][i].MulEq(x2)
}
}
}
}
// CalcLikeNodeGamma calculate the likelihood of a node
func CalcLikeNodeGamma(nd *Node, model *DiscreteModel, site int, gammav float64) {
numstates := model.NumStates
for i := 0; i < numstates; i++ {
nd.Data[site][i] = 1.
}
x1 := 0.0
x2 := 0.0
for _, c := range nd.Chs {
P := model.GetPMap(c.Len * gammav) //the only gamma bit, arg
if len(c.Chs) == 0 {
for i := 0; i < numstates; i++ {
x1 = 0.0
for j := 0; j < numstates; j++ {
x1 += P.At(i, j) * c.Data[site][j]
}
nd.Data[site][i] *= x1
}
} else {
for i := 0; i < numstates; i++ {
x2 = 0.0
for j := 0; j < numstates; j++ {
x2 += P.At(i, j) * c.Data[site][j]
}
nd.Data[site][i] *= x2
}
}
}
}
/*
* calculate the conditionals for ancestral calc or branch lengths
toward tip
tpcond X
| | rvcond
| ^
| |
v |
| | rvtpcond
rtcond x
toward root
*/
// TPconditionals regular tip conditionals
func TPconditionals(x *DiscreteModel, node *Node, patternval []float64) {
numstates := x.NumStates
if len(node.Chs) > 0 {
for s := range patternval {
for j := 0; j < numstates; j++ {
node.TpConds[s][j] = 1.
for _, i := range node.Chs {
node.TpConds[s][j] *= i.RtConds[s][j]
}
}
}
}
}
// RTconditionals tipconds calculated to the rt (including BL)
func RTconditionals(x *DiscreteModel, node *Node, patternval []float64) {
numstates := x.NumStates
p := x.GetPCalc(node.Len)
for s := range patternval {
for j := 0; j < numstates; j++ {
templike := 0.0
for k := 0; k < numstates; k++ {
templike += p.At(j, k) * node.TpConds[s][k]
}
node.RtConds[s][j] = templike
}
}
}
// RVconditionals take par RvTpConds and put get bl
func RVconditionals(x *DiscreteModel, node *Node, patternval []float64) {
numstates := x.NumStates
p := x.GetPCalc(node.Par.Len)
for s := range patternval {
for j := 0; j < numstates; j++ {
node.Par.RvTpConds[s][j] = 0.0
for k := 0; k < numstates; k++ {
node.Par.RvTpConds[s][j] += p.At(j, k) * node.Par.RvConds[s][k]
}
}
}
}
// RVTPconditionals ...
func RVTPconditionals(x *DiscreteModel, node *Node, patternval []float64) {
numstates := x.NumStates
for s := range patternval {
for j := 0; j < numstates; j++ {
node.RvConds[s][j] = node.Par.RvTpConds[s][j]
}
for _, oc := range node.Par.Chs {
if node == oc {
continue
}
for j := 0; j < numstates; j++ {
node.RvConds[s][j] *= oc.RtConds[s][j]
}
}
}
}
// CalcLikeFrontBack ...
func CalcLikeFrontBack(x *DiscreteModel, tree *Tree, patternval []float64) {
numstates := x.NumStates
for _, n := range tree.Post {
if len(n.Chs) != 0 {
n.TpConds = make([][]float64, len(patternval))
}
n.RvTpConds = make([][]float64, len(patternval))
n.RvConds = make([][]float64, len(patternval))
n.RtConds = make([][]float64, len(patternval))
for i := 0; i < len(patternval); i++ {
if len(n.Chs) != 0 {
n.TpConds[i] = make([]float64, numstates)
for j := 0; j < numstates; j++ {
n.TpConds[i][j] = 1.0
}
}
n.RvTpConds[i] = make([]float64, numstates)
n.RvConds[i] = make([]float64, numstates)
n.RtConds[i] = make([]float64, numstates)
for j := 0; j < numstates; j++ {
n.RvTpConds[i][j] = 1.0
n.RvConds[i][j] = 1.0
n.RtConds[i][j] = 1.0
}
}
}
//loglike := 0.
for _, c := range tree.Post {
//calculate the tip conditionals
TPconditionals(x, c, patternval)
//take the tip cond to the rt
RTconditionals(x, c, patternval) // calculate from tpcond to rtcond
/*if c == tree.Rt { // turn on if you want likelihoods
for s := range patternval {
tempretlike := 0.
for i := 0; i < 4; i++ {
tempretlike += (c.TpConds[s][i] * x.BF[i])
}
//fmt.Println("site", s, "log(L):", math.Log(tempretlike), "like:", tempretlike, "pattern:", patternval[s])
//loglike -= math.Log(math.Pow(tempretlike, patternval[s]))
}
}*/
}
//fmt.Println(loglike)
// prepare the rvcond
for _, c := range tree.Pre {
if c != tree.Rt { //need to set the root at 1.0s
RVconditionals(x, c, patternval)
RVTPconditionals(x, c, patternval)
}
}
}
// CalcAncStates for each node based on the calculations above
func CalcAncStates(x *DiscreteModel, tree *Tree, patternval []float64) (retstates map[*Node][][]float64) {
numstates := x.NumStates
CalcLikeFrontBack(x, tree, patternval)