-
ntHash2 paper just published:
https://academic.oup.com/bioinformatics/advance-article/doi/10.1093/bioinformatics/btac564/6674501 -
The hash values produced by version 2.3.0 of ntHash differ from version 2.2.0. in The new version the computation of canonical hash value is changed to provide better uniformity:
// Version 2.3.0
canonical_hash = (forward_hash + reverse_complement_hash) % 2^64
// Version 2.2.0
canonical_hash = min(forward_hash, reverse_complement_hash)