Skip to content
Snippets Groups Projects
Commit 0f4652dc authored by arq5x's avatar arq5x
Browse files

[BUG] Fix for issue #153. makewindows -s should not be required with -b.

parent 6ae90161
No related branches found
No related tags found
No related merge requests found
......@@ -135,7 +135,7 @@ int windowmaker_main(int argc, char* argv[]) {
cerr << endl << "*****" << endl << "*****ERROR: Can't combine -w (window size) and -n (number of windows). Please use one or the other. " << endl << "*****" << endl;
showHelp = true;
}
if (step <= 0) {
if (step <= 0 && !haveBed && haveGenome) {
cerr << endl << "*****" << endl << "*****ERROR: The step (-s) option must be greater than zero. " << endl << "*****" << endl;
showHelp = true;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment