Skip to content

Commit

Permalink
add verbosity to track progress
Browse files Browse the repository at this point in the history
  • Loading branch information
gf777 committed Jul 4, 2024
1 parent d0ec5da commit e29967f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/variants.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,11 @@ void DBG::correctSequences() {
return;

std::vector<InSegment*> inSegments = *genome->getInSegments();
for (InSegment *inSegment : inSegments)

for (InSegment *inSegment : inSegments) {
lg.verbose("Processing segment: " + inSegment->getSeqHeader());
DBGtoVariants(inSegment);
}
}

bool DBG::DBGtoVariants(InSegment *inSegment) {
Expand Down

0 comments on commit e29967f

Please sign in to comment.