Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 402 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 402 Bytes

De Bruijn Graph library

Compilation

	mkdir -p build && cd build
	cmake .. && make

Tests

  • Run all tests
	mkdir -p build && cd build
	cmake -DCMAKE_BUILD_TYPE=DEBUG .. && make && ./tests/dbglib-tests
  • Run a subset of tests
	mkdir -p build && cd build
	cmake -DCMAKE_BUILD_TYPE=DEBUG .. && make && ./tests/dbglib-tests --gtest_filter="regexp test names"