From b335cd56d01d48a21282d813540c18b365b482e9 Mon Sep 17 00:00:00 2001 From: bioaddict Date: Fri, 17 Nov 2023 11:19:05 +0100 Subject: [PATCH] Fix unbound variable bug --- fast5pipeline | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fast5pipeline b/fast5pipeline index aee8038..c51f819 100755 --- a/fast5pipeline +++ b/fast5pipeline @@ -113,7 +113,7 @@ BATCHSIZE=100 ### ARGS PARSING ----------------------------------------------------------------------------------------------------------------------- # Parse command-line options -while getopts "c:i:o:k:m:bv" opt; do +while getopts "c:i:o:k:m:b:v" opt; do case "${opt}" in c) guppy_config=${OPTARG};; i) input_dir=${OPTARG};;