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 alignment functions release the GIL while computing alignments. In order to reduce overhead associated with releasing and acquiring the GIL for each alignment, seq-smith also provides *_many versions of alignment functions for 1-vs-many scenarios. This is useful when you have a query sequence and want to align it against a large number of target sequences.

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.6.0.tar.gz (141.6 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.6.0-cp313-cp313-win_amd64.whl (287.4 kB view details)

Uploaded CPython 3.13Windows x86-64

seq_smith-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (473.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

seq_smith-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (458.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

seq_smith-0.6.0-cp313-cp313-macosx_11_0_arm64.whl (411.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

seq_smith-0.6.0-cp313-cp313-macosx_10_13_x86_64.whl (422.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

seq_smith-0.6.0-cp312-cp312-win_amd64.whl (288.0 kB view details)

Uploaded CPython 3.12Windows x86-64

seq_smith-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (474.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

seq_smith-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (458.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

seq_smith-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (411.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

seq_smith-0.6.0-cp312-cp312-macosx_10_13_x86_64.whl (422.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

seq_smith-0.6.0-cp311-cp311-win_amd64.whl (289.5 kB view details)

Uploaded CPython 3.11Windows x86-64

seq_smith-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (478.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

seq_smith-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (461.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

seq_smith-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (415.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

seq_smith-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl (425.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

seq_smith-0.6.0-cp310-cp310-win_amd64.whl (289.2 kB view details)

Uploaded CPython 3.10Windows x86-64

seq_smith-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (477.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

seq_smith-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (460.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

seq_smith-0.6.0-cp310-cp310-macosx_11_0_arm64.whl (415.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

seq_smith-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl (425.0 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for seq_smith-0.6.0.tar.gz
Algorithm Hash digest
SHA256 820d941cb81c324d7ca8408aacebbc5f832023617954b25110853a82271f7563
MD5 c5d0fcd6d808781116d6ac3b0370b018
BLAKE2b-256 1b015226b44550490e8fd77f60ac72df3ad32cead1757dece33e9b5b0619a0ab

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for seq_smith-0.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 66b0a65c73217d374bf5b339b5cc5cfc146edac1c287deec4300be0575bb5b06
MD5 f3a8576f907ab59d5ce4c247b5ae48b3
BLAKE2b-256 7d7405ef8f2fe2e1551575b844534b3dca53a9f4f00a9154bb727033cd3c68c9

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69a6a578a044b187de02e31f90d91c90a29eed9b421ac56f0c6d01fe88a73007
MD5 f60ce093c74f1d2a12aa722b160ed801
BLAKE2b-256 335d200f071fc5eb40f9d33fd38124417601043051af4f4cc0f642881d185448

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seq_smith-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01c1f99fe164c856451633456337c0747ee358945b400babb0588d55b991bb4c
MD5 afc544b69941b7c09dcb1bb101340373
BLAKE2b-256 998a28d0afca9b9691b08c377b3a826f85eac340b5483f547eb0594dcb35f521

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seq_smith-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4359a457898f8f95adc017ec00fa6a188711514b68aaba99f3246acb36ed39d8
MD5 ccabbb4c80e995d61d7e9ca1113c4d0b
BLAKE2b-256 c674e928c2a239b9f63efed92f00d1cec1677f48b40f1f0e419095121750c7a7

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.6.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9bc96dfc6706ec0935e6b757addc460a0ebd5dab963ca9c00de712e31985437e
MD5 05157717346a3f477104ec034980efab
BLAKE2b-256 c4b9d212c97d24e0e11e176fd4303b2a64d1ede0b56c2aa75e159a04eeaf75b1

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for seq_smith-0.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2c80d0f662fe1f1d38876271a2a4bb088a8883e1339f43443908fff987971726
MD5 979424c01aed44b123ee2bede790cf91
BLAKE2b-256 a7e43e7232da60ae62ffc6b8c1af197409adfd64ac4b9c06c61c5b2ca440da70

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e692e501a87e77435ac01a81cbc657f32785e64263acd5adbafa32adbf73e7bf
MD5 e317180a2b8eaf06a54c4949c540ad75
BLAKE2b-256 13968fe1b8b258cacad095a45042e1419bf776669de6adc2011ce3a96f11a2d3

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seq_smith-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 423962ad166fef5ba456ee7a93067981f59398ac444f373c928722547a78ba81
MD5 691ab191ada4b0fac85c0ae13b625fa5
BLAKE2b-256 ffd0dfce641915279279fe42074134af0b44724c426b085a473b8e7a80324702

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seq_smith-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2c89a7154f75d22669a41a27fde1265f748cc419d9931312c5a8760d85fe7ed
MD5 66e2d0a0a4893bda0a39bb05abd41b29
BLAKE2b-256 2846bf1ebbc90bf71cfa622f0bc1872c1a055e1b1bc2905c31b163e20571672f

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.6.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 86d68adbdd8cd835702fbfc2f913affa1a98d69ac35ab1b603d86a936fe9de0b
MD5 67d029ea2cc655884fadc6467ba76cd1
BLAKE2b-256 c45754d979a8acff9a7bee37d64827493cc222567e32c52048a2e012fa49f305

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for seq_smith-0.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b408ae89df8b2a354762c0e9e891c38c9d2ff8406a6ae99bdac0c65090991ba1
MD5 fe2b760d9089d7be3c17813b9f0eccb5
BLAKE2b-256 d5fb010dcaa398fc46a6c3f50ae8eba566dc640cfe8e32e293ead600808c2352

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9e5185a5551da75cc4b7bca63652c982bc7a7419ddb2f60b95db8b4ddcacdb9
MD5 a46963a07ace33614176b599619741ef
BLAKE2b-256 a4490f66448b2a41ded740fc6c2be46898461d09ac2fd0ad23a52dcc1bf5cc44

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seq_smith-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6fd840546c1fcd3d99fe73003c6771a263374bcf4b2ecfae59786ccd40825e4
MD5 daf1924c49647f1dc772e7c1ed1eb7eb
BLAKE2b-256 fd06c524bf1f1c39a815adfbc6311659af4f3546641f4077e95b702da4dd2e7a

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seq_smith-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff22df7a49d713150c0cdd4c1c686f37be945803f22e148d9d3598e47481ebf2
MD5 9de530178046d114fc0ad298e411f8f8
BLAKE2b-256 93dc668b2f8914a69bc87b04728993f0a5d9278260c72600948271b8710ad9ca

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f067589fbb7e6ee7ac4955bf43f8c495731b250fef352b1a45d8611a8b987d8d
MD5 a6bed16502a5318d0ce262cb19562369
BLAKE2b-256 d8f0743893a2bb9c9e579efdddfe7565ae3ca457c3d9967241946b724e8610c6

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for seq_smith-0.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 738ef6a4452aee96c890dd810b3a8b00888e3c0a21df75b0e9e7a6e80957b2df
MD5 971c20cf14dbdd73cdffb4685c0ae8bf
BLAKE2b-256 5ab0f36c4401ad70512e071abb5231abb0455ceff76618682c07c16fb4098238

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0586f0f0a92487ae1553cc237cb2a8cc0b163803f975740f328170799f3ff4a6
MD5 456dad73468d2ee8f62c5e2a042befb6
BLAKE2b-256 953c6543468fe46c858599ac9c0668e47f20b019cbf67ea7c40defad199b932a

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seq_smith-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ef38b10074757b9a05f87cbe722d49cf0e41bbd1a51f566aaea1208b1c09c69
MD5 41de0ea9b637c3e3266e1d5be3131b04
BLAKE2b-256 195c52ff8abfc995c51dc0c55f477cd1ebc917ed609c624c235f09fd52ce3c40

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seq_smith-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee33ccdeeadbbda41768671a1567f3e64f297b17df848d9c02119d0ac0f388c1
MD5 47dfa08435ceecbdcee91a71455aeb70
BLAKE2b-256 4ae68949e7c77e4862b52ed0243aa11e398f9922550d492641ede746b03982e5

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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.6.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for seq_smith-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ba1611c3c5ced47976c1bcd1cb7a15c9d634c1cc05dc67c4fa4575dee2446d6b
MD5 267387388754b117329622beeadb84e9
BLAKE2b-256 f5ca62731a822a43d501dff8186c2fe3e03123e30f1fc1b29981b532b9d384f6

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on populationgenomics/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