We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8036f74 commit 3edd2d1Copy full SHA for 3edd2d1
src/input.cpp
@@ -62,6 +62,7 @@ void Input::loadGraph() {
62
std::string line;
63
getline(file, line);
64
file.close();
65
+ lg.verbose("Overriding default kmer length (" + std::to_string(userInput.kmerLen) + ") with DB kmer length (" + line + ").");
66
userInput.kmerLen = stoi(line);
67
}else if (userInput.kmerDB.size() > 1) {
68
fprintf(stderr, "More than one DBG database provided. Merge them first. Exiting.\n");
@@ -70,7 +71,6 @@ void Input::loadGraph() {
70
71
fprintf(stderr, "Cannot load DBG input. Exiting.\n");
72
exit(EXIT_FAILURE);
73
}
-
74
75
76
void Input::read() {
0 commit comments