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++
- Host: GitHub
- URL: https://github.com/labsquare/qvcf
- Owner: labsquare
- License: mit
- Created: 2017-02-18T19:10:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-18T21:54:18.000Z (over 9 years ago)
- Last Synced: 2025-02-08T13:28:55.133Z (over 1 year ago)
- Topics: bioinformatics, genomics, variant, vcf
- Language: C++
- Size: 6.84 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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()<