An open API service indexing awesome lists of open source software.

https://github.com/alexpreynolds/kmer-counter-unordmap

Count canonical kmers with STL unordered_map
https://github.com/alexpreynolds/kmer-counter-unordmap

bioinformatics cpp hash-tables kmer kmer-counting kmer-frequency-count

Last synced: about 1 month ago
JSON representation

Count canonical kmers with STL unordered_map

Awesome Lists containing this project

README

        

# kmer-counter-unordmap

The `kfs` program reads in multiline FASTA records, counts canonical kmers using the STL `unordered_map`, and measures time taken to read in and process records.

## Usage

### Compilation

```
$ make kfs
```

### Performance

Specify variables `K` (integer) and `FASTA` (path to FASTA sequences).

```
$ /usr/bin/time -l ./kfs -k ${K} -i ${FASTA}
...
```