Skip to content

Latest commit

 

History

History
73 lines (53 loc) · 3.15 KB

README.md

File metadata and controls

73 lines (53 loc) · 3.15 KB

Language Code Style Type Checked PEP8 Code Coverage License


Python package PyPI version PyPI download total


fgpyo

Quality of life improvements for Bioinformatics in Python.

Fulcrum Genomics

Visit us at Fulcrum Genomics to learn more about how we can power your Bioinformatics with fgpyo and beyond.

pip install fgpyo

Requires python 3.9+

See documentation on fgpyo.readthedocs.org.

Getting Setup

Poetry is used to manage the python development environment.

A simple way to create an environment with the desired version of python and poetry is to use conda. E.g.:

conda create -n fgpyo -c conda-forge "python>=3.9" poetry
conda activate fgpyo

# --all-extras is required to install `mkdocs` and associated dependencies,
# which are required for development 
poetry install --all-extras