项目作者: alexpreynolds

项目描述 :
Count canonical kmers with Emil Ernerfeldt's emilib::HashMap
高级语言: C++
项目地址: git://github.com/alexpreynolds/kmer-counter-emilib.git
创建时间: 2018-11-04T13:02:26Z
项目社区:https://github.com/alexpreynolds/kmer-counter-emilib

开源协议:

下载


kmer-counter-emilib

The kfs program reads in multiline FASTA records, counts canonical kmers using Emil Ernerfeldt’s emilib::HashMap hash table, and measures time taken to read in and process records. A discussion about performance characteristics compared with the C++ STL std::unordered_map is available from the author.

Usage

Compilation

  1. $ make kfs

Performance

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

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