We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0ec5da commit e29967fCopy full SHA for e29967f
src/variants.cpp
@@ -43,8 +43,11 @@ void DBG::correctSequences() {
43
return;
44
45
std::vector<InSegment*> inSegments = *genome->getInSegments();
46
- for (InSegment *inSegment : inSegments)
+
47
+ for (InSegment *inSegment : inSegments) {
48
+ lg.verbose("Processing segment: " + inSegment->getSeqHeader());
49
DBGtoVariants(inSegment);
50
+ }
51
}
52
53
bool DBG::DBGtoVariants(InSegment *inSegment) {
0 commit comments