Metadata-Version: 2.1
Name: pyfgaws
Version: 0.2.2
Summary: Tools and python libraries for working with AWS.
Home-page: https://github.com/fulcrumgenomics/pyfgaws
License: MIT
Keywords: aws,bioinformatics
Author: Nils Homer
Requires-Python: >=3.8,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: Topic :: Software Development :: Documentation
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: attrs (>=19.3.0,<20.0.0)
Requires-Dist: boto3 (>=1.13.18,<2.0.0)
Requires-Dist: boto3-stubs[batch,logs] (>=1.13.19,<2.0.0)
Requires-Dist: botocore (>=1.13.18,<2.0.0)
Requires-Dist: defopt (>=6.0,<7.0)
Requires-Dist: fgpyo (>=0.0.6,<0.0.7)
Requires-Dist: namegenerator (>=1.0.6,<2.0.0)
Project-URL: Repository, https://github.com/fulcrumgenomics/pyfgaws
Description-Content-Type: text/markdown


[![Language][language-badge]][language-link]
[![Code Style][code-style-badge]][code-style-link]
[![Type Checked][type-checking-badge]][type-checking-link]
[![PEP8][pep-8-badge]][pep-8-link]
[![Code Coverage][code-coverage-badge]][code-coverage-link]
[![License][license-badge]][license-link]

---

[![Python package][python-package-badge]][python-package-link]
[![PyPI version][pypi-badge]][pypi-link]
[![PyPI download total][pypi-downloads-badge]][pypi-downloads-link]

---

[language-badge]:       http://img.shields.io/badge/language-python-brightgreen.svg
[language-link]:        http://www.python.org/
[code-style-badge]:     https://img.shields.io/badge/code%20style-black-000000.svg
[code-style-link]:      https://black.readthedocs.io/en/stable/ 
[type-checking-badge]:  http://www.mypy-lang.org/static/mypy_badge.svg
[type-checking-link]:   http://mypy-lang.org/
[pep-8-badge]:          https://img.shields.io/badge/code%20style-pep8-brightgreen.svg
[pep-8-link]:           https://www.python.org/dev/peps/pep-0008/
[code-coverage-badge]:  https://codecov.io/gh/fulcrumgenomics/pyfgaws/branch/main/graph/badge.svg
[code-coverage-link]:   https://codecov.io/gh/fulcrumgenomics/pyfgaws
[license-badge]:        http://img.shields.io/badge/license-MIT-blue.svg
[license-link]:         https://github.com/fulcrumgenomics/pyfgaws/blob/main/LICENSE
[python-package-badge]: https://github.com/fulcrumgenomics/pyfgaws/workflows/Python%20package/badge.svg
[python-package-link]:  https://github.com/fulcrumgenomics/pyfgaws/actions?query=workflow%3A%22Python+package%22
[pypi-badge]:           https://badge.fury.io/py/pyfgaws.svg
[pypi-link]:            https://pypi.python.org/pypi/pyfgaws
[pypi-downloads-badge]: https://img.shields.io/pypi/dm/pyfgaws
[pypi-downloads-link]:  https://pypi.python.org/pypi/pyfgaws

# pyfgaws

`pip install pyfgaws`

**Requires python 3.8**

# Getting Setup

Conda is used to install a specific version of python and [poetry][poetry-link]
which is then used to manage the python development environment.  If not already installed, install 
[miniconda from the latest platform-appropriate installer](miniconda-link). Then run:

```
conda create -n pyfgaws -c conda-forge -c bioconda --file conda-requirements.txt
```

Then activate the new environment and install the toolkit:

```
conda activate pyfgaws
poetry install
```

[miniconda-link]: https://docs.conda.io/en/latest/miniconda.html
[poetry-link]:    https://github.com/python-poetry/poetry

