EBIvariation / vcf-validator

Validation suite for Variant Call Format (VCF) files, implemented using C++11
Apache License 2.0
130 stars 39 forks source link

Improvement in functionality of reading compressed files #147

Closed srbcheema1 closed 6 years ago

srbcheema1 commented 6 years ago

This PR is extension of #117. In that PR functionality of reading compressed files was added. We used boost::filtering streams to read the compressed files. Boost filtering streams delayed the output. Using boost for compressed files was fine. but using it for normal files was just delayed the output uselessly. So now I have used normal istream for uncompressed file and boost filtering streams for compressed ones.