47//static const uint32 SAMPLED_KMERS_FILTER_K = 9; // optimal number of hashes for a Bloom filter with false probability rate of 0.01
48//static const uint32 TRUSTED_KMERS_FILTER_K = 11; // optimal number of hashes for a Bloom filter with false probability rate of 0.0005
49//static const uint32 SAMPLED_KMERS_FILTER_K = 7; // optimal number of hashes for a Bloom filter with false probability rate of 0.01
50//static const uint32 TRUSTED_KMERS_FILTER_K = 11; // optimal number of hashes for a Bloom filter with false probability rate of 0.0005
51staticconstuint32 SAMPLED_KMERS_FILTER_K = 5; // this parameter should theoretically achieve a worse false probability rate than 0.01, yet in practice it does better
52staticconstuint32 TRUSTED_KMERS_FILTER_K = 8; // this parameter should theoretically achieve a worse false probability rate than 0.0005, yet in practice it does better