Skip to main content

PyPop: Python for Population Genetics

Project description

PyPI version shields.io Build status Website pypop.org GitHub license Citations

PyPop: Python for Population Genomics

Support for arm64 architecture such as used by MacOS M1 machines is in a very early alpha stage. If you install PyPop on M1 machines, please do not use for production analyses

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). See the PyPop User Guide for a more detailed description.

How to cite PyPop

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

  • our 2007 paper from Tissue Antigens:

Quickstart Guide

Installing pypop-genomics

If you already have Python and pip installed, install a test pre-releases 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.0a23
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 Test 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 pre-releases, 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.

Install package from GitHub Releases (advanced)

We also sometimes make binary packages also available from the GitHub release page:

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

To install these is similar to installing via PyPI above, except that you need to explicitly provide a URL to the release page.

  1. First, visit the release page, and choose the release version you wish to install (usually the most recent), and note the release tag (e.g. v1.0.0-a23).

  2. Next, use pip to install the package by running a command of the form (this will select and install the correct wheel for your Python version and operating system automatically):

    pip install pypop-genomics -f https://github.com/alexlancaster/pypop/releases/expanded_assets/<TAG_NAME>

    where <TAG_NAME> is replaced with a specific tag, e.g. for the example given above, you would run:

    pip install pypop-genomics -f https://github.com/alexlancaster/pypop/releases/expanded_assets/v1.0.0-a23

    You can also manually download the specific wheel from the github release webpage and install directly, e.g.:

    pip install pypop_genomics-1.0.0a23-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

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. 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.0.0b5.tar.gz (7.0 MB view details)

Uploaded Source

Built Distributions

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

pypop_genomics-1.0.0b5-pp39-pypy39_pp73-win_amd64.whl (291.9 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pypop_genomics-1.0.0b5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pypop_genomics-1.0.0b5-pp38-pypy38_pp73-win_amd64.whl (291.8 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pypop_genomics-1.0.0b5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pypop_genomics-1.0.0b5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pypop_genomics-1.0.0b5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pypop_genomics-1.0.0b5-cp312-cp312-win_amd64.whl (292.5 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pypop_genomics-1.0.0b5-cp312-cp312-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

pypop_genomics-1.0.0b5-cp311-cp311-win_amd64.whl (291.5 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pypop_genomics-1.0.0b5-cp311-cp311-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pypop_genomics-1.0.0b5-cp310-cp310-win_amd64.whl (291.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pypop_genomics-1.0.0b5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pypop_genomics-1.0.0b5-cp310-cp310-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pypop_genomics-1.0.0b5-cp39-cp39-win_amd64.whl (291.5 kB view details)

Uploaded CPython 3.9Windows x86-64

pypop_genomics-1.0.0b5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

pypop_genomics-1.0.0b5-cp39-cp39-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pypop_genomics-1.0.0b5-cp38-cp38-win_amd64.whl (291.2 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

pypop_genomics-1.0.0b5-cp38-cp38-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pypop_genomics-1.0.0b5-cp37-cp37m-win_amd64.whl (290.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

pypop_genomics-1.0.0b5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pypop_genomics-1.0.0b5-cp37-cp37m-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pypop_genomics-1.0.0b5-cp36-cp36m-win_amd64.whl (307.7 kB view details)

Uploaded CPython 3.6mWindows x86-64

pypop_genomics-1.0.0b5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

pypop_genomics-1.0.0b5-cp36-cp36m-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file pypop-genomics-1.0.0b5.tar.gz.

File metadata

  • Download URL: pypop-genomics-1.0.0b5.tar.gz
  • Upload date:
  • Size: 7.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for pypop-genomics-1.0.0b5.tar.gz
Algorithm Hash digest
SHA256 2b589db5a232edf1ed03a62205d6a1713f40b9f5ba92897c3a452c14395ce853
MD5 31b040f8e82598f91acee307f6972518
BLAKE2b-256 39baa98bb00ddec03cae3f0fba4b4dbf444fe3b68efc35033a0eb0d8873b4d76

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ff7d5778092fda9d5c95ee5030a9815c6283780b8422865312fc67ab4d8f0ea7
MD5 76e63523778196efac42d4c2bf12c40b
BLAKE2b-256 f2ec758f7aadaa6edd4155145dc1e615789a4d08bf9a2e41743a6e0c67826bde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18b782d92a659b009f3994b2df0d546d9498df9ad1b6d84af12555da2721c268
MD5 4b34d39c65a725d0cb2822062d810dc6
BLAKE2b-256 6027c6cfba93ad1469244fccaa92a564b0abaadf52b9769af9db826638539fa3

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 488d011ad2c86e3b45554e5437a83b385c203597b8b48de9d091217a4d27287e
MD5 6fc20f2d48f1c7b93a18ce5a579ff3e8
BLAKE2b-256 30426d23a50b8209a1cc2e6480a15381150260cbccf4ced825b94a25ef542232

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 568dcf6d540ec155c65547cd2e81ec483a888dd6f6c28a77561f1d315e0a777c
MD5 db761a8cae2a953564e607feeefa61d8
BLAKE2b-256 0082b3dd41e94662c8740ae1056ca9281e72b5f158bb86130e0b378d10d7da7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b55ea4374cc75d09c6e8d7e0706a2f615fac9fa24b80c4ed74fd1af6610a9bc4
MD5 03574e19a495753c480c6711919d2cd5
BLAKE2b-256 ace97d9d5eb335cdaaa568d2624da730ce1620b704392e906e073ce56e011238

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8b36d1a0f0fd2a84e7a6981eba7295bbf31c01d27f6b6174ae05ad0dbd506d6a
MD5 191b3a1f15aa555d0af579da868c0b02
BLAKE2b-256 e73bee3cd6a74764641f3436c4ddb9eea5ecd99901b9b4671bbb66b2fd2aacdd

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2013790839ebf4ae919d518c9f42c6b69ea2c813e08996bad4173bae7fdcfb49
MD5 1eeed76d9a05437eb757e483b8765542
BLAKE2b-256 fef7b3047da9eebf9f703515a20112b50f3367f9f5a3d313caea173875bea631

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cdc4f14595bf4e4bcbbafb444160f8a05f7acd8616da4cfdf1ffc12d1821e071
MD5 96445d29a1c127c4b7345aeb0b4e5c00
BLAKE2b-256 37f357c05e917d990606a619f07bd0f1862e2b50d4e6b3b5324ef75d11831e1b

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 57d0255bd3b93e59ab3966306659370a24bbf11d97ba32f9a4227905c1568590
MD5 5bf65172335609988336e3c3ccc57a52
BLAKE2b-256 94eb6a96ad4d91557b1070e31dfef99317fbe7ad8cf8ef8e0ec300fc7218c6e8

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 589ff555066ab3cd94c42b32aca7fbb18af5115e7abd8cdbdad780be16409ca4
MD5 69d927691e7b916d4116b4524d148114
BLAKE2b-256 6b571f354cf4772dc0577b4a6694a6646725c7e89d2b7cbd0f6f03cfed58726f

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 240374b21d4add19684b83529bd8707d8eaf810258550a7a539915c2c8a7d5f4
MD5 9159f36881ac521857094847a5a97cc5
BLAKE2b-256 cff7acc6a7badc1d0b338d3a3396825e00d446091104f4d119308471d21612a5

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d59b3531bf02a311fbe43670e6775aafec6af1d89f42eb66a6a42e29887e825a
MD5 96c32fd640d38755b4c1de08db456250
BLAKE2b-256 596bdec5344ce95010924311b7ff482a73f892aa525b4daae86f9745c3ed387f

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2d839eb8af4643618982dc6f0d1f606043afd4eee7e43dd2a63d361e1535861
MD5 5c75b802e60dbf3e95abe6a14edbb90e
BLAKE2b-256 b93830cf32fa30495d4d8ef519da1e77c59d43e1a1b425aa7bd1264d90ec2930

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab087b9de51c39761d6455a730760ef37fbfbae6b11122debb9c060ab0e5b67a
MD5 b339eb3df5d2ead2cf8f8b1cf338a69e
BLAKE2b-256 f9d2b5af0dbc8aba8fd2acda1bcb8bae24f2ef3469ef4018118e5cf666982815

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 abae763a5c81f5718eec6ef1417218b324b1a3e5f1df5f7aa42d3524676961e6
MD5 dde963ef7783b663344e67595cd5b189
BLAKE2b-256 a4c47a49d89d4ffe90a497015cb8f5fb5462fd465bbf29eb417307d245121170

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6e98ac9bee197405fde87af76ba7a3e4584e4e45e5c208fba765d2f737814527
MD5 5c1fadd37f5f82e3c6693930fda36fb5
BLAKE2b-256 696e659770d752e7b5bd8239579fceae1f508eae9852bc6b27cdb29537402e5f

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b108b4d21198c6973830c1c3f308d45cf715ef5f26a5411b32edd40dcec2cc8b
MD5 89e038e0683c499fd2467fe8276c5eb5
BLAKE2b-256 8458ed7aaf2016ff0368e5993d1403b46ad537fcff2f2c91178217ce810e63c7

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c57c3a751cbd3f300671f5d615fd2b2f6c3b12aefd210c5c50336788060a02a
MD5 a355a52cdcc53abbba7ba8c185caef64
BLAKE2b-256 4075848f0633aca1259b4e5d004d667f4448749d2a56584628538ed088176625

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 290ca5b39b4c65727d4c75012e57ada39a547bcac8681c1523147aa19ed0fda3
MD5 83983456cd139d9eecfefd6b841a3c1d
BLAKE2b-256 aff6d85a4776d2e2bac2653ace4967c9e4545ce3a5986de49f730bfface05d65

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 847cd7a39cd41240a83c2ff6d296f841e36dc4c7f232bf99b45b894e6fcb64d4
MD5 46866c7714d90e5d1f19c53cf4a4860b
BLAKE2b-256 0517e7bf3622fd0d71654af1dcb4dc50e72309654c7ce1a93453a12ba191ec9f

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 437d128389632afd87f3749760c84d55637dac8783f047c9f4acad56116082d0
MD5 7d18a3a97b9382183384f77ee61c31b3
BLAKE2b-256 2de8d89607babfbdb3cf142f42e1f7b65426f9d8b92714e4a3c2a03fca574416

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2675d33186ef8654d1d28a7703c6ab035ed9556fe28bb3a8f23383174237ec1
MD5 c0c96263840964482c890026ffebbd8c
BLAKE2b-256 c40305d90f083c6bd9e43a15800f5f4f011fad4b1a1a774bf7f097593ec40508

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a107a3a9b1b067be5534b177c15408f2d17b03ff1ac6c17c5a600d5f94584d4
MD5 c946d773bdf9ee62c0aa67c21f277f8b
BLAKE2b-256 d2967a20c63c864dd49de1bfa294c112e3f59e2925f0d603f47e76624d4b07fa

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 78e9bdfb07803c9dd10af2ca80a906ad50fb94e8d87af13fa7abd14e2287b628
MD5 5967b03d779e601d13db9a4de712ee30
BLAKE2b-256 2f56e34fe4b59d3bd8f6bfc1d6a903d8c48bd1d642a60e37ec646bc72dc32134

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e511f4f79adf316d8c8bd94dfbd0da717cd5eca3355c138c29aede010841fd0e
MD5 57bb5290ce6fab0dfb2970cc11865b6b
BLAKE2b-256 d422719a940ee0fba5d68f2af72f9acf74fee6d9867017eca7b641f50fec6655

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25a028c0d7b4c5acf65dccc71e7f4cfd1e30b0014b411eb0971518dc426cf62c
MD5 e287767ae13437c06e132e0ac052f8b6
BLAKE2b-256 c149f8af0552ad35187706a2db2ae1ec2913e010431f08a4a11bf06cfcf43c86

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a7e99129e9784239dcfea1ea3b9e662344b9bf09c4ee83b21c636ea652bc00ce
MD5 659521e6a0b5fe6fbeaf48854566f081
BLAKE2b-256 c36f876d3abd5b236035e735839f67080c17a0b0e5729cdbf745acd142bd8208

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 47ecad985b19f203f56eaadd26592f2165b56ba7e5096d3698531041c4909233
MD5 32d1b2c6920b0b362720cce42fb80c46
BLAKE2b-256 de52dfe1b20913bb5f4c2e3c92eeb919c131d8e7816d2effad314fa584f49709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e954391e094c64aa2325d3e44e83644f9dcf3fccbc816df185812683a34383b6
MD5 639361b4d4dd585d59c3b87507c67278
BLAKE2b-256 90fa33e0bdda9ff12005e72bfba8dc6c605fba398240acfd3e129d3c63cf0996

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d4228e9e5be463fa86ee89e62f3e5a8537bf3695250a6a61b8ad9d915091777c
MD5 a27183578b6a750a668a64ebbed13de9
BLAKE2b-256 ee7a4f550e143be0c02f571f945cffd28afb7d7513c07f2c22c8a9c4b3d7bc1a

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7b65a41be9d671bc21f57695b3119a1ab2c98f5669f05ce5e09e15af3ac0ec69
MD5 07d259dfe901f6fe07af1607ab56aa4d
BLAKE2b-256 a075a2b8f03905a1a39221f8b35351dbc477e6f2f98107d04572d16a29124a52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71f60948faf8fac831df185fe2116a937c1c7dd4be354b5d16a4b127b34a7e93
MD5 8eef97cb0d913e3cdc372cb037621c8e
BLAKE2b-256 89f04b213382493518d85e30ac7266fa56d8d05d63969da49c548147aa19998f

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b5-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0c6b9dfb15f6e366e7d855ffbd384e89527ea5e8fe0d374ec151e07919863793
MD5 99c117a44002dc473fa95b55c3129b49
BLAKE2b-256 8b01699ca9eae5dead299ba189c52df380ed2de378df479154cb15bf88072f35

See more details on using hashes here.

Supported by

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