BioD is a fast and memory efficient bioinformatics library written in the D programming language whose aim is to:
- Provide a platform for developing high-performance computational biology applications using the D programming language through
- Automatic parallelization of tasks where possible
- Avoiding unnecessary memory allocations
BioD leverages on D programming language features to develop high performance bioinformatics tools (e.g. sambamba). The D programming language is both a low and high-level hybrid object orientated and functional (OOP/FP) programming language with templating/generic features are far easier than that of C++.
- Programming in D is online by Ali Çehreli.
- The D Programming Language by Andrei Alexandrecu (great book, slightly out of date)
- The D Cookbook by Adam D. Ruppe
Our aim is to provide a set of D modules to manipulate and work with biological datasets. BioD provides modules for manipulating high throughput data formats by provifing fast and easy to use native BAM file reader and writer with ability to iterate a BAM file a read at a time,a nucleotide at a time (pileup) or via a sliding window.
The current default is to provide the path to the checked out repo to the D-compiler. For example,
DFLAGS = -wi -I. -IBioD -g
After installing ldc and dub
dub
dub test
It is possible to create a recent build container with GNU guix
guix environment -C guix --ad-hoc ldc dub zlib gdb --network
With gdb, switch off the handlers
handle SIGUSR1 SIGUSR2 nostop noprint
It can be passed in from the command line
gdb -iex "handle SIGUSR1 SIGUSR2 no stop noprint" biod_test
See the examples directory for examples and usage.
Simply clone the repository on github and put in a pull request.
See contributors. For support use the issue tracker or contact
BioD is free software and licensed under the MIT (expat) license.
BioD includes some files from the undeaD project in ./contrib which are published under a Boost license. This code should be phased out in time.