Skip to content

Commit

Permalink
Better informative message about calls at same position
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Bacon committed Mar 8, 2020
1 parent fd53504 commit 66f6013
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ad2vcf.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ int ad2vcf(const char *argv[], FILE *sam_stream)
// fprintf(stderr, "VCF call %s %zu\n", vcf_chromosome, vcf_pos);
vcf_calls_read += vcf_duplicate_calls.count;
if ( vcf_duplicate_calls.count > 1 )
fprintf(stderr, "Read %zu duplicate calls at chr %s pos %zu.\n",
fprintf(stderr, "INFO: %zu calls at chr %s pos %zu.\n",
vcf_duplicate_calls.count, vcf_chromosome, vcf_pos);

// Skip remaining alignments for previous chromosome after VCF
Expand Down

0 comments on commit 66f6013

Please sign in to comment.