Correct typo in fast5 logic

This commit is contained in:
Thomas A. Christensen II 2021-03-23 12:23:52 -06:00
parent 1a560be81a
commit 79c2ae7882
Signed by: millironx
GPG key ID: 139C07724802BC5D

View file

@ -15,7 +15,7 @@ fi
# Find the directory we are supposed to copy # Find the directory we are supposed to copy
# If no directory was passed, check to see if the current directory will work # If no directory was passed, check to see if the current directory will work
if [ "$FOLDERIN" = "" ]; then if [ "$FOLDERIN" = "" ]; then
if [[ -n $(find . -type d -name "fast9_pass") ]]; then if [[ -n $(find . -type d -name "fast5_pass") ]]; then
FOLDERPATH="$PWD" FOLDERPATH="$PWD"
FOLDERNAME=$(basename "$PWD") FOLDERNAME=$(basename "$PWD")
else else