Unverified Commit 67f23568 authored by Jonathan King's avatar Jonathan King Committed by GitHub
Browse files

Process *.tar and *.tar.gz files.

Because download_mm_seqs_dbs.sh downloads and gunzips its target file (uniref30_2103.tar.gz), this script mistakenly does not process the .tar file. This fix expands the glob to match *.tar*.
parent 94e0a473
......@@ -23,7 +23,7 @@ DOWNLOAD_DIR="$1"
ROOT_DIR="${DOWNLOAD_DIR}/mmseqs_dbs"
mkdir -p $ROOT_DIR
for f in $(ls ${DOWNLOAD_DIR}/*.tar.gz)
for f in $(ls ${DOWNLOAD_DIR}/*.tar*)
do
tar --extract --verbose --file="${f}" \
--directory=$ROOT_DIR
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment