Skip to content

Commit

Permalink
fix arg parser
Browse files Browse the repository at this point in the history
  • Loading branch information
sof202 committed Apr 12, 2024
1 parent 24f0496 commit fba5c41
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ needs_argument() {

if [[ ! $1 =~ -.* ]]; then usage; fi

while getopts c:n:s:o:-: OPT; do
while getopts c:n:r:b:s:a:-: OPT; do
# Adds support for long options by reformulating OPT and OPTARG
# This assumes that long options are in the form: "--long=option"
if [ "$OPT" = "-" ]; then
Expand Down Expand Up @@ -221,4 +221,4 @@ grep " " "ChromHMM.Output.ModelSize.${model_size}.txt" >> \

rm "ChromHMM.Output.ModelSize.${model_size}.txt"

finishing_statement 0
finishing_statement 0

0 comments on commit fba5c41

Please sign in to comment.