Skip to main content

Another bgen parser

bgen

This is a package for reading and writing bgen files.

This package uses cython to wrap c++ code for parsing bgen files. It can parse genotypes from 500,000 individuals at ~800 variants per second within a single python process (~1.2 billion probabilities per second with a 3GHz CPU).

This has been optimized for UKBiobank bgen files (i.e. bgen version 1.2 with zlib compressed 8-bit genotype probabilities, but the other bgen versions and zstd compression have also been tested using example bgen files).

Install

pip install bgen

Usage

from bgen import BgenReader, BgenWriter

bfile = BgenReader(BGEN_PATH)
rsids = bfile.rsids()

# select a variant by indexing
var = bfile[1000]

# pull out genotype probabilities
probs = var.probabilities  # returns 2D numpy array
dosage = var.minor_allele_dosage  # returns 1D numpy array for biallelic variant

# iterate through every variant in the file
with BgenReader(BGEN_PATH, delay_parsing=True) as bfile:
  for var in bfile:
      dosage = var.minor_allele_dosage

# get all variants in a genomic region
variants = bfile.fetch('21', 10000, 5000000)

# or for writing bgen files
import numpy as np
from bgen import BgenWriter

geno = np.array([[1, 0, 0], [0, 1, 0], [0, 0, 1]]).astype(np.float64)
with BgenWriter(BGEN_PATH, n_samples=3) as bfile:
  bfile.add_variant(varid='var1', rsid='rs1', chrom='chr1', pos=1,
                    alleles=['A', 'G'], genotypes=geno)

You can also read bgen files from stdin (to avoid local storage) e.g.

cat $BGEN_PATH | python -c '
import sys
from bgen import BgenReader
with BgenReader(sys.stdin) as bfile:
  for v in bfile:
    print(v)
'
# NOTE: if using a separate sample file, you cannot also read that from stdin,
#       you would need: with BgenReader(sys.stdin, SAMPLE_PATH) as bfile:
# NOTE: a stream cannot seek, so variants can only be reached by iteration.
#       Picking variants with bfile[i] or fetch() needs a file on disk.

API documentation

class BgenReader(path, sample_path='', delay_parsing=False)
    # opens a bgen file. If a bgenix index exists for the file, the index file
    # will be opened automatically for quicker access of specific variants.
    Arguments:
      path: path to bgen file, or sys.stdin (stdin also used when path is '-' or '/dev/stdin')
      sample_path: optional path to sample file. Samples will be given integer IDs
          if sample file is not given and sample IDs not found in the bgen file
      delay_parsing: True/False option to allow for not loading all variants into
          memory when the BgenReader is opened. This can save time when iterating
          across variants in the file
  
  Attributes:
    samples: list of sample IDs
    header: BgenHeader with info about the bgen version and compression.
  
  Methods:
    indexing: BgenVars can be accessed by index e.g. bfile[1000]
    iteration: variants in a BgenReader can be looped over e.g. for x in bfile: print(x)
    fetch(chrom, start=None, stop=None): get all variants within a genomic region
    drop_variants(list[int]): deprecated - drops variants by index from being
      used in analyses. This is inconsistent (iteration and indexed access can
      ignore it), so filter variants in python instead.
    with_rsid(rsid): returns list of BgenVars with given rsid
    at_position(pos): returns list of BgenVars at a given position
    varids(): returns list of varids for variants in the bgen file.
    rsids(): returns list of rsids for variants in the bgen file.
    chroms(): returns list of chromosomes for variants in the bgen file.
    positions(): returns list of positions for variants in the bgen file.

class BgenVar(handle, offset, layout, compression, n_samples):
  # Note: this isn't called directly, but instead returned from BgenReader methods
  Attributes:
    varid: ID for variant
    rsid: reference SNP ID for variant
    chrom: chromosome variant is on
    pos: nucleotide position variant is at
    alleles: list of alleles for variant
    is_phased: True/False for whether variant has phased genotype data
    ploidy: list of ploidy for each sample. Samples are ordered as per BgenReader.samples
    minor_allele: the least common allele (for biallelic variants)
    minor_allele_dosage: 1D numpy array of minor allele dosages for each sample
    alt_dosage: 1D numpy array of alt allele dosages for each sample
    probabilities:  2D numpy array of genotype probabilities, one sample per row
      These are most likely for biallelic diploid variants. In that scenario
      unphased probabilities have three columns, for homozygous first allele 
      (AA), heterozygous (Aa), homozygous second allele (aa).
      In contrast, phased probabilities (for a biallelic diploid variant) would
      have four columns, first two for haplotype 1 (hap1-allele1, hap1-allele2), 
      last two for haplotype 2 (hap2-allele1, hap2-allele2).
  
  BgenVars can be pickled e.g. pickle.dumps(var)


class BgenWriter(path, n_samples, samples=[], compression='zstd' layout=2, metadata=None)
    # opens a bgen file to write variants to. Automatically makes a bgenix index file
    Arguments:
      path: path to write data to
      n_samples: number of samples that you have data for
      samples: list of sample IDs (same length as n_samples)
      compression: compression type: None, 'zstd', or 'zlib' (default='zstd')
      layout: bgen layout format (default=2)
      metadata: any additional metadata you want o include in the file (as str)
    
    Methods:
      add_variant_direct(variant)
        Arguments:
            variant: BgenVar, to be directly copied from one begn file to 
                another. This can be done when the new bgen file is for the same
                set of samples as the one being read from. This is much faster
                due to not having to decode and re-encode the genotype data.
      add_variant(varid, rsid, chrom, pos, alleles, genotypes, ploidy=2, 
                  phased=False, bit_depth=8)
        Arguments:
            varid: variant ID e.g. 'var1'
            rsid: reference SNP ID e.g. 'rs1'
            chrom: chromosome the variant is on e.g 'chr1'
            pos: nucleotide position of the variant e.g. 100
            alleles: list of allele strings e.g. ['A', 'C']
            genotypes: numpy array of genotype probabilities, ordered as per the
                bgen samples e.g. np.array([[0, 0, 1], [0.5, 0.5, 0]])
            ploidy: ploidy state, either as integer to indicate constant ploidy
                (e.g. 2), or numpy array of ploidy values per sample, e.g. np.array([1, 2, 2])
            phased: whether the genotypes are for phased data or not (default=False)
            bit_depth: how many bits to store each genotype as (1-32, default=8)

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bgen-1.10.2.tar.gz (1.8 MB view details)

Uploaded Source

Built Distributions

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

bgen-1.10.2-cp315-cp315-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.15Windows x86-64

bgen-1.10.2-cp315-cp315-musllinux_1_2_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

bgen-1.10.2-cp315-cp315-musllinux_1_2_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

bgen-1.10.2-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

bgen-1.10.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

bgen-1.10.2-cp315-cp315-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

bgen-1.10.2-cp314-cp314-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.14Windows x86-64

bgen-1.10.2-cp314-cp314-musllinux_1_2_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

bgen-1.10.2-cp314-cp314-musllinux_1_2_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

bgen-1.10.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

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

bgen-1.10.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

bgen-1.10.2-cp314-cp314-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

bgen-1.10.2-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86-64

bgen-1.10.2-cp313-cp313-musllinux_1_2_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

bgen-1.10.2-cp313-cp313-musllinux_1_2_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bgen-1.10.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

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

bgen-1.10.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

bgen-1.10.2-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bgen-1.10.2-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

bgen-1.10.2-cp312-cp312-musllinux_1_2_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bgen-1.10.2-cp312-cp312-musllinux_1_2_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bgen-1.10.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (5.8 MB view details)

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

bgen-1.10.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bgen-1.10.2-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bgen-1.10.2-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

bgen-1.10.2-cp311-cp311-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bgen-1.10.2-cp311-cp311-musllinux_1_2_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bgen-1.10.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (5.6 MB view details)

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

bgen-1.10.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bgen-1.10.2-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bgen-1.10.2-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

bgen-1.10.2-cp310-cp310-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bgen-1.10.2-cp310-cp310-musllinux_1_2_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bgen-1.10.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (5.6 MB view details)

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

bgen-1.10.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bgen-1.10.2-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bgen-1.10.2-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86-64

bgen-1.10.2-cp39-cp39-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

bgen-1.10.2-cp39-cp39-musllinux_1_2_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

bgen-1.10.2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

bgen-1.10.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

bgen-1.10.2-cp39-cp39-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file bgen-1.10.2.tar.gz.

File metadata

  • Download URL: bgen-1.10.2.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bgen-1.10.2.tar.gz
Algorithm Hash digest
SHA256 df4d315496f953e418da7e21b855441b972a8785acae240b596fa54b15d179e6
MD5 c75a5c91c0dad4068e56fbf32921c184
BLAKE2b-256 e4e3d76e9e8740b824488e3124754752e81b2661e9cc629ccee50acb54888156

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2.tar.gz:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: bgen-1.10.2-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bgen-1.10.2-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 bb6e6cbbb0a417faffbe99bfd9a7f2d6517159d0f25134a7d6bf736f9da72862
MD5 6a8377979bc0b256dafcaba227b6db72
BLAKE2b-256 2129395ccfdda6939ce40677cad3e34894334478de5e350d2be16bd1fb9577f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp315-cp315-win_amd64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 261c8601032d6a80b3ae619e65d9311f118b448aca0735f4c33150c5466c8827
MD5 84220ff09d0640ad70cc8f969d85eb50
BLAKE2b-256 f28b8d4697871cad0cf258a15561d6225a30dcce0ab3e0d775ee01b1243da8e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b74ee695b171f7e9f5e9b47d3c66e4b52fdcea909270c0d5547d23718748217
MD5 9c1c02deb7e1f83eef2f12792f01aeec
BLAKE2b-256 013f620c298d8c646801bfcf83852f25885b9a178f53db9102734b284779f7ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2085fe74b9fae836c6429e0a0f991f2a6283e59a31f21b6ba4598a3d8d1d8bdc
MD5 ed298fcaad24d7a274164033187bb16e
BLAKE2b-256 36ccc23dba3a62264b44bdf54e5588ab6fb000f6bacc99286d27f05fd64ad102

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 1ef35bdd518f72ee9adb3421d4a93723ba5ed05b0e183ce6dca3047efdbd5832
MD5 3194dfc7de950ee4e189bf43912b30bd
BLAKE2b-256 4aabc4191ba34419a44fe5476a4e48d0a8795b2ad5f1c89fbfda1c32bb99bea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9868344411afb2bcacc7e9f52ed8da66889f0635a8a45c64d017573d560960a5
MD5 12a55f15e4f5c549825b46c2ae4ceef8
BLAKE2b-256 36122017faad02d945ee4e4c464683caae0a5f1168ac6c34278aaa66436fca10

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: bgen-1.10.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bgen-1.10.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cb7845da9c442f731d1b2a7afe7a8d9ad0cd79f5add614d97f2d1eee7304e623
MD5 2902ef708f64039c4eaa1ba9ef377441
BLAKE2b-256 67173ec7866cf0a30a0c75c48e67a5427ab377ecdb348829f92563ad043097fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp314-cp314-win_amd64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8846d28e7a2cc2c845662df81fdfae55057967416d56e10fedef4fac83bf404
MD5 bd399a4ed0a844456bf87b92ea414e35
BLAKE2b-256 4a592d59db200530c2b3a661e4092acd4514bbf82d9d2bda35650e0abf17c3c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ba6e01de09629c1c817dd88f7bf54619bb8542487f62f8bd453d8057114c9f5
MD5 0a18df2dd95dea666bdb15a93ec926d0
BLAKE2b-256 69d905bb083eeaf10003ad323f2c3beba238b199716c91ce467a42dfbb07c51d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3faa76cf607a71fb08edeeaf267d27ca7a5f8a7bd371caa787b7ac26ae9e139
MD5 c82084d148b8548f181a4304dcb73fa0
BLAKE2b-256 64775614fef419303e7aabf07f85e39520ca057c6080b8ad21a47c722c3a878e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2d28fa32eae90926d2c9bff9ffd24c4d732f438c7e7f663d066d81ef02109419
MD5 ba3e0481c4e017f43060246e91fb4f70
BLAKE2b-256 bbbc82f0ee3d81f61ba9abc0505b17769cffe907d648dc3a3636637828626038

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc881f63007ceb4905134eeda3d1650d7156a4f09ddc9d9f1d0985247f130be4
MD5 a3c55121f28e13ff888b28c78d682aea
BLAKE2b-256 d0ecbac2eec6b29b34419d7e67b717abe9c949bb8fd25c42b9e598d41b627b2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: bgen-1.10.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bgen-1.10.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aa49059062f73dbbbd1cbcc12c0296863391449a175f236168d601b4272e62fb
MD5 d1d9c9072224940f0f82cd913d696c7d
BLAKE2b-256 1634ce22a75629f160b26e3de2149659c4c8a96cd96c1959d6455a450abeb5ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp313-cp313-win_amd64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d925df60cab9577c9590e2ea796cb9378c1b44a9f636849b7aa711fb6e0f4f5c
MD5 c95c7dc6c54bf5fff9e55505209d1ffe
BLAKE2b-256 48d4b019bc2cd7b955ae272f42004888c6b74fa8dbd8ac7b09c47d65bfa49703

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0533ec1ff22f0a92cfdafd457c05cca19fb33acc06de4c390d7f02349e2f5523
MD5 ec7f012d5da98e9688a9ff9bba09a460
BLAKE2b-256 84cc5c1463fc3de618f26cfa7e00e6d8b64f9b51ccfe5db8736062ccaee97db4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c478ea7ace4209db47e94e0f38477f906b28a6f9549e7c8a08d91b0f17a27b1
MD5 259dc6b8a4c119278f6087696bd2a1b5
BLAKE2b-256 599b872b0f4d209f9922c598b78111c42f26be5474a2d6a9e4eeb030d1b8b221

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5e39db639340d0c44bc7a2363ff0d25094e3a703b4bdf9436964f2c2bca194ac
MD5 e0da62c040e84e18eae6cedaadf87d08
BLAKE2b-256 575969b2f6403eac53606365f10a5140a997e9f927fce14d76ac6ef16ddeca41

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eee32b048c898186c4bdd5cc0a623fcb0fb71c8594d06b3062ce897df3dd60d7
MD5 425e499f3f1a707865611adc5add9a35
BLAKE2b-256 95ab4c3c0abfdd9a24aaf7c043c20e51b944a4d4efa272170b880376ce5a2942

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: bgen-1.10.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bgen-1.10.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5efac5c850e81317b49aadc949e5aeb5f6be06fc93843ac1b029773e8a097749
MD5 ac7a1e64f7ff43fd5826a8c904042a68
BLAKE2b-256 9ffaf659404c30cb530b3fb262f2921c05b7cdf326c40f0a377276c4dd4fd5c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp312-cp312-win_amd64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0906da6f09916afb943feacc3189fd50a8cfed8ec3c4fb685cf309c1218e032
MD5 bcb24125997a1f28305d20cea46a529c
BLAKE2b-256 8b44db6b8c7df5c3a153d41401714ae9823688ce1d682a6516d9f87e97f0042d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc6fc4c216cd14035161d48c3cc7efe0a9ecb24249101a0fb0075268e916e24f
MD5 22c9450b865224a6a303c38228eb34d4
BLAKE2b-256 3c685e07fabd55aa32e0c3ac936507625a295bdca14699d2f6f50d64e57d6ed3

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fcada390573296768c9ac1717803d1595e4f053cbc34b3a9208aa808c67584b2
MD5 b73be013b94e939f080a6f209158578d
BLAKE2b-256 6cc872a8031e760cd93425ab2ffbcf04d79a246cde327ad6cfed27ebd26e3a2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2045026544fde678ab8eeb7ac3a7c8cbd881d29db05820b91984e9a8d5fd2367
MD5 60bf3b257ac2d1a8bd64877c12ac4ab0
BLAKE2b-256 11281cdc9e7c2df2546f1d7be0b5717ddbc1c3d63051f28604a37a6335f54bc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89f975d77e9ca78e4133a69438863343ca51b2faaa798a3dfa9c6350f6fc8f2a
MD5 587c361e8e1788428e034310c8133591
BLAKE2b-256 c702cb2617727b0251c4258efe02f6ede758774ea93ea42eef4e4100fd970372

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: bgen-1.10.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bgen-1.10.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4bef1dc07de4d1b4dd3869cd101b744f7c95d3003d83a411f48cf20d2e5b6604
MD5 11babcfd5ab63dbe0eebd8a023ce931e
BLAKE2b-256 c8df55542452e086d00bca6927acdc42ec5e8273412dab6e9859fdba8b3a352d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp311-cp311-win_amd64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab9f7ff5b83e056547d1117a407c9c2014e91aae96bb4d13ef4d248e8c5f955c
MD5 7919cef1c4724dc83b8b232be14fbfad
BLAKE2b-256 823ba6566b154b6d3bc6a859f5e63618a0108d4966f5538ea5f3c969731bf7c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7152a66f8619beaef59ebbf5db888492b79f369f2ca6eb6830d049475e244dc0
MD5 51383c2b464841278626cf81baf3a027
BLAKE2b-256 ea6d0516ae13abb405c0bd2451bfcfca45edbe511ccf103f316a5f4d2e012fba

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22f06fee0e5e0b2b75a1dd4e1fa0be53d1fa586bf23673f102c537921546377d
MD5 42839e1b24d69e687b829603fd612a77
BLAKE2b-256 8ce229f42b1b65c5cbe95c5b9c547c8078f496860c0a1fb623060ef56e5bd51c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3654ff4290c548c45cefa6e0c5d9bd33c78f89f407875790a4d5899dcdb45aae
MD5 522fe26fe8d3792ade18e3dbb15fd893
BLAKE2b-256 bf7a65868d45344f0c53a702d24c2574f2859ed39e42482c7531e9cc3ef3e098

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3283e441f4eea8c65016904fa2bac73ec268ceef366f36f327059d2ac7bd5dbc
MD5 68dc62bdb0ba277c4631a253e4542929
BLAKE2b-256 ce78e3705eef236a606f95009957660588d083ff43125b61d63c696d5a69fb2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: bgen-1.10.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bgen-1.10.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7ae8be3008e8a61bb5a2f7a828a98fee642807112d71a6cbbfd090dff4686921
MD5 d874da2b5fe1801d874b5b7265eedbed
BLAKE2b-256 acdf2a88d4a288de1a9864dd9600d786e157b22a9c4803ced7b6d597ed31a9dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp310-cp310-win_amd64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e2c9b9d7bf0e9c3bffffe38482422b69a7ba233eda39f034a0b0faa69aef1d7
MD5 acf7f5d42c49047bf559ca3d6b9cb197
BLAKE2b-256 c36d63c8a859cd7863cd9828aca2f59e2738873804ea797283e68ca4cd9105b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d77b5388fa32dd1a1edb10e47fccb8d71c8ae1ea22c79527a506b32d7ab8f6a
MD5 8d631adaad1c178e27f5bbae08f54abf
BLAKE2b-256 57ce217eeb71b73db123164df74e99dd396fdbd759096e2b2fa11e4071960567

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5ed45f068829a9b2dc92fd87cf4dc35cc7447c340ef2c17281f5a2c3cf510955
MD5 3d3b54b0e7d7f9aaa3b44c8d0489ff30
BLAKE2b-256 e1b306f9e142f4c4f801cd03b56c6d2c62b95f3ad35d251889adc011de05c28f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 741f3e6c08f329cd9040d7198be0e395fa3458ad98272ce5e34d9e22fcf73301
MD5 79b2066c24dc2cf3bd7c7ce59d127b88
BLAKE2b-256 88935558f3e14c84d4cbad2ef61d89aa52a5e36bc3d21a8a2c2a4fbcbddd816d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 262310e78d7cab1da8b8905b0c3a253a4bdb4199fff500ac2f607f3c2d32013f
MD5 8ac19e804fe577354245d3843103c0a8
BLAKE2b-256 e9d3840609ffdd772ed9f255fd994d5fe8acf6df6e00f9c88b3e89a0745c2672

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: bgen-1.10.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bgen-1.10.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d872c3985b87d7b1e78ea857be9f60d04ace970db978d545a436946ecbea7d2b
MD5 60bc0d2acb88a27e51a3b97648a78cae
BLAKE2b-256 d7b254aaef4e57807cc34c95f80d055851bf5e5cda24bb7b2882139066c6e318

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp39-cp39-win_amd64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6dff512be2070903532f4998b4b2cb03ee7d0bf6426dabc835f96563c28fde61
MD5 2c98b6769521639de89742dafdb01b4b
BLAKE2b-256 926a57ffc5f4d830e2f2c10c76bf883c51b02eb4d18462ee0d6804ea524d12ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf1b9c9727af7bafc15b8ef323780b890497659aa3e403ecd111bf7880468590
MD5 2f649fbe76add2814dc05586499506ab
BLAKE2b-256 b72943a53e61f7e8b638bb1295121875d8fbc7fb06890b108bbf06e97d2a4fa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e94a6a003082633c8efdf8cd469795c0f6adccb83277a6b562de83cd42906628
MD5 ae7520aa70980ba3c102190067896564
BLAKE2b-256 b7625dbf62536ccc1d14e9730c9d1063989d4c83047062dd73f3f89f9c0f0a79

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for bgen-1.10.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5f0a5ed9d3e2bda0b01ddd75976c0ef7db0ae44943841ecf10cfc3d384d74133
MD5 b7149e60940e4cc0f57eb1e3038a2a51
BLAKE2b-256 79241a7d1eee92354eef60038da0c4d8ee569395826e5d523148d856edf561b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

File details

Details for the file bgen-1.10.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: bgen-1.10.2-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bgen-1.10.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa821e74e716b6733fc570a84ae919bb4a352e4c7aef5820d08dd33b4dd3ad6e
MD5 fb52d41058e3e8a89e698be194963b5d
BLAKE2b-256 6e431a6522e97913a142dcc5abc40ba0507dc588b7c2a413bbbc092eea55ae6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bgen-1.10.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: python-package.yml on jeremymcrae/bgen

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

Release history Release notifications | RSS feed

This release

1.10.2 This release

43 files

1.10.1

43 files

1.10.0

37 files

1.9.11

37 files

1.9.10

37 files

1.9.9

43 files

1.9.8

43 files

1.9.7

43 files

1.9.6

43 files

1.9.5

43 files

1.9.4

37 files

1.9.3

25 files

1.9.2

25 files

1.9.1

25 files

1.9.0

25 files

1.8.1

25 files

1.8.0

31 files

1.7.3

31 files

1.7.2

26 files

1.7.1

26 files

1.7.0

26 files

1.6.5

26 files

1.6.4

26 files

1.6.3

26 files

1.6.2

26 files

1.6.1

26 files

1.6.0

26 files

1.5.9

26 files

1.5.8

26 files

1.5.7

26 files

1.5.6

26 files

1.5.5

26 files

1.5.4

36 files

1.5.3

36 files

1.4.1

36 files

1.4.0

36 files

1.3.1

26 files

1.3.0

22 files

1.2.17

21 files

1.2.16

21 files

1.2.15

9 files

1.2.14

8 files

1.2.13

7 files

1.2.12

7 files

1.2.10

10 files

1.2.9

10 files

1.2.8

10 files

1.2.7

10 files

1.2.6

10 files

1.2.4

10 files

1.2.3

9 files

1.2.2

4 files

1.2.1

1 file

1.2.0

1 file

1.1.10

1 file

1.1.9

1 file

1.1.8

1 file

1.1.7

1 file

1.1.6

1 file

1.1.5

1 file

1.1.4

1 file

1.1.3

1 file

1.1.2

1 file

1.1.1

1 file

1.1.0

1 file

1.0.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page