-
Notifications
You must be signed in to change notification settings - Fork 38
/
NEWS
1464 lines (670 loc) · 29.9 KB
/
NEWS
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
CHANGES in PHANGORN VERSION 2.12.1.1
OTHER CHANGES
o improvements to write.ancestral
o bab got a progress bar, as it might runs for a long time (suggestion by
Bárbara Bitarello).
CHANGES in PHANGORN VERSION 2.12.0
NEW FEATURES
o new function supgma, performing serial sampled UPGMA
(Drummond, Rodrigo 2000)
o new function gap_as_state, treating gaps as a state.
o new function keep_as_tip allows to prune a tree and keep nodes as a tip
(suggested by Hedvig Skirgård)
o nnls now can estimate trees with calibrations and tip dated trees
o the functions Descendants, Ancestors, Siblings, mrca.phy now also accept a
character vector for the node argument and not only integers.
o Ancestral state reconstruction was rewritten.
The output of ancestral.pars and ancestral.pars could return different
objects. anc_pml and anc_pars are now prefered over ancestral.pml and
ańcestral.pars. Output is now an object of class ancestral, which contains
tree with node labels, the original alignment and reconstructions.
The should be considered experimental as the internals of this function
might change in future.
Ancestral states of constant sites are now always this state.
o Joint reconstruction for ML is now available.
o Improvements to several plot functions to get nicer plots out of the box.
Nicer defaults for plot.pml, mainly for rooted trees.
o plotAnc got an argument scheme allowing to use different color schemes,
especially for amino acid models shared with image.AAbin and assumes an
ancestral object.
o plot.networx gets two additional arguments, direction as in plot.phylo and
angle to rotate the network.
o new function composition_test, indicating possible problems with base /
state composition, similar to the test in iqtree.
OTHER CHANGES
o pml.control got an argument statefreq, which controls if "empirical"
or (ML) "estimated" state/base frequencies are used/computed. The change
of the default to "empirical" speeds up functions modelTest and
pml_bb/optim.pml. However estimates will differ to previous versions,
which were implicitly using "estimated".
o some improvements to pmlPart.
o the sankoff algorithm has been rewritten.
BUG FIXES
o pml_bb roots the tree, if method is either ultrametric or tipdated. Fixes
problem when modelTest object was supplied.
o nnls.tree now checks if the tree has singletons.
CHANGES in PHANGORN VERSION 2.11.0
OTHER CHANGES
o Vignettes have been reorganised, rewritten and vastly improved thanks to
Iris.
o small improvements to plot.codonTest, plot.networx
o rell bootstrap values are now computed by default in optim.pml / pml_bb
BUG FIXES
o fixed bug which caused warning on CRAN
o densiTree does not draw an empty plot any more
o Replace rgl.texts with texts3d, pull request by Duncan Murdoch (thanks)
o changes in read.nexus.splits and read.nexus.networx to work with the
moving targets SplitsTree6/SplitsTreeCE
CHANGES in PHANGORN VERSION 2.10.0
NEW FEATURES
o several improvements to simplify workflow and flatten learning curve.
o new function pml_bb, combining generation of starting trees, pml and
optim.pml and allowing modelTest object as input.
o tipdated phylogenies estimation (was with limitations possible before,
but not documented).
o Mkv model, edge length and rearrangements only work for ultrametric and
tiplabeled phylogenies so far.
o Added experimental version of RELL bootstrap (Minh et al. 2013 Ultrafast
Approximation for Phylogenetic Bootstrap).
o modelTest now tests several models for USER defined data.
OTHER CHANGES
o some default values of of pratchet changed
o updated, improved and reorganized several vignettes.
o function allSitePattern got an argument additional type.
CHANGES in PHANGORN VERSION 2.9.0
BUG FIXES
o modelTest did not work if no tree was supplied
NEW FEATURES
o some tidy functions: glance.phyDat, tidy.modelTest
OTHER CHANGES
o dist.ml is a lot faster for the JC69 and F81 models if there are no
ambiguous sites present.
o added a few helper function to simplifiy some workflows (e.g. modelTest)
CHANGES in PHANGORN VERSION 2.8.0
BUG FIXES
o Use USE_FC_LEN_T in the C prototypes of LAPACK functions to correspond to
code produced by gfortran >= 7. The mechanism was introduced in R 3.6.2
and is planned to make its use obligatory in R 4.2.0.
o bug in dna2codon fixed.
o codon models (codonTest) most likely did not work properly for models
other than the standard code.
NEW FEATURES
o free rate model
o Mkv model (so far only for rooted trees)
o better support for ultrametric and time trees
OTHER CHANGES
o optim.pml has internally been reorganized to be easier to maintain and
extend.
o pml.control got an additional argument tau which controls the minimal edge
length during optimisation.
o trees constructed with allCompat, maxCladeCred now have support values
stored in the node.labels
o switched from magrittr %>% to the native pipe |>
dropped dependency on magrittr
CHANGES in PHANGORN VERSION 2.7.1
BUG FIXES
o several bug fixes in parsimony code
CHANGES in PHANGORN VERSION 2.7.0
BUG FIXES
o several bug fixes, e.g. which called bootstrap.pml and pratchet to crash
OTHER CHANGES
o internal functions for handling bipartitions have been harmonized with ape
and some functions like maxCladeCred are faster
CHANGES in PHANGORN VERSION 2.6.0
NEW FEATURES
o transfer bootstrap (Lemoine et al. 2018)
o pratchet saves trees visited during search, which can be used as
(approximate) bootstrap values
CHANGES in PHANGORN VERSION 2.6.0
NEW FEATURES
o rewritten fitch algorithm to be more memory efficient, often faster
and without limitation on the number of states
o dist.hamming may handle larger datasets and can be faster
o add Laguerre quadrature as option for discrete rate classes (experimental)
o additional genetic codes for codon models.
OTHER CHANGES
o conversion between alignment formats is faster and more memory efficient,
allowing the handling of larger datasets
o changed R dependencies to 3.6.0 mainly to supply nicer palettes via
hcl.colors()
o lots of small improvements to especially for codon models
o tests are now done by tinytest, dropped dependencies on testthat, vdiffr
o all vignettes are now based on Rmarkdown
o pmlPart and pmlMix are a bit more robust
CHANGES in PHANGORN VERSION 2.5.4
NEW FEATURES
o dist.ml, dist.hamming, dist.logDet and dist.p also take DNAbin or
AAbin objects as input
BUG FIXES
o bootstrap.pml returned an error with argument optNni=T
Best practise is to always use TRUE and not T as shortcut
OTHER CHANGES
o several more unit tests
CHANGES in PHANGORN VERSION 2.5.2
NEW FEATURES
o pratchet, optim.parsimony, optim.pml all may now return trees with
multifurcations in case duplicated sequences are discovered. This may
lead to speeding up computations and improved tree topology search.
o function codonTest which adds codon models to detect positive selection
(M1a, M2a) and several options to estimate codon frequencies
(F3x4, F1x4). Can be pretty slow and still experimental.
o broom type tidy function for several objects to easier compare models
o new "equal_angle" layout for 2D-networks (now the default), gives usually
nicer layout of phylogenetic networks
o tiplabels, nodelabels, edgelabels from ape work for plot.networx if
plotted with base R
OTHER CHANGES
o several small improvements to more intuitively use pml and phyDat
objects, like subsetting phyDat objects with "[i, j]".
o several more unit tests
o two new contributors, Keren and Richel
o optim.parsimony, pratchet, pmlMix and pmlPart may return the current best
tree or object when interrupted.
o roxygen2 is used to generate NAMESPACE file
CHANGES in PHANGORN VERSION 2.4.0
NEW FEATURES
o new function add.tips
BUG FIXES
o midpoint works now for trees with only 2 tips
o densiTree, bug report by Richel Bilderbeek
o tree rearrangement in optim.pml return tree with double edge matrix
o phyDat should work now for named vectors
OTHER CHANGES
o many more unit tests
o more consistent coding style
o flashClust and seqLogo are not suggested packages any more
CHANGES in PHANGORN VERSION 2.3.0
NEW FEATURES
o new function mast to compute the maximum agreement subtree
o identify.networx to identify splits in a network
o densiTree got more attributes
o unique.dist, to filter duplicate distances
o ancestral.pml and ancestral.pars are now may return proper phyDat objects
and in for DNA may return ambiguous states
BUG FIXES
o densiTree may if the consensus tree had different ordering of labels
OTHER CHANGES
o acctran allows multiPhylo objects as input
o rNNI has been completely rewritten and is faster
CHANGES in PHANGORN VERSION 2.2.0
NEW FEATURES
o midpoint in now generic and works for multiPhylo objects
o as.bitsplits.splits to better interact with ape
BUG FIXES
o bug fix in RI and CI for ambiguous data
OTHER CHANGES
o added roxygen2 documentation, so R code is now much better documented,
reorganisation of some documentation
o many more unit tests
CHANGES in PHANGORN VERSION 2.1.0
NEW FEATURES
o new functions to compute the (approximate) SPR distance (sprdist, SPR.dist)
contributed by Leonardo de Oliveira Martins.
o super tree methods based on NNI and SPR distances
BUG FIXES
o fixed bug in KF.dist
OTHER CHANGES
o improvements to as.networx. It often now produces networks with less edges
resulting in much nicer plots
o plot.networx does take a different layout algorithm
o as.data.frame.phyDat and as.character.phyDat return amino acids
now in upper cases
o more unit tests
o improved cbind.phyDat, faster and more flexible
o phangorn now requires ape 4.0
o phangorn now imports Rcpp, but not nnls any more
CHANGES in PHANGORN VERSION 2.0.4
NEW FEATURES
o new weighted Robinson-Foulds (1979) distance wRF, suggested by Michelle Kendall
and normalized Robinson-Foulds suggested by Sereina Rutschmann
o codon model "YN98" can be called directly, improved documentation
o bootstrap.phyDat got an new argument jumble,
which randomizes input order of sequences
OTHER CHANGES
o more unit tests
CHANGES in PHANGORN VERSION 2.0.3
NEW FEATURES
o new function maxCladeCred computing the maximum clade credibility tree
from a sample of trees
o function read.nexus.networx and write.nexus.networx to import / export
phylogenetic networx to SplitsTree
o function as.AAbin.phyDat to exchange data with the new AAbin class from ape
o likelihood ratchet (Vos 2003) topology optimisation in optim.pml
o with KF.dist (Kuhner & Felsenstein) and path.dist can be used like RF.dist
BUG FIXES
o improvements to optim.pml to avoid numerical problems,
can now handle much more taxa (still experimantal)
OTHER CHANGES
o mrca.phylo can be used like mrca from ape (faster for large trees)
o individual splits can be colored in lento plots (suggested by France Thouzé)
o plot.networx now (silently) returns a networx object with some of the graphics
parameters, more plot options
o lots of small changes to make handling and identifying splits, edges in
trees and networks easier
o plotBS has a new argument frame and arguments BStrees can be empty
o new vignette IntertwiningTreesAndNetworks
CHANGES in PHANGORN VERSION 2.0.2
OTHER CHANGES
o phangorn now suggests only the Biostrings and not depends on it
o some improvements to bab (branch and bound), may be faster
CHANGES in PHANGORN VERSION 2.0.0
NEW FEATURES
o as.phyDat.MultipleAlignment to excange data with Biostrings
o dist.ml can now compute distances using a discrete gamma model
and the "F81" model.
o optim.pml got a new rearrangement argument and can now
use a stochastic rearrangements similar to Nguyen et al. (2015)
BUG FIXES
o plotBS may double counted edges when rooted trees were in the sample
OTHER CHANGES
o optim.pml uses more C code and should be more robust
o more unit tests
o baseFreq got additional parameter 'all' similar to base.freq in ape
o lots of little improvements in the manual and help files
o modelTest now also shows AIC weights and model="all" will test
all available models
CHANGES in PHANGORN VERSION 1.99.14
NEW FEATURES
o phyDat2alignment to exports files to seqinr
o readDist, writeDist to import / export distance matrices
o cophenetic distance function for splits and networx
o added unit tests
BUG FIXES
o as.splits.networx did not work properly for 4 taxa
(reported by Laurélène Faye)
o RF.dist returned sometimes wrong values
(reported by Andres Dajles)
o plotBS did sometimes not work if the tree had no edge lengths
o plotBS did not work propoerly if input trees were rooted
(reported by Quynh Quach)
o plot.networx ignored cex argument in "2D" plots
o Siblings ignored include.self argument if node is a vector
OTHER CHANGES
o plotBS got an additional argument p to plot only support values
greater than p
o pml and optim.pml now uses more C-code (and is a bit faster)
o defaults in modelTest changed
o discrete.gamma is now exported in the NAMESPACE
CHANGES in PHANGORN VERSION 1.99-13
OTHER CHANGES
o improved importing and conversion of data
o improved stability of pml and optim.pml
CHANGES in PHANGORN VERSION 1.99-12
NEW FEATURES
o added neighborNet algorithm (Bryant and Moulton 2004)
very experimental at the moment
BUG FIXES
o plotBS was not working correctly if bootstraped trees are in
compressed form (bug report by Tobias Müller)
OTHER CHANGES
o many splits and networx methods have been improved
and a vignette was added
o phangorn now suggests only the rgl and not depends on it
to avoid problems on different platforms (suggestion by Matt Pennell)
o new package dependencies knitr for html vignettes and nnls
CHANGES in PHANGORN VERSION 1.99-10
BUG FIXES
o reorder.networx may not work as expected
o Gamma model was not working properly in simSeq.pml
CHANGES in PHANGORN VERSION 1.99-9
BUG FIXES
o bug fixes for clang environment
o midpoint takes care of node labels
CHANGES in PHANGORN VERSION 1.99-8
NEW FEATURES
o pmlPart got an argument rooted to handle rooted trees
o simSeq is now a generic function. This simplifies the
construcion of parametric bootstrap test
o SOWH.test (very experimental)
o as.networx and plot.networx improved considerably
(often generate networks less edges)
and planar graphs are now plotted nicely
BUG FIXES
o fixed some bugs in ancestral.pars
o amino acid model "Blosum62" was not working
OTHER CHANGES
o improvements to read.nexus.splits, write.nexus.splits to
be more consistant with SplitsTree
o splitsNetwork got an additional argument splits
o help for consensusNet, as.splits, as.networx have been reorganised
and improved
o treedist is much faster for larger trees
o several changes to keep R CMD check happy
o a development version phangorn is now available on github
https://github.com/KlausVigo/phangorn.git
CHANGES in PHANGORN VERSION 1.99-6
NEW FEATURES
o cladePar helps coloring trees
o treedist is faster for larger trees, better documentation and examples
BUG FIXES
o the plot of consensusNet shows now the proper bootstrap values
OTHER CHANGES
o phangorn does not depend only suggest rgl
(should build on OS X now)
o default rearrangement for parsimony is now "SPR"
CHANGES in PHANGORN VERSION 1.99-5
NEW FEATURES
o RF.dist works also on "multiPhylo" objects and is quite fast
o optim.pml can now handle NNI tree arrangements for rooted trees,
still experimental but useful for dating etc.
BUG FIXES
o rNNI did return sometimes trees without tip labels
o SH.test did not work for pmlCluster objects
o df for rooted rooted/ultrametric trees are correctly computed
OTHER CHANGES
o lots of internal code C-code changed
o exports of some of the internal ML function, this should speed up in
future other packages e.g. the colescentMCMC package, which use them
considerably (interface may changes in the future)
o registered C routines
CHANGES in PHANGORN VERSION 1.99-0
NEW FEATURES
o new function dist.p to estimate pairwise polymorphism
p-distances from DNA sequences
BUG FIXES
o as.data.frame.phyDat returned only site patterns and so did
write.phyDat for nexus files
o some of the recently introduced (1.7-4) amino acid models were not known
by all functions and contained NAs
OTHER CHANGES
o changed package imports and depends structure to aviod error messages,
thanks to Brian Ripley
o a lot of the internal C-code has changed
CHANGES in PHANGORN VERSION 1.7-4
NEW FEATURES
o densiTree plots are available now
o new species tree and super tree methods
o more amino acid models
BUG FIXES
o phangorn now depends on rgl instead of suggests rgl,
rgl wants to be loaded before igraph, otherwise a compiling error
on some platforms occured!
o fixed a bug that sometimes caused in pratched to crash
o fixed a bug when using negative indices in subset.phyDat
o the search heuristic SPR in optim.parsimony evaluates now more trees
and is more likely to find better ones
OTHER CHANGES
o underlying C-code for several functions has changed.
less memory reallocations and potentially time savings
hopefully I included not too many bugs
o optimising edge length changed from Jacobi to Gauss-Seidel method
and will hopefully be more robust in the long term!
o Descendants is much faster for option type="all"
o plotAnc gives user more control and produces nicer plots
CHANGES in PHANGORN VERSION 1.7-1
NEW FEATURES
o pmlPart got additional argument model
(request from Santiago Claramunt)
BUG FIXES
o pmlPart should be more robust
OTHER CHANGES
o started reorganising the code
o underlying code of several parsimony functions has changed and
these are now considerably faster
o some examples are changed to allow faster checking on CRAN
CHANGES in PHANGORN VERSION 1.6-5
NEW FEATURES
o dist.hamming handles ambigious states now as dist.ml
(request from Arne Mooers)
BUG FIXES
o phangorn links properly to ape
CHANGES in PHANGORN VERSION 1.6-3
NEW FEATURES
o optim.parsimony has a new search heuristic (SPR)
BUG FIXES
o changed package to work with igraph >= 0.6
OTHER CHANGES
o arguments of pratchet changed
CHANGES in PHANGORN VERSION 1.6-0
NEW FEATURES
o dist.ml has more options and is faster (ca. 5 times for nucleotides and 20 times for amino acids)
BUG FIXES
o plotBS did not work properly with ape version 3.0
OTHER CHANGES
o vignettes changed for a faster compilation of the package
o Ancestors allows a vector of nodes as input
o midpoint uses less memory and works for larger trees (10000 of tips)
o ancestral.pars gives better formated output
CHANGES in PHANGORN VERSION 1.5-1
OTHER CHANGES
o several examples changed for a faster compilation of the package
CHANGES in PHANGORN VERSION 1.5-0
NEW FEATURES
o codon models can be used directly
(dn/ds ratio can be computed)
o modelTest works now also for amino acids
BUG FIXES
o the code to compute RI and CI changed and should be more robust
OTHER CHANGES
o package parallel is used instead of multicore
o vignettes, examples, help improved
o ChangeLog is called NEWS
CHANGES in PHANGORN VERSION 1.4-1
NEW FEATURES
o parsimony branch-and-bould algorithms bab (so far pretty slow and memory intensive)
o more amino acid models
o function nnls.tree to compute non-negative edge weights for
a given tree and a distance matrix
BUG FIXES
o allTrees returns now an integer edge matrix,
this could have caused some problems previously
o CI and RI now take better care of ambiguous states
o dist.ml has default value for amino acids
o as.splits.multiPhylo produces more sensible bipartitions
and so lento and consensusNet produce more useful plots
(thanks to Emmanuel Paradis)
OTHER CHANGES
o several changes to the networx classes and methods
o modelTest now also returns the function calls of the estimated models,
which can be used in downstream analyses
o vignette "Trees" has a few more examples
o dist.ml is more general (base frequencies and rate matrix can be supplied)
o pml objects are more compact, thanks to the Matrix package
o xtable is now a suggested package (needed for vignettes)
CHANGES in PHANGORN VERSION 1.4-0
NEW FEATURES
o plot.network to plot split networks in 3D (requires rgl) and 2D
(still very experimantal)
o consensusNet computes consensus networks
o Lento plot allows to take multiPhylo objects as input
BUG FIXES
o CI and RI did not work with only one site pattern present