Metadata-Version: 2.1
Name: hstrat
Version: 0.3.2
Summary: hstrat enables phylogenetic inference on distributed digital evolution populations
Home-page: https://github.com/mmore500/hstrat
Author: Matthew Andres Moreno
Author-email: m.more500@gmail.com
License: MIT license
Keywords: hstrat
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Requires-Dist: anytree (>=2.8.0)
Requires-Dist: iterpop (>=0.3.4)
Requires-Dist: interval-search (>=0.1.2)
Requires-Dist: gmpy (>=1.17)
Requires-Dist: matplotlib (>=3.1.2)
Requires-Dist: opytional (>=0.1.0)

============
hstrat
============


.. image:: https://img.shields.io/pypi/v/hstrat.svg
        :target: https://pypi.python.org/pypi/hstrat

.. image:: https://img.shields.io/travis/mmore500/hstrat.svg
        :target: https://travis-ci.com/mmore500/hstrat

.. image:: https://readthedocs.org/projects/hstrat/badge/?version=latest
        :target: https://hstrat.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status




hstrat enables phylogenetic inference on distributed digital evolution populations



* Free software: MIT license
* Documentation: https://hstrat.readthedocs.io.


.. code-block:: python3

  from hstrat import hstrat


  individual1 = hstrat.HereditaryStratigraphicColumn()
  individual2 = hstrat.HereditaryStratigraphicColumn()

  individual1_child1 = individual1.CloneDescendant()

  individual1.HasAnyCommonAncestorWith(individual2) # -> False
  individual1_child1.HasAnyCommonAncestorWith(individual2) # -> False

  individual1_grandchild1 = individual1_child1.CloneDescendant()
  individual1_grandchild2 = individual1_child1.CloneDescendant()

  individual1_grandchild1.CalcRankOfMrcaBoundsWith(
    individual1_grandchild2,
  ) # -> (1, 2)


Credits
-------

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage


=======
History
=======

0.0.0 (2022-02-22)
------------------

* First release on PyPI.


