Skip to content

Commit

Permalink
[Fix] Wrong log message regarding ambiguous SNP
Browse files Browse the repository at this point in the history
  • Loading branch information
choishingwan committed Apr 1, 2020
1 parent 4819e61 commit d1c3a06
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/genotype.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -422,8 +422,7 @@ void Genotype::print_base_stat(const std::vector<size_t>& filter_count,
{
message.append(std::to_string(filter_count[+FILTER_COUNT::AMBIG])
+ " ambiguous variant(s)");
if (!filter_count[+FILTER_COUNT::AMBIG])
{ message.append(" excluded"); }
if (!m_keep_ambig) { message.append(" excluded"); }
message.append("\n");
}
if (filter_count[+FILTER_COUNT::DUPLICATE])
Expand Down

0 comments on commit d1c3a06

Please sign in to comment.