Clean up main.nf: remove debug copy block and file listing
Some checks failed
Code Quality Main / code-quality (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
Tests / run_tests_ubuntu (ubuntu-latest, 3.10) (push) Has been cancelled
Tests / run_tests_ubuntu (ubuntu-latest, 3.8) (push) Has been cancelled
Tests / run_tests_ubuntu (ubuntu-latest, 3.9) (push) Has been cancelled
Tests / run_tests_macos (macos-latest, 3.10) (push) Has been cancelled
Tests / run_tests_macos (macos-latest, 3.8) (push) Has been cancelled
Tests / run_tests_macos (macos-latest, 3.9) (push) Has been cancelled
Tests / run_tests_windows (windows-latest, 3.10) (push) Has been cancelled
Tests / run_tests_windows (windows-latest, 3.8) (push) Has been cancelled
Tests / run_tests_windows (windows-latest, 3.9) (push) Has been cancelled
Tests / code-coverage (push) Has been cancelled

This commit is contained in:
2026-03-16 19:24:13 +00:00
parent d053dd744f
commit 73093ce5e7

10
main.nf
View File

@@ -55,16 +55,6 @@ process FLOWDOCK {
auxiliary_estimation_only=false \\ auxiliary_estimation_only=false \\
esmfold_chunk_size=null \\ esmfold_chunk_size=null \\
trainer=cpu 2>&1 | tee run.log 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
""" """
} }