Metadata-Version: 2.4
Name: cocoatree
Version: 0.1.0rc0.dev2
Summary: Awesome coevolution stuff
Author: 
License: MIT
Project-URL: Bug Reports, https://github.com/FIXME
Project-URL: Source, https://github.com/FIXME/
Keywords: coevolution,MSA
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: <4.0,>=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Provides-Extra: dev
Requires-Dist: flake8; extra == "dev"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Dynamic: license-file

# COCOA-Tree: COllaborative COevolution Analysis Toolbox

**COCOA-Tree** is a Python library to perform coevolution analyses of proteins and integrate phylogenetic information
to better understand the coevolution signals.

It regroups various coevolution metrics and corrections, such as statistical coevolution analysis (SCA) or mutual
information (MI).

Website: [tree-bioinfo-intra.timc.fr/projects/cocoa/](http://tree-bioinfo-intra.timc.fr/projects/cocoa/index.html)

## Library organization

COCOA-Tree is organized in several modules, each allowing to perform different tasks of a coevolution analysis
pipeline:

[cocoatree_orga](../cocoatree_orga.pdf)

## Installation

### Dependencies

COCOA-Tree requires:
- Python (>= 3.9)
- NumPy
- scikit-learn
- biopython
- ete3

Matplotlib is also required for running the examples.

### User installation

To install for development purposes, use::

    python setup.py develop


All changes in the python module will be repercuted on the installed version
(in practice the installed version is a symlink towards the package in
development).

