Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 444 Bytes

File metadata and controls

19 lines (15 loc) · 444 Bytes

rust-mop

This project is dedicated to practice Rust programming. It will mostly focus on problems related to sequence processing, e.g., Burrows-Wheeler Transform, FM-index, De Bruijn graph, etc.

To build:

cargo build

To run all the unit tests:

cargo test

To run a specific unit test:

cargo test <TESTNAME>