Metadata-Version: 2.4
Name: ehrdata
Version: 0.0.9
Summary: A Python package for EHR data
Project-URL: Documentation, https://ehrdata.readthedocs.io/
Project-URL: Homepage, https://github.com/theislab/ehrdata
Project-URL: Source, https://github.com/theislab/ehrdata
Author: Eljas Roellin, Lukas Heumos, Xinyue Zhang
Maintainer-email: Eljas Roellin <eljas.roellin@helmholtz-munich.de>, Lukas Heumos <lukas.heumos@posteo.net>
License-Expression: Apache-2.0
License-File: LICENSE
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: <3.14,>=3.12
Requires-Dist: anndata>=0.11
Requires-Dist: duckdb
Requires-Dist: fast-array-utils[sparse]
Requires-Dist: filelock
Requires-Dist: requests
Requires-Dist: rich
Requires-Dist: xarray
Requires-Dist: zarr<3
Provides-Extra: dev
Requires-Dist: pre-commit; extra == 'dev'
Requires-Dist: twine; extra == 'dev'
Provides-Extra: doc
Requires-Dist: docutils!=0.18.*,!=0.19.*,>=0.8; extra == 'doc'
Requires-Dist: ipykernel; extra == 'doc'
Requires-Dist: ipython; extra == 'doc'
Requires-Dist: lamindb; extra == 'doc'
Requires-Dist: myst-nb>=1.1; extra == 'doc'
Requires-Dist: pandas; extra == 'doc'
Requires-Dist: scanpydoc; extra == 'doc'
Requires-Dist: sphinx-autodoc-typehints; extra == 'doc'
Requires-Dist: sphinx-book-theme>=1; extra == 'doc'
Requires-Dist: sphinx-copybutton; extra == 'doc'
Requires-Dist: sphinx-tabs; extra == 'doc'
Requires-Dist: sphinx>=4; extra == 'doc'
Requires-Dist: sphinxcontrib-bibtex>=1; extra == 'doc'
Requires-Dist: sphinxext-opengraph; extra == 'doc'
Requires-Dist: torch; extra == 'doc'
Requires-Dist: vitessce[all]>=3.4; extra == 'doc'
Requires-Dist: zarr<3,>=2.18.7; extra == 'doc'
Provides-Extra: ehrapy
Requires-Dist: ehrapy; extra == 'ehrapy'
Provides-Extra: lamin
Requires-Dist: lamindb; extra == 'lamin'
Provides-Extra: test
Requires-Dist: coverage; extra == 'test'
Requires-Dist: lamindb; extra == 'test'
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-cov; extra == 'test'
Requires-Dist: torch; extra == 'test'
Requires-Dist: vitessce[all]>=3.4; extra == 'test'
Requires-Dist: zarr<3,>=2.18.7; extra == 'test'
Provides-Extra: torch
Requires-Dist: torch; extra == 'torch'
Provides-Extra: vitessce
Requires-Dist: vitessce[all]>=3.4; extra == 'vitessce'
Requires-Dist: zarr<3,>=2.18.7; extra == 'vitessce'
Description-Content-Type: text/markdown

# ehrdata

[![Tests][badge-tests]][tests]
[![Documentation][badge-docs]][documentation]

[badge-tests]: https://img.shields.io/github/actions/workflow/status/theislab/ehrdata/test.yaml?branch=main
[badge-docs]: https://img.shields.io/readthedocs/ehrdata

Ehrdata is a data framework that comprises a FAIR storage format and a collection of Python libraries for performant access, alignment, and processing of uni- and multi-modal electronic health record datasets.
This repository contains the core ehrdata library.
See the [ehrapy][] package for an analysis package that uses ehrdata to enable the analysis of electronic health record datasetes.

## Getting started

Please refer to the [documentation][],
in particular, the [API documentation][].

## Disclaimer

ehrdata is under heavy construction, and its API not stable.
If you find it potentially interesting for your work, reach out to us via the [scverse zulip platform](https://scverse.zulipchat.com/)!
We can help you using it and will be able to stabilize things you need.

If you have inputs on features, please do not hesitate to open an issue on our [issue tracker][]!

## Installation

You need to have Python 3.12 or newer installed on your system.
If you don't have Python installed, we recommend installing [Mambaforge][].

There are several alternative options to install ehrdata:

1) Install the latest release of `ehrdata` from [PyPI][]:

```bash
pip install ehrdata
```

2. Install the latest development version:

```bash
pip install git+https://github.com/theislab/ehrdata.git@main
```

## Release notes

See the [changelog][].

## Contact

For questions and help requests, you can reach out in the [scverse discourse][].
If you found a bug, please use the [issue tracker][].

## Citation

> t.b.a

[mambaforge]: https://github.com/conda-forge/miniforge#mambaforge
[scverse discourse]: https://discourse.scverse.org
[ehrapy]: https://ehrapy.readthedocs.io/en/stable
[issue tracker]: https://github.com/theislab/ehrdata/issues
[tests]: https://github.com/theislab/ehrdata/actions/workflows/test.yml
[documentation]: https://ehrdata.readthedocs.io
[changelog]: https://ehrdata.readthedocs.io/en/latest/changelog.html
[api documentation]: https://ehrdata.readthedocs.io/en/latest/api.html
[pypi]: https://pypi.org/project/ehrdata
