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

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.0b8.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.0b8-pp39-pypy39_pp73-win_amd64.whl (292.1 kB view details)

Uploaded PyPyWindows x86-64

pypop_genomics-1.0.0b8-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.0b8-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pypop_genomics-1.0.0b8-pp38-pypy38_pp73-win_amd64.whl (292.0 kB view details)

Uploaded PyPyWindows x86-64

pypop_genomics-1.0.0b8-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.0b8-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pypop_genomics-1.0.0b8-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.0b8-cp312-cp312-win_amd64.whl (292.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pypop_genomics-1.0.0b8-cp312-cp312-manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pypop_genomics-1.0.0b8-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.0b8-cp311-cp311-win_amd64.whl (291.6 kB view details)

Uploaded CPython 3.11Windows x86-64

pypop_genomics-1.0.0b8-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.0b8-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pypop_genomics-1.0.0b8-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.0b8-cp310-cp310-win_amd64.whl (291.6 kB view details)

Uploaded CPython 3.10Windows x86-64

pypop_genomics-1.0.0b8-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.0b8-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pypop_genomics-1.0.0b8-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.0b8-cp39-cp39-win_amd64.whl (291.6 kB view details)

Uploaded CPython 3.9Windows x86-64

pypop_genomics-1.0.0b8-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.0b8-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pypop_genomics-1.0.0b8-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.0b8-cp38-cp38-win_amd64.whl (291.4 kB view details)

Uploaded CPython 3.8Windows x86-64

pypop_genomics-1.0.0b8-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.0b8-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pypop_genomics-1.0.0b8-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.0b8-cp37-cp37m-win_amd64.whl (291.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

pypop_genomics-1.0.0b8-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.0b8-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.0b8-cp36-cp36m-win_amd64.whl (308.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

pypop_genomics-1.0.0b8-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.0b8-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.0b8.tar.gz.

File metadata

  • Download URL: pypop-genomics-1.0.0b8.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.0b8.tar.gz
Algorithm Hash digest
SHA256 c01cccb5bcd1f00561823bbbfe201b31dbaaf382d1f598855616e79a9a0a5a35
MD5 3ffa836852001bd6bed3d297eb332b59
BLAKE2b-256 f58e4ce8539997d7e5c2980f4d6ab3e04294dd8922d758707fa3150ed4874a27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1ab1611348dc469cce6d88abf67be7b9c89e8a531de4e8fadca9bfb9594ff62b
MD5 4f3b724016c4858b9f8e4cb542caf6ee
BLAKE2b-256 b8a05114fbb3cbdf82ee141dacc556def55693ad4a139482e704ff6dac6da9dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b103fbdc61cb1aba11a7e6158ed5dead2a85c12b7da8e9f6b0d956f4fc9934df
MD5 c4696e6ce7ecf01bd2a076028231bf4c
BLAKE2b-256 fd430ddac732ae9f9996ed5ca4091c8742afb8589ce363c5ab19a2342af5376a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f85c8542c6dbced9a5fa07033cd38d5ea0e243c5552d7a7bccf6360fc3185581
MD5 db551c0dd73a67546779f002e84b4fee
BLAKE2b-256 0cafba0eb7514d04e3bbb5a358f984bde9773a99e60e053b81a9e459ce53d70b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 032a042a7cef7efee62f7791c73ae8ea6745aded2719ba4f26ec713ea05d08ae
MD5 a49bba4440bce6fb6cc2ac08cb88370f
BLAKE2b-256 0d7cb8fd2c0e42347aea4640b2ccedb220ef181e5d8d814b4eaf033fd2aa42f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 339c5227319c4e53153c4c5c63a348ab8f3f2a2b35be57727dcf7d1cd495e073
MD5 394bdd8c0b207e4970ee9ccf8402bb8b
BLAKE2b-256 ce118f65787e1490b9ae379f4b7162d5f1f883e344e70b6c7da8bbe0b16d8337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db8fe2549974519e0bf56d11e6d3d731c04b6ab46ec0f0ae4c3f957e00b78e9f
MD5 38dbd63185ab82602f6ffac501ce5241
BLAKE2b-256 021e0128abb68bb6dbb77ffdcbacfe4012922241f56040bc0147970df87d31e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f25d9b5d2d47917faa2795cb9af752e8ea50703e9e9cfec052b8b2d237a86921
MD5 b55a3d8910cc56aba1da1738b8e40bd2
BLAKE2b-256 f9ed4a7cc95835f31b01854519e7963f69d16a82afe92704787d6f466a18f92c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 14b309889bb11735d3b87d7248050464977e7cf0423ab81cca7813a008330fae
MD5 b3aafec5fd0de41ffb47494910258366
BLAKE2b-256 8dba2e5ea6c844efd6c7970468f827b3b71912f760415e21acbc7db5ad442b80

See more details on using hashes here.

File details

Details for the file pypop_genomics-1.0.0b8-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8703c187f550ffcd8ae4d7376ccc202a623352ca5c3b8c6a92828a66ccd3f474
MD5 744dc2ff6002f139f1552b21e98d2fcc
BLAKE2b-256 751ab6329917248ba1e741cc22a8deb039d37c440006e4a03064ef6bd48fde08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98aba5b40d3c2363ec6f5054df6ad1a5db4ef1a580cda8c493bb1ec56989434d
MD5 141c1f118457cd1d9844b843fe52f32f
BLAKE2b-256 a9fa34a1ad18f20f89026a9ff663b7230fc063df49b7499b6756ba28b61dd8ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3da7d160bc524488fb5e6da2094fba582110f6b4e05845ca12982f476db8b6b4
MD5 68f3a32dc677dcbf8c2fe24a90039717
BLAKE2b-256 845aac814402bb1329b8f5679f0c484d18b00e9bfe5a0c33dd9b56e994aad215

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8120512f5721a77c02833d8353a3c3f3db2cc8e80cfe32ecf3a7ed78723e9040
MD5 aaafd6041b696781d82895c58d2d7f67
BLAKE2b-256 53f2513e460ed8e764e1e0f61aa0c0d05af30edd80d7b0e77c3d6eb24fa7d5f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e34c3e2b3aa826cdce0244b264453541deb5dc659e6335b4b868314dc21debe7
MD5 8d753cd6aaa9bcbee25f91c6ffd4d05b
BLAKE2b-256 9739e59a6fd09a69dc351d0217e5ac870134c93ad87ea1afe4a7cb36fb214aa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1aaf2d046e11ad214bf0e7eceb36c979118bf401d6e3167fe3e54498944a6291
MD5 d413d5df160086e92b08409d2dbf4103
BLAKE2b-256 978be77997f99f9b5d28b4e54b6d2df1e6bb515b73954c3ddcf6f644ef47232a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aa7d5f458041e30d63a2ad50764374e8aa2ff3c22778e206c7b347795c693606
MD5 ec8774dc4a7538ad94aafe0f9abbfbdf
BLAKE2b-256 4a18dba04a71e015f8645cf9f934ccf6038aa51e11fa234465efbd05642846c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fa7c0b1f910cde2b8a8998404d4a3510c2b01ab2af329517de0bbafcf8a1e1ca
MD5 2bb206c1fe4360622b555f89d3712a6d
BLAKE2b-256 c63ef4546efc9c6815706226b159ee4afc7d2ef286ece9dcbbb30b921e2997f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fdbbde034e67df69cc12d628bd8d2dab7b633ce57e2c7512ea54f648db799b4
MD5 293ff353834c81117bf863ac43afdd96
BLAKE2b-256 f1b8add73116b000f1190bf34e88b8333ab3eaa91be7e0e7ec2ce0feeeb23c34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6a6d251470d2dad1426d1eaaff5f9fce4c215d3f4a82bbd13b60fe31131c488
MD5 2cf37ebe352725df5b52aae82fd8d648
BLAKE2b-256 a91acae4824694e1ebdf8c94637fb678df65fa3bcec8e96c8742c6e361350704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5e0eef0ef045a1904fb6f366bd5fadbd1f38bcc68ee19132f4bf13f4b810cb08
MD5 2ba6bf533f1a9ee20589efcfb5f8b71b
BLAKE2b-256 373510e6f91ccfc5fd66728bbb365b1ed990103b9adae2a34fea634bb3509bcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c98330456b7052e05c08a609ada1caa9b39203d3d82aa88006dd454458cb3933
MD5 50ec837d203b7372e4b6c787249ffe75
BLAKE2b-256 97998edd74e58031b1e725810eb7b7dc7fb79c5375fe71ac66b5f319cbef704d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c4ab4e562f49714e65f68cb0d7cf613fde24e0f78ee1446278dffe3b819c9c0
MD5 06aa4547c758211be5b96ceca8b2d26e
BLAKE2b-256 eebbe7792df2f322585f4bf45e444bfb6cfbcc492c7a166d785f857e844de256

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e67af2689558c9a28a438e32853694fe0773e8cf82f145a741d42edb8f47fb21
MD5 599396c60cb18d4298d01ecc062daeb3
BLAKE2b-256 012b9d139721bc4268fb9046df8dd982a25be362d4c5c844b77e8aeabe82aa5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7c6e89972d78a089212971ecbfadeae05beec49c2ec793e746d174ae2ee5e3a
MD5 b4bbc651273fbd063ee69c8564fd2903
BLAKE2b-256 5182e9d28d22efffa3ca447e4683abcdc6fcc6308e775ea602be7c0fc3cad373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 50d34d2afff45677ef755d2b179c733eba11f6ec9f8c4abb5a9c1ea5d800080e
MD5 d80d4b72cb0b4ea74c0c9e403add0096
BLAKE2b-256 c0fa7e5057c398284026a7a5424a9fba2a4df641ddc18c7f2f62cd7c12140ec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a235db800a541e47d58a37f27f91e4e1c2ddba92909ff6466991fc8ebc5252e
MD5 4b99f0322494c4db84e31c39ae38f30c
BLAKE2b-256 848b27a0a8a39430cd4dd3f8833c329a700a4284e7bff36ec21e4d4c87ba1602

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1310a5edb856343626636d0667927efddd1cf2b245873fd7bdb1d0b24ee45e7
MD5 d9831b96ecab74959e76541915ecd5c8
BLAKE2b-256 52f6e7daa34f227cce0d6cd31a7352d8e0da3939caef4e6946f001ce9e4ea2d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0494baf5336f400fea754d2abbdb930ba4f839796a0cbc19a7407ecf536ea6fe
MD5 2a5dc55b4bf248a882131b66138bce3d
BLAKE2b-256 7d5a637c4ec701c31bbb339cf868bc7281ba8d3e6a73a5b3aad1c156cd0b2654

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 eaacfdf5917f6812461b2b6cac292ebb8f7cd07d766a547fbc7ef329c5354a66
MD5 6176a8898acc86096a6110e0c2af862e
BLAKE2b-256 39e5aa036ca7d57e293600eb7e670a9449dfb5416f32661d845fe8051ea0c9e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d184c3551e41a1cca9f75de5180d39734555708d19b5bc7a8332ab0fe2dcd7c
MD5 193b82d49e2bbc86721db411b43dbea9
BLAKE2b-256 14e9b58869a154e829bc61a6c8cff8064d6527d97a2009281f10b6fa41b7d6f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2b0c0e4959c754a70b51f73eb327bd874aad012df8cde538984d411b1facfa39
MD5 ac8c601d8f4147e83a0793c494b62432
BLAKE2b-256 15f06e6a7ab8b0c66878ff6e993c12615bb73d778a25c4225ab560f6f182bcce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 04c1008324887f26ae13f4750932838b541138acfe2620e376e27a33592e84a9
MD5 37d0e775f2674f510cd15ade3d7d1893
BLAKE2b-256 a8e054d3057d64c799920081a9a145b19c60af6a4af93ffba35038d82aa4a920

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32d04f6c410878569a3bb18914e4019720ae75e1ded16ec7bdd2b84ddb1ae672
MD5 0017bc8d88e21ab8e15256f0b9c4df61
BLAKE2b-256 c491248c47fdafc661de8ae2a56307b20aeeb9f0dea44af8c87e82f640c79655

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b8-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f0bc9c293db98dd84ae3c108706ea8337be5eb3ccd50371a65bcbf401e470cb
MD5 52b69a67c2391d66a297e72d4d0e86a0
BLAKE2b-256 1432059e2b63659e1f5b60173efc8408cbae85b930e3e0d714441092f928611a

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