This repository serves as a workspace for learning Rust.
It was originally created to follow along with UW's Genome 540 Introduction to Computational Molecular Biology: Genome and Protein Sequence Analysis course, but has recently been co-opted for Advent of Code.
To run a specific homework assignment, run:
cargo run -- --hw=0
For an advent of code day, run:
cargo run -- --aoc=1
Alternatively, you can build the project and run the binary directly:
cargo build
./target/debug/bio-rs --hw=0
If you want to run an optimized build, use the --release
flag and run from ./target/release/bio-rs
.
To add a new package, you can run:
cargo add <<package-name>>