-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
113 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,5 +15,4 @@ | |
^docs$ | ||
^data-raw$ | ||
^README\.md$ | ||
^NEWS\.md$ | ||
^cran-comments\.md$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
# PhylogeneticEM 1.0.0.900 | ||
# PhylogeneticEM 1.0.1 | ||
* Minor Changes: | ||
* Impose a maximum value for alpha in find_grid_alpha to respect machine max double. | ||
* New Features | ||
* added argument `label_font` to `plot` function to control the label font. | ||
* added argument `axis_las` to `plot` function to control the axis las. | ||
* Bug fixes: | ||
* Plotting missing values correctly in plot.PhyloEM. | ||
* Bug fixes in plotting PhyloEM object when p = 1. | ||
* When p=1 and nbr_alpha is not missing, do not switch to estimated mode for alpha. | ||
* Technical: | ||
* registration of c++ code to comply with R 3.4 new standards. | ||
|
||
# PhylogeneticEM 1.0.0 | ||
Initial Release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#include <R.h> | ||
#include <Rinternals.h> | ||
#include <stdlib.h> // for NULL | ||
#include <R_ext/Rdynload.h> | ||
|
||
/* FIXME: | ||
Check these declarations against the C/Fortran source code. | ||
*/ | ||
|
||
/* .Call calls */ | ||
extern SEXP PhylogeneticEM_log_likelihood_BM(SEXP, SEXP, SEXP, SEXP, SEXP, SEXP); | ||
extern SEXP PhylogeneticEM_log_likelihood_OU(SEXP, SEXP, SEXP, SEXP, SEXP, SEXP, SEXP); | ||
extern SEXP PhylogeneticEM_upward_downward_BM(SEXP, SEXP, SEXP, SEXP, SEXP, SEXP); | ||
extern SEXP PhylogeneticEM_upward_downward_OU(SEXP, SEXP, SEXP, SEXP, SEXP, SEXP, SEXP); | ||
|
||
static const R_CallMethodDef CallEntries[] = { | ||
{"PhylogeneticEM_log_likelihood_BM", (DL_FUNC) &PhylogeneticEM_log_likelihood_BM, 6}, | ||
{"PhylogeneticEM_log_likelihood_OU", (DL_FUNC) &PhylogeneticEM_log_likelihood_OU, 7}, | ||
{"PhylogeneticEM_upward_downward_BM", (DL_FUNC) &PhylogeneticEM_upward_downward_BM, 6}, | ||
{"PhylogeneticEM_upward_downward_OU", (DL_FUNC) &PhylogeneticEM_upward_downward_OU, 7}, | ||
{NULL, NULL, 0} | ||
}; | ||
|
||
void R_init_PhylogeneticEM(DllInfo *dll) | ||
{ | ||
R_registerRoutines(dll, NULL, CallEntries, NULL, NULL); | ||
R_useDynamicSymbols(dll, FALSE); | ||
} |