Skip to content

Commit

Permalink
fix bug in vcf causing issue with scatter gather bps format
Browse files Browse the repository at this point in the history
  • Loading branch information
walaj authored May 24, 2024
1 parent 63ffa29 commit ab39e3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/svaba/vcf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ VCFFile::VCFFile(std::string file, std::string id, const SeqLib::BamHeader& h, c

// read it in line by line
getline(infile, line, '\n'); // skip first line
int line_count = -1;
int line_count = 0;
while (getline(infile, line, '\n')) {

if (line.size() && line.at(0) == '#') {
Expand Down

0 comments on commit ab39e3f

Please sign in to comment.