Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion data/workflow/databases.sh
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ case "${SELECTION}" in
;;
"dbCAN2")
if notExists "${TMP_PATH}/download.done"; then
downloadFile "http://dbcan-hcc.unl.edu/download/dbCAN-fam-aln-V14.tar.gz" "${TMP_PATH}/msa.tar.gz"
downloadFile "https://dbcan-hcc.unl.edu/download/dbCAN-fam-aln-V14.tar.gz" "${TMP_PATH}/msa.tar.gz"
printf "14 %s\n" "$(date "+%s")" > "${TMP_PATH}/version"
touch "${TMP_PATH}/download.done"
fi
Expand Down
3 changes: 3 additions & 0 deletions src/workflow/EasySearch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ int doeasysearch(int argc, const char **argv, const Command &command, bool linse
for (size_t i = 0; i < par.extractorfs.size(); i++){
par.extractorfs[i]->addCategory(MMseqsParameter::COMMAND_EXPERT);
}
for (size_t i = 0; i < par.extractframes.size(); i++) {
par.extractframes[i]->addCategory(MMseqsParameter::COMMAND_EXPERT);
}
for (size_t i = 0; i < par.splitsequence.size(); i++) {
par.splitsequence[i]->addCategory(MMseqsParameter::COMMAND_EXPERT);
}
Expand Down