Skip to content

Commit 3edd2d1

Browse files
committed
added verbosity when overriding k using DB
1 parent 8036f74 commit 3edd2d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/input.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ void Input::loadGraph() {
6262
std::string line;
6363
getline(file, line);
6464
file.close();
65+
lg.verbose("Overriding default kmer length (" + std::to_string(userInput.kmerLen) + ") with DB kmer length (" + line + ").");
6566
userInput.kmerLen = stoi(line);
6667
}else if (userInput.kmerDB.size() > 1) {
6768
fprintf(stderr, "More than one DBG database provided. Merge them first. Exiting.\n");
@@ -70,7 +71,6 @@ void Input::loadGraph() {
7071
fprintf(stderr, "Cannot load DBG input. Exiting.\n");
7172
exit(EXIT_FAILURE);
7273
}
73-
7474
}
7575

7676
void Input::read() {

0 commit comments

Comments
 (0)