pypop-genomics


Namepypop-genomics JSON
Version 1.0.2 PyPI version JSON
download
home_pagehttp://www.pypop.org/
SummaryPyPop: Python for Population Genomics
upload_time2024-02-25 06:36:40
maintainerPyPop team
docs_urlNone
authorAlex Lancaster
requires_python
licenseGNU GPL
keywords bioinformatics population-genomics evolutionary-biology population-genetics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            |PyPI version shields.io| |Build status| |Website pypop.org| |GitHub license| |Citations| |DOI|

PyPop: Python for Population Genomics
=====================================

PyPop is a framework for processing genotype and allele data and
running population genetic analyses, including conformity to
Hardy-Weinberg expectations; tests for balancing or directional
selection; estimates of haplotype frequencies and measures and tests
of significance for linkage disequilibrium (LD). Full documentation is
available in the `PyPop User Guide <http://pypop.org/docs>`__.

.. _guide-include-pypop-cite-start:
		       
**How to cite PyPop**

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

* our 2024 article, currently in review, available as a `Zenodo
  preprint <https://doi.org/10.5281/zenodo.10602940>`__:

      Lancaster AK, Single RM, Mack SJ, Sochat V, Mariani MP, Webster
      GD. (2024) "PyPop: A mature open-source software pipeline for
      population genomics" (Preprint v1). Zenodo.
      DOI:`10.5281/zenodo.10602940
      <https://doi.org/10.5281/zenodo.10602940>`__.

* **and** the `Zenodo record <https://zenodo.org/records/10080667>`__
  for the software. To cite the correct version, follow these steps:

  1) First visit the DOI for the overall Zenodo record:
     `10.5281/zenodo.10080667
     <https://zenodo.org/doi/10.5281/zenodo.10080667>`__. This DOI
     represents **all versions**, and will always resolve to the
     latest one.

  2) When you are viewing the record, look for the **Versions** box
     in the right-sidebar. Here are listed all versions (including
     older versions).

  3) Select and click the version-specific DOI that matches the
     specific version of PyPop that you used for your analysis.

  4) Once you are visiting the Zenodo record for the specific version,
     under the **Citation** box in the right-sidebar, select the
     citation format you wish to use and click to copy the citation.
     It will contain link to the version-specific DOI, and be of the
     form:

       Lancaster, AK et al. (YYYY) "PyPop: Python for Population
       Genomics" (Version X.Y.Z) [Computer
       software]. Zenodo. https://doi.org/10.5281/zenodo.XXXXX

  Note that citation metadata for the current Zenodo record is also
  stored in `CITATION.cff
  <https://github.com/alexlancaster/pypop/blob/main/CITATION.cff>`__
   
.. _guide-include-pypop-cite-end:

.. _guide-include-start:

.. ATTENTION:: 

   The package name for installation purposes is |pkgname| - to avoid
   conflicting with an unrelated package with the name ``pypop``
   already on `PyPI <https://pypi.org>`__.

Quickstart Guide
================

**Installing** |pkgname|

If you already have Python and ``pip`` installed, install using the following:

.. code-block:: shell

   pip install pypop-genomics

Otherwise, follow `these instructions <Install Python 3 and pip_>`_ to install Python 3 and pip.

Once |pkgname| is installed, depending on your platform, you may also
need to `adjust <Post-install PATH adjustments_>`_ your ``PATH``
environment variable.  

**Upgrading** |pkgname|

.. code-block:: shell

   pip install -U pypop-genomics

**Uninstalling** |pkgname|

.. code-block:: shell

   pip uninstall pypop-genomics

**For more, including handling common installation issues, see the** `detailed installation instructions`_ **.**
   
Once you have installed |pkgname|, you can move on to try some
`example runs <Examples_>`__.
   
   
.. _guide_readme_examples:

Examples
========

These are examples of how to check that the program is installed and
some minimal use cases.

Checking version and installation
---------------------------------

.. code-block:: shell

   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:

.. code-block:: text

   pypop 1.0.0
   [Python 3.10.9 | Linux.x86_64-x86_64 | x86_64]
   Copyright (C) 2003-2006 Regents of the University of California.
   Copyright (C) 2007-2023 PyPop team.
   This is free software.  There is NO warranty; not even for
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

You can also run ``pypop --help`` to see a full list and explanation
of all the options available.

Run a minimal dataset:
----------------------

Download test ``.ini`` and ``.pop`` files: `minimal.ini
<https://raw.githubusercontent.com/alexlancaster/pypop/main/tests/data/minimal.ini>`_
and `USAFEL-UchiTelle-small.pop
<https://raw.githubusercontent.com/alexlancaster/pypop/main/tests/data/USAFEL-UchiTelle-small.pop>`_.
You can then run them

.. code-block:: shell

   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

.. code-block:: shell

   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
  <https://docs.python.org/3/using/mac.html>`__ 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
  <https://docs.python.org/3/using/windows.html>`__ 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 |pkgname|
directly from  `PyPI <https://pypi.org/>`__.

.. code-block:: shell

   pip install pypop-genomics

.. note::

   If, for whatever reason, you cannot use the these binaries
   (e.g. the pre-compiled binaries are not available for your
   platform), you may need to follow the `developer installation
   instructions <http://pypop.org/docs/guide-chapter-contributing.html#installation-for-developers>`_ in the contributors
   guide.
		
**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.

.. code-block:: shell

   pip install -U pypop-genomics

**Installing from Test PyPI**

From time to time, we may make available packages on the `Test PyPI
<https://test.pypi.org/>`__ instance, rather than the through the main
instance. The above installation and updating instructions can be
used, by appending the following:

.. code-block:: shell

   --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 |pkgname|
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.:

.. code-block:: shell

   pip install pypop-genomics --user

This may be necessary in certain cases where ``pip install`` doesn't
install into the expected user directory.
   
.. admonition:: Installing within a ``conda`` environment

   In the special case that you installing from within an activated
   user-specific ``conda`` virtual environment that provides Python,
   then you should **not** add the ``--user`` because it will install
   it in ``~/.local/lib/`` rather than under the user-specific conda
   virtual environment in ``~/.conda/envs/``.
		
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.

.. warning::

   Pay close attention to the "WARNINGS" that are shown during the
   ``pip`` installation, they will often note which directories need to
   be added to the ``PATH``.

- 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
  <https://www.computerhope.com/issues/ch000549.htm>`_, 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 |pkgname|:

.. code-block:: shell

   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
<http://pypop.org/docs/guide-chapter-contributing.html#reporting-and-requesting>`_
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

.. _guide-include-end:

For a detailed description on bug reporting as well as how to
contribute to PyPop, please consult our `CONTRIBUTING.rst
<https://github.com/alexlancaster/pypop/blob/main/CONTRIBUTING.rst>`_
guide. For reporting security vulnerabilities visit `SECURITY.md
<https://github.com/alexlancaster/pypop/blob/main/SECURITY.md>`__.

We also have additional notes and background relevant for developers
in `DEV_NOTES.md
<https://github.com/alexlancaster/pypop/blob/main/DEV_NOTES.md>`__. Source
for the website and the documentation is located in the `website
<https://github.com/alexlancaster/pypop/blob/main/website>`__
subdirectory.

Copyright and License
=====================

PyPop is Copyright (C) 2003-2006. The Regents of the University of
California (Regents)

Copyright (C) 2007-2023 PyPop team.

PyPop is distributed under the terms of GPLv2


.. |pkgname| replace:: ``pypop-genomics``

.. |PyPI version fury.io| image:: https://badge.fury.io/py/pypop-genomics.svg
   :target: https://pypi.python.org/pypi/pypop-genomics/

.. |PyPI version shields.io| image:: https://img.shields.io/pypi/v/pypop-genomics.svg
   :target: https://pypi.python.org/pypi/pypop-genomics/

.. |PyPI pyversions| image:: https://img.shields.io/pypi/pyversions/pypop-genomics.svg
   :target: https://pypi.python.org/pypi/pypop-genomics/	    
	    
.. |GitHub release| image:: https://img.shields.io/github/release/alexlancaster/pypop.svg
   :target: https://github.com/alexlancaster/pypop/releases/

.. |Build status| image:: https://github.com/alexlancaster/pypop/actions/workflows/build_wheels.yml/badge.svg?branch=main
    :target: https://github.com/alexlancaster/pypop/actions/workflows/build_wheels.yml

.. |GitHub license| image:: https://img.shields.io/github/license/alexlancaster/pypop.svg
   :target: https://github.com/alexlancaster/pypop/blob/main/LICENSE	     

.. |GitHub issues| image:: https://img.shields.io/github/issues/alexlancaster/pypop.svg
    :target: https://github.com/alexlancaster/pypop/issues

.. |Citations| image:: https://api.juleskreuer.eu/citation-badge.php?doi=10.1111/j.1399-0039.2006.00769.x
   :target: https://juleskreuer.eu/projekte/citation-badge/

.. |DOI| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.10080667.svg
   :target: https://doi.org/10.5281/zenodo.10080667
      
.. |GitHub version| image:: https://badge.fury.io/gh/alexlancaster%2Fpypop.svg
   :target: https://github.com/alexlancaster/pypop/

.. |GitHub tag| image:: https://img.shields.io/github/tag/alexlancaster/pypop.svg
   :target: https://github.com/alexlancaster/pypop/tags/	    

.. |Website pypop.org| image:: https://img.shields.io/website-up-down-green-red/http/pypop.org.svg
   :target: http://pypop.org/	    

            

Raw data

            {
    "_id": null,
    "home_page": "http://www.pypop.org/",
    "name": "pypop-genomics",
    "maintainer": "PyPop team",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "bioinformatics,population-genomics,evolutionary-biology,population-genetics",
    "author": "Alex Lancaster",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/43/5b/abd98e41f4a7299b7a81fe4f10a59e6f5c026cd9dcb91534c3975692b7bc/pypop-genomics-1.0.2.tar.gz",
    "platform": "GNU/Linux",
    "description": "|PyPI version shields.io| |Build status| |Website pypop.org| |GitHub license| |Citations| |DOI|\n\nPyPop: Python for Population Genomics\n=====================================\n\nPyPop is a framework for processing genotype and allele data and\nrunning population genetic analyses, including conformity to\nHardy-Weinberg expectations; tests for balancing or directional\nselection; estimates of haplotype frequencies and measures and tests\nof significance for linkage disequilibrium (LD). Full documentation is\navailable in the `PyPop User Guide <http://pypop.org/docs>`__.\n\n.. _guide-include-pypop-cite-start:\n\t\t       \n**How to cite PyPop**\n\nIf you write a paper that uses PyPop in your analysis, please cite\n**both**:\n\n* our 2024 article, currently in review, available as a `Zenodo\n  preprint <https://doi.org/10.5281/zenodo.10602940>`__:\n\n      Lancaster AK, Single RM, Mack SJ, Sochat V, Mariani MP, Webster\n      GD. (2024) \"PyPop: A mature open-source software pipeline for\n      population genomics\" (Preprint v1). Zenodo.\n      DOI:`10.5281/zenodo.10602940\n      <https://doi.org/10.5281/zenodo.10602940>`__.\n\n* **and** the `Zenodo record <https://zenodo.org/records/10080667>`__\n  for the software. To cite the correct version, follow these steps:\n\n  1) First visit the DOI for the overall Zenodo record:\n     `10.5281/zenodo.10080667\n     <https://zenodo.org/doi/10.5281/zenodo.10080667>`__. This DOI\n     represents **all versions**, and will always resolve to the\n     latest one.\n\n  2) When you are viewing the record, look for the **Versions** box\n     in the right-sidebar. Here are listed all versions (including\n     older versions).\n\n  3) Select and click the version-specific DOI that matches the\n     specific version of PyPop that you used for your analysis.\n\n  4) Once you are visiting the Zenodo record for the specific version,\n     under the **Citation** box in the right-sidebar, select the\n     citation format you wish to use and click to copy the citation.\n     It will contain link to the version-specific DOI, and be of the\n     form:\n\n       Lancaster, AK et al. (YYYY) \"PyPop: Python for Population\n       Genomics\" (Version X.Y.Z) [Computer\n       software]. Zenodo. https://doi.org/10.5281/zenodo.XXXXX\n\n  Note that citation metadata for the current Zenodo record is also\n  stored in `CITATION.cff\n  <https://github.com/alexlancaster/pypop/blob/main/CITATION.cff>`__\n   \n.. _guide-include-pypop-cite-end:\n\n.. _guide-include-start:\n\n.. ATTENTION:: \n\n   The package name for installation purposes is |pkgname| - to avoid\n   conflicting with an unrelated package with the name ``pypop``\n   already on `PyPI <https://pypi.org>`__.\n\nQuickstart Guide\n================\n\n**Installing** |pkgname|\n\nIf you already have Python and ``pip`` installed, install using the following:\n\n.. code-block:: shell\n\n   pip install pypop-genomics\n\nOtherwise, follow `these instructions <Install Python 3 and pip_>`_ to install Python 3 and pip.\n\nOnce |pkgname| is installed, depending on your platform, you may also\nneed to `adjust <Post-install PATH adjustments_>`_ your ``PATH``\nenvironment variable.  \n\n**Upgrading** |pkgname|\n\n.. code-block:: shell\n\n   pip install -U pypop-genomics\n\n**Uninstalling** |pkgname|\n\n.. code-block:: shell\n\n   pip uninstall pypop-genomics\n\n**For more, including handling common installation issues, see the** `detailed installation instructions`_ **.**\n   \nOnce you have installed |pkgname|, you can move on to try some\n`example runs <Examples_>`__.\n   \n   \n.. _guide_readme_examples:\n\nExamples\n========\n\nThese are examples of how to check that the program is installed and\nsome minimal use cases.\n\nChecking version and installation\n---------------------------------\n\n.. code-block:: shell\n\n   pypop --version\n\nThis simply reports the version number and other information about\nPyPop, and indirectly checks that the program is installed. If all is\nwell, you should see something like:\n\n.. code-block:: text\n\n   pypop 1.0.0\n   [Python 3.10.9 | Linux.x86_64-x86_64 | x86_64]\n   Copyright (C) 2003-2006 Regents of the University of California.\n   Copyright (C) 2007-2023 PyPop team.\n   This is free software.  There is NO warranty; not even for\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\nYou can also run ``pypop --help`` to see a full list and explanation\nof all the options available.\n\nRun a minimal dataset:\n----------------------\n\nDownload test ``.ini`` and ``.pop`` files: `minimal.ini\n<https://raw.githubusercontent.com/alexlancaster/pypop/main/tests/data/minimal.ini>`_\nand `USAFEL-UchiTelle-small.pop\n<https://raw.githubusercontent.com/alexlancaster/pypop/main/tests/data/USAFEL-UchiTelle-small.pop>`_.\nYou can then run them\n\n.. code-block:: shell\n\n   pypop -c  minimal.ini USAFEL-UchiTelle-small.pop\n\nIf you have already cloned the git repository and it is your working\ndirectory, you can simply run\n\n.. code-block:: shell\n\n   pypop -c  tests/data/minimal.ini tests/data/USAFEL-UchiTelle-small.pop\n\n\nThis will generate the following two files, an XML output file and a\nplain text version:\n\n::\n\n   USAFEL-UchiTelle-small-out.xml\n   USAFEL-UchiTelle-small-out.txt\n\n\nDetailed installation instructions\n==================================\n\nThere are three main steps:\n\n1. install Python and ``pip``\n2. install package from Test PyPI\n3. adjusting your ``PATH`` variable after installation\n\n\nInstall Python 3 and ``pip``\n----------------------------\n\nA full description of installing Python and ``pip`` on your system is\nbeyond the scope of this guide, we recommend starting here:\n\n   https://wiki.python.org/moin/BeginnersGuide/Download\n\nHere are some additional platform-specific notes that may be helpful:\n   \n- Most Linux distributions come with Python 3 preinstalled. On most\n  modern systems, ``pip`` and ``python`` will default to Python 3.\n\n- MacOS 10.9 (Jaguar) up until 12.3 (Catalina), used to ship with\n  Python 2 pre-installed, but it now has to be manually installed.\n  See the `MacOS quick-start guide\n  <https://docs.python.org/3/using/mac.html>`__ in the official\n  documentation for how to install Python 3. (Note that if Python is\n  installed on Mac via the MacOS developer tools, it may include the\n  version ``3`` suffix on commands, e.g. ``python3`` and ``pip3``, so\n  modify the below, accordingly).\n\n- For Windows, see also the `Windows quick-start guide\n  <https://docs.python.org/3/using/windows.html>`__ in the official\n  documentation. Running ``python`` in the Windows command terminal\n  in Windows 11 and later will launch the installer for the\n  Microsoft-maintained Windows package of Python 3.\n\nInstall package from PyPI\n-------------------------\n\nOnce you have both python and ``pip`` installed, you can use ``pip``\nto install pre-compiled binary \"wheels\" of |pkgname|\ndirectly from  `PyPI <https://pypi.org/>`__.\n\n.. code-block:: shell\n\n   pip install pypop-genomics\n\n.. note::\n\n   If, for whatever reason, you cannot use the these binaries\n   (e.g. the pre-compiled binaries are not available for your\n   platform), you may need to follow the `developer installation\n   instructions <http://pypop.org/docs/guide-chapter-contributing.html#installation-for-developers>`_ in the contributors\n   guide.\n\t\t\n**Upgrade an existing PyPop installation**\n\nTo update an existing installation to a newer version, use the same\ncommand as above, but add the ``--upgrade`` (short version: ``-U``)\nflag, i.e.\n\n.. code-block:: shell\n\n   pip install -U pypop-genomics\n\n**Installing from Test PyPI**\n\nFrom time to time, we may make available packages on the `Test PyPI\n<https://test.pypi.org/>`__ instance, rather than the through the main\ninstance. The above installation and updating instructions can be\nused, by appending the following:\n\n.. code-block:: shell\n\n   --extra-index-url https://test.pypi.org/simple/\n\nto the above ``pip`` commands.\n   \n**Issues with installation permission**\n\nBy default, ``pip`` will attempt to install the |pkgname|\npackage wherever the current Python installation is installed.  This\nlocation may be a user-specific virtual environment (like ``conda``,\nsee below), or a system-wide installation. On many Unix-based systems,\nPython will generally already be pre-installed in a \"system-wide\"\nlocation (e.g. under ``/usr/lib``) which is read-only for regular\nusers. (This can also be true for system-installed versions of Python\non Windows and MacOS.)\n\nWhen ``pip install`` cannot install in a read-only system-wide\nlocation , ``pip`` will gracefully \"fall-back\" to installing just for\nyou in your home directory (typically ``~/.local/lib/python<VER>``\nwhere ``<VER>`` is the version number of your current Python). In\ngeneral, this is what is wanted, so the above instructions are\nnormally sufficient.\n\nHowever, you can also explicitly set installation to be in the user\ndirectory, by adding the ``--user`` command-line option to the ``pip install``\ncommand, i.e.:\n\n.. code-block:: shell\n\n   pip install pypop-genomics --user\n\nThis may be necessary in certain cases where ``pip install`` doesn't\ninstall into the expected user directory.\n   \n.. admonition:: Installing within a ``conda`` environment\n\n   In the special case that you installing from within an activated\n   user-specific ``conda`` virtual environment that provides Python,\n   then you should **not** add the ``--user`` because it will install\n   it in ``~/.local/lib/`` rather than under the user-specific conda\n   virtual environment in ``~/.conda/envs/``.\n\t\t\nPost-install ``PATH`` adjustments\n---------------------------------\n   \nYou may need to adjust the ``PATH`` settings (especially on Windows)\nfor the ``pypop`` scripts to be visible when run from your console\napplication, without having to supply the full path to the ``pypop``\nexecutable file.\n\n.. warning::\n\n   Pay close attention to the \"WARNINGS\" that are shown during the\n   ``pip`` installation, they will often note which directories need to\n   be added to the ``PATH``.\n\n- On Linux and MacOS, systems this is normally fairly simple and only\n  requires edit of the shell ``.profile``, or similar and addition of\n  the ``$HOME/.local/bin`` to the ``PATH`` variable, followed by a\n  restart of the terminal.\n\n- For Windows, however, as noted in most online `instructions\n  <https://www.computerhope.com/issues/ch000549.htm>`_, this may need\n  additional help from your system administrator if your user doesn't\n  have the right permissions, and also require a system reboot.\n   \nUninstalling PyPop\n------------------\n\nTo uninstall the current version of |pkgname|:\n\n.. code-block:: shell\n\n   pip uninstall pypop-genomics\n\n  \n   \nSupport and development\n=======================\n\nPlease submit any bug reports, feature requests or questions, via our\nGitHub issue tracker (see our `bug reporting guidelines\n<http://pypop.org/docs/guide-chapter-contributing.html#reporting-and-requesting>`_\nfor more details on how to file a good bug report):\n\n   https://github.com/alexlancaster/pypop/issues\n   \n**Please do not report bugs via private email to developers.**\n\nThe development of the code for PyPop is via our GitHub project:\n\n   https://github.com/alexlancaster/pypop\n\n.. _guide-include-end:\n\nFor a detailed description on bug reporting as well as how to\ncontribute to PyPop, please consult our `CONTRIBUTING.rst\n<https://github.com/alexlancaster/pypop/blob/main/CONTRIBUTING.rst>`_\nguide. For reporting security vulnerabilities visit `SECURITY.md\n<https://github.com/alexlancaster/pypop/blob/main/SECURITY.md>`__.\n\nWe also have additional notes and background relevant for developers\nin `DEV_NOTES.md\n<https://github.com/alexlancaster/pypop/blob/main/DEV_NOTES.md>`__. Source\nfor the website and the documentation is located in the `website\n<https://github.com/alexlancaster/pypop/blob/main/website>`__\nsubdirectory.\n\nCopyright and License\n=====================\n\nPyPop is Copyright (C) 2003-2006. The Regents of the University of\nCalifornia (Regents)\n\nCopyright (C) 2007-2023 PyPop team.\n\nPyPop is distributed under the terms of GPLv2\n\n\n.. |pkgname| replace:: ``pypop-genomics``\n\n.. |PyPI version fury.io| image:: https://badge.fury.io/py/pypop-genomics.svg\n   :target: https://pypi.python.org/pypi/pypop-genomics/\n\n.. |PyPI version shields.io| image:: https://img.shields.io/pypi/v/pypop-genomics.svg\n   :target: https://pypi.python.org/pypi/pypop-genomics/\n\n.. |PyPI pyversions| image:: https://img.shields.io/pypi/pyversions/pypop-genomics.svg\n   :target: https://pypi.python.org/pypi/pypop-genomics/\t    \n\t    \n.. |GitHub release| image:: https://img.shields.io/github/release/alexlancaster/pypop.svg\n   :target: https://github.com/alexlancaster/pypop/releases/\n\n.. |Build status| image:: https://github.com/alexlancaster/pypop/actions/workflows/build_wheels.yml/badge.svg?branch=main\n    :target: https://github.com/alexlancaster/pypop/actions/workflows/build_wheels.yml\n\n.. |GitHub license| image:: https://img.shields.io/github/license/alexlancaster/pypop.svg\n   :target: https://github.com/alexlancaster/pypop/blob/main/LICENSE\t     \n\n.. |GitHub issues| image:: https://img.shields.io/github/issues/alexlancaster/pypop.svg\n    :target: https://github.com/alexlancaster/pypop/issues\n\n.. |Citations| image:: https://api.juleskreuer.eu/citation-badge.php?doi=10.1111/j.1399-0039.2006.00769.x\n   :target: https://juleskreuer.eu/projekte/citation-badge/\n\n.. |DOI| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.10080667.svg\n   :target: https://doi.org/10.5281/zenodo.10080667\n      \n.. |GitHub version| image:: https://badge.fury.io/gh/alexlancaster%2Fpypop.svg\n   :target: https://github.com/alexlancaster/pypop/\n\n.. |GitHub tag| image:: https://img.shields.io/github/tag/alexlancaster/pypop.svg\n   :target: https://github.com/alexlancaster/pypop/tags/\t    \n\n.. |Website pypop.org| image:: https://img.shields.io/website-up-down-green-red/http/pypop.org.svg\n   :target: http://pypop.org/\t    \n",
    "bugtrack_url": null,
    "license": "GNU GPL",
    "summary": "PyPop: Python for Population Genomics",
    "version": "1.0.2",
    "project_urls": {
        "Changelog": "https://github.com/alexlancaster/pypop/blob/main/NEWS.md",
        "Documentation": "http://pypop.org/docs/",
        "Homepage": "http://www.pypop.org/",
        "Source": "https://github.com/alexlancaster/pypop/",
        "Tracker": "https://github.com/alexlancaster/pypop/issues"
    },
    "split_keywords": [
        "bioinformatics",
        "population-genomics",
        "evolutionary-biology",
        "population-genetics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8082bf4f15b0ef60ee9e39e5849e9410b81cd5bea127425ecfab6d9471d8455f",
                "md5": "bde58c65d786b02491511283e7574dbc",
                "sha256": "6052b4450e614daaca7870157b82b932d3e6d65e9d701591577eb09c948aa1d7"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bde58c65d786b02491511283e7574dbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1270226,
            "upload_time": "2024-02-25T06:34:55",
            "upload_time_iso_8601": "2024-02-25T06:34:55.081524Z",
            "url": "https://files.pythonhosted.org/packages/80/82/bf4f15b0ef60ee9e39e5849e9410b81cd5bea127425ecfab6d9471d8455f/pypop_genomics-1.0.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9301651df573bf3f25f9dd8efcbbd8f64b811903389454bac923070193d4140",
                "md5": "f085bac8ce5cfa26d8e91cbcf4cd2846",
                "sha256": "42194d421fb75c0bdf0f952d4548f97b13e0fb6075eefe875a9101cde364106c"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f085bac8ce5cfa26d8e91cbcf4cd2846",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1103954,
            "upload_time": "2024-02-25T06:34:57",
            "upload_time_iso_8601": "2024-02-25T06:34:57.719913Z",
            "url": "https://files.pythonhosted.org/packages/d9/30/1651df573bf3f25f9dd8efcbbd8f64b811903389454bac923070193d4140/pypop_genomics-1.0.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4478350002540e15ac3fa85cb1e59a339f0526d4eeac4597ae0e703b7c43744a",
                "md5": "5370b9180a71051b90186455e84b1891",
                "sha256": "27309d1421e33763c5448857abc2480a3c66bfc572e392732ca21b4c5480d95f"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5370b9180a71051b90186455e84b1891",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4828238,
            "upload_time": "2024-02-25T06:35:00",
            "upload_time_iso_8601": "2024-02-25T06:35:00.248404Z",
            "url": "https://files.pythonhosted.org/packages/44/78/350002540e15ac3fa85cb1e59a339f0526d4eeac4597ae0e703b7c43744a/pypop_genomics-1.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "541daefe3e4723227618328ae16743e647a0147355b692273321f9be8232087f",
                "md5": "aff60438300294a051f70d5573a2f26a",
                "sha256": "162040c1382b331a7170cb078715da06fe37a80f7d0907a2b3d69a1abd7502ef"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aff60438300294a051f70d5573a2f26a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5448361,
            "upload_time": "2024-02-25T06:35:03",
            "upload_time_iso_8601": "2024-02-25T06:35:03.303797Z",
            "url": "https://files.pythonhosted.org/packages/54/1d/aefe3e4723227618328ae16743e647a0147355b692273321f9be8232087f/pypop_genomics-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f1d20b17658b9202685954f6603deaacb6c2434e532e8c3805401cc3ccc116f",
                "md5": "f5b4f806817ddbaad1b2460417364887",
                "sha256": "92f9cc059f23126ed92e02470b76925a1970068eb0b3e2ea27f48f7dcd5ed5e0"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f5b4f806817ddbaad1b2460417364887",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1499839,
            "upload_time": "2024-02-25T06:35:05",
            "upload_time_iso_8601": "2024-02-25T06:35:05.113135Z",
            "url": "https://files.pythonhosted.org/packages/3f/1d/20b17658b9202685954f6603deaacb6c2434e532e8c3805401cc3ccc116f/pypop_genomics-1.0.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81e9e66f147397e9f378c30d2c2fe49ab01e4c412193cdb131f80608bad85210",
                "md5": "9bd5a7e55b48298eebb8195dfe5dafe7",
                "sha256": "0c41c0504546fb3401f6c862cb5cfa46e3afd718c86ab0d56e66155a29543b68"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9bd5a7e55b48298eebb8195dfe5dafe7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1591592,
            "upload_time": "2024-02-25T06:35:06",
            "upload_time_iso_8601": "2024-02-25T06:35:06.919462Z",
            "url": "https://files.pythonhosted.org/packages/81/e9/e66f147397e9f378c30d2c2fe49ab01e4c412193cdb131f80608bad85210/pypop_genomics-1.0.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7ed519883d920c0ff53a7f32c9b47f99b183828baca5fc585125a6c44f48f0d",
                "md5": "f5c374d7f22b8f4272c3fdbd488e41ae",
                "sha256": "853a842b30a2439d4b5c943c493881cedbda00399daa167da850865cbe864416"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f5c374d7f22b8f4272c3fdbd488e41ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 294030,
            "upload_time": "2024-02-25T06:35:08",
            "upload_time_iso_8601": "2024-02-25T06:35:08.506340Z",
            "url": "https://files.pythonhosted.org/packages/b7/ed/519883d920c0ff53a7f32c9b47f99b183828baca5fc585125a6c44f48f0d/pypop_genomics-1.0.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59f70bcf185c301baa5fb9782fe9b95a87149dc24df5010bfdcfaf8ce1115b46",
                "md5": "ec2cc36cff3f64f50aa9e8dd25e277fe",
                "sha256": "d2f82f2081f15604628dad2b24fc901fe07fa7a323e4e07bb4658787b13843b7"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec2cc36cff3f64f50aa9e8dd25e277fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1270332,
            "upload_time": "2024-02-25T06:35:10",
            "upload_time_iso_8601": "2024-02-25T06:35:10.801894Z",
            "url": "https://files.pythonhosted.org/packages/59/f7/0bcf185c301baa5fb9782fe9b95a87149dc24df5010bfdcfaf8ce1115b46/pypop_genomics-1.0.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ec141cc4a34e2e3ae6bf0a689da6c6b5ab4dbd6bae6f64ac2e48336a825df42",
                "md5": "42691c4c296b75a659d4da9358953dd6",
                "sha256": "2e31e7ac57750bb6de8b164133394f9c4cc1b95927cdd14fb3022c675ed9a37a"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "42691c4c296b75a659d4da9358953dd6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1103935,
            "upload_time": "2024-02-25T06:35:13",
            "upload_time_iso_8601": "2024-02-25T06:35:13.232679Z",
            "url": "https://files.pythonhosted.org/packages/7e/c1/41cc4a34e2e3ae6bf0a689da6c6b5ab4dbd6bae6f64ac2e48336a825df42/pypop_genomics-1.0.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de0aa657d7a17ce4598878906ac760bd33b25a82b3de9b6c659f5dddcec39440",
                "md5": "842785814dafc3963cafdae8520af604",
                "sha256": "57120e232494ab6779329b96ae0c82a3afb1e7d7512726bf1d811c2df704179f"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "842785814dafc3963cafdae8520af604",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4835372,
            "upload_time": "2024-02-25T06:35:15",
            "upload_time_iso_8601": "2024-02-25T06:35:15.726891Z",
            "url": "https://files.pythonhosted.org/packages/de/0a/a657d7a17ce4598878906ac760bd33b25a82b3de9b6c659f5dddcec39440/pypop_genomics-1.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65eb74045ce2389d553903bec00daebe058b0a9df32e60b0c8493437af037e50",
                "md5": "0cc49a3665ba0dc41c1790acd088cc4a",
                "sha256": "2c978d51665fbc6001dd14cc6f5bd22dfdbd54b063f80f80c0851eaafdd2a426"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0cc49a3665ba0dc41c1790acd088cc4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5454946,
            "upload_time": "2024-02-25T06:35:17",
            "upload_time_iso_8601": "2024-02-25T06:35:17.945558Z",
            "url": "https://files.pythonhosted.org/packages/65/eb/74045ce2389d553903bec00daebe058b0a9df32e60b0c8493437af037e50/pypop_genomics-1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f804283fa22e72b719301e01781fcd18c17f427614e69c7c4a2557814e2e2f4",
                "md5": "2364ba4932b29a646f3966e1f5c61bf6",
                "sha256": "c7c660724c98f66c48aef3708985329f85352da8653d3ce5d4e7428b14661207"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2364ba4932b29a646f3966e1f5c61bf6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1507777,
            "upload_time": "2024-02-25T06:35:20",
            "upload_time_iso_8601": "2024-02-25T06:35:20.674575Z",
            "url": "https://files.pythonhosted.org/packages/3f/80/4283fa22e72b719301e01781fcd18c17f427614e69c7c4a2557814e2e2f4/pypop_genomics-1.0.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a48f8ddb3401326fb15dc5a12fecfa29fea9552f5ab7431f9d62d91423e8824",
                "md5": "dfd66deb8508609b961f905bd8b4b4eb",
                "sha256": "0b7e7580e3a98eab891bb58725dcb7b211f9a94ea724db86f99e0bac8dacc925"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dfd66deb8508609b961f905bd8b4b4eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1599506,
            "upload_time": "2024-02-25T06:35:22",
            "upload_time_iso_8601": "2024-02-25T06:35:22.436395Z",
            "url": "https://files.pythonhosted.org/packages/2a/48/f8ddb3401326fb15dc5a12fecfa29fea9552f5ab7431f9d62d91423e8824/pypop_genomics-1.0.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39cc882dbf9508788233d4a11bdd17425996f3d60f997cbc91e9c87ebf71aaae",
                "md5": "5106b95f7c8324a29fe2aeefaaf9da11",
                "sha256": "7981fe9f7a89e1d7cfa679a8c090ca69914788dd9fea8ad3e91ddf423408c49b"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5106b95f7c8324a29fe2aeefaaf9da11",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 294047,
            "upload_time": "2024-02-25T06:35:24",
            "upload_time_iso_8601": "2024-02-25T06:35:24.198376Z",
            "url": "https://files.pythonhosted.org/packages/39/cc/882dbf9508788233d4a11bdd17425996f3d60f997cbc91e9c87ebf71aaae/pypop_genomics-1.0.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0c8e3402abfd7bb6ed98838874019a41227b72e484cbf7511b8dfa4f3be0382",
                "md5": "b50827c89b26e3a50325829ce9a065cf",
                "sha256": "45cc657f28bd057d7383a4d6830e15009376e03463415997c34bef854cfd3186"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b50827c89b26e3a50325829ce9a065cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1271148,
            "upload_time": "2024-02-25T06:35:26",
            "upload_time_iso_8601": "2024-02-25T06:35:26.567622Z",
            "url": "https://files.pythonhosted.org/packages/b0/c8/e3402abfd7bb6ed98838874019a41227b72e484cbf7511b8dfa4f3be0382/pypop_genomics-1.0.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26a6d51ebe4bc868b61c9dbe06c1fb013efede78918ae9ff3a4bab2c3ca09fff",
                "md5": "1b849b560f90231d3573797a98f187d1",
                "sha256": "b69b9cb40b36f4439e968221b6cd7036a4151e329fa41d8242632769ae75c821"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1b849b560f90231d3573797a98f187d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1103939,
            "upload_time": "2024-02-25T06:35:29",
            "upload_time_iso_8601": "2024-02-25T06:35:29.137123Z",
            "url": "https://files.pythonhosted.org/packages/26/a6/d51ebe4bc868b61c9dbe06c1fb013efede78918ae9ff3a4bab2c3ca09fff/pypop_genomics-1.0.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e15fab8d24ca2e56cf5e1f06e59fc71798906870f9cfa4cb629f051f211944bd",
                "md5": "f5ec78cd3597d754bc6e47fd69273928",
                "sha256": "c1decd994cfc092e148b4a7b7e1088ebb28638b51652057efe502feacea45c0b"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f5ec78cd3597d754bc6e47fd69273928",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4840471,
            "upload_time": "2024-02-25T06:35:33",
            "upload_time_iso_8601": "2024-02-25T06:35:33.175547Z",
            "url": "https://files.pythonhosted.org/packages/e1/5f/ab8d24ca2e56cf5e1f06e59fc71798906870f9cfa4cb629f051f211944bd/pypop_genomics-1.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a93c438cdf17d04a3c07cf67770c445bbc0132e3f95168f59d3e53e852dab2d",
                "md5": "3fad1b97b5a95f150cef4b0dff7946ca",
                "sha256": "087a644fad69f36acea8693cdfa6f38015401b73b43f7407fa93d61f4005bce2"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3fad1b97b5a95f150cef4b0dff7946ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1741035,
            "upload_time": "2024-02-25T06:35:36",
            "upload_time_iso_8601": "2024-02-25T06:35:36.007697Z",
            "url": "https://files.pythonhosted.org/packages/7a/93/c438cdf17d04a3c07cf67770c445bbc0132e3f95168f59d3e53e852dab2d/pypop_genomics-1.0.2-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99602a19de5cf771649e39593f250053b68e0ac1fb99fc6b41b7d60efcdf18ac",
                "md5": "954d320438e6a86bbf18da6f37bed23d",
                "sha256": "e7cd1d5a1dd99814a8b84d9f3c9501ba0e36e41ae48585da91cc735c445fb745"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "954d320438e6a86bbf18da6f37bed23d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1511903,
            "upload_time": "2024-02-25T06:35:38",
            "upload_time_iso_8601": "2024-02-25T06:35:38.391994Z",
            "url": "https://files.pythonhosted.org/packages/99/60/2a19de5cf771649e39593f250053b68e0ac1fb99fc6b41b7d60efcdf18ac/pypop_genomics-1.0.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7c39fccf783d25d28aaac66e2a9ab8dd5fade9a6d9a799ec6c54eb735979fde",
                "md5": "906a534a5e9350dfb110e1ceebc580c6",
                "sha256": "6a394f57b7b865036833928465581c895004b4fe9f5336d3b08f24266931d3e6"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "906a534a5e9350dfb110e1ceebc580c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1604974,
            "upload_time": "2024-02-25T06:35:40",
            "upload_time_iso_8601": "2024-02-25T06:35:40.252272Z",
            "url": "https://files.pythonhosted.org/packages/f7/c3/9fccf783d25d28aaac66e2a9ab8dd5fade9a6d9a799ec6c54eb735979fde/pypop_genomics-1.0.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b2c4126f311c4cf11c1272b4d742862df105975317bb74a5aa3ee91ec245422",
                "md5": "560baf69b66200243a210a6559979e8e",
                "sha256": "24f5b0fb5fc6b5eb37cf8e8d9a701d85ae5df98fc0e5258093438b881749c3fc"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "560baf69b66200243a210a6559979e8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 295081,
            "upload_time": "2024-02-25T06:35:42",
            "upload_time_iso_8601": "2024-02-25T06:35:42.691462Z",
            "url": "https://files.pythonhosted.org/packages/2b/2c/4126f311c4cf11c1272b4d742862df105975317bb74a5aa3ee91ec245422/pypop_genomics-1.0.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de9024fb02921c39e9fba1a255d0c9dd7746b69ae6d43c34ec9c17820c47294f",
                "md5": "b513a64b939ebcb3094f582b039afb01",
                "sha256": "f34e9303604062a455695879a343579cd81904d31d1093c2d2e2ba886c8cd509"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b513a64b939ebcb3094f582b039afb01",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1268856,
            "upload_time": "2024-02-25T06:35:45",
            "upload_time_iso_8601": "2024-02-25T06:35:45.227700Z",
            "url": "https://files.pythonhosted.org/packages/de/90/24fb02921c39e9fba1a255d0c9dd7746b69ae6d43c34ec9c17820c47294f/pypop_genomics-1.0.2-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e07ded01081ae205cef6807ea3abeae7a94f182206e5f097769ef1c7f5a5039a",
                "md5": "28e1fa6945ea6229f1c9e010dc46ec8f",
                "sha256": "4c036df26f9920e7b2331f4dfb7074ff21687f81a7bd13f6598ee9a29d97d462"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "28e1fa6945ea6229f1c9e010dc46ec8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 4823302,
            "upload_time": "2024-02-25T06:35:47",
            "upload_time_iso_8601": "2024-02-25T06:35:47.783144Z",
            "url": "https://files.pythonhosted.org/packages/e0/7d/ed01081ae205cef6807ea3abeae7a94f182206e5f097769ef1c7f5a5039a/pypop_genomics-1.0.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40738436ec110df9bb227a00fdc06468498860558d88c7ea041a939fed868e4f",
                "md5": "13571fbf76ea1540801aeab18d87d286",
                "sha256": "1addc23e2c6cd75f0d7879ab2cd412987843a75e9c65485305cc0a17898f716f"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "13571fbf76ea1540801aeab18d87d286",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 5446240,
            "upload_time": "2024-02-25T06:35:49",
            "upload_time_iso_8601": "2024-02-25T06:35:49.879470Z",
            "url": "https://files.pythonhosted.org/packages/40/73/8436ec110df9bb227a00fdc06468498860558d88c7ea041a939fed868e4f/pypop_genomics-1.0.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd923f1535b4c0a7f598a83c223f03b47398342d7e310f2d4d6208b5e817354d",
                "md5": "bcbc417332f4d77bd4ce41f48ce7a5fb",
                "sha256": "6dfae02848f814a2ee052ec47e0974df3a9d324b53d955375b0aa46228d688bc"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bcbc417332f4d77bd4ce41f48ce7a5fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 310600,
            "upload_time": "2024-02-25T06:35:52",
            "upload_time_iso_8601": "2024-02-25T06:35:52.429538Z",
            "url": "https://files.pythonhosted.org/packages/dd/92/3f1535b4c0a7f598a83c223f03b47398342d7e310f2d4d6208b5e817354d/pypop_genomics-1.0.2-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e696af914e29de5046c0a7c81d0433fc74f3bd1e55424963629e5d1607193f15",
                "md5": "089b2049c8dd53ee15cd15ba25afabde",
                "sha256": "c9d646e2cb0c65db1269fa6792fb8ad60624515b036e9a908b29566dd0e56d85"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "089b2049c8dd53ee15cd15ba25afabde",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1269532,
            "upload_time": "2024-02-25T06:35:54",
            "upload_time_iso_8601": "2024-02-25T06:35:54.366897Z",
            "url": "https://files.pythonhosted.org/packages/e6/96/af914e29de5046c0a7c81d0433fc74f3bd1e55424963629e5d1607193f15/pypop_genomics-1.0.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5ffc72ae45dbaad5bf97d9320ddd30f742dde48dd52ff7642da7ddab79a260d",
                "md5": "eb7bcbde3c121a94f6ecbdec2d71f940",
                "sha256": "2ad664f95a8db4feafa254add3a5dcea48fe687ab7f9a4af74982f284de00be0"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eb7bcbde3c121a94f6ecbdec2d71f940",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4823424,
            "upload_time": "2024-02-25T06:35:57",
            "upload_time_iso_8601": "2024-02-25T06:35:57.352787Z",
            "url": "https://files.pythonhosted.org/packages/f5/ff/c72ae45dbaad5bf97d9320ddd30f742dde48dd52ff7642da7ddab79a260d/pypop_genomics-1.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52b2d7c0974e7502619fcb4fc81ecd069d4c726880f713a7dfc137debabc51af",
                "md5": "db78385488d3e6282e218f8acca1d249",
                "sha256": "106a3d9f063c4ddab482de28371a5641d7b82f7c71b313fe865cb2a9b2ccab29"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "db78385488d3e6282e218f8acca1d249",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 5446257,
            "upload_time": "2024-02-25T06:35:59",
            "upload_time_iso_8601": "2024-02-25T06:35:59.515298Z",
            "url": "https://files.pythonhosted.org/packages/52/b2/d7c0974e7502619fcb4fc81ecd069d4c726880f713a7dfc137debabc51af/pypop_genomics-1.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65e5d94ae4009c33778dc6571d854141bbbc3e7ed5b44935fdc0ffef464101dc",
                "md5": "ca2622ca6633cd26a282844909024004",
                "sha256": "b26d65726bb20fe6a9b12fb25d434b52442ca344eac02d4894d8f62fc628c10d"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ca2622ca6633cd26a282844909024004",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 293393,
            "upload_time": "2024-02-25T06:36:01",
            "upload_time_iso_8601": "2024-02-25T06:36:01.375682Z",
            "url": "https://files.pythonhosted.org/packages/65/e5/d94ae4009c33778dc6571d854141bbbc3e7ed5b44935fdc0ffef464101dc/pypop_genomics-1.0.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e21d878b3e047290e8d4c65bc169b6c3e2365fcef1830c6c3b7be866f4bff2c4",
                "md5": "d41c652fd7ab719fe5f8e3d527a12b06",
                "sha256": "3a01005dd333a7d5bf6a7c1f1429cdea5f1be43dfe647c67112217962eb0cef2"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d41c652fd7ab719fe5f8e3d527a12b06",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1270275,
            "upload_time": "2024-02-25T06:36:03",
            "upload_time_iso_8601": "2024-02-25T06:36:03.514425Z",
            "url": "https://files.pythonhosted.org/packages/e2/1d/878b3e047290e8d4c65bc169b6c3e2365fcef1830c6c3b7be866f4bff2c4/pypop_genomics-1.0.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a79958d58880c102fadd48ccb96ef88e683aca9b4a485fc83cbee36d245eef9b",
                "md5": "2a3cef83a402246a08361a0bc70fb8ae",
                "sha256": "e48d0324dc079c76d49c0be0af4c693969ecd7811571fc93ddb4cfda1a468592"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2a3cef83a402246a08361a0bc70fb8ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1103978,
            "upload_time": "2024-02-25T06:36:05",
            "upload_time_iso_8601": "2024-02-25T06:36:05.734795Z",
            "url": "https://files.pythonhosted.org/packages/a7/99/58d58880c102fadd48ccb96ef88e683aca9b4a485fc83cbee36d245eef9b/pypop_genomics-1.0.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24105f2317423ff0b6506d29e71e6ae71b5edc1231ef3b55631306866df335d6",
                "md5": "4c8488efc709fd45502db0b66c2dcc27",
                "sha256": "eccf8f15f06fc7189b1150d758ec518cd7a93175a23395a8f7d9d1d00fdcb71d"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4c8488efc709fd45502db0b66c2dcc27",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4832579,
            "upload_time": "2024-02-25T06:36:07",
            "upload_time_iso_8601": "2024-02-25T06:36:07.436903Z",
            "url": "https://files.pythonhosted.org/packages/24/10/5f2317423ff0b6506d29e71e6ae71b5edc1231ef3b55631306866df335d6/pypop_genomics-1.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0955cf092db2a9f439d375e5dc8e97f99917de351d11414b0d34c9ca061dcf31",
                "md5": "bd079677dd058722fa9c7a94cde551b7",
                "sha256": "ee913407f9b4b20bc2aec73dec48d416a33663817b9e613d53ff1c2e88439a2c"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bd079677dd058722fa9c7a94cde551b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5453955,
            "upload_time": "2024-02-25T06:36:09",
            "upload_time_iso_8601": "2024-02-25T06:36:09.329217Z",
            "url": "https://files.pythonhosted.org/packages/09/55/cf092db2a9f439d375e5dc8e97f99917de351d11414b0d34c9ca061dcf31/pypop_genomics-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37a36ee790969facf1323b8bdb576285b68951bf9e79e91257dfa2e51422bb96",
                "md5": "b45edd627d5f1116ba4a162b85437733",
                "sha256": "5809e310e6d2793230245558a7bcc2da4ff05d40f7f3bf3a77a8ce7c0bf12c14"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b45edd627d5f1116ba4a162b85437733",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 293775,
            "upload_time": "2024-02-25T06:36:11",
            "upload_time_iso_8601": "2024-02-25T06:36:11.203643Z",
            "url": "https://files.pythonhosted.org/packages/37/a3/6ee790969facf1323b8bdb576285b68951bf9e79e91257dfa2e51422bb96/pypop_genomics-1.0.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38685ae63476b520821aaa411eb6c8320c36ca453db9b045415f3e4503c0df5a",
                "md5": "eadebf150a36e2e76102e9e16d6678c2",
                "sha256": "8847f425ee8d650edc7dff3da96f94c1d01bb3f74e730741562de6c477bd8530"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eadebf150a36e2e76102e9e16d6678c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1270235,
            "upload_time": "2024-02-25T06:36:12",
            "upload_time_iso_8601": "2024-02-25T06:36:12.795549Z",
            "url": "https://files.pythonhosted.org/packages/38/68/5ae63476b520821aaa411eb6c8320c36ca453db9b045415f3e4503c0df5a/pypop_genomics-1.0.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f48244398c7bd287cec252a962ff25e8b3f16dd1089c10b9326fb0ec809e70d5",
                "md5": "9f6ea436d2984d69edf8520da9893ace",
                "sha256": "fa99b20df4c36e759b81e0d930de47985a57785d88052bf905d24a7606e10591"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9f6ea436d2984d69edf8520da9893ace",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1103964,
            "upload_time": "2024-02-25T06:36:15",
            "upload_time_iso_8601": "2024-02-25T06:36:15.027504Z",
            "url": "https://files.pythonhosted.org/packages/f4/82/44398c7bd287cec252a962ff25e8b3f16dd1089c10b9326fb0ec809e70d5/pypop_genomics-1.0.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3617634f136b800090cd50aef0585e97d18b04c96d6f265477f642b1fa0fa978",
                "md5": "a3c56ae625b3a3b672e6fcdf7f18f580",
                "sha256": "65191d7678f46a672bfb10b1c8ef8b9280ec00724bcdca7c2684d4a1bc437108"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a3c56ae625b3a3b672e6fcdf7f18f580",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4827584,
            "upload_time": "2024-02-25T06:36:16",
            "upload_time_iso_8601": "2024-02-25T06:36:16.937927Z",
            "url": "https://files.pythonhosted.org/packages/36/17/634f136b800090cd50aef0585e97d18b04c96d6f265477f642b1fa0fa978/pypop_genomics-1.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fea66d45553ea0732ee0364875872f144b0a1e5d3b81e2d90e0a06d9f5ce00e7",
                "md5": "0dd1e2a5ac2bab526faef775a1d628b4",
                "sha256": "3039a3039ce06395631a91ee19db7ca604a79179b0267323f284afb88f79e67b"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0dd1e2a5ac2bab526faef775a1d628b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5447713,
            "upload_time": "2024-02-25T06:36:19",
            "upload_time_iso_8601": "2024-02-25T06:36:19.585946Z",
            "url": "https://files.pythonhosted.org/packages/fe/a6/6d45553ea0732ee0364875872f144b0a1e5d3b81e2d90e0a06d9f5ce00e7/pypop_genomics-1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9443852c72135dbd32703957f67b94b2da5b2ed4b090f168e9b8506e69b88392",
                "md5": "c06848f9c9e38b2549c0bc09ac070583",
                "sha256": "e23a0bcf60553c7210f67591324a0a91711fbb97fbd55bd56221877b20bcfaef"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c06848f9c9e38b2549c0bc09ac070583",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1499260,
            "upload_time": "2024-02-25T06:36:22",
            "upload_time_iso_8601": "2024-02-25T06:36:22.101965Z",
            "url": "https://files.pythonhosted.org/packages/94/43/852c72135dbd32703957f67b94b2da5b2ed4b090f168e9b8506e69b88392/pypop_genomics-1.0.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb5c665860a18610064babce0c6f147871c5fc5e8e79ac8ee31314ce97b9c0f3",
                "md5": "961d4a2d6bc3e7bda7a689a8314f4e38",
                "sha256": "97aad8c1855edc31de8374036271f8e4e099d5c3525e179227e4921dd1a81924"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "961d4a2d6bc3e7bda7a689a8314f4e38",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1590802,
            "upload_time": "2024-02-25T06:36:23",
            "upload_time_iso_8601": "2024-02-25T06:36:23.871872Z",
            "url": "https://files.pythonhosted.org/packages/fb/5c/665860a18610064babce0c6f147871c5fc5e8e79ac8ee31314ce97b9c0f3/pypop_genomics-1.0.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fada2000460ef8a03caabdb770e65862ad7a9a4476e0b9fc3ae458ecf60e1356",
                "md5": "43e75c4fc4b358c645e9f612621dc0b9",
                "sha256": "18578a4f2970bc689a42a070f70baa81429020b029bd2d40ca673cfd97fbbe30"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "43e75c4fc4b358c645e9f612621dc0b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 294008,
            "upload_time": "2024-02-25T06:36:26",
            "upload_time_iso_8601": "2024-02-25T06:36:26.087018Z",
            "url": "https://files.pythonhosted.org/packages/fa/da/2000460ef8a03caabdb770e65862ad7a9a4476e0b9fc3ae458ecf60e1356/pypop_genomics-1.0.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37a7093800e8ee3ccc9e264c48cbc3674db169fb3d1c440ff13353e97b8dbfbf",
                "md5": "b93684eb02e363427404cf797ee296bf",
                "sha256": "4e6704896e7e48e05a3d7caf2ace8a3940f18bfe6b9c5b1775ca4e4b7f1aaebf"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b93684eb02e363427404cf797ee296bf",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1257385,
            "upload_time": "2024-02-25T06:36:27",
            "upload_time_iso_8601": "2024-02-25T06:36:27.764684Z",
            "url": "https://files.pythonhosted.org/packages/37/a7/093800e8ee3ccc9e264c48cbc3674db169fb3d1c440ff13353e97b8dbfbf/pypop_genomics-1.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc802edeaef092353937edfb0a2a818d30a2ab96fdb7936cb5fdb409e6cd6f1e",
                "md5": "e25df3547d3f127c970a9baf085aed90",
                "sha256": "424b1b1d778b8c9725f647e43c429b395f931ac549da10b2ce73da1c46848b55"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e25df3547d3f127c970a9baf085aed90",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 5172395,
            "upload_time": "2024-02-25T06:36:29",
            "upload_time_iso_8601": "2024-02-25T06:36:29.726984Z",
            "url": "https://files.pythonhosted.org/packages/fc/80/2edeaef092353937edfb0a2a818d30a2ab96fdb7936cb5fdb409e6cd6f1e/pypop_genomics-1.0.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1788adc91409aad8cb11eb937bd68370be6369f8c806516893703cdf666b640a",
                "md5": "59f33a911b9a59108d9424886769f15e",
                "sha256": "67c0ccab60c6e25e94f4c404d195d8e924893f9dd20aba1d0e71f46d35844bbd"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "59f33a911b9a59108d9424886769f15e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 294345,
            "upload_time": "2024-02-25T06:36:32",
            "upload_time_iso_8601": "2024-02-25T06:36:32.261273Z",
            "url": "https://files.pythonhosted.org/packages/17/88/adc91409aad8cb11eb937bd68370be6369f8c806516893703cdf666b640a/pypop_genomics-1.0.2-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62b1ff55e46ebfd96b5bbcf237fdcee661b6eadc14dcc36bc8a9641ae3b6083b",
                "md5": "88ec4c0109e18f0efb6cfbaf0e6669a8",
                "sha256": "6fedddedfd7d1371ea00fa6f7c6f636a118e1007b736d850d6eeb3058bb4b5ec"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "88ec4c0109e18f0efb6cfbaf0e6669a8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1257286,
            "upload_time": "2024-02-25T06:36:34",
            "upload_time_iso_8601": "2024-02-25T06:36:34.062573Z",
            "url": "https://files.pythonhosted.org/packages/62/b1/ff55e46ebfd96b5bbcf237fdcee661b6eadc14dcc36bc8a9641ae3b6083b/pypop_genomics-1.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da62b6ca42882fbed9b8b583b175e9c9934331f2c856362e29c64beabd9792fa",
                "md5": "a293651ec60f1a9c95a1ac7c754e8a54",
                "sha256": "103891c1b5f9da4d939f0b8e887a8a27fed9f05f35330ccbbd6292a7763ce448"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a293651ec60f1a9c95a1ac7c754e8a54",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 5172052,
            "upload_time": "2024-02-25T06:36:36",
            "upload_time_iso_8601": "2024-02-25T06:36:36.377817Z",
            "url": "https://files.pythonhosted.org/packages/da/62/b6ca42882fbed9b8b583b175e9c9934331f2c856362e29c64beabd9792fa/pypop_genomics-1.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "873180e868067bdb2e41bba44fe3f3dd0dc5508ed5aff4fa8360254d3038f690",
                "md5": "f119c3951b8a756d1a1a1f372757b3b3",
                "sha256": "17b277c2a83a2bf7fddf322d7601108c07929ea2a17317992ef35525137f6960"
            },
            "downloads": -1,
            "filename": "pypop_genomics-1.0.2-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f119c3951b8a756d1a1a1f372757b3b3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 294461,
            "upload_time": "2024-02-25T06:36:38",
            "upload_time_iso_8601": "2024-02-25T06:36:38.204032Z",
            "url": "https://files.pythonhosted.org/packages/87/31/80e868067bdb2e41bba44fe3f3dd0dc5508ed5aff4fa8360254d3038f690/pypop_genomics-1.0.2-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "435babd98e41f4a7299b7a81fe4f10a59e6f5c026cd9dcb91534c3975692b7bc",
                "md5": "0987246a9b4143e2e934e22fd10ef518",
                "sha256": "e41df0eba97c0f7b8c354006d6543a95b7865974ee097a6cf71f70c0375697fb"
            },
            "downloads": -1,
            "filename": "pypop-genomics-1.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "0987246a9b4143e2e934e22fd10ef518",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 7085038,
            "upload_time": "2024-02-25T06:36:40",
            "upload_time_iso_8601": "2024-02-25T06:36:40.740262Z",
            "url": "https://files.pythonhosted.org/packages/43/5b/abd98e41f4a7299b7a81fe4f10a59e6f5c026cd9dcb91534c3975692b7bc/pypop-genomics-1.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-25 06:36:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "alexlancaster",
    "github_project": "pypop",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pypop-genomics"
}
        
Elapsed time: 0.22789s