File tree Expand file tree Collapse file tree 1 file changed +41
-2
lines changed Expand file tree Collapse file tree 1 file changed +41
-2
lines changed Original file line number Diff line number Diff line change
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
+
1
3
# 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
3
41
42
+ Vcztools is under active development and contributions are warmly welcomed. Please
43
+ see the project on [ GitHub] ( https://github.com/sgkit-dev/vcztools ) .
4
44
5
- ** This is an early prototype: DO NOT USE!**
You can’t perform that action at this time.
0 commit comments