swh:1:snp:76adc8cf123d92909f09e46db9ddfcbecf4cd1aa
Tip revision: 0135d929301d24c464d843573e4ea56cd0f3e139 authored by Johnathan Wong on 22 April 2021, 00:47:28 UTC
ntcard.cpp: update low kmer sample check to evaluate entire expression
ntcard.cpp: update low kmer sample check to evaluate entire expression
Tip revision: 0135d92
Uncompress.h
#ifndef UNCOMPRESS_H
#define UNCOMPRESS_H 1
bool uncompress_init();
namespace {
const bool uncompressInitialized = uncompress_init();
bool getUncompressInitialized() __attribute__((unused));
bool getUncompressInitialized() {
return uncompressInitialized;
}
}
#endif