Skip to content

Commit

Permalink
fix errors in opt parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvdbergh committed Oct 21, 2016
1 parent deff5eb commit 25ff0e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ pririta_scripts/*
example_data/*
dockervol/*
renseq_pipeline_documentation.pdf
renseqdata.tar.gz
2 changes: 1 addition & 1 deletion scripts/runRenSeq.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
nproc=2
genomesize=7000000

PARSED=`getopt --options t:g: --longoptions --genomesize --threads --name "$0" -- "$@"`
PARSED=`getopt -o t:g: --long genomesize,threads -n "$0" -- "$@"`
eval set -- "$PARSED"

while true; do
Expand Down

0 comments on commit 25ff0e8

Please sign in to comment.