Skip to content

Commit e29967f

Browse files
committed
add verbosity to track progress
1 parent d0ec5da commit e29967f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/variants.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,11 @@ void DBG::correctSequences() {
4343
return;
4444

4545
std::vector<InSegment*> inSegments = *genome->getInSegments();
46-
for (InSegment *inSegment : inSegments)
46+
47+
for (InSegment *inSegment : inSegments) {
48+
lg.verbose("Processing segment: " + inSegment->getSeqHeader());
4749
DBGtoVariants(inSegment);
50+
}
4851
}
4952

5053
bool DBG::DBGtoVariants(InSegment *inSegment) {

0 commit comments

Comments
 (0)