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.0.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.0-cp313-cp313-win_amd64.whl (263.1 kB view details)

Uploaded CPython 3.13Windows x86-64

seq_smith-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

seq_smith-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (435.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

seq_smith-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (394.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

seq_smith-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl (406.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

seq_smith-0.5.0-cp312-cp312-win_amd64.whl (263.7 kB view details)

Uploaded CPython 3.12Windows x86-64

seq_smith-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (455.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

seq_smith-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (435.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

seq_smith-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (395.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

seq_smith-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl (406.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

seq_smith-0.5.0-cp311-cp311-win_amd64.whl (264.1 kB view details)

Uploaded CPython 3.11Windows x86-64

seq_smith-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

seq_smith-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

seq_smith-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (398.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

seq_smith-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl (410.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

seq_smith-0.5.0-cp310-cp310-win_amd64.whl (263.9 kB view details)

Uploaded CPython 3.10Windows x86-64

seq_smith-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (458.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

seq_smith-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

seq_smith-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (398.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

seq_smith-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl (410.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: seq_smith-0.5.0.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.0.tar.gz
Algorithm Hash digest
SHA256 d6042d377a9f127e1778d1dd969d6fb63503658561aafefd77a3ea168aef3bc2
MD5 984a727529653c47a377006c4a8ded7c
BLAKE2b-256 62cf6bcca4620c2bf081700a3aeaa0c01bfbe651a707b1ff2bfe7f3d2f01b899

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: seq_smith-0.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 263.1 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 66063439eea56ba2de0caf82cdc30a1e85e41667474f1040d119e4e0ca29f173
MD5 496d0ae46f9eb68295ae82e0b8e0ed5e
BLAKE2b-256 8040c4f16ac25548ad17ca8d594d08d5d727df8222a7dfac046b1e6765d44995

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7736efb2482cfe14134055713fdaa9957cccf043e5ed3fbd36b0c0b221b2503
MD5 be0c9a01c4936c629b71675ee1e0668a
BLAKE2b-256 dc59e61b13edf8a3a433b78ad158eef474ee42eb56af3bce7378e8b6d8854bb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc2a30f6cf0b416f5639fdfac227c70e24373cb5b0cec4d0afe7a42f0c8450b0
MD5 ac732ae873f28316ae93cfbaf1b9d2a3
BLAKE2b-256 3273ee9b03e468e4f5f600178c61c7b83faa2601e24e0b2bebbdc7ec3a5e1918

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 496fc98408f328cef7f4f2233a00145a84ad8756a3b2717b20fa80e4c83754aa
MD5 23e98bdb2854ac4bbe51b571794f1b0e
BLAKE2b-256 a567010dc85b60eb5a183d5f21265bfbfa3df7e4adeaf6c6a41ead124361259e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 91479b3839840d32ffb789dc032b599b0c3322ab7b8d0dde09f10aac7cea8021
MD5 f76506fbc1b2a25d4d262f79dacb3278
BLAKE2b-256 99f2ad0335501d3928ecaff67a2b4d0baad849a51848c18b868925d897220010

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: seq_smith-0.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 263.7 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f15fd789718f7bb437d01b213ab62c37c6f0c3c52da37abfc2ee971b696ccadd
MD5 ffb84cd63d5ed3a118196a78c4c7f019
BLAKE2b-256 e831c890abbc5496b543b0760b99b74374194299ffe74db863beef83025bfb65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94f0e3bedc1b6f618c25102856da936328d133b44abf17fff7d0c93222c5f7cd
MD5 c02a76c8413c6fb7fb43d6299d4ac0b3
BLAKE2b-256 6ed4925a9607a477419696c1d44f4df54f2941b818127e08891bb30c95d8f1af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de728b0acd0e89a1257ea9cde80cee15b47e023bdfe34bb5d3e00271027390d5
MD5 d7120387315dd2032a4bc3c2c94dd295
BLAKE2b-256 a80b38b7b5689dd89d8c2b1d168304d4974254700e211511f67532216657ce3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cecf3126cb11597cc1f7d207d4b7f9a666756be74d04d7707e59e264bca46c29
MD5 c64f06ef419a3e81f16186a7b585d742
BLAKE2b-256 228cb04284fff65a5124099f289ccb94d69fd43af8d7d6f7a7e30805de5243ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 35ab7471c16ad19e4137a098ff6d20bc01274c32e9001d3f75e9fffe601bbad4
MD5 d9bf19038d7e3e30e62c9c7410b2f434
BLAKE2b-256 e7c963100e4fc9089416001933f47c3d5f2eb881db6619dce8961b04bc1462ab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: seq_smith-0.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 264.1 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b3805a2e04dffae30738873be995d474ea96ba06031e14f71a22005451bf6b1d
MD5 f563baa49fd59a93a1af00e14e018d6d
BLAKE2b-256 6ec584d81500c1cdfca7dd492e3e6dd7d02c103f76dd24f30374587dbce259b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 234958ad8b1bb5a8d647a0ccab924a1531d51a6e44675d04bc6d284a5dcae893
MD5 f7c0cf64a644d62149e03bdef60ecb07
BLAKE2b-256 db3570705bdb6f75b7035f1d395db164459061c55f039b9f68aa7cd20fcbd22b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1558472db7ce5b6c68d425c9aa032322463f7c88b39a02e2d417a2d96d9e3e7f
MD5 210eb1b6c4ec90213c8398dfecd18cca
BLAKE2b-256 68f2220eb636cd40895303497a43b920fd63e71bcdf2a8cc6014f45d6f433077

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7b99ab5c7c4537058ed5a66b9da511628cd4b182c13f270f6fcb85291ba957d
MD5 841b0b6dd4f581cf46b1a11f95552774
BLAKE2b-256 54c0298647eaf08c44894328e5906176f8cd71e19eabbbe429cfcbc46a52f420

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0010b912c941062dd7c35568c3e1f6ecf6f5e544700b737a22e080810dda0e40
MD5 ea2e38a79ed007f796e857e5ccffb8e1
BLAKE2b-256 624aa0c7269c8849795e5baf72113fdf36839623cda5bfa39b2e758b0f8c0459

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: seq_smith-0.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 263.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.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bde7280bee186ac60dd9d08042fa0273269806291e61019d662de4bc9b3568d6
MD5 707b0ab70ecf4cd32cef54058921b5f8
BLAKE2b-256 34f05efbfad038e267decccd5e21638fd0eff22af585de5edeb9ae0bb79379ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1914cf4a4b2d7da23c664c5d53c55ef5bce834e822d5387d69d1a5bc9c6ae6c5
MD5 446abdbd5ce0662029d14ea6653606c8
BLAKE2b-256 789cb392754e2d4f86b07bc74f0eb72767211d812cd691469d570c67f767c5f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e28cfd52fb49eb93eec47e6cfeb54d22abea97d6a4c5ffabcb91e87ef933969a
MD5 89d73ac9595cd3aed420f4f6d2d63baf
BLAKE2b-256 67396b7ec547ae9b7ad10d55844887e6c6d0939b10d6233080fe012e24f84684

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67ec289f1269e7d6fdcf09af62f3c83a725b556a4fc348b5d0312619cc9e9fab
MD5 25091f1ec13aa47b46d0d530e700fbba
BLAKE2b-256 24e8fbb1649f3270911e7aac173921253bb20bd90bea60f414feadda96a98518

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e93ee95b8ed99a6572c54f0000f7518d45b64dd5c919c136923c9ba535cffab7
MD5 45eaa3c62111a20048e0974f8879ecda
BLAKE2b-256 77166b49feedba1ccc286ca47905a76f0f4a5e7b047263576bbf6368e2c88088

See more details on using hashes here.

Provenance

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