Metadata-Version: 2.4
Name: gyne
Version: 1.0.0
Summary: Algorithm plugin interface for Gyne
Author: CNV-PGT Team
License: MIT License
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pydantic>=1.10
Dynamic: license-file

# gyne

`gyne` provides shared data models and an abstract plugin base class for CNV algorithm integrations.

## Installation

```bash
pip install gyne
```

## Usage

```python
from gyne import AlgorithmPlugin, BaseInput, BaseOutput, SampleOutput
```

Define a custom plugin by subclassing `AlgorithmPlugin` and implementing the `run` method.
