Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/taoliu/MACS
Browse files Browse the repository at this point in the history
# Please enter a commit message to explain why this merge is necessary,
# especially if it merges an updated upstream into a topic branch.
#
# Lines starting with '#' will be ignored, and an empty message aborts
# the commit.
  • Loading branch information
taoliu committed Jan 21, 2015
2 parents 7170b41 + 22d47e5 commit 87e287d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MACS2/OptValidator.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def opt_validate ( options ):
# options.extsize = 2 * options.shiftsize
#else: # if --shiftsize is not set
# options.shiftsize = options.extsize / 2
if options.extsize <= 1 :
if options.extsize < 1 :
logging.error("--extsize must >= 1!")
sys.exit(1)

Expand Down

0 comments on commit 87e287d

Please sign in to comment.