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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

pypop_genomics-1.0.0b1-pp38-pypy38_pp73-win_amd64.whl (291.5 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

pypop_genomics-1.0.0b1-cp312-cp312-win_amd64.whl (292.3 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

File metadata

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

File hashes

Hashes for pypop-genomics-1.0.0b1.tar.gz
Algorithm Hash digest
SHA256 0154c2aa603ee2fde1431f3eda70e4d9ec5dac1456b0a0685682b75ced803000
MD5 14f7712161cfd0a0cb143e7ed0d4951d
BLAKE2b-256 b2be0d81d1f9410119dd502e02ee200126b7d80769e5fbf005dec0594eb8da5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ac5a04fe5adc7b839a0cfd65641ff797b5fc55c76786f4d7bd98407bfed670fc
MD5 4ce3d16da132bca5261412c9149d529f
BLAKE2b-256 8056468325904117ea3a03fe8ac26af7f1448a703fb653ed445243406d83368c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69b32752fb4e4041db91e06e83f1dfaa9b47d488d9351b0ef277b6338a31f1ce
MD5 b31930029b7e6036793b67b9f4398816
BLAKE2b-256 ebf7ccb40d62fefd997d2d6d29ce7cefdc9b1c5152f5d2ac4d60ea6f33c5bdca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d61907a21ecbb59f8a216dd3139e73ed620063f85dca7cc6c0fb9eeec21d191a
MD5 9e8c91d6c9b1e19ae6ede6fdf4ca284b
BLAKE2b-256 c7b0e780a4b0e3935cd4956e360d3a7ddad5045c64d0518537b7eb93ff18387b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7b55c6d77d1171e44608221507c7e0037727c1573f6edf14f6515a786485be0f
MD5 c20e55f7a4a48f91067d74c732405790
BLAKE2b-256 bbddd082e19da1264c00bf89b5dd6ae1f446ff8240a72d26fba24574e51b6b51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8873d3e1ce4927a0c35b9d40a01cc8371d097e0e1c1f51e2a82eeeda5aa015bb
MD5 c8713ec7c50f83142d240ce24d0a52c9
BLAKE2b-256 a308bea06313f7822666ccc842de83dbd9592899a0b8f948f23a3b164effcf35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15c8e15ced9de0910656cb32b5bfb6ac41928be197c971b0aabda0b43c85c0e9
MD5 3c82303ab77de1d79d5b75aa0faec04b
BLAKE2b-256 ed5cdb8b151dfa3d30d7cc9fee0b17d1d2fdcf9fdf20e1ff78539f57fb9bac58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c117a7d61105169d3ab92b66c5909f18e5419d5d012c94fd8791422dff7160e0
MD5 33c1e217ca2a0cf350b6ac8f0cec6629
BLAKE2b-256 f32ca2e03f3d3d4982d72c54ec9bbb8a2f56d61a0700913c87d1e476cfb30daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7af41451142dfbf8ebb37c16c615718e2d26c1d7e4628bef87de89e1c6b3f594
MD5 b09210ee67fbc9b572bd2770a13d113b
BLAKE2b-256 3f67f9a73c0f0c7f7390e78454ac05d772e730b1a5e189f20cf4d9923a5354bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 df2bb06c68fe4dc5e472c8d2df37c8fe6d1d604d7808de572899c7c99f087cf6
MD5 f6adc97763fb03cd54095a7a74fb3e0f
BLAKE2b-256 8e0cbae20d07790adead26f45964ca18fd0eed2972ee2f3109eff0620d767f98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7baa6a62d2220279dcdb27877a93e05fd77d01c1df81b7d003b85893cc78f780
MD5 74de4f4f1a8044350ef9930cc83525b0
BLAKE2b-256 c9b4a6b199bd263443ab5df60cf7ed2694504dd84858fc81fcd8962786ac986a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4ff73e4e07fbfcfabc66417e16f269e8d72c31e6cf4d17211dbb63a8c417aa8c
MD5 0593790c3277b20631a6e18907b7a631
BLAKE2b-256 3606560e22d2be711b554204bf1e3fda6f6dd7b7c530987aa541f465f590d6df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72424b1d26f464ae10a4f40e8dc5d7a640dfda01571867d3d294f45b9f9946c3
MD5 68ff61018f2786f6dde84adddf76ce51
BLAKE2b-256 c9ebb3a2b60426ca4149b005573cf75d7733220806cd52f5804ed858307f59df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4555030d3db1f18b6a3da1b177f263d170e4b85314581622f2fcf2ea8a2a2ba5
MD5 9958bf0c45dbce85e9423745360e79a8
BLAKE2b-256 e6b6c572d40c2826c957e1f53ecc0066af9d3f6fe099f0eab910176a382e1e62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b5b1c0af232205bb8159b18846f32e5962d7a6f8b42605156c2614642b32f082
MD5 1e6e41db5da3652117d41da7d2771bab
BLAKE2b-256 040635361144ee0f68b047ff9c15ceb62485e00983e8376d3606ed89a3c600c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1097d23dd6699f14736e5b3a68833367e68bef534e318575ef268379cd231483
MD5 18fee812619438c02ab14c69c03809c1
BLAKE2b-256 f385377ac42e5d6bffcf5413cec1faff05650d488890b37412c808f26bf18190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe6c3a19089129b6155687dae4ab06b37bbfd4b67b674dde0c2dc321599a43f9
MD5 9f7e1ef86b4f0d35fbda4a776fc70803
BLAKE2b-256 2f41d9d3834adafd7658a5462fe8898d71f4b921c26e794a7ec5c3d7762e11c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 625c5a805803b7c0695f0fa1baa3d13aa6fdf130f18c1b9fd338441d28b00b48
MD5 a73f87cf7b210825e2ececf70350f0bb
BLAKE2b-256 d6dceef94cb1c168e672b1ed5e681174beef9216fedd3f814052e27396af3af0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b0c2018c0aa01e395b87a8900e9509dee351d4171c29e87b903074ea27bbc3a
MD5 4e70e8ffcd9ea3a5c288d0e5da267fc4
BLAKE2b-256 ed226e21adddd2ed256b1fa4171ce816e4b8eb2415ae5620757ce1dbf7749c4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 22ca2c23b9f5aef1c35d5be65023d220493cd6882ecd542e9d2bac4f1354a66f
MD5 1b98d9ba73b07e94ca69549f4ddaf39f
BLAKE2b-256 b5f8054c21078b2a0153e0a97e75d03b091ae58b81bc28c583de62cc9b581bc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9408f5fc17b1122a79db11079ff9f2359f65199ae8c56edc15c34e9f230405c0
MD5 fd004d6e38dd078dae23cb6325cfa804
BLAKE2b-256 f3af018f088f04db59f4d011fbdd1b7dffa56c5804ee18c15b719d96cfa5d269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 daf5f0d4ea0d6720e5c5cf18e9fa4a4a96e6da31acafcd065b5437e9d39131b8
MD5 55b4957fa524fc73ca40473c524665d6
BLAKE2b-256 fc03740c96d390dc83541ee789e7ff4b5fd82e98387086a81244ae409bfd4489

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 88965d25514c42d71858edc03059790293cca01297d7b05e6815314bcae54d73
MD5 4fd8c2ff8e06c7fc1cb67886dd58b4c2
BLAKE2b-256 bcce482b009112e3df6726280a0c69f661abb8f55fc4de521957b1f9f227ef5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d6534871b9678bdfa4a97d2c5d02ae0b40c8d6f2a66df693c11e160b8fc68133
MD5 f29eece3310e961d2c786626b1d90f11
BLAKE2b-256 d717ca0eb5a70eca5c975e96a4d339848c8486eb17528bac0c4d48f2c132dd82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eefab0844e816284a6e63ad9ec9e969fdfff1999e7e42c9c300bc54e77003b6a
MD5 59f6fdd57cd93d7d7417a7d5060f442c
BLAKE2b-256 a64f6e4e8e106d386c58afe672321ba016f988ac01d43d6503dcb4307e81f586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e7d3f47d5bffba05c3079ca6dbb6e06b339aaee341e07d2176f80453e049126
MD5 082174ca54f23f5403b92b30cd8890e5
BLAKE2b-256 38400da0f03b7ae8c309cec876b769ca5600e0c771ba0a2d499e68d8c22567ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e67fbefd131993f551ed3527eafc39d6ab0ea64d9b3bb7b12b556847f221c698
MD5 0387a7c98b129dbbaf38265af6584cb5
BLAKE2b-256 e1a98fa0725fc579d9ce12d515f6dcf09c4b73198422e32f1ad92458d06fdebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36a3a1d6057967327d7642d58a35aa181da6f2bf9d89f37388e83f4746b1bb1e
MD5 f2c7750e33295d9f331090e40ac708fe
BLAKE2b-256 a8591510424435cd856dcde5fb011faee08954d7e4be7b8f4f427726fe3d2ef7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypop_genomics-1.0.0b1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 479bd1f3cacb0129e52f972566124fab53635344928140c33ddf3146c8a3ebfb
MD5 23ff33fc1a074227d40f10584f47522d
BLAKE2b-256 8987106ff026ccbf98fa3682a955203d07281f928a5ac8f71284de81ec803b3e

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