We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MinHash.seq_to_hashes
None
per #1695 (comment), right now MinHash.seq_to_hashes(...) returns 0 when given an invalid k-mer. This is because I asked that bad k-mers not be skipped so that the index of returned hash values lined up.
MinHash.seq_to_hashes(...)
However, 0 is a valid hash value :). So on the Python side we would prefer that None be returned, as that is detectably Not Zero.
May be being implemented in #1698, not sure.
The text was updated successfully, but these errors were encountered:
MinHash.kmers_and_hashes(...)
sourmash sig kmers
No branches or pull requests
per #1695 (comment), right now
MinHash.seq_to_hashes(...)
returns 0 when given an invalid k-mer. This is because I asked that bad k-mers not be skipped so that the index of returned hash values lined up.However, 0 is a valid hash value :). So on the Python side we would prefer that None be returned, as that is detectably Not Zero.
May be being implemented in #1698, not sure.
The text was updated successfully, but these errors were encountered: