1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
% BAli-Phy architecture and code layout
## BAli-Phy architecture
In order to add functionality to BAli-Phy, it is important to understand the BAli-Phy architecture. This architecture is divided into several levels.

In BAli-Phy, distributions, functions, and models are all implemented as functions. To add functionality to the standard BAli-Phy interface, you need to add a Haskell function (green), and a binding (blue) that makes that function visible. BAli-Phy does not use a standard Haskell compiler, but instead implements its own Haskell interpreter that has special functionality.
If you are using the generic graphical modeling language, you can use the Haskell function directly, and do not need to add a binding.
In some cases you might want to implement your function in C++ (yellow) and then call it from Haskell.
## Source Code
These directories contain code that affects how `bali-phy` runs:

[modules/](https://github.com/bredelings/BAli-Phy/blob/master/modules)
: Haskell code
[src/](https://github.com/bredelings/BAli-Phy/blob/master/src)
: C++17 code
[bindings/](https://github.com/bredelings/BAli-Phy/blob/master/bindings)
: JSON definitions of functions for the command-line interface
## Documentation and examples
[help/](https://github.com/bredelings/BAli-Phy/blob/master/help)
: Help files
[doc/](https://github.com/bredelings/BAli-Phy/blob/master/doc/)
: Documentation
[doc/man/](https://github.com/bredelings/BAli-Phy/blob/master/doc/man/)
: Markdown files for generating UNIX manual pages
[examples/sequences/](https://github.com/bredelings/BAli-Phy/blob/master/examples/sequences/)
: Example sequences
[examples/models/](https://github.com/bredelings/BAli-Phy/blob/master/examples/models/)
: Example files for running graphical models.
|