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
|
# Biosoup

Biosoup is a c++ collection of header only data structures used for storage and logging in bioinformatics tools.
## Build
### Dependencies
- gcc 4.8+ | clang 3.5+
#### Hidden
- (biosoup_test) google/googletest 1.10.0
### CMake (3.11+)
```bash
git clone https://github.com/rvaser/biosoup && cd biosoup
cmake -B build -DCMAKE_BUILD_TYPE=Release
make -C build
```
#### Options
- `biosoup_install`: generate install target
- `biosoup_build_tests`: build unit tests
### Meson (0.60.0+)
```bash
git clone https://github.com/rvaser/biosoup && cd biosoup
meson setup build
ninja -C build
```
#### Options
- `tests`: build unit tests
## Acknowledgement
This work has been supported in part by the Croatian Science Foundation under the project Single genome and metagenome assembly (IP-2018-01-5886).
|