├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .readthedocs.yml ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile └── source │ ├── background.rst │ ├── conf.py │ ├── gffpandas.py │ ├── gffpandas.rst │ ├── index.rst │ ├── installation.rst │ ├── introduction.rst │ ├── logo_latest.png │ └── tutorial.rst ├── fixtures ├── gffpandas ├── __init__.py └── gffpandas.py ├── paper.bib ├── paper.md ├── pytest.ini ├── requirements.txt ├── requirements_dev.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── fixtures │ └── test_file.gff ├── gffpandas ├── pytest.ini └── test_gffpandas.py └── travis_pypi_setup.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/background.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/docs/source/background.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/gffpandas.py: -------------------------------------------------------------------------------- 1 | ../../gffpandas/gffpandas.py -------------------------------------------------------------------------------- /docs/source/gffpandas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/docs/source/gffpandas.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/docs/source/introduction.rst -------------------------------------------------------------------------------- /docs/source/logo_latest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/docs/source/logo_latest.png -------------------------------------------------------------------------------- /docs/source/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/docs/source/tutorial.rst -------------------------------------------------------------------------------- /fixtures: -------------------------------------------------------------------------------- 1 | tests/fixtures/ -------------------------------------------------------------------------------- /gffpandas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/gffpandas/__init__.py -------------------------------------------------------------------------------- /gffpandas/gffpandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/gffpandas/gffpandas.py -------------------------------------------------------------------------------- /paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/paper.bib -------------------------------------------------------------------------------- /paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/paper.md -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | tests/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas>=1.0.0 2 | -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/fixtures/test_file.gff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/tests/fixtures/test_file.gff -------------------------------------------------------------------------------- /tests/gffpandas: -------------------------------------------------------------------------------- 1 | ../gffpandas/ -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/test_gffpandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/tests/test_gffpandas.py -------------------------------------------------------------------------------- /travis_pypi_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foerstner-lab/gffpandas/HEAD/travis_pypi_setup.py --------------------------------------------------------------------------------