Metadata-Version: 2.1
Name: genomicsdb
Version: 0.0.8.0
Summary: Experimental Python Bindings for querying GenomicsDB
Author: GenomicsDB.org
Author-email: support@genomicsdb.org
Maintainer: GenomicsDB.org
Maintainer-email: support@genomicsdb.org
License: MIT
Keywords: genomics,genomicsdb,variant,vcf,variant calls
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy >=1.19.3
Requires-Dist: pandas
Provides-Extra: protobuf
Requires-Dist: protobuf >=4.21.1 ; extra == 'protobuf'

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![pypi](https://img.shields.io/pypi/v/genomicsdb.svg)](https://pypi.org/project/genomicsdb/) 

# GenomicsDB-Python
Experimental Python 3 Bindings to the native [GenomicsDB](https://github.com/GenomicsDB/GenomicsDB) library. Only queries are supported for now. For importing vcf files into GenomicsDB, use the command line tools - `vcf2genomicsdb` or `gatk GenomicsDBImport`.

## Installation : Only Linux and MacOS are currently supported
Install `genomicsdb` binary wheels from PyPi with pip:
```
pip install genomicsdb
```

Or explicitly from a source distribution

```
# Download the source distribution from https://pypi.org/project/genomicsdb/#files as genomicsdb.source.tar.gz
tar xvf genomicsdb.source.tar.gz
cd genomicsdb-<version>
python setup.py install
```

## Development
See [instructions](https://github.com/GenomicsDB/GenomicsDB-Python/blob/master/INSTALL.md) for local builds and running tests.
