Infer demographic parameters from Ancestral Recombination Graphs (ARGs).
Not yet published to PyPi.
Requires Python 3.9 or newer, CMake, and a version of gcc or clang that supports C++17.
Recommend using a virtual environment, the below creates and activates one:
python3 -m venv MyEnv
source MyEnv/bin/activate
Clone repo, then build and install:
git clone --recursive https://github.com/aprilweilab/mrpast.git
pip install mrpast/
- Compile for the native CPU; this can drastically speed up the numerical solver, but makes the resulting package less portable.
MRPAST_ENABLE_NATIVE=1 pip install mrpast/
- Build the solver in debug mode, so GDB can be attached.
MRPAST_DEBUG=1 pip install mrpast/
There are three primary subcommands to mrpast
, and they are usually run in this order:
mrpast simulate
mrpast process
mrpast solve
These steps describe the "Simulated ARG" workflow, where no ARG inference is performed. See the documentation for workflows making use of inferred ARGs.
In order to test out a demographic model, it is recommended that you start out
by simulating that model and verifying that mrpast
can recover the model
parameters with the necessary accuracy. The simulation is done via
msprime and produces an
ancestral recombination graph (ARG) in the form of a tree-sequence file
(.trees
).
Example:
# Simulate the model 10 times, using a DNA sequence length of 100Kbp and the default recombination rate
mrpast simulate --replicates 10 --seq-len 100000 --debug-demo examples/5deme1epoch.yaml 5de1
This creates 10 tree-sequence files (ARGs) that are named like 5de1*.trees
, using the given model.
Given an ARG in tree-sequence format, either from simulation (see above) or from ARG inference, we then extract coalescence information.
Example:
# Use 10 CPU threads to process the data and produce 10 replicates (expanded models) to be solved (later).
# `--bootstrap` creates 100 bootstrap samples by default, the average of which is used for input the maximum
# likelihood function
mrpast process --jobs 10 --replicates 10 --suffix trial1 --bootstrap coalcounts examples/5deme1epoch.yaml 5de1
See mrpast process --help
for more options that control time discretization, distance between sampled trees, etc.
If we want, we could use --solve
to run the solver as soon as processing completed. Otherwise, see the next section.
If you didn't pass --solve
to mrpast process
then you can run the solver via:
mrpast solve --jobs 10 5deme1epoch.*.solve_in.*.json
The resulting output files will be listed, and the best output (best likelihood) will be listed as well. The JSON files for the output contains the parameter values, their bounds, their initialized values, and (if present) their ground truth values.
The simulated data, inferred ARG workflow is:
mrpast simulate
: Simulate your model with some ground-truth parameter values.mrpast sim2vcf -p
: Convert all .trees files with the given prefix to VCF files, and emit the corresponding .popmap.json files (which maps each sample to a population).mrpast arginfer
: Infer ARG from the VCF files, and then attach the population IDs to the ARG (.trees files) using the .popmap.jsonmrpast process
: Process and solve the inferred ARGs
The real data workflow is:
- Manually create a .popmap.json file for your VCF dataset. See the documentation for more details.
mrpast arginfer
: Infer ARG from the VCF files, and then attach the population IDs to the ARG (.trees files) using the .popmap.jsonmrpast process
: Process and solve the inferred ARGs
The demographic model is specified via YAML. See the examples directory for example models. See the documentation for details on model syntax and behavior.