Skip to main content

A fast tool to calculate Hamming distances

Project description

A small and fast C++ tool to calculate pairwise distances between gene sequences given in fasta format.

DOI pypi releases python versions

Python interface

To use the Python interface, you should install it from PyPI:

python -m pip install hammingdist

Distances matrix

Then, you can e.g. use it in the following way from Python:

import hammingdist

# To see the different optional arguments available:
help(hammingdist.from_fasta)

# To import all sequences from a fasta file
data = hammingdist.from_fasta("example.fasta")

# To import only the first 100 sequences from a fasta file
data = hammingdist.from_fasta("example.fasta", n=100)

# To import all sequences and remove any duplicates
data = hammingdist.from_fasta("example.fasta", remove_duplicates=True)

# To import all sequences from a fasta file, also treating 'X' as a valid character
data = hammingdist.from_fasta("example.fasta", include_x=True)

# The distance data can be accessed point-wise, though looping over all distances might be quite inefficient
print(data[14,42])

# The data can be written to disk in csv format (default `distance` Ripser format) and retrieved:
data.dump("backup.csv")
retrieval = hammingdist.from_csv("backup.csv")

# It can also be written in lower triangular format (comma-delimited row-major, `lower-distance` Ripser format):
data.dump_lower_triangular("lt.txt")
retrieval = hammingdist.from_lower_triangular("lt.txt")

# If the `remove_duplicates` option was used, the sequence indices can also be written.
# For each input sequence, this prints the corresponding index in the output:
data.dump_sequence_indices("indices.txt")

# Finally, we can pass the data as a list of strings in Python:
data = hammingdist.from_stringlist(["ACGTACGT", "ACGTAGGT", "ATTTACGT"])

Duplicates

When from_fasta is called with the option remove_duplicates=True, duplicate sequences are removed before constructing the differences matrix.

For example given this set of three input sequences:

Index Sequence
0 ACG
1 ACG
2 TAG

The distances matrix would be a 2x2 matrix of distances between ACG and TAG:

ACG TAG
ACG 0 2
TAG 2 0

The row of the distances matrix corresponding to each index in the original sequence would be:

Index Sequence Row in distances matrix
0 ACG 0
1 ACG 0
2 TAT 1

This last column is what is written to disk by DataSet.dump_sequence_indices.

It can also be constructed (as a numpy array) without calculating the distances matrix by using hammingdist.fasta_sequence_indices

import hammingdist

sequence_indices = hammingdist.fasta_sequence_indices(fasta_file)

Maximum distance values

By default, the elements in the distances matrix returned by hammingdist.from_fasta have a maximum value of 255. You can also set a smaller maximum value using the max_distance argument. For distances larger than this hammingdist.from_fasta_large supports distances up to 65535 (but uses twice as much RAM)

Distances from reference sequence

The distance of each sequence in a fasta file from a given reference sequence can be calculated using:

import hammingdist

distances = hammingdist.fasta_reference_distances(sequence, fasta_file, include_x=True)

This function returns a numpy array that contains the distance of each sequence from the reference sequence.

You can also calculate the distance between two individual sequences:

import hammingdist

distance = hammingdist.distance("ACGTX", "AAGTX", include_x=True)

OpenMP on linux

On linux hammingdist is built with OpenMP (multithreading) support, and will automatically make use of all available CPU threads.

CUDA on linux

On linux hammingdist is also built with CUDA (Nvidia GPU) support. To use the GPU instead of the CPU, set use_gpu=True when calling from_fasta. Here we also set the maximum distance to 2:

import hammingdist

data = hammingdist.from_fasta("example.fasta", use_gpu=True, max_distance=2)

Additionally, the lower triangular matrix file can now be directly constructed from the fasta file using the GPU with the from_fasta_to_lower_triangular function. This avoids storing the entire distances matrix in memory and interleaves computation on the GPU with disk I/O on the CPU, which means it requires less RAM and runs faster.

import hammingdist

hammingdist.from_fasta_to_lower_triangular('input_fasta.txt', 'output_lower_triangular.txt', use_gpu=True, max_distance=2)

overview

Performance history

A rough measure of the impact of the different performance improvements in hammingdist:

overview

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

hammingdist-1.1.0-pp310-pypy310_pp73-win_amd64.whl (112.7 kB view hashes)

Uploaded PyPy Windows x86-64

hammingdist-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (449.3 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

hammingdist-1.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (96.2 kB view hashes)

Uploaded PyPy macOS 11.0+ ARM64

hammingdist-1.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (117.4 kB view hashes)

Uploaded PyPy macOS 10.9+ x86-64

hammingdist-1.1.0-pp39-pypy39_pp73-win_amd64.whl (112.6 kB view hashes)

Uploaded PyPy Windows x86-64

hammingdist-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (449.3 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

hammingdist-1.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (96.2 kB view hashes)

Uploaded PyPy macOS 11.0+ ARM64

hammingdist-1.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (117.4 kB view hashes)

Uploaded PyPy macOS 10.9+ x86-64

hammingdist-1.1.0-pp38-pypy38_pp73-win_amd64.whl (112.7 kB view hashes)

Uploaded PyPy Windows x86-64

hammingdist-1.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (449.2 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

hammingdist-1.1.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (96.2 kB view hashes)

Uploaded PyPy macOS 11.0+ ARM64

hammingdist-1.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (117.4 kB view hashes)

Uploaded PyPy macOS 10.9+ x86-64

hammingdist-1.1.0-pp37-pypy37_pp73-win_amd64.whl (112.4 kB view hashes)

Uploaded PyPy Windows x86-64

hammingdist-1.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (448.6 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

hammingdist-1.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (116.9 kB view hashes)

Uploaded PyPy macOS 10.9+ x86-64

hammingdist-1.1.0-cp312-cp312-win_amd64.whl (114.3 kB view hashes)

Uploaded CPython 3.12 Windows x86-64

hammingdist-1.1.0-cp312-cp312-win32.whl (97.2 kB view hashes)

Uploaded CPython 3.12 Windows x86

hammingdist-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (449.4 kB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

hammingdist-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (96.8 kB view hashes)

Uploaded CPython 3.12 macOS 11.0+ ARM64

hammingdist-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl (118.1 kB view hashes)

Uploaded CPython 3.12 macOS 10.9+ x86-64

hammingdist-1.1.0-cp311-cp311-win_amd64.whl (114.5 kB view hashes)

Uploaded CPython 3.11 Windows x86-64

hammingdist-1.1.0-cp311-cp311-win32.whl (98.1 kB view hashes)

Uploaded CPython 3.11 Windows x86

hammingdist-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (450.6 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

hammingdist-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (97.1 kB view hashes)

Uploaded CPython 3.11 macOS 11.0+ ARM64

hammingdist-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl (118.2 kB view hashes)

Uploaded CPython 3.11 macOS 10.9+ x86-64

hammingdist-1.1.0-cp310-cp310-win_amd64.whl (113.2 kB view hashes)

Uploaded CPython 3.10 Windows x86-64

hammingdist-1.1.0-cp310-cp310-win32.whl (97.0 kB view hashes)

Uploaded CPython 3.10 Windows x86

hammingdist-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (449.1 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

hammingdist-1.1.0-cp310-cp310-macosx_11_0_arm64.whl (96.1 kB view hashes)

Uploaded CPython 3.10 macOS 11.0+ ARM64

hammingdist-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl (117.0 kB view hashes)

Uploaded CPython 3.10 macOS 10.9+ x86-64

hammingdist-1.1.0-cp39-cp39-win_amd64.whl (112.3 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

hammingdist-1.1.0-cp39-cp39-win32.whl (97.0 kB view hashes)

Uploaded CPython 3.9 Windows x86

hammingdist-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (449.3 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

hammingdist-1.1.0-cp39-cp39-macosx_11_0_arm64.whl (96.2 kB view hashes)

Uploaded CPython 3.9 macOS 11.0+ ARM64

hammingdist-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl (117.1 kB view hashes)

Uploaded CPython 3.9 macOS 10.9+ x86-64

hammingdist-1.1.0-cp38-cp38-win_amd64.whl (113.2 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

hammingdist-1.1.0-cp38-cp38-win32.whl (96.8 kB view hashes)

Uploaded CPython 3.8 Windows x86

hammingdist-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (449.0 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

hammingdist-1.1.0-cp38-cp38-macosx_11_0_arm64.whl (96.1 kB view hashes)

Uploaded CPython 3.8 macOS 11.0+ ARM64

hammingdist-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl (117.0 kB view hashes)

Uploaded CPython 3.8 macOS 10.9+ x86-64

hammingdist-1.1.0-cp37-cp37m-win_amd64.whl (113.9 kB view hashes)

Uploaded CPython 3.7m Windows x86-64

hammingdist-1.1.0-cp37-cp37m-win32.whl (98.2 kB view hashes)

Uploaded CPython 3.7m Windows x86

hammingdist-1.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (450.6 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

hammingdist-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl (116.3 kB view hashes)

Uploaded CPython 3.7m macOS 10.9+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page