Comparative Genomics Toolkit 3
cogent3
is a mature python library for analysis of genomic sequence data. We endeavour to provide a first-class experience within Jupyter notebooks, but the algorithms also support parallel execution on compute systems with 1000’s of processors.
cogent3
core classes. At present we have old type and new type implementations for sequences, sequence collections, alignments, molecular types, alphabets and genetic codes. Users can select the new classes by specifying new_type=True
to the functions like make_aligned_seqs()
or load_aligned_seqs()
. Alternately, you can do this across all objects by using the COGENT3_NEW_TYPE
environment variable. We have established that it is not viable to support both old and new types simultaneously. Therefore, the first release after July 1st 2025 will remove all of the old type classes! Arguments specific to the old type classes will be deprecated at that point. While this is a major change, we have been using these ourselves consistently and feel confident that the disruption to users should be small. However, we strongly advise all users to migrate now and report any errors. To do this, add the following statement to the top of your scripts.python
import os
os.environ["COGENT3_NEW_TYPE"] = "1"
Alignment.quick_tree()
method checks for an external plugin for calculation. The developers of piqtree have made the rapid-NJ algorithm available for this hook! Once installed, it is used as aln.quick_tree(use_hook="piqtree")
.cogent3.available_datasets()
to see the available datasets. You can load one using cogent3.get_dataset(name)
.cogent3
is unique in providing numerous non-stationary Markov models for modelling sequence evolution, including codon models. cogent3
also includes an extensive collection of time-reversible models (again including novel codon models). We have done more than just invent these new methods, we have established the most robust algorithms for their implementation and their suitability for real data. Additionally, there are novel signal processing methods focussed on statistical estimation of integer period signals.
Beyond our novel methods, cogent3
provides an extensive suite of capabilities for manipulating and analysing sequence data. You can manipulate sequences by their annotations, e.g.
Plus, you can read standard tabular and biological data formats, perform multiple sequence alignment using any cogent3
substitution models, phylogenetic reconstruction and tree manipulation, manipulation of tabular data, visualisation of phylogenies and much more.
Our cogent3.app
module provides a very different approach to using the library capabilities. Expertise in structural programming concepts is not essential!
For most users we recommend
$ pip install "cogent3[extra]"
which installs support for data visualisation and jupyter notebooks.
If you’re running on a high-performance computing system we recommend
$ pip install cogent3
which skips the data visualisation and notebook support.
To install the development version directly from GitHub
$ pip install git+https://github.com/cogent3/cogent3.git@develop#egg=cogent3
cogent3
is released under the BSD-3 license, documentation is at cogent3.org, while cogent3
code is on GitHub. If you would like to contribute (and we hope you do!), we have created a companion c3dev
GitHub repo which provides details on how to contribute and some useful tools for doing so.
cogent3
is a descendant of PyCogent. While there is much in common with PyCogent, the amount of change has been substantial, motivating the name change to cogent3
. This name has been chosen because cogent
was always the import name (dating back to PyEvolve in 2004) and it’s Python 3 only.
Given this history, we are grateful to the multitude of individuals who have made contributions over the years. Many of these contributors were also co-authors on the original PyEvolve and PyCogent publications. Individual contributions can be seen by using “view git blame” on individual lines of code on GitHub, through git log in the terminal, and more recently the changelog.
Cogent3 has received funding support from the Australian National University and an Essential Open Source Software for Science Grant from the Chan Zuckerberg Initiative.