├── .bumpversion.cfg ├── .coveragerc ├── .gitattributes ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.IN ├── Makefile ├── README.rst ├── docs ├── Makefile ├── api.rst ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat └── usage.rst ├── environment.yml ├── pylintrc ├── requirements.txt ├── setup.cfg ├── setup.py ├── src └── pybiomart │ ├── __init__.py │ ├── base.py │ ├── dataset.py │ ├── mart.py │ └── server.py ├── tests ├── conftest.py ├── data │ ├── config_response.pkl │ ├── datasets_response.pkl │ ├── marts_response.pkl │ └── query_response.pkl ├── test_base.py ├── test_dataset.py ├── test_mart.py └── test_server.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | pybiomart/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/MANIFEST.IN -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/environment.yml -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/pylintrc -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 0 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/setup.py -------------------------------------------------------------------------------- /src/pybiomart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/src/pybiomart/__init__.py -------------------------------------------------------------------------------- /src/pybiomart/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/src/pybiomart/base.py -------------------------------------------------------------------------------- /src/pybiomart/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/src/pybiomart/dataset.py -------------------------------------------------------------------------------- /src/pybiomart/mart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/src/pybiomart/mart.py -------------------------------------------------------------------------------- /src/pybiomart/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/src/pybiomart/server.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/config_response.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/tests/data/config_response.pkl -------------------------------------------------------------------------------- /tests/data/datasets_response.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/tests/data/datasets_response.pkl -------------------------------------------------------------------------------- /tests/data/marts_response.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/tests/data/marts_response.pkl -------------------------------------------------------------------------------- /tests/data/query_response.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/tests/data/query_response.pkl -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/tests/test_base.py -------------------------------------------------------------------------------- /tests/test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/tests/test_dataset.py -------------------------------------------------------------------------------- /tests/test_mart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/tests/test_mart.py -------------------------------------------------------------------------------- /tests/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/tests/test_server.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrderuiter/pybiomart/HEAD/tox.ini --------------------------------------------------------------------------------