Skip to main content

Python bindings for BWA

Project description

Language Code Style Type Checked PEP8 Code Coverage License


Python package PyPI version PyPI download total Bioconda DOI


pybwa

Python bindings for bwa, the Burrows-Wheeler Aligner. Pybwa provides native Python access to bwa's indexing and alignment algorithms, returning pysam AlignedSegment objects for downstream analysis.

Fulcrum Genomics

Visit us at Fulcrum Genomics to learn more about how we can power your Bioinformatics with pybwa and beyond.

Quick Start

Align reads with bwa mem

bwa mem is the recommended algorithm for reads longer than ~70bp (Illumina, etc.).

from pybwa import BwaMem

mem = BwaMem(prefix="/path/to/genome.fasta")
for recs in mem.align(queries=["CTCAAGGTTGTTGCAAGGGGGTCTATGTGAACAAA"]):
    for rec in recs:
        print(rec)

Align short reads with bwa aln

bwa aln is designed for short reads (<100bp, e.g. Illumina).

from pybwa import BwaAln

aln = BwaAln(prefix="/path/to/genome.fasta")
for rec in aln.align(queries=["GATTACA"]):
    print(rec)

Reuse an index across aligners

Load a BwaIndex once and pass it to multiple aligners to avoid reloading:

from pybwa import BwaIndex, BwaAln, BwaMem

index = BwaIndex(prefix="/path/to/genome.fasta")
aln = BwaAln(index=index)
mem = BwaMem(index=index)

Installation

Install with pip install pybwa or conda install -c bioconda pybwa.

Requires Python 3.10+

Documentation

See the full documentation on pybwa.readthedocs.org.


Fulcrum Genomics

Visit us at Fulcrum Genomics to learn more about how we can power your Bioinformatics with pybwa and beyond.

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

pybwa-2.3.1.tar.gz (7.9 MB view details)

Uploaded Source

Built Distributions

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

pybwa-2.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pybwa-2.3.1-cp314-cp314-musllinux_1_2_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pybwa-2.3.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pybwa-2.3.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pybwa-2.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pybwa-2.3.1-cp313-cp313-musllinux_1_2_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pybwa-2.3.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pybwa-2.3.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pybwa-2.3.1-cp313-cp313-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pybwa-2.3.1-cp313-cp313-macosx_10_13_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pybwa-2.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pybwa-2.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pybwa-2.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pybwa-2.3.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pybwa-2.3.1-cp312-cp312-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pybwa-2.3.1-cp312-cp312-macosx_10_13_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pybwa-2.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pybwa-2.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pybwa-2.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pybwa-2.3.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pybwa-2.3.1-cp311-cp311-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pybwa-2.3.1-cp311-cp311-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pybwa-2.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pybwa-2.3.1-cp310-cp310-musllinux_1_2_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pybwa-2.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pybwa-2.3.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (12.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pybwa-2.3.1-cp310-cp310-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pybwa-2.3.1-cp310-cp310-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file pybwa-2.3.1.tar.gz.

File metadata

  • Download URL: pybwa-2.3.1.tar.gz
  • Upload date:
  • Size: 7.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pybwa-2.3.1.tar.gz
Algorithm Hash digest
SHA256 0b7a9b3f0785a60cb4b984679e335d182a4be54e850a2a50dae65e47be80d69f
MD5 46f243733f1e7313088d1af4121c16c9
BLAKE2b-256 ee495f3cb161635d6922a24cf037c83f56ade8576a7df856177d066db999d861

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1.tar.gz:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ab678117d874f324a902a3f1e77468284d72476433ded13d9b01f2363e82e53
MD5 1b56c6b62bd6779d5da4c1a294c7e717
BLAKE2b-256 ceb10a85f13c1547fd9fe687ed68a3c5671747a43f369debc526df6446e85add

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 095a9de6672b14a59ff49be2abc02da8eb1abc778dd038cf62727e33af88885f
MD5 849b0608ab262b6533dc634b25d92654
BLAKE2b-256 ea5a04cf400bbbe98f89318a0377e5bff934496e2d6a44ea4aaa624940b44004

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50b8fc97cb427341ae68054fe607ebd02cf093d22fa79699486dd8b32fdde3b6
MD5 b23c077dc7d10e4c8c2210140b783b87
BLAKE2b-256 96d8891e851d14cedfd85fc15088dce9b10b54b55af980b5e2e2975419c58c7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 763de87974d33a415a1cd96c3436495b4479b5d550489c5ccebd77d66104d65a
MD5 feff43cf789046ccd8e9b4cf47770f51
BLAKE2b-256 71b1a019dfa50380cead87915ccbb519aae862bb7d39d76384b79404b3f5a64f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9da5ec79902a75ed65e5c3e58c635ec49312f6c0ca640e9fb770e4765d01b2b8
MD5 cab8330bfaa3162c5e2073e5197a0d40
BLAKE2b-256 88fa76e3cee5216941bf0893bf59dab063a935ae52b1cc427ea5204ca9506b1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3cf213b00a4935eb6e835ccf8143f82ae9d3ef3f74f3626cd54b48be8a4f35dc
MD5 aaf07a0e19de7a742bd211869dd2c9ef
BLAKE2b-256 d056c97c767256916ed28c937eeb3108ecc6c1663aea66be1b4a9dc229d7825f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21784a474df61d70a2f6d4edcf2e52e2a0f12fd74832ccba60104b80d6c1f302
MD5 f941b2679e80b3c3429b31d830659205
BLAKE2b-256 751eff2456e943fb0bb1cd7f35eafff81b48e74f20dfb61ffb01f73f430a55e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2951c1669b83d560e51defb8a4157af5b67e34000c196e4089fc5687843df65d
MD5 ee2813d6876e800f0e6c9edcbd8cc13e
BLAKE2b-256 9574e65986286398ca6f23b503a07fdf436e90799be3341be19dd19d77ea5c09

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10ca792f51920431793119f3d28bf42f936b295ecc091a70f7fee5282b3ebbb8
MD5 e2a31e35898dbf8cc26a218ea563c5e2
BLAKE2b-256 1f3112ee0abb12b7ca967b317f0e8d3e780f6660386ad5942053caf7979f4f40

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 52501f7ec9be3192d0be675f76d2750b17ea176c73c47f932fbb6fdaa6bfa5a8
MD5 c8910cbf648bc42f682339872c3d42c3
BLAKE2b-256 9d98f411bf4a62c4ea95c37c4e7568da70df2417d80edb94e64be88a2d0fdc90

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbef621e245176d1b77bcd44613fc4fbd59755c1c40d1362fd957a91b2b88d9d
MD5 f64f10a49c1fb5f29976174ac2ca7e0d
BLAKE2b-256 4803f584e9a9b416b877301f9666d138207f42a16f8b7cfa57ff45b5dca4ba87

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7c5f9220ca2ae047aba90a728e283f44130826e790f118a5515da0b6da6b106
MD5 3f25be3e0335f852820f287032fed077
BLAKE2b-256 e4e5a7c9eb6e54b3be2d55ae970ac466cbbf5298da95fcc8d4fbaa3fee7e360b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9236f0e86b5f22153dfde2787e976791a970e4a513b640feb72b1e1bb155decd
MD5 1ee266e4053f43aaf25a74e8bb527446
BLAKE2b-256 d6e0184d6a5ce984dc73832707dbb31f74f3b7e0995660f0f2a42b1e737b0986

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5ea285151b3dba5d3bda23f7b66ebe10dbc9aad35b84c524578cd7d59192c342
MD5 e7b2ca5e00f84eaa122627b150c6416f
BLAKE2b-256 9e2f892d6e9127d4a2f050085c4cf60bd9e0d7e711438a28358ff64a2de53959

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a065fbdf2d73288725688d9c08d0e1d136e4be46031dd1890919e046714a752
MD5 9f0f481eed656016f474a7e79825e036
BLAKE2b-256 a002ecf921b33cba7592a2a75e01050efb9808ef0b4ca271909e6b538e534ec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c87c43ba1b255627d6a491322c97b945652974ad6b99e3ec8892670ad45aa9b3
MD5 8f85194396753bd46e550fc118fe24a1
BLAKE2b-256 136af5d18712f58ba32cf49299d11c55dfbcf412b3cd164a6c965c0598e9898f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f77f2886eb32281bb50c7f58af608bae4499edcad42311b780b37a5f6ff6460
MD5 fa4b660402ff68b686fa942ff0d61134
BLAKE2b-256 2ba4de94150884451da88a08ef191757634e20bf1bec60902d97efd1844238b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4815e9c0f89fc4e5bd76d1f53386822d18ea4d15b5cb93193978be6771b6be58
MD5 7c0b21ab79ede44792496ad78f62aad6
BLAKE2b-256 e04f4495a947cb075010f2837e131f447797490cac56c90489aaf8ff609f9965

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 409782b268ce9f340cb8294035aa2a60cc9ab00e5a8870bedcd85b40a0136ae9
MD5 a6dfdffbe5912c4aa944fd77a2fc8898
BLAKE2b-256 0820bc00f23ce1858519e09bf0518ef9f650660d1232aa7374b2e8c8e22dd7f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28d78f140e2c018c9ff78024c874aa455356348cb8415a9170c94996a52f96d4
MD5 1bdadc1ceb9ffa1373aa601b8284ac3c
BLAKE2b-256 caab031bfa9637ed1da354fc68d4755e40ad5b10302324ee817cc3af3c2aa944

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a040786341be992f4409993d7cd54da6a951f840a72950b155dc1775a810e945
MD5 ca5bb89aa2dbc2b279dc0218a363db10
BLAKE2b-256 af453eda0910a2aba430e65c0fbd781ff90bdfbe5512c4012435b697176ab477

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 70f42680d7938bba9440f205d3abb42d0989deca72c8498ad5257b0ee1812bdb
MD5 929da01b8c5ed24d5a84a23bde7ef8f8
BLAKE2b-256 f01755dc9b24b1404c976fd775ce24f8caccf82052c653e24b173924fd1b126a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8befa887d7947fafd3e7b7a324dd81f5594b2d5d86f559c58bf91cb467990b47
MD5 af209841359c75ec76025412398e1649
BLAKE2b-256 ac0b1f1c17fd30a683da756b3bdd8dae551082e9ad4a523a5bbb97b7c9dfc911

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c4adeec6da4538594c02dea6aad6e43d88b3bf1b9b6d2d928dca7f0bb9bfe97
MD5 67a20ced4d85a6512be06dad84b9b12d
BLAKE2b-256 07b30981586ba284af1b0673526d2f77039a693f196a06b1b7d3e7a04c44ccd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fdc0a967054c544f0e8543e6417bf25a69ed6e00645a7e7e7ab8244ae41bcd90
MD5 36b7ea49e0fa389bba98cb12d5bb3a21
BLAKE2b-256 925b1f7722f5d2e147799e342abada9baad5173a37c6f018269a4c2fdda3755f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 710c3cab540ee9057ffe36d4264ea8b6ccf30c64969ce0964a0b486ba5ce5ecc
MD5 2dacf89fcd48200d4afb9d13e1b294c0
BLAKE2b-256 d534836a297855423183ab9e688e33bb8d1c3bc237ec1a5519c27da34a58d945

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9456b1c6572005522850ba5e9d08c1be6597cf8c1ffbd071af88b2e50952f8d4
MD5 03abfd37b1a77bed81765650dd60266e
BLAKE2b-256 af611fe0b53bcc299e78d4177b7ecc70b9fa5d847700e83985ae3152f4854adf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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

File details

Details for the file pybwa-2.3.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybwa-2.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 26639d24ba5ee1468d1067e8a937b6ab9d70b44a4e5d86523432822bbba8d5b9
MD5 d2d21c47a0f5c03afa1fb0ba92d8a4c1
BLAKE2b-256 5f6d47e50614341385f40011530e0d25ce3e27f56e88a8ea5a0481f5f9525e56

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybwa-2.3.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish_pybwa.yml on fulcrumgenomics/pybwa

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