Skip to content

eaton-lab/ipcoal

 
 

Repository files navigation

ipcoal

Python package to interactively simulate genealogies and sequence data under the multispecies coalescent

Full documentation here: https://ipcoal.readthedocs.io

import ipcoal
import toytree

# get a species tree 
tree = toytree.rtree.baltree(ntips=6, treeheight=1e6)

# init a simulator from the tree w/ additional parameters
model = ipcoal.Model(tree, Ne=1e6)

# simulate genealogies and sequences
model.sim_loci(nloci=5, nsites=1e5)

# access results in a dataframe
model.df

# infer gene trees for each locus, or in sliding windows
model.infer_gene_trees()

# write sequences to a file
model.write_loci_to_phylip()

https://raw.githubusercontent.com/eaton-lab/sptree-chapter/master/manuscript/figures/Fig1-revision.png

About

simulation framework for investigating genealogical and sequence variation within and across genomes

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Jupyter Notebook 94.0%
  • Python 4.3%
  • TeX 1.7%