Skip to main content

PyPop: Python for Population Genomics

Project description

PyPI version shields.io Build status pre-commit.ci status Website pypop.org GitHub license Citations DOI

PyPop: Python for Population Genomics

PyPop is a framework for processing genotype and allele data and running population genetic analyses, including conformity to Hardy-Weinberg expectations; tests for balancing or directional selection; estimates of haplotype frequencies and measures and tests of significance for linkage disequilibrium (LD). Full documentation is available in the PyPop User Guide.

How to cite PyPop

If you write a paper that uses PyPop in your analysis, please cite both:

  • our 2024 article in Frontiers in Immunology:

    Lancaster AK, Single RM, Mack SJ, Sochat V, Mariani MP, Webster GD. (2024) “PyPop: A mature open-source software pipeline for population genomics.” Front. Immunol. 15:1378512 doi: 10.3389/fimmu.2024.1378512

  • and a citation to the Zenodo record which includes a DOI for the version of the software you used in your analyses. Citing this record and DOI supports reproducibility by allowing researchers to to determine the exact version of PyPop used in any particular analysis. In addition, it allows retrieval of long-term software source-code archives, independent of the original developers.

    Here’s how to cite the correct version:

    • If you have PyPop version 1.1.2 or later, currently installed, you can run:

      pypop --citation

      which outputs the Zenodo record citation in the simple “APA” format (you can also choose from BibTeX, EndNote, RIS and other formats, see the section on command-line interfaces in the User Guide for more details).

    • If you do not have PyPop installed, have a release of PyPop earlier than 1.1.2, or otherwise want to obtain the DOI and citation for specific versions, follow these steps:

      1. First visit the DOI for the overall Zenodo record: 10.5281/zenodo.10080667. This DOI represents all versions, and will always resolve to the latest one.

      2. When you are viewing the record, look for the Versions box in the right-sidebar. Here are listed all versions (including older versions).

      3. Select and click the version-specific DOI that matches the specific version of PyPop that you used for your analysis.

      4. Once you are visiting the Zenodo record for the specific version, under the Citation box in the right-sidebar, select the citation format you wish to use and click to copy the citation. It will contain link to the version-specific DOI, and be of the form:

        Lancaster, AK et al. (YYYY) “PyPop: Python for Population Genomics” (Version X.Y.Z) [Computer software]. Zenodo. https://doi.org/10.5281/zenodo.XXXXX

    Note that citation metadata for the current Zenodo record is also stored in CITATION.cff

Quickstart Guide

Installing pypop-genomics

If you already have Python and pip installed, install using the following:

pip install pypop-genomics

Otherwise, follow these instructions to install Python 3 and pip.

Once pypop-genomics is installed, depending on your platform, you may also need to adjust your PATH environment variable.

Upgrading pypop-genomics

pip install -U pypop-genomics

Uninstalling pypop-genomics

pip uninstall pypop-genomics

For more, including handling common installation issues, see the detailed installation instructions .

Once you have installed pypop-genomics, you can move on to try some example runs.

Examples

These are examples of how to check that the program is installed and some minimal use cases.

Checking version and installation

pypop --version

This simply reports the version number and other information about PyPop, and indirectly checks that the program is installed. If all is well, you should see something like:

pypop 1.0.0
[Python 3.10.9 | Linux.x86_64-x86_64 | x86_64]
Copyright (C) 2003-2006 Regents of the University of California.
Copyright (C) 2007-2023 PyPop team.
This is free software.  There is NO warranty; not even for
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

You can also run pypop --help to see a full list and explanation of all the options available.

Run a minimal dataset:

Download test .ini and .pop files: minimal.ini and USAFEL-UchiTelle-small.pop. You can then run them

pypop -c  minimal.ini USAFEL-UchiTelle-small.pop

If you have already cloned the git repository and it is your working directory, you can simply run

pypop -c  tests/data/minimal.ini tests/data/USAFEL-UchiTelle-small.pop

This will generate the following two files, an XML output file and a plain text version:

USAFEL-UchiTelle-small-out.xml
USAFEL-UchiTelle-small-out.txt

Detailed installation instructions

There are three main steps:

  1. install Python and pip

  2. install package from PyPI

  3. adjusting your PATH variable after installation

Install Python 3 and pip

A full description of installing Python and pip on your system is beyond the scope of this guide, we recommend starting here:

https://wiki.python.org/moin/BeginnersGuide/Download

Here are some additional platform-specific notes that may be helpful:

  • Most Linux distributions come with Python 3 preinstalled. On most modern systems, pip and python will default to Python 3.

  • MacOS 10.9 (Jaguar) up until 12.3 (Catalina), used to ship with Python 2 pre-installed, but it now has to be manually installed. See the MacOS quick-start guide in the official documentation for how to install Python 3. (Note that if Python is installed on Mac via the MacOS developer tools, it may include the version 3 suffix on commands, e.g. python3 and pip3, so modify the below, accordingly).

  • For Windows, see also the Windows quick-start guide in the official documentation. Running python in the Windows command terminal in Windows 11 and later will launch the installer for the Microsoft-maintained Windows package of Python 3.

Install package from PyPI

Once you have both python and pip installed, you can use pip to install pre-compiled binary “wheels” of pypop-genomics directly from PyPI.

pip install pypop-genomics

Upgrade an existing PyPop installation

To update an existing installation to a newer version, use the same command as above, but add the --upgrade (short version: -U) flag, i.e.

pip install -U pypop-genomics

Installing from Test PyPI

From time to time, we may make available packages on the Test PyPI instance, rather than the through the main instance. The above installation and updating instructions can be used, by appending the following:

--extra-index-url https://test.pypi.org/simple/

to the above pip commands.

Issues with installation permission

By default, pip will attempt to install the pypop-genomics package wherever the current Python installation is installed. This location may be a user-specific virtual environment (like conda, see below), or a system-wide installation. On many Unix-based systems, Python will generally already be pre-installed in a “system-wide” location (e.g. under /usr/lib) which is read-only for regular users. (This can also be true for system-installed versions of Python on Windows and MacOS.)

When pip install cannot install in a read-only system-wide location , pip will gracefully “fall-back” to installing just for you in your home directory (typically ~/.local/lib/python<VER> where <VER> is the version number of your current Python). In general, this is what is wanted, so the above instructions are normally sufficient.

However, you can also explicitly set installation to be in the user directory, by adding the --user command-line option to the pip install command, i.e.:

pip install pypop-genomics --user

This may be necessary in certain cases where pip install doesn’t install into the expected user directory.

Post-install PATH adjustments

You may need to adjust the PATH settings (especially on Windows) for the pypop scripts to be visible when run from your console application, without having to supply the full path to the pypop executable file.

  • On Linux and MacOS, systems this is normally fairly simple and only requires edit of the shell .profile, or similar and addition of the $HOME/.local/bin to the PATH variable, followed by a restart of the terminal.

  • For Windows, however, as noted in most online instructions, this may need additional help from your system administrator if your user doesn’t have the right permissions, and also require a system reboot.

Uninstalling PyPop

To uninstall the current version of pypop-genomics:

pip uninstall pypop-genomics

Support and development

Please submit any bug reports, feature requests or questions, via our GitHub issue tracker (see our bug reporting guidelines for more details on how to file a good bug report):

https://github.com/alexlancaster/pypop/issues

Please do not report bugs via private email to developers.

The development of the code for PyPop is via our GitHub project:

https://github.com/alexlancaster/pypop

For a detailed description on bug reporting as well as how to contribute to PyPop, please consult our CONTRIBUTING.rst guide. For reporting security vulnerabilities visit SECURITY.md.

We also have additional notes and background relevant for developers in DEV_NOTES.md. Source for the website and the documentation is located in the website subdirectory.

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

pypop_genomics-1.2.1.tar.gz (7.6 MB view details)

Uploaded Source

Built Distributions

pypop_genomics-1.2.1-pp310-pypy310_pp73-win_amd64.whl (312.7 kB view details)

Uploaded PyPyWindows x86-64

pypop_genomics-1.2.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pypop_genomics-1.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pypop_genomics-1.2.1-pp39-pypy39_pp73-win_amd64.whl (312.7 kB view details)

Uploaded PyPyWindows x86-64

pypop_genomics-1.2.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pypop_genomics-1.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pypop_genomics-1.2.1-pp38-pypy38_pp73-win_amd64.whl (312.5 kB view details)

Uploaded PyPyWindows x86-64

pypop_genomics-1.2.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pypop_genomics-1.2.1-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pypop_genomics-1.2.1-cp313-cp313-win_amd64.whl (313.4 kB view details)

Uploaded CPython 3.13Windows x86-64

pypop_genomics-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pypop_genomics-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pypop_genomics-1.2.1-cp313-cp313-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pypop_genomics-1.2.1-cp313-cp313-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pypop_genomics-1.2.1-cp313-cp313-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pypop_genomics-1.2.1-cp313-cp313-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

pypop_genomics-1.2.1-cp312-cp312-win_amd64.whl (313.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pypop_genomics-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pypop_genomics-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pypop_genomics-1.2.1-cp312-cp312-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pypop_genomics-1.2.1-cp312-cp312-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pypop_genomics-1.2.1-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pypop_genomics-1.2.1-cp312-cp312-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

pypop_genomics-1.2.1-cp311-cp311-win_amd64.whl (312.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pypop_genomics-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pypop_genomics-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pypop_genomics-1.2.1-cp311-cp311-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pypop_genomics-1.2.1-cp311-cp311-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pypop_genomics-1.2.1-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pypop_genomics-1.2.1-cp311-cp311-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

pypop_genomics-1.2.1-cp310-cp310-win_amd64.whl (312.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pypop_genomics-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pypop_genomics-1.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pypop_genomics-1.2.1-cp310-cp310-manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

pypop_genomics-1.2.1-cp310-cp310-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pypop_genomics-1.2.1-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pypop_genomics-1.2.1-cp310-cp310-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

pypop_genomics-1.2.1-cp39-cp39-win_amd64.whl (312.3 kB view details)

Uploaded CPython 3.9Windows x86-64

pypop_genomics-1.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pypop_genomics-1.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pypop_genomics-1.2.1-cp39-cp39-manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

pypop_genomics-1.2.1-cp39-cp39-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

pypop_genomics-1.2.1-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pypop_genomics-1.2.1-cp39-cp39-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

pypop_genomics-1.2.1-cp38-cp38-win_amd64.whl (312.4 kB view details)

Uploaded CPython 3.8Windows x86-64

pypop_genomics-1.2.1-cp38-cp38-manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

pypop_genomics-1.2.1-cp38-cp38-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

pypop_genomics-1.2.1-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pypop_genomics-1.2.1-cp38-cp38-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

pypop_genomics-1.2.1-cp37-cp37m-win_amd64.whl (312.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

pypop_genomics-1.2.1-cp37-cp37m-manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.28+ x86-64

pypop_genomics-1.2.1-cp37-cp37m-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.28+ ARM64

pypop_genomics-1.2.1-cp37-cp37m-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

pypop_genomics-1.2.1-cp36-cp36m-win_amd64.whl (330.5 kB view details)

Uploaded CPython 3.6mWindows x86-64

pypop_genomics-1.2.1-cp36-cp36m-manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.28+ x86-64

pypop_genomics-1.2.1-cp36-cp36m-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.28+ ARM64

pypop_genomics-1.2.1-cp36-cp36m-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6mmacOS 10.15+ x86-64

File details

Details for the file pypop_genomics-1.2.1.tar.gz.

File metadata

  • Download URL: pypop_genomics-1.2.1.tar.gz
  • Upload date:
  • Size: 7.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pypop_genomics-1.2.1.tar.gz
Algorithm Hash digest
SHA256 978fbfc36e99c1ec00e34c9f338572f752b8219873cdd42dc1364b3e2ecd4258
MD5 ceeb6ab13d8b4243d917c908afcf3332
BLAKE2b-256 6e004881f6d88c15804a8746060ea3fd88e963d43751bac35733cf6249d99bc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1.tar.gz:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e3bdee8f00f4c0b87f048391770b03d713e6a05d3d76bbe53ede50ca94b640b4
MD5 49ada42c24a33ec916b2b93a7a9e7310
BLAKE2b-256 5e69999bc9b78e64571c1eb226e9931a68b33128afdca5bd785a2cb2316a849c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-pp310-pypy310_pp73-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4a51d1960e0fa8baa8881d0a5f3831709db093a15201207a40336e47ea9bd62e
MD5 379fa8fc0cfcbac1f1892d2f16919333
BLAKE2b-256 b741ed9751546c24f9682000c49023d4f69905e6398a28891b8f2e546b18f0c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 011760fb0ced99872ce55a20732f9e51601cd45d7d723fe10f64f498b367a886
MD5 870bd6d1e5fd55148e88a2d939146adb
BLAKE2b-256 9bcf696a0bfbb528ef50a521fd2c42c1eb2f72b0b5a696fa72476690b1a7db0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c3283ebf9addb16994890dd8e4196c0451dae6773954a87b4793b9df0930f239
MD5 e6eafe26a44d15c6b2ce5e0e9a8556da
BLAKE2b-256 3e04eeb76af5d9284c95e1fa38b6451f4ba932a0c9cb3f7019fc84b29cce5fb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-pp39-pypy39_pp73-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 405b97e9339abe9c6430dba43e122bb89eb7120503ea78da2f33c0549e21533e
MD5 34edafd784a0e446b29c57168715656b
BLAKE2b-256 902c7d5ecea168273d1d136a2c3e2de19416184e978a239e094e7a600e106ac0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8cf68b9f39b9023769f7e817f459936d7a9ba4975e3e0eee38deb44e86ed869d
MD5 c4cc5ee5b0754a5a357948a7b1673719
BLAKE2b-256 bf8261e8264a4d663eb1d18e16d4599b20ab7a623b97aee309a3b5c5f67fdcaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ec6e1212f3136daa46aa61c6bfda39d17a4f51daf2f87a2af18f91093dc63b14
MD5 c08bc1cd3a1b3aff825a198f863095a3
BLAKE2b-256 1a5f14b2508c087066898ae9ae11f0cfc560ebf4e05303576d8cfca9ff471205

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-pp38-pypy38_pp73-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b264d6de58fd2e346ea2f51967d783e147cf9a6179a11d86c4187655586e6204
MD5 7dbc91251d7eccd1ccde30ce29e5d76b
BLAKE2b-256 2ef904ee0b01fae0f38e24a8ee230039cd252a8a795638939110c5c94f79c6f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-pp38-pypy38_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e213881bdb40cc87173484960928ddf75f0436190bf64fa351483eac1f1e8096
MD5 0a71c1736d8e397cf0e447080dc86f72
BLAKE2b-256 8bd98e1190146e1a920b3833b905c43b5b77a705ff595ab4a863b3dbeeb940eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-pp38-pypy38_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fea5b45c5d18e67a6d7b0e279eb97a83d14635f6813d9d9720a93ec3c6d6ca7e
MD5 7e8d427a4b98679ff16774d834524a0b
BLAKE2b-256 43ba1768d6f0ea66386da6cfe5b925b7a0fe5137536d008cd1b8a085cc635097

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da17d5ecbb2ccd793322acdd1c1d34994f8d31062e8e749e8d58411bd384df88
MD5 a28c14151dedd4f253a0198ce9572037
BLAKE2b-256 4759c7da7ff796c96b1ee5664a004eedb77b17f90ba7df2e07843beb95c9f116

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8bab54f720ffadacd7b00402b0ceba3b502abe39419ed0718847b3e2a8636699
MD5 1bfe6d8efd3b09992a4b40358373d597
BLAKE2b-256 21c491b3945c17968f3c6b20fbf37522ea98154845418117bc48b33dfa5b6ca1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa2083066347eba5e1e6a3034396e9b5fc95a1c1f38aa28ac0ffcad8178e4569
MD5 4d5733cf072140252ed2febab18ad8e6
BLAKE2b-256 34cc2b411c2d7e9c76624b3068408d42a11e7fe3042b13242b1b919804dc1e16

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e994c1d4b97dc683a2cf540b978349c9e17ae192b7690de8ce8d286455bf0a8
MD5 d3a064b00b86f289a8bdae2a730f5a85
BLAKE2b-256 27cd015b86049fa19d9797dc3a90ade91a53b308dc900b7f6f3fef33e90fe34d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0dd23b1114838e804bbe329555976f08acb3280e1a26c30e1fde5dcac5ea780
MD5 4c1170a740a6ada72b26d4c0094c9554
BLAKE2b-256 2ef35d2821eaeb125f027e781d7fb56cb1529197bd135ef391b71421105d7621

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 372dd010d63eb84a0c9348e42d1f8325c312f1b529685117b4fc7cecff80b803
MD5 3e14a24af9546f4d7508719a38de8bc6
BLAKE2b-256 40d521277a9e34809eb8fbc9d362e6ae33183d92abbd8c2e59f509f409602459

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp313-cp313-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 25c1fe424acb01ab242742a4eef2c116428a3bb0164d2652fa03eef37276789f
MD5 5111b3f383983f7afca8fef65788f854
BLAKE2b-256 d945c61bd01906ee5cd4a999054753ae2885e87f9cf78e60f3c375ffae1744eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92f1f51526da2de8acdfd994beca82cf6dc70cab9f3768fefd321a76ecc5ca80
MD5 2063abfc26937d32381cd4970d2ea5cf
BLAKE2b-256 6b1efd13a70a2596c79229e7d2dbf00ace573b272948379111228845968f1c96

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0ed47497fefcfb3d31d9a78d19ad96fe4a5533a75c7a2b1e68717a842e963dd
MD5 c17f21d167bbb9c3fa83af43be27cf30
BLAKE2b-256 142b19c38e99f63ce0c17cc61bdd20477ed771405de9a5ed7c9c7893cbac0c62

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bdb030e263d7323d8d48357ee338d4c17c82c32ef04d66e762fb5220c8c88cd8
MD5 00a17388e3c7147bc19d8c1ece20babc
BLAKE2b-256 5b3adcf8f4ec9a9db13f1950628a6e49c3c17736902f1c4bc1f3a04f47e6640a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6109a60342f1ec92fc212ee1cdceb2f903510b667de5f947fc1d1a6eb968c567
MD5 6fa61b24e20738daa5ab1dd0c6cce13e
BLAKE2b-256 51d710c563a8911bd12496c5c8f2ff4a8dafdd4ca822f238879351bfedc17ae0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01e498c5e991b3134fd2099f53fd906c437425ff07ed168772d01c0e88333996
MD5 a6e874fbe9df0e70d78e18758496c1db
BLAKE2b-256 46a1e35bbc6fb85a7c29dc65c90b6234c393b211713675723e2d5bf76780da90

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 22dde0fff93471947b2cae09c79cb6f491533f2da508198e75f79f2b70f9e6b7
MD5 39ab2dcb9e64efd692e69cda93825e3b
BLAKE2b-256 fc9207eac4328867d57e8ae15a1e04f5b7da84aae3e88bec44ac022a355bdb32

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp312-cp312-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4d13be78486275317e8a45eafac953831ad62d694758d7b119e97ca0eab53ea5
MD5 497a7ded3218cd45e9b4a8a579554e72
BLAKE2b-256 28d14ca4452962488fab7979f43b5fea313ef92cd4bbecfab01c52a1b6823cff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 130f12340d224b312067c2e5f460013586ce8b1d25ec3714daf507847bf273a6
MD5 2756b83dc186f2ff4e4b7498d809c31b
BLAKE2b-256 42bf8c88250d31697c0dfa7b5068e7c71700adbdd00636ed8615454d06e3df10

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de5545aa26404e9211e435c676d68795a05ec21f82e587f6325530319fc2e9fd
MD5 e9a380e923b7e5d65fcfbba2fb9cdddf
BLAKE2b-256 b4a03d170df769044449ff783bc249f6b1ac513db6e59aa69c8abbcdabc3e4cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f951e266cc40d930f36d8854e3be567a84e58a47805389c18e25dcee8b105137
MD5 21a34aac64c144d630536dfc6738d06f
BLAKE2b-256 9b6367a0c99a41c58369176e45d3682d9572055f9f1f7e2f4c685b80a3815111

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e526a48b565a10fb945ebbb81dfb166fcaf0b40afd6088428e45da9e90acf593
MD5 1fcabd5a2d4a4b6bba98de18ad0c07c8
BLAKE2b-256 439e4ac8a6bb9f17377d1c0763aaced4a875c2a15538fa3c80433106bac7f2ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d02a9e4b28247b9732ea774586a697936286431171a573c8a4963d78cdd71de
MD5 b639460541b88a31a9f43a2b901752a0
BLAKE2b-256 4cffa596740d0d026aa23689f0c1403b2e2c7a28c3dd8707250afae2ee0af54c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a8505dcc94c5c9a62c9d0b4bf9089a0d8442a27c5baca223c7808d9d4b7dd33c
MD5 883d0688b5c1833722896523d7619082
BLAKE2b-256 8cbaf92a91c44eaaf3310b7bf540fd3eb904178715e4e3c3ed579b41de3ef2f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp311-cp311-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 83ce1478f3ad9a97771d4b667c94dc59bbb46db8c35b02874750b120fb5ebf75
MD5 cc4bdd1b3f5672a9e1eba1fc354f4bdc
BLAKE2b-256 e03fed3ce0f995818d5d5e13ad38cc6bd5e48141a9d4f249bc77a196af46d210

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b72942f8d903cb80f1215bff706f49d87f49d2ada0248df454d3cb72f202ae0c
MD5 5574b301e4c1846c2838365ae0a60835
BLAKE2b-256 439440807cb17112a5cf6c4e3cc978f8e41815fac4447276d30121bf36f9e043

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 477436868601923803c03e9274c7b0b193da71a7785b9de64d0e182757941af8
MD5 33998d23911b20163354e9d67ffd1ccc
BLAKE2b-256 87c1bc0e5ca7818efe20df33ca01a7f2a689f586dbc806291a039c35b9d714f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c09a9b23b6416b2da4b1eee0d4fe87a114cf40a3a5ccbdf1c28b150e0e60ab9e
MD5 352463ca2fd78d35e6c066fafe68f8a6
BLAKE2b-256 b407036bc2ad76d0ac61654c862c05a2d32dbf12e5190d99e39d0c31f11af959

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f08323b5f81d05a05fdc6f98d15f13ee85ac67b22bea19dae1ae60ef492d8ebe
MD5 44579b438803c3d3aec9144dc4fde4c3
BLAKE2b-256 6f85fd11761813e6b55c8a96ba24bc9bd9d73d31af89247f083eb3243d282b52

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45442da3564ada362402167ac7b114860bc473e0a6b930da2cbe1cac725adc40
MD5 5eef6447c8d92426a4bc85bdde71585e
BLAKE2b-256 4a566fbe8379f868391f746bb6f58f04ce74b294bf2e40cc7e00227cbedbfd31

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 563cfea089a5e425549af6924fad3028be509706a496eec247b39cd35276e6ae
MD5 df47254695721ac82dd97c11d70f3f80
BLAKE2b-256 3f87b1bca7af060f2be819eea52b7fc9baa85e454a1d20590d2eb6ad0d3cb19c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp310-cp310-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 684ba9359ab784db5648a391bbcc0b92b7f77002dbbcc30fb48333332f443892
MD5 3b0fd110a78a9c2b3ffe3bceb181fe0c
BLAKE2b-256 d45db77b9b8258d239c6659d44d0fa3ccded76ceccc2723b47afe488ca917512

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38021161b1b88d87442dbe61bf2154140e2116fa0a8ed0529f3e2fc8fe6f3fb0
MD5 32d26f94c0d82a8ceb6ca89f5fd15ff4
BLAKE2b-256 a91e274cafb274354aa2fdeaf35c52ca6b131a9b1fe5c4016103454bb17ec46e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24a8531cf03fb6d5321682f949fb9b26b27f94fe04ff0aeac1366219c33e34d1
MD5 c4ba0de8cae0a6e9530af8e658dfaa91
BLAKE2b-256 0040f625eef489a2be15d87ac140f142cf2cd91de88e04f79f95678f1d5fe7f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fcd21471e24f3e4992ee943dfebf4ff02bf10abbc44030a60d856de7e78fbfe1
MD5 c9a6413c4b18a5ac6118f18af4110e9e
BLAKE2b-256 256544da96b64e1d38b6bc982adf9e4a99c924b06b09143be36e704a6d6eb6dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0ae5c07af618688b8facf0936392f2ddd756ff787df0822ade3e40b51680cd4b
MD5 41c99cb19356de1e06aeadb8c3a2b907
BLAKE2b-256 73ce936dee6a007796624de18a59679004c380c0d255292a9772611f62c7b359

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4f3d821954e3c4f9351e7cac1b4ae818ac2c5bb338d84e38a06dc584f4b1d6f
MD5 a9a5ecb75a44361778a84b1e7b18f358
BLAKE2b-256 68ed06aa7c0663d8f59845c4d36fa74ddece27f6bbd1ebe9662ec79bc7be1d30

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 802caaac4f40f8cd6ac052759ec7a1aa55b7885be1bc05258d6db650875b9332
MD5 96b2eddb4aa159887dbe1499dea0e318
BLAKE2b-256 97fbd55109498fe20e5ee5cec4cb585da5e350814d57ebb3aeb3f4878a472e30

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp39-cp39-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 15554fcfc4a6020b1d9268b96a992e5f2d34b2d1b789493b9356a27b016092e7
MD5 40d9097e347d82896c533ea184871fa3
BLAKE2b-256 3550f75b540ed0fed8c24dcbb2b5a71c4a4aa0399637e404b75da0706a0c75d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp38-cp38-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c9867bc2afeebee2ed3dfc528fd839a05a5f6f19b5fd244be74ce320018087b
MD5 ea9c8271a45d76d0ed91979b03a98722
BLAKE2b-256 035bd048b20ab0daec11a5f63826fb4fd9aa887dbe34d0ac0e3b2cabfc06bb36

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp38-cp38-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 30fd0f5789e5ed031d6c5b0b0d68e297fe7d9700166030eba55ec1714079e5c6
MD5 df605d6e4382f30e059332cd22b104e1
BLAKE2b-256 590bf34087faf9875449f1092d69821a0c5446ad6878de36bd3dbbabd2f629db

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp38-cp38-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed2a2f12bef87e504d2ee53776e843fa1a99b4180a3a9ed6e40cede92c31e3df
MD5 5f286b5f8f04d86b6afcd95286d13c37
BLAKE2b-256 dc540c6d84a35ad86c6677d87a95de8bb0441d67e232e6515092a08f59b79b1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 666fbce82e042e386d2ff67b5c929a5d6155aaf1367f2ae66a1b143e5a5231d6
MD5 fe35e238db2bb539a24401a56f6be2b7
BLAKE2b-256 1d0ff9ca625c81f2015a1d7b8cc0337c3d4f3100a0cc890860d3812a91a40c26

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp38-cp38-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7ffee2448186a6be5a22f00e17867c415ee5ac79f3c830bdce54f86dd9a88fa5
MD5 7cb3585f677c2b712fcd08dd0e30638a
BLAKE2b-256 e8e8ba7918d0adc45b273cea08e9170e3aef42449a1f99920a056a16b8182ab7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp37-cp37m-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp37-cp37m-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3c6cb8a9fc03c587eb13fcbfe8f89efe36cbd684bac0c8e97903699fa1f2acb3
MD5 dfe795359cf2f33e53e8be176947a198
BLAKE2b-256 7043bc3645959105731124722efce6f32557fcc578fc45f5cea7301428946278

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp37-cp37m-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp37-cp37m-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp37-cp37m-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3e462f465bb1dd588707c746370b54906352bb0fae560949cde858e3c9cd81c
MD5 87e7ce4fed383fe4b0bfbd5119b92529
BLAKE2b-256 7a8e5cd53142e558e46a37885420fb1b87d67c3d24d6ec27b55e2db6d97031a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp37-cp37m-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e21d13b6c88b9602b8f389269eebadc149045c5c0a940f759199915834c6bc8a
MD5 0bcc4d4f7c40d229c9170c6784b36777
BLAKE2b-256 ca6de47bbe6740089249097d7777632a7204d55d9a9666057dc6418b8f8b8399

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp37-cp37m-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 50aa478c43ee9653da1b22d2fc163595c739cbe0f26b5a363d1d4a178fe835fe
MD5 223f6855fdd8a8592080c1754f021802
BLAKE2b-256 aa7cf2f57a0a86da55a36ae65a04e2d1f0b597cd111c030d6a6ae6d4f96f83d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp36-cp36m-win_amd64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp36-cp36m-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp36-cp36m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3896b49c3b63b519b1c3cc9240d904290d6e7b2cbac2b33a7a5381daf372be20
MD5 7d09de65047ba34a6dd57b13b36d5e74
BLAKE2b-256 3899cf942374a2cad823077cd67b92672df88c48d33f17258a3a0a4d670f25c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp36-cp36m-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp36-cp36m-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp36-cp36m-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 905c1bcbac7b40911d8adec435a51f25232273d0d61ec0962ec1f16d941cb9d5
MD5 c55021226579947446fda13a7ed63dbb
BLAKE2b-256 c991d4a141ad7cc71976eb45f30fa4ce4054ba47d254f4e6e02634211faf43fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp36-cp36m-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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

File details

Details for the file pypop_genomics-1.2.1-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.1-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bbcac24a82331b9b9b28fdc6199cf069a307b6b9178f554823318c3f2f06185e
MD5 e60ae8d9c352e26233aa719e695ed33d
BLAKE2b-256 8ec8d405ee2018fdf563e8cf5c224a0603b2ebb0b0ebad162c32be77b62cbdbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.1-cp36-cp36m-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page