File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,8 @@ process GENERATE_FEATURE_CACHE {
4444 * @param tuple
4545 * - in_pose The input pose file.
4646 * - feature_cache The directory containing the generated features.
47- * @param classifiers A map of classifier names to their respective parameters.
47+ * @param classifiers A map of classifiers:
48+ * - <classifier_name>: classifier parameter maps (not used by this process)
4849 *
4950 * @return tuple files
5051 * - Path to the original pose file.
@@ -81,7 +82,10 @@ process PREDICT_CLASSIFIERS {
8182 * - in_pose The input pose file.
8283 * - feature_cache The directory containing the generated features.
8384 * - behavior_files The behavior prediction file.
84- * @param classifiers A map of classifier names to their respective parameters.
85+ * @param classifiers A map of classifiers:
86+ * - <classifier_name>: classifier parameter maps:
87+ * - stitch_value: the gap size for stitching behavior bouts
88+ * - filter_value: the minimum length for behavior bouts
8589 *
8690 * @return tuple files
8791 * - Path to the generated behavior bout file.
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ process FILTER_LOCAL_BATCH {
5353 """
5454 touch files_to_process.txt
5555 while IFS="" read -r file; do
56- if [[ ! -f "\$ {file}" ]]
56+ if [[ ! -f "\$ {file}" ]]; then
5757 if [[ ${ ignore_invalid_inputs} != "true" ]]; then
5858 echo "File does not exist: \$ {file}"
5959 exit 1
You can’t perform that action at this time.
0 commit comments