An open API service indexing awesome lists of open source software.

https://github.com/labsquare/qvcf

a Variant VCF parser for Qt/C++
https://github.com/labsquare/qvcf

bioinformatics genomics variant vcf

Last synced: about 1 year ago
JSON representation

a Variant VCF parser for Qt/C++

Awesome Lists containing this project

README

          

# QVcf
A simple variant vcf parser based on Qt/C++.
QVcf use the same semantics than [pyvcf](https://github.com/jamescasbon/PyVCF)

## Example

```
#include
#include "vcfreader.h"

int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
vcf::VcfReader reader("yourfile.vcf");
if (reader.open())
{
qDebug()<