Metadata-Version: 2.3
Name: vcf2xlsx
Version: 0.1.0
Summary: 
Author: Trent Zeng
Author-email: trentzz.dev@gmail.com
Requires-Python: >=3.12,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: argparse (>=1.4.0,<2.0.0)
Requires-Dist: vcf2pandas (>=0.1.2,<0.2.0)
Requires-Dist: xlsxwriter (>=3.2.2,<4.0.0)
Description-Content-Type: text/markdown

# vcf2xlsx

A lightweight cli wrapper for [vcf2pandas](https://github.com/trentzz/vcf2pandas) that converts a Variant Call Format (VCF) file to an excel spreadsheet.

For more information about the format of the excel spreadsheet, naming, or otherwise, see [vcf2pandas](https://github.com/trentzz/vcf2pandas) for more details.

## Install

```bash
pipx install vcf2xlsx
```

## Usage

```bash
vcf2xlsx <vcf-file> --output <xlsx-file>
```

## Examples

```bash
cd vcf2xlsx
poetry run vcf2xlsx examples/example.vcf -o examples/example.xlsx
```

