Skip to content

Commit

Permalink
pass correct parameter list to mergeresultsbyset
Browse files Browse the repository at this point in the history
  • Loading branch information
milot-mirdita committed Apr 2, 2024
1 parent f74d1b5 commit a2f62ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data/structuresearch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ if [ "$ALIGNMENT_ALGO" = "tmalign" ]; then
if [ -n "${EXPAND}" ]; then
if notExists "${TMP_PATH}/strualn_expanded.dbtype"; then
# shellcheck disable=SC2086
"$MMSEQS" mergeresultsbyset "${INTERMEDIATE}" "${TARGET_ALIGNMENT}_clu" "${TMP_PATH}/strualn_expanded" ${MERGERESULTBYSET_PAR} \
"$MMSEQS" mergeresultsbyset "${INTERMEDIATE}" "${TARGET_ALIGNMENT}_clu" "${TMP_PATH}/strualn_expanded" ${MERGERESULTBYSET_PAR} \
|| fail "Expand died"
fi
INTERMEDIATE="${TMP_PATH}/strualn_expanded"
Expand Down
2 changes: 1 addition & 1 deletion src/workflow/StructureSearch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ int structuresearch(int argc, const char **argv, const Command &command) {
EXIT(EXIT_FAILURE);
}
}
cmd.addVariable("MERGERESULTBYSET_PAR", par.createParameterString(par.threadsandcompression).c_str());
cmd.addVariable("MERGERESULTBYSET_PAR", par.createParameterString(par.mergeresultsbyset).c_str());
cmd.addVariable("EXPAND", "1");
}
std::string program = tmpDir + "/structuresearch.sh";
Expand Down

0 comments on commit a2f62ee

Please sign in to comment.