Skip to main content

PyPop: Python for Population Genomics

Project description

PyPI version shields.io Build 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.1.2.tar.gz (7.1 MB view details)

Uploaded Source

Built Distributions

pypop_genomics-1.1.2-pp310-pypy310_pp73-win_amd64.whl (305.8 kB view details)

Uploaded PyPy Windows x86-64

pypop_genomics-1.1.2-pp310-pypy310_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.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

pypop_genomics-1.1.2-pp39-pypy39_pp73-win_amd64.whl (305.9 kB view details)

Uploaded PyPy Windows x86-64

pypop_genomics-1.1.2-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.1.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

pypop_genomics-1.1.2-pp38-pypy38_pp73-win_amd64.whl (305.8 kB view details)

Uploaded PyPy Windows x86-64

pypop_genomics-1.1.2-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.1.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

pypop_genomics-1.1.2-cp313-cp313-win_amd64.whl (306.5 kB view details)

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

pypop_genomics-1.1.2-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.1.2-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.1.2-cp313-cp313-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pypop_genomics-1.1.2-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.1.2-cp312-cp312-win_amd64.whl (306.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

pypop_genomics-1.1.2-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.1.2-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.1.2-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.1.2-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pypop_genomics-1.1.2-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.1.2-cp311-cp311-win_amd64.whl (305.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

pypop_genomics-1.1.2-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.1.2-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.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

pypop_genomics-1.1.2-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.1.2-cp310-cp310-win_amd64.whl (305.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

pypop_genomics-1.1.2-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.1.2-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.1.2-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.1.2-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pypop_genomics-1.1.2-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.1.2-cp39-cp39-win_amd64.whl (305.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

pypop_genomics-1.1.2-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.1.2-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.1.2-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.1.2-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pypop_genomics-1.1.2-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.1.2-cp38-cp38-win_amd64.whl (305.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

pypop_genomics-1.1.2-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.1.2-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.1.2-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pypop_genomics-1.1.2-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.1.2-cp37-cp37m-win_amd64.whl (304.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

pypop_genomics-1.1.2-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.1.2-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.1.2-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.1.2-cp36-cp36m-win_amd64.whl (322.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

pypop_genomics-1.1.2-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.1.2-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.1.2-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.1.2.tar.gz.

File metadata

  • Download URL: pypop_genomics-1.1.2.tar.gz
  • Upload date:
  • Size: 7.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pypop_genomics-1.1.2.tar.gz
Algorithm Hash digest
SHA256 014545b3b152c84fb3db3f779575a39701f9ce0853fdff49b21219e6153fc2dc
MD5 07b279001ddd6079c1fe34182c35f058
BLAKE2b-256 b0eb1ca5a93f1a1098a41677b98b6556fb6c940cd90e9e1037cdc38b7bae56a8

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 371fb7bfd627ad38b5100cb7a6f8601a92df82c24b1655c5650d07dae0784289
MD5 413f8cb1ca7b1644a42097306116c006
BLAKE2b-256 9b858c5eb3711c758ead8246385d846e9d9bbc60d14749067491e9c54eed039a

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff4be6dd2a8b9fe32b8d4b03454ae0461024ce653627145f4b8d006b4376b02c
MD5 2c14fd2ff4df51ef75dc48f8c5acbfdd
BLAKE2b-256 d010d7d7328e36736b2eeaf472c128a56654636ea4782274abaca62785916407

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1cfe4f12f46c108f5dd796d5aec217e9683def26120e67c946b5763350c945fa
MD5 05d03ef2253834af5356a29c3186c147
BLAKE2b-256 06c35cafc6f706c38b79302ebe442cad637d9becd530a220ec2eb5cd320d661c

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2e2497673c12eb7c5d24f5688780284582b44e862212632a72505e4e2166d26f
MD5 a1817fb1d3c1e4bc28bed493b4decffd
BLAKE2b-256 a99c675230c303afd6718eb999c20b888e2d8810094d1ed0c4cd8c81a8f1d94d

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2793de5d39440c6376e2154b4d21ff931bda92ccd0196096a6617de26a7a44e1
MD5 ef5bbc3fd47097e5bb37f2e7f24ed372
BLAKE2b-256 1db6a0a5ee1b8dae70c67d5d0096493ce684e9385d5005d37f1fbc45ad3c2f24

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 638c6fcc8cf33b24c5ac329f6367346a8b2e46c1975e13b3c595e89f9d67957b
MD5 1cd969982e2e78ca38cbc780111165a0
BLAKE2b-256 28c7bfb532a6199a41ef8ea5aa7d9448e8d4355bd29898651f6ad3579b44560e

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9daf9768b14ec73dfcb1db98d148b2e473d187923f35100f9a63ad335e4bf3cc
MD5 cbe6e7a8161d2f4464a96036a2024b9f
BLAKE2b-256 2f84000a31d191e5df87b1caf1f3b8a6c46f5b110857b9f002e14437d8c337ad

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 812a1b22280e71e67ea9dbb984000ec69e1b25e883ec9fb1a180a533ac7446e3
MD5 1c412e8b6ec240982e43b25f5cfdef20
BLAKE2b-256 94c69d614b81bdee78f04a19d77cafd12059d74050bb52bf564933f092833752

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eb175bcbeab934428adac0b6d077d2c78df17085343cd37fbff787b2fbbb9641
MD5 dc4fc6b8c09e94cd124cfabec5f2ee32
BLAKE2b-256 a6204d5b03643ff009c020ea2dfe53bfb4cf12f626331a7e43933a62e0e45814

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 25eaf2b7d26ed41cfa09a1fadf2d8980424c85678593d449af2d81abd6838b21
MD5 a94c1dc456627bd842015527ee97e85f
BLAKE2b-256 f2524550fa29676d6135ab7f7a313a25ab2af65849f32b38c256fb23f98c9572

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3523a3d07c0bd2a2a2448b48e5618ec809a3491f5aeeced1069af012bec728f4
MD5 d7fea8c609b5d00a3488cc08d14ec151
BLAKE2b-256 96b6f4b2021b26b0aec543b796ba36cb82156a0ecd56fc37befde003f1d1f4c5

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 457a4be0f275b77453f3985aed7a27d784b8edce68c70f443bf8c6cf41f4afb8
MD5 85774d295758d836f95733d70d9594e2
BLAKE2b-256 ddaf8692eedd909c0ccf2ee94501402f5e71b866f33186aefd80e2143eacb6cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fee67fe3b2f74ad7c8d2a8524e34eaa545486c669eac558b21d43ae25c1138fe
MD5 95db4c161abb2c802a7e5e8ee4b72fc9
BLAKE2b-256 1e0231801ecca9419519c8327da14f35ae987b1b0dd0cea2512a736837ef7049

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f5bf7e32d135695904f3b491cc52771aafebf1e2e9cb6c8bdbc48d8d59814ae
MD5 fde9078646e1f7168e41f0e3b56d1fca
BLAKE2b-256 61d757c879cc62f9b566b63ad4aabe220846956f180f45d1bd6ffcf01fca2b7b

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5447e582a842631a0afdae1c2d8fa4dc99a921dacb084fece96bdfcc37bb5d97
MD5 4b9274025dd0f50073ab5949e24ad74e
BLAKE2b-256 63e5a6429906362865d2fbba5fb437b824c5409f1201d664a5310f540b5a6e30

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9ef53b71e7cbc8902872423d59739e09ced3e307f32031ef7a7809bc1d0cc673
MD5 b51656eaeac77458864e8704ee01b993
BLAKE2b-256 9ef9f103d715701e1438d3ff97c2db5147fe5eb15094bae88db3409a7eba0e8a

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33030ebf3bae4b9f46cc78093bd5e3df0a9629071980a0b90ca770415eacb558
MD5 067f62ad1ae7a2399323f2d473fc9922
BLAKE2b-256 967c4fb105f80acd305999e86b86d5dc3cf14fc775e7c11a0f96830579b32132

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c3f5704f1df7f7ae4bf487efa2d62c686bc021225daa9b1020b94a04e5929476
MD5 e91bcb5761fdcb2ba3be596ef97d62e3
BLAKE2b-256 853250b628e8b608d575ba165e4b46049f13b70d272673d81321313d3497766b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0dc4a7c6fb18ce05665ffdc37aa1057c7ee2ddedaa3899a0a0ee7c026c71710c
MD5 5687bcbfbd1b08359f58a730544fea90
BLAKE2b-256 04c8fcd646977dbebecd1297b924145f7a50414effcc855ea1bdecb4c33fbdec

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73cc69483968377ed785fe44bcf68df44ce49be501d4ac48e9f8b716cd927477
MD5 1a1bf4e015144f644161fc4cdc71779e
BLAKE2b-256 02c65b89de67ad4dcace2e510684476e79eeaa464b76721c05c018fcfe409bf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b40f0fa38c55868cce445ba2b814ee728ae6efa215bf62ec960c5aa97c956cda
MD5 b77b8777e05970dc6fefe98513b72ae9
BLAKE2b-256 620385d7383a4a6b4193b4d81d6cfde7ccdc747ce6a0bb88e933d90ea35bd35d

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1b8e86f63c30c0a191a091a0a3235789db273a294455b75ce6910d54c474e99c
MD5 803b552f790a283a6b6c1836e6dce2dc
BLAKE2b-256 de11c0a7258ed6983647b0e02980a7c419d587f69e8d5507b10701357dccd7cb

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5546a29878774bcef5c8ae912f2a48ce09a7efd63a174ef431cb80d9553f4c23
MD5 9f63dec3b8689b1a25e8cdd1f19d9050
BLAKE2b-256 6da500c0df8444b7b7bbf50d23c716d5418e8422bea4608a26421bc8963bfc4f

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d765f4f29ab77e3135208780552422f52713108933d9ca81846f49aebfaa5d5
MD5 79123bd1f093e7c48a4941cf961f3eff
BLAKE2b-256 de1248edf2a0e91f6a70393fc564e0df56944523c842d1d6ebf3db387044efbb

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 23ec8e1a4a54d88dea8b2485a71994befc0da1cfe88103a2bb73aeaaa5ea767b
MD5 c9c41863654abc6b281e4eef2507fb4a
BLAKE2b-256 4c09fda736666f8f813944bd2de1125274f7d731b560ef4c2305be239f003785

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5de13da74db2887c7e2d4daa4a369c4edeabe105c88308f88f8d436965b1023b
MD5 8ff1803a4f2a324e4edead9d92e643a8
BLAKE2b-256 dd96642a1f63aff6780c3bf69b42b89578ca2b2be20d16a4bc2b349e8a4762a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 592dd10dada31df08627be46c9bcac47159393f5edfab231e4a7150cdd533d19
MD5 803267024dcf40366e4955dff7a8033b
BLAKE2b-256 aa2731fdb99b2673f390c9a98f06e36dafced049f5768fe3aad5091f0c060a7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4afc575f77088f8b8071c04c9cce4634c7103ecace20802ff4eb41718daaf42c
MD5 749051119de73b4dd1a8c5f989f3298b
BLAKE2b-256 ae48a063374ac0f4b301e3e5ebf5046b40ee1e3fed9c2abd1833485381605fa9

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 43b1cc8d90a1e16148d106b709a1b86d015c0dbae5e2de64accc7f4651cee7eb
MD5 402ed67b23cfc5859922f7fca227c7c9
BLAKE2b-256 e51d299b5028a4e322af07164728748412ff1bb6ccc740f5a6b163e4b584e61b

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7ed29ee543ba69dd58e2ba4532b67ad2d37599cbd45c0eb07d358849db36e96f
MD5 ff61b1807b199be3042890fa1a83beb8
BLAKE2b-256 65950230d16b5d5e1d2adfce2f01bf8678909e3bdb208ae749d23c854f8542e0

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e21e22450b6fcb70e3f94c78157f334cd1c52523a0e654dab347d6f51e939ac6
MD5 a35af54a89bc33a854db0f47a3681183
BLAKE2b-256 c48b59bf5a368b600b8e8188200134789247c6323e2902788cfc71579143aba8

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 abd6206705b6bd81b27cdb386e95e44afcce320232bd602d3fc8cb3269e60cc5
MD5 fcf7c08614ae382c1f82110244e2ac64
BLAKE2b-256 f29df76ba472b126cfe5e13acf3044e2182bb0596479e252e307d76132ff678e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1863fbe2cba27dbd4781dcbed3f5ea9b6646ee6347d2be88dbe5224a395c99b6
MD5 c6af04c314d7f993972205bf6379962e
BLAKE2b-256 56363b0d97d24fb1e3b1e9f0f352d2368f55e18e99071e882b72ffd35eae05c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a895a83fe0a64ae33790b639a25ad5e767e43d6b3d3a3a450c28cf52b22a628
MD5 e6532229790f60a2727ff373afbf522a
BLAKE2b-256 427a07bb491165759d9ddd5ee8d5826670c1f4eae82aa32ab5f357602faab5d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37cffd11835fb487debf4f7ac41cd17b56d8269f419fce06b893b756e5dbea69
MD5 fa3a46d0b07ec53eef9fc0e550ec4de4
BLAKE2b-256 48565ed60e62182564817abce775695593a4954b423c8d2ff771e1e60dd92b02

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 092aa31e0731fce0d30bd57f55e59c4b99156b907dcaed68cc9a5f3407cf80f1
MD5 928cde42c3d0c6e5a70f1f829b7abe5f
BLAKE2b-256 dfe02ac66f0cf7985596bfe08ffe9d3d660051bf8137db8b1a5d987b7fff2afa

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a6defd20027094329c390771bd11d8987710d669ba7e5bc2e72a80fef969e5ce
MD5 1adaeacc4225ac06d2ee5435e86d0276
BLAKE2b-256 276023db6d271de1dd4428eede9191ec6e558fca94860ff16037b12785932d8e

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4564283508b687feb2a3fd96c457031206818cb466e32f2e29b6df33818ce8b0
MD5 7752dcf4473359a63644b5bc9af9c5cb
BLAKE2b-256 327b0122728a6b512b4de02cbc1a9b740c4134d50331d881284b566e5fe0f9cf

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f23a0c32298f6cbbcdf3a86e7496f9360cb55469ccf3a630a2514bee6b7a598b
MD5 c2cbb26c7597366dddbf5f600c0abe76
BLAKE2b-256 01c7cfac54297e95a514aea9cb04828d2a9619c048e255c06859cad70a203038

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f50a4fda008fbd52dd9dd34192d472f37f10212810393793d01bacfc90131a09
MD5 441b6ca68e2c3afeed746df920a85287
BLAKE2b-256 85e24f64495a6645b120c651fc4a45c4bce473243507c4624dd14bb8c150cfc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fbe307877d07b70ad9324193cf7a50eb1c2068e1885255c3c7899cc1aeaab859
MD5 194137018f2d5782a949f236d2cd514b
BLAKE2b-256 3d4bb4e44a6d0f5a48d26c66abc74049b56c2e91cf9f9a6565d98d7087b263d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5361ab357a703b4257c5b99a9e282463daef2ca16d8b8c94feda02501ea9669
MD5 d32f990ce5949ec08322b10df4506c48
BLAKE2b-256 19cfa2edc93cb995d967c43ef2b3d8368cfa8617947a0511985d78d7d200682e

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dbb571688fcd4931f665b2a450788c0775125bbf5522f22a154c9f5b273d56cc
MD5 5d294bd50760fe516be70e5038dcf8e1
BLAKE2b-256 77b945b167ef044d969f744db6b61326e811af4d8d96978f988a97d652c0d03f

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 374a122c3d8b53859026fa769c2dddb3ce4c5580e7ee332a79acac982f06a9fd
MD5 e17a11899f2d86d952a4f0b747eccbcf
BLAKE2b-256 11240a8ecfa5f3f9b27d1887f654f47626ab9470e00ea7256d9611eb7d980df0

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc947d1b8ad9d2f2c3cd4c2bfe9ca23633d67f12e8765ebe23a8654f84b5cbd1
MD5 e563dd1bc91de1f974bd171c862e5c58
BLAKE2b-256 48f6a27669dcbc1f7f86ffb61101a062808e962a9b3970e8e2c3e59a9103bf79

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d0fa9b20ea1869e50cb48979e1d110af15b0a00e4377bde2dcec17c2b649438
MD5 1d21c2a2286b29dc4880d6326458cf85
BLAKE2b-256 e0546de67db006d98ce633ed056ccefdd9551374fe91222a6fda8363107b5499

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f7d5389871ce6a2a8166a43e8fecc47ee5e7183f888062f569e36861ea198c9
MD5 d91e41a14143edb46741c4f9841733d9
BLAKE2b-256 bf00b1a9d68bbb8175fa19c667c0272232bf0ca8f7c4de43c5073f82bf941813

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6eb27ab43dbded5b2d24aafc00c9ccfeda2292576fba2e4a835c9ac674df8b04
MD5 08a2b91e37f3d52feb9676456d9fb0d2
BLAKE2b-256 073fce16930605e2278e57d9824388feac0a805155d8e78a609e8fed80f22d12

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fa4a9fe485d29267a892ada9dbf3f6af16f7d7095bb04cc7496b67120cc8dfd2
MD5 a0ea8906b7638c4dbcd447c5b27d4953
BLAKE2b-256 25ecfa5584db6142a219a58c866a320cd5c9e8fe3518927c62fbb309701da9fe

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c10b779c0532c88ffaadbaf937f3a69f42446a53022cb8fb793c3bc899d96b51
MD5 3011e885b2494fd3ffbb6bcfc53825c6
BLAKE2b-256 cba22bf5f95f976ce75ed4fd812c84d4db38c0eb93623f7a6f497534191f5ba0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35d66962290e4742155541f476ec3b28b6c8a0bfde88520f422b9fd7d5c471e0
MD5 40c0e509964d2ededbf46230285d9fe8
BLAKE2b-256 eb8da5a98870cce12d2ea02410ab0f7b3590281f88ec3d4f3788b64d59c7e8c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d1884c81d6a515398d77e1f18235ce2eb44133e09d785ce5962175f660e74331
MD5 224349980536680b0aa66881f0a1fa57
BLAKE2b-256 71645d0c97c9262ede0e81a514bdb4e42b02e14264beaacc48d8f6e5ac7b215d

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1e7585f0fb96aeea3f6c8ffa0b9669f35060eb439960a196060d124a61614a20
MD5 f391dc5ff8492ee91b243bcbedf5985a
BLAKE2b-256 377846ae944676c182564d48f8de0e9dd055298f02a8f8b0c49a02037a9b7848

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee9e28be08883e2ffa67c055892e98d0c5c7909ece5a7e94099fe01e120cca61
MD5 cac7ce74087922cf472477d839e70a86
BLAKE2b-256 371c89e90818b4077981c490e4e0cbfbc84729c33f8f477454f8d4cfa0be419c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

Details for the file pypop_genomics-1.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b2f0bac06ed28c0063cc52bc3014d3d1307e023d3e600b2cafb711782c5edb2
MD5 557b1bbe154ced76c8164a695c8aff2b
BLAKE2b-256 e79c8d68f6ea6fa6faafbfed43ca2d3fc9947375229d14c6b4cc8c3432c461bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypop_genomics-1.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.1.2-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3570f3983887810f2aebdd32e04882c9e367c41a96e4acbb6968309ed3ed1ef9
MD5 536928caf1ff782a503339c213b8cb99
BLAKE2b-256 f762c6e5a9692fa98d3ffff63083bee4dc92cf382a3cf804c38aca33fe40cbfa

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on alexlancaster/pypop

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page