Skip to content

Commit

Permalink
Add verbosity to more module calls
Browse files Browse the repository at this point in the history
  • Loading branch information
milot-mirdita committed Jan 7, 2025
1 parent 4ebaa30 commit 0125d58
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion data/multimercluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ BASEIN=$(basename "${INPUT}")
# Shift _h, _h.dbtype
if notExists "${TMP_PATH}/multimer_db_h.dbtype"; then
# shellcheck disable=SC2086
"$MMSEQS" lndb "${INPUT}" "${TMP_PATH}/${BASEIN}tmp" ${VERBOSITY} \
"$MMSEQS" lndb "${INPUT}" "${TMP_PATH}/${BASEIN}tmp" ${VERBOSITY_PAR} \
|| fail "lndb died"

# shellcheck disable=SC2086
Expand Down
6 changes: 3 additions & 3 deletions data/structdatabases.sh
Original file line number Diff line number Diff line change
Expand Up @@ -212,10 +212,10 @@ case "${INPUT_TYPE}" in
for SUFFIX in "" "_ss" "_h" "_ca"; do
if [ -e "${IN}_seq${SUFFIX}.dbtype" ]; then
# shellcheck disable=SC2086
"${MMSEQS}" mvdb "${IN}_seq${SUFFIX}" "${OUTDB}_seq${SUFFIX}" || fail "mv died"
"${MMSEQS}" mvdb "${IN}_seq${SUFFIX}" "${OUTDB}_seq${SUFFIX}" ${VERB_PAR} || fail "mv died"
fi
# shellcheck disable=SC2086
"${MMSEQS}" mvdb "${IN}${SUFFIX}" "${OUTDB}${SUFFIX}" || fail "mv died"
"${MMSEQS}" mvdb "${IN}${SUFFIX}" "${OUTDB}${SUFFIX}" ${VERB_PAR} || fail "mv died"
done

if [ -e "${IN}_clu.dbtype" ]; then
Expand All @@ -229,7 +229,7 @@ case "${INPUT_TYPE}" in
done

# shellcheck disable=SC2086
"${MMSEQS}" mvdb "${IN}_clu" "${OUTDB}_clu" || fail "mv died"
"${MMSEQS}" mvdb "${IN}_clu" "${OUTDB}_clu" ${VERB_PAR} || fail "mv died"
fi
;;
esac
Expand Down
3 changes: 2 additions & 1 deletion data/structureiterativesearch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ while [ "$STEP" -lt "$NUM_IT" ]; do
# shellcheck disable=SC2086
"$MMSEQS" subtractdbs "$TMP_PATH/pref_tmp_${STEP}" "$TMP_PATH/aln_${STEPONE}" "$TMP_PATH/pref_${STEP}" $SUBSTRACT_PAR \
|| fail "Substract died"
"$MMSEQS" rmdb "$TMP_PATH/pref_tmp_${STEP}"
# shellcheck disable=SC2086
"$MMSEQS" rmdb "$TMP_PATH/pref_tmp_${STEP}" ${VERBOSITY}
fi
touch "$TMP_PATH/pref_${STEP}.done"
fi
Expand Down

0 comments on commit 0125d58

Please sign in to comment.