From 73093ce5e7e6da2d4a401a0b7107018e06196033 Mon Sep 17 00:00:00 2001 From: omic Date: Mon, 16 Mar 2026 19:24:13 +0000 Subject: [PATCH] Clean up main.nf: remove debug copy block and file listing --- main.nf | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/main.nf b/main.nf index fd15497..20dc4f5 100644 --- a/main.nf +++ b/main.nf @@ -55,16 +55,6 @@ process FLOWDOCK { auxiliary_estimation_only=false \\ esmfold_chunk_size=null \\ trainer=cpu 2>&1 | tee run.log - - # Copy any outputs from FlowDock's log directory if they exist there - if ls /software/flowdock/logs/sample/runs/*/rank*.pdb 2>/dev/null; then - cp /software/flowdock/logs/sample/runs/*/rank*.pdb ${params.sample_id}/ 2>/dev/null || true - cp /software/flowdock/logs/sample/runs/*/rank*.sdf ${params.sample_id}/ 2>/dev/null || true - fi - - # List what was generated - echo "=== Generated files ===" >> run.log - find ${params.sample_id}/ -type f >> run.log 2>&1 || true """ }