Skip to content

Commit 1272b05

Browse files
Initial docs on README
Closes #100
1 parent 88dc128 commit 1272b05

File tree

1 file changed

+41
-2
lines changed

1 file changed

+41
-2
lines changed

README.md

Lines changed: 41 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,44 @@
1+
[![CI](https://github.com/sgkit-dev/vcztools/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/sgkit-dev/vcztools/actions/workflows/ci.yml)
2+
13
# vcztools
2-
Partial reimplementation of bcftools for VCF Zarr
4+
Partial reimplementation of bcftools for [VCF Zarr](https://github.com/sgkit-dev/vcf-zarr-spec/)
5+
6+
Please see the [preprint](https://www.biorxiv.org/content/10.1101/2024.06.11.598241) for more information.
7+
8+
9+
## Installation
10+
11+
```
12+
python3 -m pip install vcztools
13+
```
14+
15+
## Usage
16+
17+
```
18+
vcztools view <path.vcz>
19+
```
20+
or
21+
```
22+
python -m vcztools view <path.vcz>
23+
```
24+
should be equivalent to running
25+
```
26+
bcftools view <path.vcf.gz>
27+
```
28+
29+
See the [bio2zarr](https://sgkit-dev.github.io/bio2zarr/) project for help in
30+
converting VCF files to Zarr.
31+
32+
## Goals
33+
34+
Vcztools aims to be a drop-in replacement for a subset of bcftools functionality.
35+
Currently supported are the ``view``, ``query`` and ``index -s/-n`` commands.
36+
37+
We aim for 100% compatibility so if you notice a difference between the output of
38+
vcztools and bcftools please do open an issue.
39+
40+
## Development
341

42+
Vcztools is under active development and contributions are warmly welcomed. Please
43+
see the project on [GitHub](https://github.com/sgkit-dev/vcztools).
444

5-
**This is an early prototype: DO NOT USE!**

0 commit comments

Comments
 (0)