vcfpp
The documentation of the single C++ file vcfpp.h for manipulating VCF/BCF

Introduction

This project https://github.com/Zilong-Li/vcfpp introduces a single C++ file as interface to the basic htslib, which can be easily included in a C++ program for scripting high-performance genomic analyses.

Installation

  • include "vcfpp.h" to your program and compile it by g++ my.cpp -std=c++11 -Wall -I. -lhts
  • make sure you have https://github.com/samtools/htslib installed on your system and the it is in your environment.