Skip to content

Commit

Permalink
Merge pull request #587 from qiyubio/qiyubio-patch-1
Browse files Browse the repository at this point in the history
Update make_viewpoints.py to convert exclusionSize to int
  • Loading branch information
nservant authored Jan 26, 2024
2 parents 7427dc7 + 812a52c commit 98f8fea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/utils/make_viewpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def init_dict():
elif opt in ("-t", "--targetFile"):
targetFile = arg
elif opt in ("-e", "--exclusion"):
exclusionSize = arg
exclusionSize = int(arg)
elif opt in ("-o", "--oprefix"):
oprefix = arg
elif opt in ("-c", "--cis"):
Expand Down

0 comments on commit 98f8fea

Please sign in to comment.