pmelsted / BFCounter

GNU General Public License v3.0
24 stars 9 forks source link

BFCounter is a memory efficient program for counting k-mers from sequencing files.

Installation

Just run make to compile.

% make

The default maximum k-mer size supported is 31 (8 bytes of memory per k-mer), to modify this either replace MAX_KMER_SIZE in Makefile with an appropriate number or directly to make with

% make MAX_KMER_SIZE=64

In this case it the maximum k-mer size allowed is 63, and each k-mer will use 16 bytes of memory.

Running

To run the program use

% ./BFCounter

To list available commands

% ./BFCounter count % ./BFCounter dump

will provide more complete help.

Notes

License