Metadata-Version: 2.1
Name: phylox
Version: 0.0.5
Summary: A package with tools for constructing, manipulating, and analyzing phylogenetic networks.
Author-email: Remie Janssen <remiejanssen92@gmail.com>
Project-URL: Homepage, https://github.com/RemieJanssen/PhyloX
Project-URL: Bug Tracker, https://github.com/RemieJanssen/PhyloX/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: networkx (>=2.6)
Requires-Dist: numpy (>=1.21.6)
Requires-Dist: scipy (>=1.7.3)
Requires-Dist: matplotlib (>=3.5)

# PhyloX

PhyloX is a python package with tools for constructing, manipulating, and analyzing phylogenetic networks.

For more information, see the [documentation](https://phylox.readthedocs.io).

## Citing PhyloX

For now, simply refer to the github page to cite PhyloX. Registering the software for a DOI is still on the to do list.

### Use of NetworkX
The implementation of PhyloX is based on NetworkX (NetworkX is distributed with the [3-clause BSD license](https://networkx.org/documentation/stable/index.html#license)):

> Aric A. Hagberg, Daniel A. Schult and Pieter J. Swart, “Exploring network structure, dynamics, and function using NetworkX”, in Proceedings of the 7th Python in Science Conference (SciPy2008), Gäel Varoquaux, Travis Vaught, and Jarrod Millman (Eds), (Pasadena, CA USA), pp. 11–15, Aug 2008

### Citing specific functions
When citing PhyloX, you are most likely also using specific methods, which can be traced back to their original papers. Please take care to cite the original papers as well. A reference to the original paper should be found in the documentation of the method, or of the module containing the method.

## Install

Install as pypi package phylox:
```
pip install phylox
```

## Usage

You can load the package methods with `import phylox` in python.

## Documentation

Documentation is in the docs folder, and is created uses sphinx.
to build the documentation, go to the docs folder and do:
```
make html
```
the docs will be in `docs/build/html`.

## Development

### Linting

precommit is yet to be configured, for now, simply run black and isort.

### Release

set new version number in master branch
 - CHANGELOG.md
 - pyproject.toml

release current version
```
git checkout release
git merge main
git tag [version number]
git push
```
