This documentation is still a work in progress. Among other things, API reference is not complete yet.
Moonshine is a Julia framework for coalescent modelling oriented towards ancestral recombination graph (ARG) inference. It provides the AbstractGenealogy type which leverages Graph.jl for convenient implementation of graph-theoretical phylogenetic models.
If it is your first visit, chances are you are looking for the Quick Start page.
Reference
Moonshine is the subject of the following open access publication:
If you use Moonshine in your work, please cite this article. References in standard formats are provided with the HTML version of the paper or on the GitHub page of the package (CITATION file).
Inference
Out of the box, types representing coalescent trees and ancestral recombination graphs are provided: see Tree and Arg respectively. Efficient inference algorithms are implemented: see build!.
Package Ecology
msprime
Moonshinecan infer trees and ARG's directly fromTreeSequenceobjects. For convenience, it is also possible to generate a sample of haplotypes directly frommsprimewith a single line of Julia code. Both these functionalities are documented in typeSample's documentation.Args can be converted toTreeSequences: see Calling Moonshine From Python.
OpenMendel
Genomic data can be imported from VCF formatted files using the VCFTools package: see Working with VCF files.
Conventions
Documentation implements the following conventions:
- constructors are documented with types;
- non-exported symbols are documented and marked with –Internal–.