Skip to content

Commit

Permalink
bugfix; anchor len cannot be smaller than kCache. TODO: accept kCache…
Browse files Browse the repository at this point in the history
… from command line
  • Loading branch information
haghshenas committed Nov 14, 2018
1 parent 68e15e6 commit 0f03233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CommandLineParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ int parseCommandLine (int argc, char *argv[])
}
}

if (MIN_ANCHOR_LEN < 10 || MIN_ANCHOR_LEN > 20)
if (MIN_ANCHOR_LEN < 12 || MIN_ANCHOR_LEN > 20)
{
fprintf(stderr, "[ERROR] (parseCommandLine) -k/--minAnchorLen requires an argument in [10..20]\n");
return 1;
Expand Down

0 comments on commit 0f03233

Please sign in to comment.