An open API service indexing awesome lists of open source software.

https://github.com/bglezseoane/pytoxo

A Python tool to calculate penetrance tables for high-order epistasis models
https://github.com/bglezseoane/pytoxo

bioinformatics epistasis full-genome genetics human-genome penetrance-tables python

Last synced: 3 months ago
JSON representation

A Python tool to calculate penetrance tables for high-order epistasis models

Awesome Lists containing this project

README

        

PyToxo

***A Python tool to calculate penetrance tables for high-order epistasis models.***

Paper: **González-Seoane, B., Ponte-Fernández, C., González-Domínguez, J. et al. PyToxo: a Python tool for calculating penetrance tables of high-order epistasis models. BMC Bioinformatics 23, 117 (2022). [https://doi.org/10.1186/s12859-022-04645-7](https://doi.org/10.1186/s12859-022-04645-7)**.
Mailing list: [freelists.org/list/pytoxo](https://www.freelists.org/list/pytoxo). Join to start the discussion.
User manual (English version): [manuals/manual_en.pdf](https://raw.githubusercontent.com/bglezseoane/pytoxo/master/manuals/manual_en.pdf).
User manual (Spanish version): [manuals/manual_es.pdf](https://raw.githubusercontent.com/bglezseoane/pytoxo/master/manuals/manual_es.pdf).

---------------------------------------------------------------------

PyToxo is a library for calculating penetrance tables of any bivariate epistasis model, developed in Python. It is a improved version of the [Toxo](https://github.com/UDC-GAC/toxo) library.

PyToxo is an easy-to-use tool, which can be used directly as a Python library, or through a command-line interface (CLI) or a graphical user interface (GUI). It is aimed at professionals or people interested in the field of bioinformatics and especially genetics.

This work is part of Borja González Seoane's final project for his Degree in Computer Engineering studies from the University of A Coruña.

![PyToxo GUI screenshot](https://raw.githubusercontent.com/bglezseoane/pytoxo/master/img/pytoxo_gui_screenshot.png "PyToxo GUI screenshot")

## Install

PyToxo requires **Python 3.8** or more modern to work. It is uploaded to the official Python [PyPI](https://pypi.org/project/pytoxo/) repository, so it is only needed to run the following command to install it:

```sh
pip install pytoxo
```

## Use

- To see how PyToxo is used as a library, you can examine this [example](https://github.com/bglezseoane/pytoxo/tree/master/examples/basic_use_of_pytoxo_as_library.ipynb).
- To see how PyToxo is used through its CLI, you can examine this [example](https://github.com/bglezseoane/pytoxo/tree/master/examples/basic_use_of_pytoxo_as_cli.sh). You can also revise the command-line help executing `pytoxo_cli -h`.
- To see how PyToxo is used through its GUI, you can examine the PyToxo manual. However, the GUI is very intuitive and guides the user step by step. You might want to venture out using the `pytoxo_gui` command to open the interface and take a look on your own.

In any case, I recommend you take a look at the PyToxo user manual. It is available in [English](https://github.com/bglezseoane/pytoxo/blob/master/manuals/manual_en.pdf) and [Spanish](https://github.com/bglezseoane/pytoxo/blob/master/manuals/manual_es.pdf).

## Run the tests

To run the tests you need to download this entire repository and install the development dependencies contained in manifest `requirements_dev.txt` with:

```sh
pip install -r requirements_dev.txt
```

PyToxo project uses the Python `unittest` to all its associated tests routines. PyToxo has unit, integration, solubility and accuracy level tests. All of them are stored into the `test` directory and respect the format `test_*.py`.

To run the tests, the easiest way is using the helper scripts `test/run_all_tests.py`, `test/run_all_tests_unit.py`, `test/run_all_tests_integration.py`, `test/run_all_tests_solubility.py` and `test/run_all_tests_accuracy.py`, to respectively run the appropriate tests. This script solve by their own the execution working directory, which must be the project home one.

It is also possible to run the tests since the command line. E.g.:

```sh
python -m unittest discover # Runs all
python -m unittest discover test/unit # Runs unit tests
python -m unittest discover test/integration # Runs integration tests
# ...
```

The tests use material generated with Toxo to compare the two programs behaviour.

## Acknowledgements

Thanks to María José Martín Santamaría and Christian Ponte Fernández for their supervision of the project. Also thanks to Jorge González Domínguez.