A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/bpp/bpp below:

bpp/bpp: Bayesian analysis of genomic sequence data under the multispecies coalescent model

The aim of this project is to implement a versatile high-performance version of the BPP software. It should have the following properties:

BPP is a Bayesian Markov chain Monte Carlo (MCMC) program for analyzing sequence alignments from multiple loci and multiple closely-related species under the multispecies coalescent (MSC) model. BPP takes into account episodic and continuous gene flow through its implementation of the multispecies coalescent with introgression (MSC-I) model for episodic events, and the multispecies coalescent with migration (MSC-M) model for continuous interactions.

BPP currently implements four methods:

Further functionalities:

For more information on usage please see the BPP manual, the BPP Documentation Project and/or the wiki documentation.

Binary distribution Starting with version 4.1.3, binary distribution files containing pre-compiled binaries will be available as part of each release. The included executables are statically compiled whenever possible such that no library dependencies are necessary.

Binary distributions are provided for x86-64 systems running GNU/Linux, macOS (version 10.13 or higher) and Windows (64-bit, version 7 or higher).

Download the appropriate executable for your system using the following commands if you are using a Linux x86_64 system:

wget https://github.com/bpp/bpp/releases/download/v4.8.4/bpp-4.8.4-linux-x86_64.tar.gz
tar zxvf bpp-4.8.4-linux-x86_64.tar.gz

Or these commands if you are using a Linux ppc64le system:

wget https://github.com/bpp/bpp/releases/download/v4.8.4/bpp-4.8.4-linux-ppc64le.tar.gz
tar zxvf bpp-4.8.4-linux-ppc64le.tar.gz

Or these commands if you are using a Linux aarch64 (arm64) system:

wget https://github.com/bpp/bpp/releases/download/v4.8.4/bpp-4.8.4-linux-aarch64.tar.gz
tar zxvf bpp-4.8.4-linux-aarch64.tar.gz

Or these commands if you are using a Mac with an Apple Silicon CPU (e.g. M1/M2/M3):

wget https://github.com/bpp/bpp/releases/download/v4.8.4/bpp-4.8.4-macos-aarch64.tar.gz
tar zxvf bpp-4.8.4-macos-aarch64.tar.gz

Or these commands if you are using a Mac with an Intel CPU:

wget https://github.com/bpp/bpp/releases/download/v4.8.4/bpp-4.8.4-macos-x86_64.tar.gz
tar zxvf bpp-4.8.4-macos-x86_64.tar.gz

Or if you are using Windows, download and extract (unzip) the contents of this file:

https://github.com/bpp/bpp/releases/download/v4.8.4/bpp-4.8.4-win-x86_64.zip

Linux and Mac: You will now have the binary distribution in a folder called bpp-4.8.4-linux-x86_64 or bpp-4.8.4-macos-x86_64. The binary file is located in the bin subfolder, i.e. bin/bpp. We recommend making a copy or a symbolic link to the binary in a folder included in your $PATH.

Windows: You will now have the binary distribution in a folder called bpp-4.8.4-win-x86_64. The bpp executable is called bpp.exe.

Compiling from source You can either download the source distribution for a particular version or clone the repository.

Source distribution To download the source distribution from a release and build the executable and documentation, use the following commands:

wget https://github.com/bpp/bpp/archive/v4.8.4.tar.gz
tar zxvf v4.8.4.tar.gz
cd bpp-4.8.4/src
make

Cloning the repo Instead of downloading the source distribution as a compressed archive, you could clone the repo and build it as shown below.

git clone https://github.com/bpp/bpp.git
cd bpp/src
make

Compiling BPP requires that your system has GCC version 4.7 or newer, as AVX and AVX-2 optimized functions are compiled even if your processor does not support them. This is fine, as BPP will automatically select the right instruction set that your processor supports at run-time. This means, you can compile on one system, and run BPP on any other compatible system.

However, if your compiler is older than 4.7, you will get errors such as:

cc1: error: unrecognized command line option "-mavx2"

or

cc1: error: unrecognized command line option "-mavx"

If your compiler is GCC 4.6.x then you can compile BPP using:

make clean
make -e DISABLE_AVX2=1

In case your compiler is older than GCC 4.6 then compile using:

make -e DISABLE_AVX2=1 DISABLE_AVX=1

You can check your compiler version with:

After creating the control file, one can run BPP as follows:

bpp --cfile [CONTROL-FILE]

If you would like to resume a checkpoint file, please run:

bpp --resume [CHECKPOINT-FILE]

If you would like to run the simulator (previously MCcoal), please run:

bpp --simulate [CONTROL-FILE]

If you would like to run the MSci network generator, please run:

bpp --msci-create [DEFS-FILE]

If you would like to only summarize the results of an analysis, please run:

bpp --summary [CONTROL-FILE]

For an example of a DEFS-FILE see the MSci generator notes

More documentation regarding control files, will be available soon on the wiki.

The most up-to-date documentation for BPP is now available through the BPP Documentation Project. The original manual bpp4DOC.pdf is found in the current BPP distribution.

A tutorial on BPP was recently published as a book chapter: A Tutorial on the Use of BPP for Species Tree Estimation and Species Delimitation

For information on the MSci model please read:

Please cite the following publication if you use BPP:

Flouri T., Jiao X., Rannala B., Yang Z. (2018) Species Tree Inference with BPP using Genomic Sequences and the Multispecies Coalescent. Molecular Biology and Evolution, 35(10):2585-2593. doi:10.1093/molbev/msy147

Please note, citing the corresponding of the four underlying methods, may also be appropriate.

When using the MSC-I model please cite:

Flouri T., Jiao X., Rannala B., Yang Z. (2020) A Bayesian Implementation of the Multispecies Coalescent Model with Introgression for Phylogenomic Analysis. Molecular Biology and Evolution, 37(4):1211-1223. doi:10.1093/molbev/msz296

When using the MSC-M model please cite:

Flouri T., Jiao X., Huang J., Rannala B., Yang Z. (2023) Efficient Bayesian inference under the multispecies coalescent with migration. Proceedings of the National Academy of Sciences, 120(44):e2310708120, 2023. doi:10.1073/pnas.2310708120

When using relaxed clocks please cite:

Flouri T., Huang J., Jiao X., Kapli P., Rannala B., Yang Z. (2022) Bayesian phylogenetic inference using relaxed-clocks and the multispecies coalescent. Molecular Biology and Evolution, 39(8), 2022. doi:10.1093/molbev/msac161

License and third party licenses

The code is currently licensed under the GNU Affero General Public License version 3.

File Description allfixed.c Summary statistics for method A00 (fixed species tree) arch.c Architecture specific code (Linux/Mac/Windows) bfdriver.c Code for creating control files for marginal likelihood calculations bpp.c Main file handling command-line parameters and executing selected methods bpp.h BPP header file including function prototypes and data structures cfile.c Functions for parsing the control file cfile_sim.c Functions for parsing the control file (simulation mode) compress.c Functions for compressing multiple sequence alignments into site patterns constraint.c Functions for placing topological constraints on species tree core_likelihood.c Core functions for evaluating the likelihood of a tree (non-vectorized) core_likelihood_avx.c Core functions for evaluating the likelihood of a tree (AVX version) core_likelihood_avx2.c Core functions for evaluating the likelihood of a tree (AVX-2 version) core_likelihood_sse.c Core functions for evaluating the likelihood of a tree (SSE-3 version) core_partials.c Core functions for computing partial likelihoods (non-vectorized) core_partials_avx.c Core functions for computing partial likelihoods (AVX version) core_partials_avx2.c Core functions for computing partial likelihoods (AVX-2 version) core_partials_sse.c Core functions for computing partial likelihoods (SSE-3 version) core_pmatrix.c Core functions for constructing the transition probability matrix debug.c Functions for debugging purposes delimit.c Species delimitation auxiliary functions and summary statistics diploid.c Functions for resolving/phasing diploid sequences dlist.c Functions for handling doubly linked-lists dump.c Functions for dumping the MCMC state into a checkpoint file gamma.c Functions for obtaining rates from a discretized Gamma distribution gtree.c Functions for setting and processing gene trees hardware.c Functions for hardware detection hash.c Hash table implementation and related functions list.c Linked list implementation and related functions load.c Functions for loading a checkpoint file locus.c Locus specific functions lswitch.c Algorithms for resolving identifiability issues associated with BDI events Makefile Makefile mapping.c Functions for handling map files maps.c Character mapping arrays for converting sequences to the internal representation method.c Function containing the MCMC loop and calls to proposals miginfo.c Functions for working with the miginfo_t structure ming2.c* Various numerical optimization functions msa.c Code for processing multiple sequence alignments msci_gen.c Functions for the MSci generator output.c Auxiliary functions for printing pmatrices (to-be-renamed) parsemap.c Functions for parsing map files phylip.c Functions for parsing phylip files prop_gamma.c Functions for proposing site rates prop_mixing.c Functions for the mixing proposal prop_rj.c Functions for the reversible-jumps MCMC proposals for species delimitation random.c Pseudo-random number generator functions revolutionary.c Experimental functions for new (r)evolutionary algorithms rtree.c Species tree export functions (to-be-renamed). simulate.c Functions for the simulation program (MCcoal) stree.c Functions for setting and processing the species tree summary11.c Functions for summarizing joint species tree inference and delimitation summary.c Species tree inference summary related functions threads.c Functions for parallelizing computation using POSIX threads treeparse.c Functions for parsing trees util.c Various common utility functions

Special thanks to:

for testing and bug reports.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4