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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

pypop_genomics-1.0.0b4-pp38-pypy38_pp73-win_amd64.whl (291.7 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

pypop_genomics-1.0.0b4-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.0b4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

File metadata

  • Download URL: pypop-genomics-1.0.0b4.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.0b4.tar.gz
Algorithm Hash digest
SHA256 097349de8f459ada932bfb961f038823faa889087ae52ba79e22b0bde2be2fa8
MD5 0151f41fe20b321051272796a9cb818f
BLAKE2b-256 f05ceee3c89201e1477ed13041aec212434f3ba3597f0015d6bd63d6613c6869

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e360d648941b412bf844a88fed6e14f5f15343436c770de61a9236e6432310c8
MD5 3ea3ec1ea240a54d6abfd2a32147bb48
BLAKE2b-256 0d4e89f34c3fd93f89e380edfdebe026fd15ab734f1a620ece1f4940cd324a70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84a1e15d49599f83b80224886d7bdaa25437bfdeae0c9eb16d2696005e78b74d
MD5 acb34e25e894b8b5521f19579d84e578
BLAKE2b-256 84fc1a8af168ebe9251db4f21d5a1bfdcdba17eb23daa062fa1792a606ff07d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e52ea26036e324103319461f4497dd720db50900971b60cf7bb0f0e2185985d4
MD5 2a348ad8b8deb403400839073388fb09
BLAKE2b-256 77a1cfc90c2a67ca0a5143996f8ca454b0ed5c000d957f95711204c1be49a220

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c91605472812f65489b4ea0d3d980cfc8ebdb61edce1ff366e5b5b2c0a4d4f99
MD5 68c24b6facf538bd9dc73c52c32641a4
BLAKE2b-256 ee97812a9b79a958ca83dfeb3daf8ab7f2335bb82f92d2a1ea25dc644d0001f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b506ca795cdc875870c040164ef14efbb7928ee87fae2cd064329f47f5e776d
MD5 168d9f0b056c991b922fbf1649583718
BLAKE2b-256 edc4ad2ddfd07af9a0ccc37093765fa4a62f0e965b66fd8be63381a594b84ded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 037c71b163bd030cfad50d5624245ce8614b3e62e6e6728025b21dd4e8261acf
MD5 fa28ae46d883daad8abb8a51248bae5d
BLAKE2b-256 772eedde1b206f6c4d2ddb5766f148da0ab6d1b8711530464f93445dc7e0d7ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a37a7c80bf921441ca932ef2f6e8ba1e86b26beef6d9a3871fd015f12ea72099
MD5 b0bc2eb288003ac315676d89267eaf13
BLAKE2b-256 3613a026514560447379444ca3e3b2762df9ce9d9c588d852e237ea07e3c6b09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8fc2beadd0151f5255aad92bb03e6b11d819de20465e5523e1735d7cd49cfc2b
MD5 1fa6b0880746d005aa74c11a498d6275
BLAKE2b-256 53bb64cbd29d52d95927c2615804cda2072fa7d6dac12e6bba234d66f8940940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fb05af05e689490e685fd6651b86b8485a37f664014986f067f81f8e75623bca
MD5 ed3154ba23d00800053c61077639b0ae
BLAKE2b-256 8c9cdcab86ddb5f8ca40245b4f9fcab1d6597374fb236dec03d77ac964a0f5ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff150b4d6c4461ce9fc9db5fffc81df3254f46eebb766d6b2d474f8a2b8721e4
MD5 5c71fe332b1a4298033fc9f9af5c4afb
BLAKE2b-256 02b185bb359e333e0c8fd1525cae8935b82a5c274afaaacde8413e72093a42c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 11b39103c2b2d379bd074db82147cd7075a345209875929ebc4c7cbb671a4e2f
MD5 2991635ce06a8ba8a656492d337804bb
BLAKE2b-256 49da539413d46e5a0d81396bd10e50b141968decd67227ca23d5e5d2fd29f80a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dc12ff684c71b1543a5b3020a97f068f716738363add66c4dc5a0faa8c68d500
MD5 1f0a3dcbb67670b56641c41b00522aee
BLAKE2b-256 5216046ab6f3d89c5062505dfe7522dfdc00a6fd1a0b07e050e3b67b63a45227

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ba3c3f5cc1bc51665790114319d32846fb022f80058453940d881371e61853c
MD5 c102fa8721d9bcacf431c558e3e3ca11
BLAKE2b-256 0fe8a2b864d3465a7243b8d96dee3280340273ed110fb84cbb601b5b6a99734f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 692bf27cdd1c97f007f63affa5f38a9be0ff7673e2f4a9e8162ed541f597bfe5
MD5 9517fc408ba6a76839ffb36bee002062
BLAKE2b-256 556b8251742f56b277f4f2d09361c187e25a6d2815839e53834bbf8d797f189b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a404d135ec4ab495024f6893a9148069c74b78c6c552f6b37d15e05adbd45833
MD5 938a3cd14edfcae0461256c9c16619fe
BLAKE2b-256 30a3acf6072a08a473cd109005a586a75eae79fc24c433586c83790a301897e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bd587d14329e7693388a089d84c4e531115af37d0ce5aeb0a3a22d80ae94aab8
MD5 cecfa5df82bc7562c2e8bf58173fa943
BLAKE2b-256 74be4f95bbc8e37d6e29fa2578ccf63ee37089bce0f3a64e2857d104b2e0af6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b75527f167bdfe5652c91d1e567af68b9deab1cfb9e9349531aeda48d070e565
MD5 a1095a4e5973ef2aa4bc3be99dd12f93
BLAKE2b-256 8cb4019a6892e4791bfbf911ff37684017d1c1fc23701cdb5570cd33965f6452

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94b1627397912456604eca4dd530c80fcf3bd55f97455321ff7dd3ff44ba3cb1
MD5 e5e42c598b868531fb6162dcf687b8d0
BLAKE2b-256 4d8df6ff79912f43ac42eec3e9b3c9b96c17620e4771ed187683d05bab7fc66a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c877428486ecae3c03d080985d2c767f14f1874e002c3afb358457ac045849d6
MD5 01dee1a9bd2336ca19dd7074da7459ba
BLAKE2b-256 cef81d0ccfccbb289a943b5dc6d5b58d3f98ec76d5b82886add0deacf19a13a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5aea641d580d513d4dc38c87f71d53e7708438f861b3d1022592d56b604ba798
MD5 740c3083a41efafab146f4b5e3ce1ed9
BLAKE2b-256 d778e0b47562d289aace3215daebbb09ffd57b7d82e7f26399d3c3653438956e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e9e3cea92691ed1392589a697c9a8052426cc5df09db16cf4bdf93da1d25a43
MD5 5ade99203a3def9b9d7a5994ab0d2256
BLAKE2b-256 e221d86e1810da15207866729a8ee2c9aba70cf1bd98f9b96af8d20e4e824bdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f212f530ec989a3928519241a7d18db48af8d27bfa01e0f201d49c42d6746f6
MD5 03cd590da54d891a895076cc399ff0e8
BLAKE2b-256 65b9b4d3dafea39639ef8f7ede0ad6598f1bb753284bc6ece901a7e1f96d2c19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4d90133f3778fdc0631212516b572dc4220a83a98cdef26a23fd8c426fb9c6d
MD5 827fe65467846964bf6fef47bb2595dd
BLAKE2b-256 ab5b27f653147c16254b61d8a4c5d6cd9f6372fff40ec40c0f3e7390d81beb71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 eec5595f5c9021e0ff170fd56b01d6f0d8174c0f537c126cb505f72bcedbf5fa
MD5 35cec78d325071f216c4c3e037300bb1
BLAKE2b-256 c21e41dffd28009787feef47ef2ca55eab72dab3386fedbfbc248aa4159a37b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e3e6a5e99f15e0b41a6e325e145dd2786715609af84c6b1990c56db92793f1f
MD5 1652dbfd061cb62365287f40b8a0f918
BLAKE2b-256 22303dd1b971bd2310bcd5c3f8ad6663816b6abd5777f3f9470e5932776915bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7af2eb6a63c052ad944e8d4d602bf94c4102bdb87252a842fbbecb971efa0b9
MD5 7bedfc6d357d1ebfbfaad10d07fd9371
BLAKE2b-256 6b2f22c6aee0cd8b268ed0ab0baaee117b1b09e4092339b086c4ddd0b8205014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1983e2098f7f77129e857471a29aea7b06a9a1d43b2aad5830651b2ecd37514a
MD5 74543492f5e13edbc810bfd7f1646f2d
BLAKE2b-256 ed35c8442b83349bcff64f9f5346c075de41ca52419aa1aa5df46baed4540353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7c2b30f6501d95e6c40f7cac92d7b3d425556f7da27a21fe974eb52cb75c3a63
MD5 fc6769e20c61d9ce36d2f4cbd0338c46
BLAKE2b-256 afa9c31bd8b0ca0f52dc3cabe9be3db46f600b28efc56ff8001f9bc1f68d95d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70bc89e784fbd1c72ca0833717c1b7275744b800b86932f523ae2bc2ed8840ed
MD5 bc86629d3180f5e41e09b5072fdf08e8
BLAKE2b-256 2fc3bb455ffe35227fb6b5df2c8daa61ea7a16510d3e35be1ed42258ab816fcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71714d8e3afc36bf3e20a4248617bb15b84e140775f857c2f6ab483ab3a293e7
MD5 d49de980c4be2d9b5f93a3abc920f890
BLAKE2b-256 9dc0220a4fb91186686885010698e98878c5529279f98796d350f959afcd815a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4f4d4c9d21aeaeffd9acfc4cfef0f7ca0193b10a57fac6900672c0169ee55e8c
MD5 0a0dc1b7f419f26beb99457c7d9d3600
BLAKE2b-256 5c2e91f46237a55a44d4404a2ad1bc6838a47d11864239cdc19470c3c9ba0dae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ddcf30d7d6d90aefee2b96fc775fd3f90765b46d578498f0807f51d7b40530a6
MD5 d6f6ea8ede8ab9827be8586b70540ee0
BLAKE2b-256 8f7bafd47c4934a20dcd76edcfc8f46b9dac30620ad9f0c136e123d85d218625

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a39a0fd760bf09fb9cfe7897047e71dd241b78214405e4dd18515afc28c5a9fe
MD5 d48fa5dbd1e540f69f8fd9249d99b15e
BLAKE2b-256 c4a12dc4ae4fb01f964eb6580b12c5ce0bd54b5c1ca9964b83a6ba2bd09c6800

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