Skip to main content

A Rust-based sequence alignment library for Python.

Project description

seq-smith

seq-smith

A Rust-based sequence alignment library for Python.

Installation

You can install seq-smith using pip:

pip install seq-smith

Usage

seq-smith provides several alignment functions and helper functions to make sequence alignment easy. Here's a basic example of how to perform a global alignment:

from seq_smith import global_align, make_score_matrix, encode

# Define your alphabet
alphabet = "ACGT"

# Create a scoring matrix
score_matrix = make_score_matrix(alphabet, match_score=1, mismatch_score=-1)

# Encode sequences
seqa = encode("ACGT", alphabet)
seqb = encode("AGCT", alphabet)

# Define gap penalties
gap_open = -2
gap_extend = -1

# Perform the alignment
alignment = global_align(seqa, seqb, score_matrix, gap_open, gap_extend)

# Print the alignment score
print(f"Alignment score: {alignment.score}")

# Print the alignment fragments
for frag in alignment.fragments:
    print(frag)

Alignment Types

seq-smith supports the following alignment strategies:

  • Global Alignment (global_align): Uses the Needleman-Wunsch algorithm to align every residue in both sequences.
  • Local Alignment (local_align): Uses the Smith-Waterman algorithm to find the best-scoring local region of similarity.
  • Local-Global Alignment (local_global_align): Finds the best local alignment of the first sequence within the second, requiring the second sequence to be aligned globally.
  • Overlap Alignment (overlap_align): Does not penalize gaps at the start or end of either sequence, making it ideal for finding overlaps between sequences (e.g., in sequence assembly).

Multi-threaded Alignment

seq-smith supports multi-threaded alignment for 1-vs-many scenarios. This is useful when you have a query sequence and want to align it against a large database of target sequences.

Available functions:

  • global_align_many
  • local_align_many
  • local_global_align_many
  • overlap_align_many

Example:

from seq_smith import global_align_many

# ... setup alphabet, score_matrix, gap penalties ...

seqa = encode("ACGT", alphabet)
seqbs = [encode("ACGT", alphabet), encode("AGCT", alphabet), encode("AAAA", alphabet)]

# Align seqa against all sequences in seqbs in parallel
alignments = global_align_many(seqa, seqbs, score_matrix, gap_open, gap_extend, num_threads=4)

for aln in alignments:
    print(aln.score)

full documentation.

Project details


Download files

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

Source Distribution

seq_smith-0.4.0.tar.gz (133.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

seq_smith-0.4.0-cp313-cp313-win_amd64.whl (243.8 kB view details)

Uploaded CPython 3.13Windows x86-64

seq_smith-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (433.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

seq_smith-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (410.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

seq_smith-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (371.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

seq_smith-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl (383.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

seq_smith-0.4.0-cp312-cp312-win_amd64.whl (243.8 kB view details)

Uploaded CPython 3.12Windows x86-64

seq_smith-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (433.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

seq_smith-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (410.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

seq_smith-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (371.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

seq_smith-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl (383.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

seq_smith-0.4.0-cp311-cp311-win_amd64.whl (245.0 kB view details)

Uploaded CPython 3.11Windows x86-64

seq_smith-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (437.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

seq_smith-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (414.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

seq_smith-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (374.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

seq_smith-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (385.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

seq_smith-0.4.0-cp310-cp310-win_amd64.whl (244.9 kB view details)

Uploaded CPython 3.10Windows x86-64

seq_smith-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (436.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

seq_smith-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (414.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

seq_smith-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (374.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

seq_smith-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl (386.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file seq_smith-0.4.0.tar.gz.

File metadata

  • Download URL: seq_smith-0.4.0.tar.gz
  • Upload date:
  • Size: 133.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for seq_smith-0.4.0.tar.gz
Algorithm Hash digest
SHA256 1efcf2c085539f62cdc43834780f05447cc63218eaff48761f433404f20cc59c
MD5 0f38f7a7c66a582d5bcffd6705cb1d68
BLAKE2b-256 de2c4e3892d69c163a55c0c0485195d82f7c0df91b4d3ce2ebe2ad66cf02de44

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0.tar.gz:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: seq_smith-0.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 243.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for seq_smith-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 50046b2f82fb709e913bfc59335e0a6c9bda129c87bd014f1d3c52e40debdf4c
MD5 703e4553af63d6013fd7edc1b542640f
BLAKE2b-256 ddcc03b8ec58364425a3b86402ef52a57c2116270d4780e3f7b04702865edf73

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp313-cp313-win_amd64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39561d311881ddd00191c102d6f130384d34e2bae7ebb981476c6d67404ac5bf
MD5 7995ec5dce4fead51209722da64c6e0c
BLAKE2b-256 8e3934e667f1d0837b47af835ada1b9eb208f92f4c3a8652b14a13059266ee03

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seq_smith-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8c75de7b790f54c85a63f5f589f0dfbd71722b3fc391bdd59f25d866e998c93
MD5 73bf26131d7ec4dd1b200d0dbc019789
BLAKE2b-256 3e092ae1833d6af943d72601ae60f4f8140a0f216826e189423ecb613740021f

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seq_smith-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3488f79a3feb9734c2975d2814565c4d2c2bc60b54f883e7f32d5302cf2081f0
MD5 211333188c0bc6d417a0853d87a973af
BLAKE2b-256 ad6815ba4c976f22a6d768dc071c98257dc40b3149435556e1441031d30c4291

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 df31b00b7dd7a25085138560d152afba6e5b4c6344d6397e27893bc01837153f
MD5 655e694aa0017e9a66f6020e4fb8c73b
BLAKE2b-256 1299ce29ef1bab6763c304494458df73c385211664c02ed3f13cbb4f93a51811

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: seq_smith-0.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 243.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for seq_smith-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2dbb41e4668fee5f9cfa5825439760fd8373add3008c2c1699be1409d8858f87
MD5 7d335e2b867a2e7648628224acaa3e57
BLAKE2b-256 1dc4e1744a6a165079741da635d22a3996f6dc081b20d82b55bdbb95d084a9e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp312-cp312-win_amd64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b99f3be76a78c574ba84d1e643c02827e90009e27a3a424e4de108e19aca254
MD5 3adcc9ad10c5bfc07d404e6072baf44b
BLAKE2b-256 846168a728e98acbe77aed5753d1c0544f9bcd64c9b63a635fb54edefa7d3173

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seq_smith-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b24ca8f7d7b42ff6b33c593857c960aceb2e91c618cfbf08e434e322cd3c7e8
MD5 8b07c0d3a6965ec7c026c2548c932862
BLAKE2b-256 c9c479f9e2f9e3dcd8f8f6093182a8c13cc4c8567645eecb23febe37d0c41f43

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seq_smith-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8a8327b24cb2b0857f0828f19d6528ddb7526b0ac6d84ae14755024f04c48f8
MD5 49c9d33e0b693a6ab33fbfd7fd8566e8
BLAKE2b-256 917dbecfbea6b72c80a0929fba9a6e1ecff4c9f5c7806e54400ee44bdd30dec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 acdc95c65df716cb7d823b184f217b71f9c5de19e763ee33c73fd6de8d833f38
MD5 29416d47f24071b0578d39b197dc73ba
BLAKE2b-256 515eab765bbb010eef96f19e486d7552d73ac5801d53b8364f567de29e43c52b

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: seq_smith-0.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 245.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for seq_smith-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 51b56f97e637abff4b8c0aa5e61a20e1e94576677577567be02b1ca7764c2b72
MD5 0e93382370917bb0d2a9c7b4e5900647
BLAKE2b-256 8b0752a9983bf191886ed407ec20dfbd2bbc9f2461016f1e323c37db32785d7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp311-cp311-win_amd64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ad8ba3368c1b36a0896205faf5422b3c2d4854279c6a562e7273f1714ef759c
MD5 9671070303ab940e491f06d506301833
BLAKE2b-256 813f3e9f107994025fd951d4db6139607cf742c20a52ee161e14ad95dd111af1

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seq_smith-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c878094c55bdb4ed5c72d33a895bdb310d9de30226a331ae7b31880cabc62df2
MD5 b36efaa12cb869aa9c5b2bcba6cf3bd8
BLAKE2b-256 e0cf641b27156f909f2e99ac6eaf787093f6dd4c3114cd5468dabee251d067df

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seq_smith-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 429367bd452ccf32ee22cd78b8aebd727141e7abba6a1907752f2f679ddd3ba8
MD5 f7889a199a52f09d9513d9f79c45d045
BLAKE2b-256 ee7bf8b6ac41e4eb5c8249f7af363e970d4df3bdf8ab7cba1e89157715973e67

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c4286225dc06c70ca372ea93f8c5b3a35ce456054e43b12c77d4c42e5f592ea6
MD5 aab95c89a1b90f5da356dc71a3620bff
BLAKE2b-256 352956d4a0314690c798c032630adbf123a088e1599a8de0ea9ac3f44995a85c

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: seq_smith-0.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 244.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for seq_smith-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 05bbe425402f675e6c7b79643927eb9072c653321cc5aeb9346f9703682edc1e
MD5 cad90d1bedf64aa491d6665b8315b97b
BLAKE2b-256 2a487000e6ebc3c8717f156aa3a8d295b59ef5294e1399996f84a3d928c845bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp310-cp310-win_amd64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28ddc24ca62ee88a961418a842b78f7a214d115500262eac1994f65ab699c8a2
MD5 cc6f4c42248f6cebf627d72cd9181f48
BLAKE2b-256 39e56b1d4bb3d5abb373290e43ed1482ad0f459c96d22fb8eef0aaed8f57f9bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seq_smith-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9849f6469e9cbf12ef69d06fa1abb9c1a72508d69cdece6790bcf6ef745f867
MD5 2e27fe7a9eadc4c3a65d9073b7ec854b
BLAKE2b-256 947c2dd329c1685f8be2ff7c0672ebbe1e8475e55633676d2744353e978d1989

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seq_smith-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4404df2ace476c10da4ca16455e4ee67424e1328008d3d7a20ebe8cd628cd5a
MD5 1e307f7427dc31b367105163296a4ed3
BLAKE2b-256 bdc29096c52275c3aee1c4c0ed8851c343e37372fee23ff5aa67b399b94dfb3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seq_smith-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca6ee0c3b27ff2f096f853e4b29b826d2536921f419bde2a92ba53e05c8e67dd
MD5 8a13632a69a81bdf54ea9de9a0df401b
BLAKE2b-256 b04b035c6bc71364083d277ed193aab2e36f3532f55a4ed7886e7b996aa4d50e

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yaml on folded/seq-smith

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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