├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── guix.scm ├── main.cpp ├── tabix.cpp ├── tabix.hpp └── test ├── vcf_file.vcf.gz ├── vcf_file.vcf.gz.gzi └── vcf_file.vcf.gz.tbi /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcflib/tabixpp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcflib/tabixpp/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcflib/tabixpp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcflib/tabixpp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcflib/tabixpp/HEAD/README.md -------------------------------------------------------------------------------- /guix.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcflib/tabixpp/HEAD/guix.scm -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcflib/tabixpp/HEAD/main.cpp -------------------------------------------------------------------------------- /tabix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcflib/tabixpp/HEAD/tabix.cpp -------------------------------------------------------------------------------- /tabix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcflib/tabixpp/HEAD/tabix.hpp -------------------------------------------------------------------------------- /test/vcf_file.vcf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcflib/tabixpp/HEAD/test/vcf_file.vcf.gz -------------------------------------------------------------------------------- /test/vcf_file.vcf.gz.gzi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcflib/tabixpp/HEAD/test/vcf_file.vcf.gz.gzi -------------------------------------------------------------------------------- /test/vcf_file.vcf.gz.tbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcflib/tabixpp/HEAD/test/vcf_file.vcf.gz.tbi --------------------------------------------------------------------------------