Skip to content

Commit 8cd2fdc

Browse files
debug annotatecustom
1 parent 04f172a commit 8cd2fdc

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

data/annotatecustom.sh

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,20 +120,24 @@ if notExists "${TMP_PATH}/search_not_proc.dbtype"; then
120120
#shellcheck disable=SC2086
121121
"$MMSEQS" search "${TMP_PATH}/clu_rep" "${TARGET}" "${TMP_PATH}/search_not_proc" "${TMP_PATH}/tmp_search" ${SEARCH_PAR} --alt-ali 3 \
122122
|| fail "MMseqs2 search died"
123+
124+
#shellcheck disable=SC2086
125+
$RUNNER "$MMSEQS" summarizeresult "${TMP_PATH}/search_not_proc" "${TMP_PATH}/searchDB" ${SUMMARIZE_PAR} \
126+
|| fail "first sequence-profile search died"
123127
fi
124128

125-
if notExists "${TMP_PATH}/search_not_proc_filt.dbtype"; then
129+
# if notExists "${TMP_PATH}/search_not_proc_filt.dbtype"; then
126130
#TODO pre-process DB here -> "${TMP_PATH}/search_not_proc_filt"
127131
#filter output
128-
preprocessDb "${TMP_PATH}/search_not_proc" "${TMP_PATH}/search_not_proc_filt"
129-
fi
132+
# preprocessDb "${TMP_PATH}/search_not_proc" "${TMP_PATH}/search_not_proc_filt"
133+
# fi
130134

131135
#add headers
132136
if [ -n "${SIMPLE_OUTPUT}" ]; then
133-
convertalis_simple "${TARGET}" "${TMP_PATH}/search_not_proc_filt" "${RESULTS}.tsv"
137+
convertalis_simple "${TARGET}" "${TMP_PATH}/searchDB" "${RESULTS}.tsv"
134138
else
135139
echo "Standard output will be provided"
136-
convertalis_standard "${TARGET}" "${TMP_PATH}/search_not_proc_filt" "${RESULTS}.tsv"
140+
convertalis_standard "${TARGET}" "${TMP_PATH}/searchDB" "${RESULTS}.tsv"
137141
fi
138142

139143
#remove temporary files and directories

0 commit comments

Comments
 (0)