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.5.1.tar.gz (136.4 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.5.1-cp313-cp313-win_amd64.whl (262.8 kB view details)

Uploaded CPython 3.13Windows x86-64

seq_smith-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

seq_smith-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (435.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

seq_smith-0.5.1-cp313-cp313-macosx_11_0_arm64.whl (394.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

seq_smith-0.5.1-cp313-cp313-macosx_10_13_x86_64.whl (407.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

seq_smith-0.5.1-cp312-cp312-win_amd64.whl (263.4 kB view details)

Uploaded CPython 3.12Windows x86-64

seq_smith-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (455.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

seq_smith-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (435.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

seq_smith-0.5.1-cp312-cp312-macosx_11_0_arm64.whl (394.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

seq_smith-0.5.1-cp312-cp312-macosx_10_13_x86_64.whl (406.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

seq_smith-0.5.1-cp311-cp311-win_amd64.whl (263.9 kB view details)

Uploaded CPython 3.11Windows x86-64

seq_smith-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

seq_smith-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (439.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

seq_smith-0.5.1-cp311-cp311-macosx_11_0_arm64.whl (398.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

seq_smith-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl (410.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

seq_smith-0.5.1-cp310-cp310-win_amd64.whl (263.8 kB view details)

Uploaded CPython 3.10Windows x86-64

seq_smith-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (458.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

seq_smith-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

seq_smith-0.5.1-cp310-cp310-macosx_11_0_arm64.whl (398.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

seq_smith-0.5.1-cp310-cp310-macosx_10_12_x86_64.whl (410.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: seq_smith-0.5.1.tar.gz
  • Upload date:
  • Size: 136.4 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.5.1.tar.gz
Algorithm Hash digest
SHA256 a9fad55f1b9c297f89ca5e73869c671f4566ad2391d8341eb200d4ba08437d04
MD5 9349a552dd6ae31a9a3ef52a3d646be2
BLAKE2b-256 2b4061ee3442395d352e04654989581055ca6cc2a3d0b623e8a26fdf7ebff826

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1.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.5.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: seq_smith-0.5.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 262.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.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f22243a3d03e06a761d452716ab9810b058703538250b5626219f3f77952aded
MD5 e4e8c855faf5eb39db7b1d0a74765bca
BLAKE2b-256 5abe54aac5e794a5389a26e79e4231f7b10bfe3c4ff6470eecf05dff59ce7d96

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fa55b91c146e3908280aa063c4c32d8074f59c0a0b927ee5939788907f9250b
MD5 9c39368c869b7816a3e9d1fdeaebdd07
BLAKE2b-256 0321f2a46ba44264864919db144568683c589fa533b98adb470719c74b93bd56

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seq_smith-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65207a3398a2d6a4764298328e00ae3adf3a9996ba7fe95bf5a68a499fcb0a99
MD5 1bc5b7d937e37905e580a59cfd3d6534
BLAKE2b-256 3ceb17410a2eada7ba96792fe2684caee4efc17e090f29e7f81da7ef80940d34

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seq_smith-0.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77b86eb5170db6b2ae62884da15c053f898032fbf51aa01f83199db3865b3c50
MD5 287e9e8e5fa7956012affd4110422557
BLAKE2b-256 3d86e62d028eae514497ae451eb9df567f4f0e7df394a46c6a07ad6641a3602e

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.5.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 aee1efa547fa07673e816134995b9b51822260400d733ed038dc4a74a5101a99
MD5 2d1d707a7b6f683f271c5ae783edd0ae
BLAKE2b-256 69cfd951752327be2e0b2dd297c9fd27c81fd70adb126e4e1121f4582aa759da

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: seq_smith-0.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 263.4 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.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 248f598b85e49847a9931a564344b47c26c8a7e9fc57a841b4423c29471f1407
MD5 1caf202b563fba5fdd941ce320268d40
BLAKE2b-256 f2d2ad0dd5985273c70f8f99af2e6f7a5ce909528b05cf802195540eeab497ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1821619080fde171d6cd9520e95b1b64507adce53316f0eaba501f6955b66671
MD5 d22b6f9965a302abf8bde1a827ae611a
BLAKE2b-256 5b36cf0643391bfd893e10d781401fd9c0223dd7784a5b90a4d8451ba8506f5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seq_smith-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d03ff0d52be2c901c07048c7b182670e9897f2c4e8eeab73c974b788623c1aa
MD5 597bd3dc4d2fd51bdabf128121d55156
BLAKE2b-256 5c146073a3718e4aa53b7075513efb0325dc8a1b5930054e64b447246f2b12cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seq_smith-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aaa81740368273ecebf0aaeae778a58032f845b7887cddc6dcc1168b01103bb7
MD5 85e41a0e33a6a451bac82d50ed31fa02
BLAKE2b-256 a123e8f6fc0c4ae9aea59c2dbd616df05ac0a4bfb4c4a3e24fef3536960217f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.5.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 23d380fb40ad1b5842def8efcada41b029098bc87c7e12f6e3c7e2717cb4b9c9
MD5 8582ce82168d619ed0acb1f12963bd60
BLAKE2b-256 e4300281495548ba146793fdb7f3fc316927a4008f58b2460ba2b6d0044af4bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: seq_smith-0.5.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 263.9 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.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3ade1b0336c9a236754ee59b0dde0517c4d8569757b6a6a05a4ca0d6294afe94
MD5 15509f126aaa0265a49180bd80319798
BLAKE2b-256 a6d3ebc5ee3df2c123ac30d69c513ffd2c117f1d8207ea48b2c50acdce492e99

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e5f231b1c9bca1ea1d274f5e69467aed677ab22d27d6dfe69ad914cb221ca31
MD5 2bd0086a63cda7b6a78a5c821e9e0493
BLAKE2b-256 59e42c56b60defd941df0fdf399aecd50a8663dea53812e63a7d49033a7e7cd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seq_smith-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fafc5ef1b40ec67cdb4764c652c7f3ef92d92a5ffb118c8cc7832ab9a9a7d799
MD5 f5c7575e495e23cd3065918699c0f719
BLAKE2b-256 9da19531b5faa6b41939c5da4878c48682c7a7d1d2b725b52f0ae88a582f8448

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seq_smith-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a0a558be6d4020a9ec718d2ae4011d045c80a01f1842ed72a01cba5b4f606e3
MD5 3bcb4d131e4cb403e7f2bea1358dd9e3
BLAKE2b-256 e34546d43bf55f1308753d156c4f2300d41399133a3269482f76fd38d1e0f561

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8ae9c8aaae5faf4218bb64f620d27ca4f5b37e58ade934d2da8f351a0b1402f4
MD5 8388ff564293d13807bf14a637ad913e
BLAKE2b-256 d741f014127c12ee891973ad6a2a680e2143c9ab779a42f882fa4e45bc1b2d29

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: seq_smith-0.5.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 263.8 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.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 23209624ff4d4b97300f06ab60d888fabb1ac3e73a6bad70df84ac41dbcd4d5b
MD5 6755e477c0759914b6f4c8ebfd2a35ef
BLAKE2b-256 c62ccb14229a7b2022def6fad3f4bd40281338307b5544ac5ab76da1afda8b2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8e2d16a294bd178569e3e76eb5cfbdf3bfcb789930f8d51abec114f1c67e498
MD5 09bab6e9a203682dd88aad8af6852c6e
BLAKE2b-256 1add484e29652de018ce17345759ed416bdb10886dcedd031620d179eb386ccc

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seq_smith-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9b7e71d0f493ed323008ed8acc6849cf9bb98cc6e5e3296eef04e122854ca56
MD5 4405a290f44500c527a369d2c6d7ea29
BLAKE2b-256 b5ad3524abf293698b6489ff0497484cb9b7e5bc4f7af32223cf1f282c744df8

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seq_smith-0.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fbea01ce5bfc387f4772f4c25b1a76caa2b1f0ffbc1370003d939f8cd1e5cdf
MD5 5255f50e84c14e58ceaee452e20f263b
BLAKE2b-256 9a30e6dcc2e61c3774e3fad665b62e388207f2ee0275a86caf0323f8d95ba1d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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.5.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.5.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 118c56c5d5fbefe2a70e5b9a55991c36c103327c64d5f8bc81d149a02f416594
MD5 d0a9072fd89dcd33cf4735a89c9ab0fa
BLAKE2b-256 5e9598a1c29a3304c99d6332a24a8d08a1be1487193bad14b9a1cb624acb0900

See more details on using hashes here.

Provenance

The following attestation bundles were made for seq_smith-0.5.1-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