Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/abyzovlab/CNVnator
Browse files Browse the repository at this point in the history
  • Loading branch information
Abyzov committed Feb 27, 2019
2 parents b49ba6b + 2d6c9c4 commit 63b266a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VcfParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ bool VcfParser::parseRecord(bool idvar)
if(!idvar) {
ngt = bcf_get_format_int32(h, rec, "GT", &gt, &ngt_arr);
nad = bcf_get_format_int32(h, rec, "AD", &ad, &nad_arr);
if(ngt==0 || nad==0) continue;
if(ngt<=0 || nad<=0) continue;
}
c_chr=cnames_[rec->rid];
c_pos=rec->pos;
Expand Down

0 comments on commit 63b266a

Please sign in to comment.