Skip to content

Commit

Permalink
Merge commit '34934fa409e4dec79d708a05c2a744658891d2d1'
Browse files Browse the repository at this point in the history
  • Loading branch information
milot-mirdita committed Dec 14, 2020
2 parents 74b273f + 34934fa commit 16e83ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mmseqs/data/workflow/createtaxdb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ downloadFile() {
fail "Could not download $URL to $OUTPUT"
}

if notExists "${TAXDBNAME}_names.dmp" || notExists "${TAXDBNAME}_nodes.dmp" || notExists "${TAXDBNAME}_merged.dmp"; then
if { [ "${DBMODE}" = "1" ] && notExists "${TAXDBNAME}_taxonomy"; } || { [ "${DBMODE}" = "0" ] && { notExists "${TAXDBNAME}_names.dmp" || notExists "${TAXDBNAME}_nodes.dmp" || notExists "${TAXDBNAME}_merged.dmp"; }; }; then
if [ "$DOWNLOAD_NCBITAXDUMP" -eq "1" ]; then
# Download NCBI taxon information
if notExists "${TMP_PATH}/ncbi_download.complete"; then
Expand Down

0 comments on commit 16e83ce

Please sign in to comment.