├── .github └── workflows │ └── main.yml ├── .gitignore ├── .readthedocs.yaml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── DEVGUIDE.rst ├── LICENSE.rst ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── _static │ └── theme_override.css ├── api.rst ├── authors.rst ├── changelog.rst ├── conf.py ├── contributing.rst ├── devguide.rst ├── index.rst ├── installation.rst ├── license.rst └── versioning.rst ├── pylintrc ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── setup.py ├── src └── fnc │ ├── __init__.py │ ├── helpers.py │ ├── mappings.py │ ├── sequences.py │ └── utilities.py ├── tasks.py ├── tests ├── __init__.py ├── conftest.py ├── helpers.py ├── test_mappings.py ├── test_sequences.py └── test_utilities.py └── tox.ini /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /DEVGUIDE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/DEVGUIDE.rst -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/theme_override.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/docs/_static/theme_override.css -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/devguide.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../DEVGUIDE.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/versioning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/docs/versioning.rst -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/pylintrc -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -e .[dev] 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/setup.py -------------------------------------------------------------------------------- /src/fnc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/src/fnc/__init__.py -------------------------------------------------------------------------------- /src/fnc/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/src/fnc/helpers.py -------------------------------------------------------------------------------- /src/fnc/mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/src/fnc/mappings.py -------------------------------------------------------------------------------- /src/fnc/sequences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/src/fnc/sequences.py -------------------------------------------------------------------------------- /src/fnc/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/src/fnc/utilities.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/test_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/tests/test_mappings.py -------------------------------------------------------------------------------- /tests/test_sequences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/tests/test_sequences.py -------------------------------------------------------------------------------- /tests/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/tests/test_utilities.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgilland/fnc/HEAD/tox.ini --------------------------------------------------------------------------------