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.0.tar.gz (7.6 MB view details)

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded PyPy Windows x86-64

pypop_genomics-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy macOS 10.15+ x86-64

pypop_genomics-1.2.0-pp38-pypy38_pp73-win_amd64.whl (312.6 kB view details)

Uploaded PyPy Windows x86-64

pypop_genomics-1.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

pypop_genomics-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pypop_genomics-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.13 macOS 10.15+ x86-64

pypop_genomics-1.2.0-cp312-cp312-win_amd64.whl (313.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

pypop_genomics-1.2.0-cp312-cp312-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.28+ x86-64

pypop_genomics-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.15+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

pypop_genomics-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pypop_genomics-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pypop_genomics-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.15+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

pypop_genomics-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pypop_genomics-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pypop_genomics-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.15+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

pypop_genomics-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pypop_genomics-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pypop_genomics-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.15+ x86-64

pypop_genomics-1.2.0-cp38-cp38-win_amd64.whl (312.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

pypop_genomics-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pypop_genomics-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.15+ x86-64

pypop_genomics-1.2.0-cp37-cp37m-win_amd64.whl (311.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

pypop_genomics-1.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pypop_genomics-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7m macOS 10.15+ x86-64

pypop_genomics-1.2.0-cp36-cp36m-win_amd64.whl (328.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

pypop_genomics-1.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

pypop_genomics-1.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.6m macOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pypop_genomics-1.2.0.tar.gz
Algorithm Hash digest
SHA256 e4fad2d692d74ba938ea37ce3d0d56ca560c43fbcd454d396d3ff3f988f7b4d4
MD5 6035588e467a7067962da5fffe175dd4
BLAKE2b-256 ed2fc057d7c89636904ecdca2f8e55f033e5fe7168c71f9f026f04fb0f886b6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0.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.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bf10adc82f9c2218a4d6a3d69f3a03659e9392f27bb68d1f4c5f78719cafaecf
MD5 dcd57901f43dbd423db5f716224c2791
BLAKE2b-256 026a75c91977a176e205bc368645b737c2173f923699eecde5c96d732f5b57a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4978e2aac0c77ec85589f23662784616ce41f05a10b63d044f0744f799c21560
MD5 9a5c2ceac373975d408b34edba6fc828
BLAKE2b-256 e6c913e399daaf6f0eb14ca8744fc76e3433e18990cdf7bc6d7cb4f6357ef0d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_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.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 01793f8746482e4ba907a69c7db72cd23e42e51c6d9152c705f683cc5372b9c7
MD5 174c16244cc0c03f593484ed081baa50
BLAKE2b-256 284c5eda72ccc18aae37886e31db0eadf189cc1e2d6700108f018dd32738ad6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bc19c975267eb174e8a454a942c40c33dbce4480ef1ee606d1a55bc9b3a22d01
MD5 ce66fe38679f3fee4795443980ab3ba5
BLAKE2b-256 be3ef5d59463164072933c91570384dfa71eab8596137c6bd4fcfa7ee3e451b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 412e1d153ed124293ae4b74e55fccf950d9fac54a42ba0619f59c5608ffdb228
MD5 b42f19b3bc9e6fb17fe372d6dcba76c4
BLAKE2b-256 017d12148ea41a0f21cd689f04ed52d17d5d31af3ae814cf1b375096c0321a0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_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.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 41e4104daeb4f48084226552963b7f0687603337750023eea867b07f147a2bb9
MD5 5abce394c237087a5a499f9ee9497883
BLAKE2b-256 31d9e0b521766a41e825b673292d88e9e36b2cf1f4f584c013da7291556004f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 36d3becd6981c083beacd82f6c24be6304a8c4347875bf2f1f6ce5dc9c751c31
MD5 50b190c304f46f3fc2067fd7bf97b050
BLAKE2b-256 26a1b014d38ea56df546d1397a4f5d196ffbfe262869ac48d480d73e17c77cf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51da22909a799f08abf29646ad38137c3023eb25dd03e85d3419e8b9467a0ded
MD5 2dad7f227bb37fea1050126442dbf7f5
BLAKE2b-256 695b5cc95e46ca9ddf612f67e233fd3be74ea4268f8352c0bdfe0148117ebd09

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_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.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 441c87c9a2463e557433ae37fed36690a329df0227f66c87815fe5e8f725d280
MD5 779de27414b70243aeebd850afca1d3f
BLAKE2b-256 27d612b1b8efbe84397ad477cad15102cd2c575cba66c0af7f02dd71b9ba83a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 be0e1f484096deee0d86a81e572ee6d64691e939b0c219247e57c49ae6caf78f
MD5 f6596eee50a2a996f7a0672e1238def4
BLAKE2b-256 9c4bed0e52aee8dd5b66a0298653104b752747fa4a266b556ad76174ecb5143d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63dc051c9cbd56af5348c6cf6801be616ef172ffbcda5209fd008918e667b841
MD5 57b9e55176fa56949d908d195b19bf95
BLAKE2b-256 b4ed6e878969f38604546e588cf8cd448e73178cae9a982ff287f6fc6d679506

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3ccce421258bab843f6f1831b5d30735c47e849f0eb5225a6e177c35cfcb9fc
MD5 2e56e7d5ae3fda6b71c9971411c4ed41
BLAKE2b-256 ac1553938b9e607b1a11bb16e670118188e7ce22ea6ffc9441a181e87cabd79c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_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.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 669dd56c6e3baa7e73e6f56dbd91f08fba84642e4f9eed7dc6805e7f617a8876
MD5 144071e2a2b6d83e6c42e871b783b243
BLAKE2b-256 4c853caeeb22b8ff88fe5dd0ffff28a964a7d227b934314d718a843b08f2d8d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 414335b59ce849ca6cd07c3f3c9f789188b5a794cd94cb28d1e655d0ee6367d7
MD5 8e3490c0c73132ca9ce060ae6ef8b11a
BLAKE2b-256 e3a27299cb89ae783c9cae2d345fc0f2804963e70975c1eae91dc2ae15565fc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d87fb2e149f540355a2254a0e3dc615e6eb4d6293b70f3e6d451f23738e97f3d
MD5 7a9cee61896b2c8c2548f6c30d6e1462
BLAKE2b-256 d7406aa9ce2de9282e1e42ad1c3e84ccefb0a1e5ae66ccf37690589ced8aec7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4db32bbf59999b2d4ebe471d44e4f10bd4edb9419aa27c9639fed773f5025a1b
MD5 e64e812fc70c863478c7a7539785da45
BLAKE2b-256 cc96f8ecfcfd62c31faa495566f23c08345fd15300275e5ef81ee441296c72e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2155afdb2335d795cf34b19152a1ed79ab78ff0bcf7ea0914b5c6f14759bc553
MD5 2ff04923cc4bf3f3673e769a09078bdc
BLAKE2b-256 6c7d389beb70a2075498c06fd88c50c4e87c2e6797becbfb5253029f6e9fa657

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f30c3ebe08d95af989170414969ddacf4fe6c9d0daeb4ab619a85bc7039783ee
MD5 38cf95a4fbf4e3b11e5f2f46db45a44b
BLAKE2b-256 81ff5f87c24b666cfb1896e3d94c12b94b5e56600d552a6fc3f9575445f41f0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp312-cp312-musllinux_1_1_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.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20c9edd1eac739ad849cf4a55d5f8de9752ac8d0deb957cc1ad63bdd95356dda
MD5 0c5093c547235bc5d1d389077a9d2bba
BLAKE2b-256 f91a4216a27a3aa1499f7e500119f242a9fb3efd6cb7bfd6e130867c40d6a55b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ed7b69f710411502182a52dddcc0bc295a1b9a7fc6f7b7ba3817158fe555100
MD5 481fc08838aa8a8eed1ce1fe63887efb
BLAKE2b-256 59933b11d808fcd6101373e7ada4d0633a6a4449d03348c9ed43797086a7dd93

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 846e126d6b5f04f55d67f50fd4b5e7c56b336feb4a6873d484c29a182dac09fd
MD5 a44e9d8325def44800cac1a00f3005c6
BLAKE2b-256 124e3a67c821ee80aa92cd7a51a0b8786fbddc96fc2800c3c8e2c2fa0d17e669

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3186559ba4c323a5c0273fbf67bef349873161a8b16a5e9b434ba3357901a813
MD5 fc337c0b534bd65bd0ef9b4c09a755cd
BLAKE2b-256 a3991b22090ec39605b279db184aeb117935e378ae947bfeae1edec0896d15bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b000285cc772891b921352be0255377a6ec06d1858e7e490e289ad5093a7e7bf
MD5 0959ab7c43512436e3ec2e9b42b721d1
BLAKE2b-256 52fc1c2860074703512d5a926e27692ad527d7f9b3c56552ba8ab12f6d4730f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91c377c69cd46a7650e8bda4f3865a57e70333074991eef4689863c55677bd65
MD5 fffe5bbba438926065251b3c785074cb
BLAKE2b-256 c20d691bacec8a83a61d2f3b7b97b38c7f625dc6939cb1f15b64bd063c0a6eca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 747357f97ca1d5931121c03204298eba7c72c550796f2df4d15048ad4b131bce
MD5 759f382d9e7be3ac87355b143a924af5
BLAKE2b-256 3d629f66062dcfd45b46c742bfc04ea10831150d7f8eb28d4bc46471a0156de7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp311-cp311-musllinux_1_1_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.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02e3c774b40df4b025554bba6154039726c0b4b763d88f08596b5aeaa3fecf34
MD5 3259cac96bebc0b9ddcdccb10f9b7c27
BLAKE2b-256 2776c8b5baa6c87e5106a8ab241c6cb15eca7f84a795aacacb6f5d4b8a82f871

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f457e1c88d54337f7913bab5645bd7321bea39415d472f95adabdcc5d0dde78
MD5 79d49fb771e49fcd8bf6c751f8454ec2
BLAKE2b-256 615c73a668d5f46734b359537fbf8ffcdace5ad6a7bbadaaacaf1476a007ab48

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0d0bf2fc4782619c95f8fb7593bb927282ecf3f5985e72b72491f368981f0b6
MD5 dc7f9b82468209cba13d47e237f22ed8
BLAKE2b-256 84c894fda9348349995764c86164dd411fb0ec65d5bc9bc2b6e87f54498a824f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 08691f63fba8a596508f5736e064cb49425ec73b65a6f0e71c3c130fecb0f536
MD5 a1105251565f12fcb3d3c6f1e0a2ac3e
BLAKE2b-256 80364d4cbb8e1931c35840e099162a3453edf3c8c6b144855b4e15730b46e90c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fa9cec09cdf730cd625d083f1633e9a1f9ffe686c78cb9c9a785faceaff4d1ba
MD5 698008b21914d68bee271aa56e85034d
BLAKE2b-256 49a9353987708d619a5f663f2692a4609060c84479f44be19a2aaa3c5026b295

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f281ab14288797b2293b90f8954cda49cdda892dbc3607edd918445f33cefb1
MD5 7c03ec1c7e082d2ce96aa2210b61767a
BLAKE2b-256 b111be7d237f127eb366cacd810d7891ad0aeb13a057e13fe6d2d5c144a2cd66

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 33e9c222fc8242d11369f80b1d70522ae37847d7569d7b1eb5a184f3e1d9c19b
MD5 2f3a5906013d831540393d583f062397
BLAKE2b-256 55caacdd793edf5dcf9f67dc101cc39b5b567f901d165656897f5ea9528c9c10

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp310-cp310-musllinux_1_1_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.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fb3d276d79edc06b5e6a1be06d88c58f3fa34ef109f9581440583d9664d7c76
MD5 ed7a8d639f5c18280dce50fe89609d68
BLAKE2b-256 dd5c5f0c2ce9f1fd5200c6dad2272afb2874077f11e3f06335f8b28a5b2cbe32

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_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.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93bfb90c7b3619f0c111ec7c10329b3ba00fe3d6080ef0584e25976f9f87cd60
MD5 7e0656fc4ba6e514993716f4bfd2e1d0
BLAKE2b-256 657b926658db5b3c1f47c3664d849d653b166c7d6a2aa7a86c4052a8c6e05f11

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c18f139285ea42cbaab451faf288c812f3c28bd54bae60113f3da05fd7f22a2a
MD5 f1033f9da0c2a570e58d41b48e368acc
BLAKE2b-256 c4269a8653c02b455dee5d87602a3020c8d593baafd68ad333df1e1abad28f70

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1cf482f2db056f90f02774022ac8c80fb25c2e0892b1b341192e14a1790fc533
MD5 1febe6f7d00a37706a5a6f0aada47bdd
BLAKE2b-256 01c1fc60935bd6793b1f97320d12d2c730c54e51313bcd4a9ddffd37c00b0cfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5db8b462f532fc369d210eae6c60ffb0b5420822c4ec642319ca893fd6cd1fcc
MD5 3e0102ff76a47a9c35a34a28eaef0ae4
BLAKE2b-256 d2dbe5fc7acdd27069cc633e9167fb3fa1d6ed063fab81c7afe1de84df05e89f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d78cf04c026c9b8acf860d21570e2c296e4220e6a9f1dc29ac9e7a577f83daae
MD5 1d9fb525c9e6118be7c09c0f4d45507f
BLAKE2b-256 bcb75f802d88c492ae3f1cf7ae3c37a16df78fca8f6538b68b9c547eccaba923

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e7f5d06038c710b0b74d3b5d0590facfddc7fe705f777a592e2a2a87df633929
MD5 0e57d5930a64e561d5cf2fffb899bec9
BLAKE2b-256 373d2de751b4ce0ce6369caa0ba63c0ea2563b362516e89b963d6c1a523d0b65

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp39-cp39-musllinux_1_1_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.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc93de195df5530d4099776bdd9f589b8e31c46491acbbaa571b4e940230e98e
MD5 40bbcc825380a483451b186b5587f58b
BLAKE2b-256 dc716ac4f808a1303faf4cd38655a6a926e80fc082ab9b484d47333a94fb5a84

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_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.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2be915ee5f74b4f584163bf7be1965cf14ec1f5d5847e80833c6e222bdeb30b7
MD5 bd43ca087da4d1412de2a20522ef6bbe
BLAKE2b-256 5c54897282e0f776d9d33cc394497d5eaaef47a2382f3fd9444ac7980e54a540

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_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.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6acaf86daa76b70fa4baff43f8a9042a932507e63fb6e16da0ae1451ca586ba1
MD5 11a8f2cf780ee6f829af416af414f0f2
BLAKE2b-256 0ebf66fc84a0250a87fbccecb01252518515a1bafafcb152536a9e40ee20b38c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 947a3c04009b6658741e9b36bd67963f8d93761845acb376aef5d58505be609b
MD5 9679c1af765c9ec90b0753d8c48d017e
BLAKE2b-256 5027622d54e7767b808a91472b0448a8a4c6199beb7535cc4eeae51ffdc9d08f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 676f43fc285d291ff41bb2f954049b971ddd3797b032ccba71b6cbf7d92611df
MD5 df1f4f6de918cdff935d44a5d23cf488
BLAKE2b-256 4e1e9305d7668534f803502c40da5b0e642c85e1e08b61d2ce3a426b60eabf1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e749b4f9616a0d5947b0fcf7011cb1dd51b9ab17eb532c2b5ce097792fd9df77
MD5 bdaee868ac5b779ed30a524b1e0343c3
BLAKE2b-256 ddf1e30dcf245f0db0df48f86e0dbc92959a0b480ebcb2a43a1a497e0586188c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_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.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9ac586336c029ecc4b90500d44134736e2e241ae17a61c04c50e53b7f598973
MD5 e1faf5f692061c99e8a249a2ee63fe4c
BLAKE2b-256 d4e61a672108c53ac22707eec8a0353b99b200aca58d4d949e0bf6d71430feaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_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.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fe932aba0416f496422c08b41d67b41570480b3d51a6949aa8634c67fb0b704
MD5 219483ee95c2d997dda3bc64d7366949
BLAKE2b-256 c330ad69a5624b0718c7f0b094dc78f8a32529c436d41376e1e706ea93c6bc60

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 13bb6b889dd3286b1421f6dbcaacc0a415b8832c16cdd87a2ba4b75c062960d9
MD5 e4f1b6b98b4b64bfc5c2fe07773d22b0
BLAKE2b-256 dab459c2a6d2cb864831fbe872f7aeeef783919a576ba428233f4f2fccb44b0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0a00f6a39b8c071562b52466bf41695173f71d06900ee8f66af0e90c91feebf9
MD5 3485bd7cbba98cb2996801db22664930
BLAKE2b-256 888fd93e2ef158574781b48dba627fc768ffd9f26d6d6ddb392d6a3931194871

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2d7440dac09d79714959b98ae7411a44a30571c7cdc58a8a7dea01cc0f14323
MD5 83a7e01f92043ada3f6ac3126a3092c9
BLAKE2b-256 a8f9198cdb52eb189733d5dde8856ea34cbfd1a17f4ef669ff384b2c0847c20a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_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.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f91cd2f854caf68b51e4e59695fed04f90f414eecf3cac060d674179f13793fb
MD5 807f2cf8b1c760406deb498032b88d06
BLAKE2b-256 2a5a4cbf0eafbb32b4ef5503118c5c78e752350947ccc6577e1bb9b7120b4d0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_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.0-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ab37d71d95acedaf0eca2177902aeef4cbaba38d270c0d887b4a16c060bd4558
MD5 ee554023ec1d7f3c8a5991dea103e72c
BLAKE2b-256 57bd170360d90e380170c2714df848c52f3f551f1e52ce61bab9d8b376ed2333

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 dee2da90073d646fea6e953f26887b1304184afd23aabf46474bb03c7a710002
MD5 f60ba737dfa40a7f258e0e35e87765ea
BLAKE2b-256 df0dbf50ea3ce48e9c25aa842859a0a3283a2a41a5467259771785f4fcdbdde6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f383859dc70311815db55d6273eb570312398d180039dc396cbb781ea521d9fc
MD5 8a1021c4081a1094f614ac66fcbcdfe4
BLAKE2b-256 3053876d6a32eaf416e50721a4b78a9b9869655109410bb7ec4fd6cf258b0196

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_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.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a1e5a60977934bdf1e2e5baa39c5494a417084516333c9f83145c3618a651ac
MD5 6f42d65fca0c0dacf4a2e3952c879bcb
BLAKE2b-256 f5d3c285bdad1baa27e9d69f5e82cb9deb4cc2fbdd58908a7b9a1cb793b63aeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_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.0-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.2.0-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 79afc9a5e519d122dbcbe22ca7912527615967d7d240efb754ef6732f6af9666
MD5 9041cb98c32ee4f87ae3e981afc4de05
BLAKE2b-256 01625c821f44916b04d11c2b455b7b5dcc89e0db758ba5c0816699e38fb75d6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.2.0-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 AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page