├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── src ├── htslib_struct_access.c ├── htslib_struct_access.h ├── vcf.zig └── vcf_test.zig └── tests ├── alts.vcf ├── exac.bcf ├── exac.bcf.csi ├── test.snpeff.bcf └── test.snpeff.bcf.csi /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/hts-zig/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.a 2 | zig-cache 3 | _o.bcf 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/hts-zig/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/hts-zig/HEAD/README.md -------------------------------------------------------------------------------- /src/htslib_struct_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/hts-zig/HEAD/src/htslib_struct_access.c -------------------------------------------------------------------------------- /src/htslib_struct_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/hts-zig/HEAD/src/htslib_struct_access.h -------------------------------------------------------------------------------- /src/vcf.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/hts-zig/HEAD/src/vcf.zig -------------------------------------------------------------------------------- /src/vcf_test.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/hts-zig/HEAD/src/vcf_test.zig -------------------------------------------------------------------------------- /tests/alts.vcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/hts-zig/HEAD/tests/alts.vcf -------------------------------------------------------------------------------- /tests/exac.bcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/hts-zig/HEAD/tests/exac.bcf -------------------------------------------------------------------------------- /tests/exac.bcf.csi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/hts-zig/HEAD/tests/exac.bcf.csi -------------------------------------------------------------------------------- /tests/test.snpeff.bcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/hts-zig/HEAD/tests/test.snpeff.bcf -------------------------------------------------------------------------------- /tests/test.snpeff.bcf.csi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/hts-zig/HEAD/tests/test.snpeff.bcf.csi --------------------------------------------------------------------------------