krust
is a k-mer counter--a bioinformatics 101 tool for counting the frequency of substrings of length k
within strings of DNA data. It's written in Rust and run from the command line. It takes a fasta file of DNA sequences and will output all canonical k-mers (the double helix means each k-mer has a reverse complement) and their frequency across all records in the given fasta file.
Run krust
to count 5-mers like this:
cargo run --release 5 your/local/path/to/fasta_data.fa > output.tsv
or, searching for 21-mers:
cargo run --release 21 your/local/path/to/fasta_data.fa > output.tsv
krust
prints to stdout
, writing, on alternate lines:
>{frequency}
{canonical k-mer}
>{frequency}
{canonical k-mer}
...