Package: PCMBaseCpp 0.1.9

Venelin Mitov

PCMBaseCpp: Fast Likelihood Calculation for Phylogenetic Comparative Models

Provides a C++ backend for multivariate phylogenetic comparative models implemented in the R-package 'PCMBase'. Can be used in combination with 'PCMBase' to enable fast and parallel likelihood calculation. Implements the pruning likelihood calculation algorithm described in Mitov et al. (2018) <arxiv:1809.09014>. Uses the 'SPLITT' C++ library for parallel tree traversal described in Mitov and Stadler (2018) <doi:10.1111/2041-210X.13136>.

Authors:Venelin Mitov [aut, cre, cph]

PCMBaseCpp_0.1.9.tar.gz
PCMBaseCpp_0.1.9.tar.gz(r-4.5-noble)PCMBaseCpp_0.1.9.tar.gz(r-4.4-noble)
PCMBaseCpp_0.1.9.tgz(r-4.4-emscripten)PCMBaseCpp_0.1.9.tgz(r-4.3-emscripten)
PCMBaseCpp.pdf |PCMBaseCpp.html
PCMBaseCpp/json (API)
NEWS

# Install 'PCMBaseCpp' in R:
install.packages('PCMBaseCpp', repos = 'https://cloud.r-project.org')

Bug tracker:https://github.com/venelin/pcmbasecpp/issues0 issues

Uses libs:
  • openblas– Optimized BLAS
  • c++– GNU Standard C++ Library v3
Datasets:
  • benchmarkData - Data for performing a benchmark
  • benchmarkResults - Results from running a performance benchmark on a personal computer including the time for parameter transformation
  • benchmarkResultsNoTransform - Results from running a performance benchmark on a personal computer excluding the time for parameter transformation

On CRAN:

Conda:

openblascpp

2.70 score 301 downloads 6 exports 38 dependencies

Last updated 5 years agofrom:51842d78ec. Checks:1 OK, 2 NOTE. Indexed: no.

TargetResultLatest binary
Doc / VignettesOKMar 09 2025
R-4.5-linux-x86_64NOTEMar 09 2025
R-4.4-linux-x86_64NOTEMar 09 2025

Exports:BenchmarkRvsCppMiniBenchmarkRvsCppPCMBaseCppIsADevReleasePCMInfoCppPCMParamGetFullVectorPCMTreePreorderCpp

Dependencies:abindapeclicolorspacedata.tabledigestexpmfansifarverggplot2gluegtableisobandlabelinglatticelifecyclemagrittrMASSMatrixmgcvmunsellmvtnormnlmePCMBasepillarpkgconfigR6RColorBrewerRcppRcppArmadillorlangscalestibbleutf8vctrsviridisLitewithrxtable

Getting started with the PCMBaseCpp R-package

Rendered fromPCMBaseCpp.Rmdusingknitr::rmarkdownon Mar 09 2025.

Last update: 2019-11-21
Started: 2019-11-21

Citation

To cite PCMBase in publications use one of the following articles:

Venelin Mitov, Tanja Stadler (2018). Parallel Likelihood Calculation for Phylogenetic Comparative Models: the SPLITT C++ Library Methods in Ecology and Evolution URL https://doi.org/10.1111/2041-210X.13136

Venelin Mitov, Krzysztof Bartoszek, Georgios Asimomitis, Tanja Stadler (2019). Fast likelihood calculation for multivariate Gaussian phylogenetic models with shifts Theor. Popul. Biol. URL https://doi.org/10.1016/j.tpb.2019.11.005

Venelin Mitov, Krzysztof Bartoszek, Tanja Stadler (2019). Automatic generation of evolutionary hypotheses using mixed Gaussian phylogenetic models PNAS URL https://doi.org/10.1073/pnas.1813823116

Corresponding BibTeX entries:

  @Article{,
    title = {Parallel Likelihood Calculation for Phylogenetic
      Comparative Models: the SPLITT C++ Library},
    author = {Venelin Mitov and Tanja Stadler},
    journal = {Methods Ecol Evol.},
    year = {2019},
    volume = {00},
    pages = {1–14},
    url = {https://doi.org/10.1111/2041-210X.13136},
  }
  @Article{,
    title = {Fast likelihood calculation for multivariate Gaussian
      phylogenetic models with shifts},
    author = {Venelin Mitov and Krzysztof Bartoszek and Georgios
      Asimomitis and Tanja Stadler},
    journal = {Theor. Popul. Biol.},
    year = {2019},
    url = {https://doi.org/10.1016/j.tpb.2019.11.005},
  }
  @Article{,
    title = {Automatic generation of evolutionary hypotheses using
      mixed Gaussian phylogenetic models},
    author = {Venelin Mitov and Krzysztof Bartoszek and Tanja Stadler},
    journal = {Proceedings of the National Academy of Sciences of the
      United States of America},
    year = {2019},
    month = {aug},
    volume = {35},
    pages = {201813823},
    url = {https://doi.org/10.1073/pnas.1813823116},
  }

Readme and manuals

PCMBaseCpp

This is a fast C++ backend for the PCMBase R-package.

Installation

The package needs a C++ 11 compiler and Rcpp to be installed in you R-environment. Once this is done, you can install the most recent version of the package from github:

devtools::install_github("venelin/PCMBaseCpp")

If you experience problems installing the package from github, you may try installing a possibly older version from CRAN:

install.packages("PCMBaseCpp")

Once the package is installed, use the function BenchmarkRvsCpp to evaluate the gain in speed of the likelihood calculation on your machine, relative to the R implementation:

library(PCMBaseCpp)
library(data.table)
options(digits = 4)

# Depending on your use case, you can change the number of traits, as well as the 
# other arguments:
benchRes <- BenchmarkRvsCpp(ks = 2, includeParallelMode = FALSE, verbose = TRUE)
# Example output:
# Performing benchmark for k:  2 ; optionSet:  serial / 1D-multiv. ...
#     k  modelType     N  R mode     logLik  logLikCpp  timeR timeCpp
#  1: 2 MGPM (A-F)    10  2   11 -7.416e+02 -7.416e+02  0.010  0.0007
#  2: 2 MGPM (A-F)   100  4   11 -4.294e+03 -4.294e+03  0.107  0.0016
#  3: 2 MGPM (A-F)  1000 11   11 -1.700e+05 -1.700e+05  1.221  0.0095
#  4: 2 MGPM (A-F) 10000 11   11 -1.210e+06 -1.210e+06 12.443  0.0795
#  5: 2     BM (B)    10  2   11 -4.451e+03 -4.451e+03  0.010  0.0003
#  6: 2     BM (B)   100  4   11 -8.427e+03 -8.427e+03  0.082  0.0008
#  7: 2     BM (B)  1000 11   11 -1.830e+04 -1.830e+04  0.847  0.0064
#  8: 2     BM (B) 10000 11   11 -6.574e+05 -6.574e+05  8.414  0.0663
#  9: 2     OU (E)    10  2   11 -1.126e+04 -1.126e+04  0.016  0.0006
# 10: 2     OU (E)   100  4   11 -8.486e+05 -8.486e+05  0.147  0.0015
# 11: 2     OU (E)  1000 11   11 -1.234e+06 -1.234e+06  1.505  0.0096
# 12: 2     OU (E) 10000 11   11 -1.058e+07 -1.058e+07 15.062  0.0854

For further examples, read the Getting started guide and the reference available on the package homepage.

Citing PCMBase

To give credit to the PCMBase package in a publication, please cite the following articles:

Mitov, V., & Stadler, T. (2018). Parallel likelihood calculation for phylogenetic comparative models: The SPLITT C++ library. Methods in Ecology and Evolution, 2041–210X.13136. http://doi.org/10.1111/2041-210X.13136

Mitov, V., Bartoszek, K., Asimomitis, G., & Stadler, T. (2019). Fast likelihood calculation for multivariate Gaussian phylogenetic models with shifts. Theor. Popul. Biol. https://doi.org/10.1016/j.tpb.2019.11.005

Used 3rd party libraries

The PCMBaseCpp R-package uses the following R-packages and C++ libraries:

  • For tree processing in C++: The SPLITT library (Mitov and Stadler 2018);
  • For data processing in R: data.table v1.12.8 (Dowle and Srinivasan 2019);
  • For algebraic manipulation: The Armadillo C++ template library (Sanderson and Curtin 2016) and its port to R RcppArmadillo v0.9.700.2.0 (Eddelbuettel et al. 2019);
  • For unit-testing: testthat v2.1.1 (Wickham 2019), covr v3.2.1 (Hester 2018);
  • For documentation and web-site generation: roxygen2 v6.1.1 (Wickham, Danenberg, and Eugster 2018), pkgdown v1.3.0 (Wickham and Hesselberth 2018);

Licence and copyright

Copyright 2016-2020 Venelin Mitov

Source code to PCMBaseCpp is made available under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. PCMBaseCpp 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 General Public License for more details.

References

Dowle, Matt, and Arun Srinivasan. 2019. Data.table: Extension of ‘Data.frame‘. https://CRAN.R-project.org/package=data.table.

Eddelbuettel, Dirk, Romain Francois, Doug Bates, and Binxiang Ni. 2019. RcppArmadillo: ’Rcpp’ Integration for the ’Armadillo’ Templated Linear Algebra Library. https://CRAN.R-project.org/package=RcppArmadillo.

Hester, Jim. 2018. Covr: Test Coverage for Packages. https://CRAN.R-project.org/package=covr.

Mitov, Venelin, and Tanja Stadler. 2018. “Parallel likelihood calculation for phylogenetic comparative models: The SPLITT C++ library.” Methods in Ecology and Evolution, December, 2041–210X.13136.

Sanderson, Conrad, and Ryan Curtin. 2016. “Armadillo: a template-based C++ library for linear algebra.” Journal of Open Source Software 1 (2).

Wickham, Hadley. 2019. Testthat: Unit Testing for R. https://CRAN.R-project.org/package=testthat.

Wickham, Hadley, Peter Danenberg, and Manuel Eugster. 2018. Roxygen2: In-Line Documentation for R. https://CRAN.R-project.org/package=roxygen2.

Wickham, Hadley, and Jay Hesselberth. 2018. Pkgdown: Make Static Html Documentation for a Package. https://CRAN.R-project.org/package=pkgdown.

Help Manual

Help pageTopics
Data for performing a benchmarkbenchmarkData
Results from running a performance benchmark on a personal computer including the time for parameter transformationbenchmarkResults
Results from running a performance benchmark on a personal computer excluding the time for parameter transformationbenchmarkResultsNoTransform
A log-likelihood calculation time comparison for different numbers of traits and option-setsBenchmarkRvsCpp
Evaluate the likelihood calculation times for example trees and dataMiniBenchmarkRvsCpp
Converts the logical matrix pc into a list of vectors denoting the (0-based) TRUE-indices in each columnPCListInt
Check if the PCMBaseCpp version correpsonds to a dev releasePCMBaseCppIsADevRelease
A S3 generic for creating C++ backend objects given a model, data and a tree.PCMInfoCpp
Get a vector with all model parameters unrolledPCMParamGetFullVector
Fast preorder of the edges in a treePCMTreePreorderCpp