pycoalescence 1.2.9.post3

Creator: bigcodingguy24

Last updated:

Add to Cart

Description:

pycoalescence 1.2.9.post3

A package for coalescence-based spatially explicit neutral ecology simulations


Introduction
pycoalescence is a Python package for spatially explicit coalescence neutral simulations. pycoalescence provides a
pythonic interface for setting up, running and analysing spatially explicit neutral simulations. Simulations themselves
are performed in C++ using necsim for
excellent performance, whilst the Python interface provides a simple solution for setting up and analysing simulations.
For full documentation please see here.
For R users, there is a sister package with (mostly) equivalent functionality, which can be found here.


Installation
Usage of conda is recommended to aid handling installation of dependencies.
Installation is available through pip, conda or a manual installation. For full installation instructions, see
here.
Currently, pip is supported on Mac OS X and Linux and conda is supported on Mac OS X, Linux and Windows.
Using pip, make sure all the prerequisites are installed and run pip install pycoalescence.
If you cannot install via pip, download the tar ball and run python setup.py install. The package can also be
installed locally, (i.e not to the virtual or system environment) using python installer.py in the module directory.
Either method requires all dependencies have been installed. By default, .o files are compiled to lib/obj and the .so
or .dylib file is compiled to the necsim directory.
Make sure compilation is performed under the same Python version simulations will be performed in.


Requirements

Essential

Python version 2 >= 2.7.9 or 3 >= 3.6.1 (although earlier versions may work)
C++ compiler (such as GNU g++) with C++14 support.
The SQLite library available here (comes included with Python). Requires
both C++ and Python installations.
The Boost library for C++ available here.
Numerical Python (numpy) package (pip install numpy).
The gdal library for both Python and C++ (available here) including development options.
Both the Python package and C++ binaries are required; installation differs between systems, so view the gdal
documentation for more help installing gdal properly.
The proj library for converting between coordinate systems.



Recommended

Scipy package for generating fragmented landscapes
(pip install scipy).
Matplotlib package for plotting fragmented landscapes
(pip install matplotlib).



Optional

For work involving large csv files, the fast-cpp-csv-parser by Ben Strasser, available
here can be used. This provides much faster csv read and
write capabilities and is probably essential for larger-scale simulations, but not necessary if your simulations are
small or you are intending to use .tif files (the recommended method). The folder
fast-cpp-csv-parser/ should be in the same directory as your necsim C++ header files (the lib/necsim directory)
and requires manual installation.


Note
fast-cpp-csv-parser is no longer tested with updated versions of that package, but should still be functional.




Basic Usage
The Simulation class contains most of the operations required for
setting up a coalescence simulation. The important set up functions are:

set_simulation_parameters() sets a variety of key simulation
variables, including the seed, output directory, dispersal parameters
and speciation rate.
set_map() is used to specify a map file to use. More complex map
file set-ups can be provided using set_map_files() can also be
used to customise parameters, instead of detecting from the provided
tif files.
set_speciation_rates() takes a list of speciation rates to apply
at the end of the simulation. This is optional.
run() checks and starts the simulation, writing to the output
database upon successful completion. This stage can take an extremely
long time (up to tens of hours) depending on the size of the
simulation and the dispersal variables. Upon completion, an SQL file
will have been created containing the coalescence tree.

The CoalescenceTree class also contains some basic analysis abilities,
such as applying additional speciation rates post-simulation, or
calculating species abundances for fragments within the main simulation.
The basic procedure for this procedure is

set_database() to provide the path to the completed simulation
database
set_speciation_parameters() which takes as arguments

list of speciation rates to apply
T/F of recording full spatial data
either a csv file containing fragment data, or T/F for whether
fragments should be calculated from squares of continuous habitat.
[optional] a sample file to specify certain cells to sample from
[optional] a config file containing the temporal sampling points
desired.


apply() performs the analysis. This can be extremely RAM and
time-intensive for large simulations. The calculations will be stored
in extra tables within the same SQL file as originally specified.
get_species_richness() or other equivalent functions to obtain the
required metrics of biodiversity.



Contacts
Author: Samuel Thompson
Contact: samuel.thompson14@imperial.ac.uk - thompsonsed@gmail.com
Institution: Imperial College London and National University of
Singapore
This project is released under MIT licence. See file LICENSE.txt or
go to here for full license
details.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.