From 47d5a20ba6c43c08cf0059be139bacc6408096d4 Mon Sep 17 00:00:00 2001 From: Brian Geuther Date: Fri, 10 Oct 2025 09:20:58 -0400 Subject: [PATCH] Fixing change to channel name --- main.nf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.nf b/main.nf index 7dc08ae..e663cf8 100644 --- a/main.nf +++ b/main.nf @@ -50,7 +50,7 @@ workflow{ if (params.workflow == "single-mouse-v6-features"){ PREPARE_DATA(params.input_batch, params.location, false) // Generate features from pose_v6 files - ADD_DUMMY_VIDEO(PREPARE_DATA.out.out_file, params.clip_duration) + ADD_DUMMY_VIDEO(PREPARE_DATA.out.file_processing_channel, params.clip_duration) paired_video_and_pose = ADD_DUMMY_VIDEO.out[0] SINGLE_MOUSE_V6_FEATURES(paired_video_and_pose) }