Skip to content

robertopreste/apybiomart

Repository files navigation

apybiomart

https://travis-ci.com/robertopreste/apybiomart.svg?branch=master https://circleci.com/gh/robertopreste/apybiomart.svg?style=svg Documentation Status Updates

Async pythonic interface to BioMart.

Features

apybiomart is a Python module which provides a simple asynchronous interface to Ensembl BioMart. Users can exploit the async interface to schedule multiple queries using all the commodities offered by Python's asyncio library.

Depending on specific needs, apybiomart offers different entry points:

  • an asynchronous aquery() function, to schedule multiple queries in the same event loop;
  • a synchronous query() function, which can be used for exploratory queries, executed in real time;
  • a set of synchronous list_*() functions, which can be used to retrieve the list of available marts, datasets for a specific mart, attributes and filters for a specific dataset.

Background

apybiomart was originally born as a fork of the great pybiomart package.

I was working on a project that employed a series of async calls to several online resources, but I couldn't manage to perform asynchronous calls to BioMart using that package, so I decided to modify it to better suit my needs. However, it gradually evolved into a very different thing: the original implementation was rewritten and the structure of the package changed a bit, in a way that I found most useful for my purpose.

This said, all the credits go to jrderuiter, which created the original pybiomart package.

Credits

This package was created with Cookiecutter and the cc-pypackage project template.