Skip to main content

This version adds the version attribute to init.py so it can be accessed to check the package version.

Project description

Population Structure Package

A package for performing transformation between fst, coalescence, and migration matrices. The transformation between coalescence and migration is based on Wilkinson-Herbot's equations (2003). The transformation between fst and coalescence is based on the Slatkin's equations (2001).

Install package using pip

pip install population-structure

Example usuage

import population_structure.utils as psu
import numpy as np
m = np.array([[0, 1, 1], 
              [1, 0, 1], 
              [1, 1, 0]]) # A conservative migration matrix
t = psu.m_to_t(m) # The corresponding coalescence matrix according to W.H. (2003)
f = psu.m_to_f(m) # The corresponding fst matrix according to Slatkin (2001)
print(f"{t}\n{f}")
"""
prints:
[[3. 4. 4.]
 [4. 3. 4.]
 [4. 4. 3.]]
[[0.         0.14285714 0.14285714]
 [0.14285714 0.         0.14285714]
 [0.14285714 0.14285714 0.        ]]
"""
f = np.array([[0,0.1,0.2],
              [0.1,0,0.3],
              [0.2,0.3,0]]) # An fst matrix
psu.f_to_t(f) # Generates a possilbe corresponding coalescence matrix
psu.f_to_m(f) # Generate a possible corresponding migration matrix

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

population_structure-0.0.8.tar.gz (33.4 kB view details)

Uploaded Source

Built Distribution

population_structure-0.0.8-py3-none-any.whl (36.3 kB view details)

Uploaded Python 3

File details

Details for the file population_structure-0.0.8.tar.gz.

File metadata

  • Download URL: population_structure-0.0.8.tar.gz
  • Upload date:
  • Size: 33.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.4

File hashes

Hashes for population_structure-0.0.8.tar.gz
Algorithm Hash digest
SHA256 82bcda7fdf42ecf857dfd57b4f4abaf7973d6c307ffeac32c4214d206eee91cd
MD5 6a3c6b11addd597bb96e60267dfdf0f0
BLAKE2b-256 5d83e7460ccd3db2d84134c83a54cf4a39f741dc03c7c5adb4443bea6e0912d1

See more details on using hashes here.

File details

Details for the file population_structure-0.0.8-py3-none-any.whl.

File metadata

File hashes

Hashes for population_structure-0.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 4e1c926866cf121961365ec724d7d1f0d45c7b2f8955a3230afb639c1a84c946
MD5 f9eee6996c7dc18b5900bbf7c7b4b9cb
BLAKE2b-256 3bd474532ad8f6d98d4652cd5b76c78ea99866c3231205b950c4c7b2b3d711e9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page