Metadata-Version: 2.4
Name: geniml
Version: 0.8.0
Summary: Genomic interval toolkit
Home-page: https://docs.bedbase.org/geniml/
Author: Nathan Sheffield
License: BSD2
Keywords: bioinformatics,sequencing,ngs
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: logmuse>=0.2.8
Requires-Dist: ubiquerg>=0.6.3
Requires-Dist: peppy>=0.40.7
Requires-Dist: requests>=2.31.0
Requires-Dist: botocore>=1.34.54
Requires-Dist: boto3>=1.34.54
Requires-Dist: genomicranges>=0.4.1
Requires-Dist: gtars>=0.2.5
Requires-Dist: pybiocfilecache==0.6.1
Requires-Dist: zarr<3.0.0,>=2.17.2
Requires-Dist: pyyaml>=6.0.1
Requires-Dist: s3fs>=2024.3.1
Requires-Dist: pyarrow>=17.0.0
Requires-Dist: iranges>=0.2.11
Requires-Dist: numpy>=1.24.0
Requires-Dist: rich>=13.9.4
Requires-Dist: safetensors
Provides-Extra: ml
Requires-Dist: anndata>0.9.0; extra == "ml"
Requires-Dist: fastembed>=0.2.5; extra == "ml"
Requires-Dist: gensim>=4.3.3; extra == "ml"
Requires-Dist: huggingface_hub>=0.25.1; extra == "ml"
Requires-Dist: qdrant_client>=1.11.2; extra == "ml"
Requires-Dist: hnswlib>=0.8.0; extra == "ml"
Requires-Dist: paramiko>=3.0.0; extra == "ml"
Requires-Dist: pyBigWig>=0.3.23; extra == "ml"
Requires-Dist: scanpy>=1.10.3; extra == "ml"
Requires-Dist: torch>=2.3.0; extra == "ml"
Requires-Dist: langchain-huggingface==0.0.2; extra == "ml"
Requires-Dist: hmmlearn>=0.3.2; extra == "ml"
Requires-Dist: scipy>=1.13.1; extra == "ml"
Requires-Dist: transformers>=4.52.4; extra == "ml"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-remotedata; extra == "test"
Requires-Dist: pytest-mock; extra == "test"
Requires-Dist: black; extra == "test"
Requires-Dist: ruff; extra == "test"
Requires-Dist: isort; extra == "test"
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: summary

# Genomic interval machine learning (geniml)

Geniml is a python package for building machine learning models of genomic interval data (BED files). It also includes ancillary functions to support other types of analyses of genomic interval data.

Documentation is hosted at <https://docs.bedbase.org/geniml/>.


## Installation
### To install `geniml` use this commands.

Without specifying dependencies, the default dependencies will be installed, 
which DO NOT include machine learning (ML) or heavy processing libraries.


From pypi:
```
pip install geniml
```
or install the latest version from the GitHub repository:
```
pip install git+https://github.com/databio/geniml.git
```

### To install Machine learning dependencies use this command:

From pypi:
```
pip install geniml[ml]
```


## Development

Run tests (from `/tests`) with `pytest`. Please read the [contributor guide](https://docs.bedbase.org/geniml/contributing/) to contribute.

