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.3.0.tar.gz (132.8 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.3.0-cp313-cp313-win_amd64.whl (243.8 kB view details)

Uploaded CPython 3.13Windows x86-64

seq_smith-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (433.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

seq_smith-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (411.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

seq_smith-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (369.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

seq_smith-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl (383.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

seq_smith-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (433.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

seq_smith-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (412.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

seq_smith-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (369.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

seq_smith-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl (383.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

seq_smith-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (436.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

seq_smith-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (413.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

seq_smith-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (371.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

seq_smith-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (384.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

seq_smith-0.3.0-cp310-cp310-win_amd64.whl (245.1 kB view details)

Uploaded CPython 3.10Windows x86-64

seq_smith-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (436.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

seq_smith-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (413.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

seq_smith-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (371.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

seq_smith-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl (384.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: seq_smith-0.3.0.tar.gz
  • Upload date:
  • Size: 132.8 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.3.0.tar.gz
Algorithm Hash digest
SHA256 36c2ca73a88c6558bbe4760cffa96d0e20583aca3b5e24d16b94e89056c7d297
MD5 e587dd3024eefbce039dd0c69b959533
BLAKE2b-256 c344dd00c3e63faccabe94208f178544e5f15b37f608c30f6ad4f8d18b258a44

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: seq_smith-0.3.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.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b9bf5bd9a1efe69301caa4756adf8801ae1950fbd255275c07a3e098d74f18ad
MD5 bf39822f614f5fb7d48217efcee65fdd
BLAKE2b-256 08abcae06c64b4defe635d1b6c49ff00f0cb95b54a1baf3bb647b78a15a33634

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a47488d4876cf8f127d60f06538e6b9b4cd64fb9814ba94818818865b877de57
MD5 ed1de8470a52297c30152b48cb2605e0
BLAKE2b-256 f29191c0afc476dbea76fef8da07ec93cde1f83b3af5022762708beb1827fd52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f44ede42ed0464ab2edfca5250626ff7f4addeb8dd26ad086c44434e2d68b6de
MD5 be531d3b1f092397ccf811fdfcd46a20
BLAKE2b-256 da77649a798fff0e0856416ea7ca3aac2a75eb84051a7dc704b68a5a931294e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a71eb54282b4d0beb7d8641afee56ed2b6f4c9b916c59cd8957faa05e62e63ce
MD5 42901a9b6cefec743919c8d588340634
BLAKE2b-256 54a699a5fd6380e6874d58224387710a96415cb47426b749e6121abfceccd8c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8bcc1863c90737d138c59968e9d847c34b77c300931ead37a881967d32a8796b
MD5 5b885312203240b73ae68dc5e8ef9ecb
BLAKE2b-256 1fd33f40c67acd40a1c52199c3cbe9f335e7f093ee7ff7934be95ef45973d6ee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: seq_smith-0.3.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.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a5a92bc608f9cddb48828716f20c38876305c5711fc643724401ff8c46cb3994
MD5 52824d07ab25fa7c749494ee13da11b7
BLAKE2b-256 835510d9b3b881c5b512356034ff6ed6a58a376172b8d1bc939af629e7c6c981

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2d40329fd570dfaa83f59d025719bdd1ef0d3b322ad97a298db54fee4848d9b
MD5 8799c8ea88aea841a8a849b03c9fa459
BLAKE2b-256 6b5cc8b02c4f06ddd25e13fe20a7b3105a9bcdb45b3d977c1de3552fb4b166b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f596271973fc13bb5b812ecae57acefd7ddff4af0c3e937eddd2597a87e23487
MD5 5e4dd83ef0651301074a01184a653d93
BLAKE2b-256 9654c5798534cc1b4f4205cf594249b329ef0816f330bec9919ade66cedb04f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae00c7f691659815c590011f1c205306bb75e7f3776cdcfde93c335013eb24bd
MD5 12f4f47f8b8399d7f4ad42f9bf94dc17
BLAKE2b-256 531d813f8703ddee8c064905f9858dc62eefba008b26cb8cbd137b0cfe7329b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6da5d693495dd4113f546d7d1e76e37077297b3925a76a25388e38c21e832c56
MD5 1d2c4b7b06f8e658e72170398d46de7e
BLAKE2b-256 0da84601b527b9cf89c4202303d8aa8ef88f0f91a8ffb9af1ace9ddc22abe7fd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: seq_smith-0.3.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.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a894d3d99d18be1956c1082255e59fc8bab92531de888704c4272b40efffc323
MD5 3b51df146579e2f12c8767d2e7bf8bce
BLAKE2b-256 b8654f1a8176d42b2b3500ef6c3fac7e98fc1cb8a5925284ea3743f65adde371

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a6251e85e911f76a1e38396b03381b839d1b8822f0e8ba5babf1d20d813ba84
MD5 2cc4909a0366b16604b4a73c1c077360
BLAKE2b-256 3221804674720b9160f0436baacd6367c414f0c34644a2dd09bd1d9dcda951d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2dcdd05727f7c856db17648754aa8140208b4e357aecfba485360be15958f32
MD5 454a80dd70938dbd2205058247c44dcf
BLAKE2b-256 43a7bbb40558bc06b6e5c7ce65c6966542ff49abf2e2134ee718157e8210bb0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 835a39b1c6a15f6e463da56bff65de1eb799a672c4056939f1b8daf85e202960
MD5 50c41a1813cf5fa8938e24d39fb79446
BLAKE2b-256 ddf9541856c5decf07ea79669380a19cc6af24012677c6313b2415fe4ad0c0e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5835527e48e87846945fec4a4c67eaba1c6359bca0be887eb9f5bdfd1be8dd1a
MD5 45313948061c21c264b1ca727c9cab61
BLAKE2b-256 421755f47017bab6d15f8a5f99f35fda790837cb1bfa24b54250c2c51f9614fe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: seq_smith-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 245.1 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.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1ee6b51909d48a86e241b1d49a91c0d3784b00d6598e5561fb627dd6f0d4b635
MD5 556571945c35b90b8f18e89416e460e2
BLAKE2b-256 7dcec52ebd35f309da80e97acdd1c3e787ede4176bdef252e2afde2e536ed8e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc8a0fd77909f4fd0c25777616c761d3ad0af4084638740d798a7d4ddc13eac3
MD5 6d31e4ddf177f72dc9051ec3d065140a
BLAKE2b-256 6c225f58abe1824a21b5a499f9492b94b613ec8b76b2688ff74743d6def6164f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02a7e9f1dd60865f0691276f304259bb8197bb25606779fb7d71a79ebb4eb82d
MD5 089dbe45d00ea37c7f90d513e5ca076c
BLAKE2b-256 5dc40dcaa1e69ca942f6f1c620738eef00e8886b3bc7fe38f2b810cf4addadf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20bbd115eeb21743035d1a0d0b962bd1a5c46ac8cb39cd55daed03d537450514
MD5 d9223b47d48f8d0238cceee2a95b17ed
BLAKE2b-256 5a338424ca0b1274cf836d086b0a576f27f074eea47e1235436c15454fbb6457

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seq_smith-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d5fd16b87a441acbfe43f2f3ef8a1e1dbb79544935f55abeac52c48565528bd8
MD5 d637492fd3414094b659d1480bdea1ac
BLAKE2b-256 50c8affd51503f16e981f88163051cb76d271c3094ad6f8c458710634dd04b52

See more details on using hashes here.

Provenance

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