Skip to content

Commit

Permalink
🔀 Merge remote-tracking branch 'origin/develop' into slurm/run-correl…
Browse files Browse the repository at this point in the history
…ations

[run reg-suite lite]
  • Loading branch information
shnizzedy committed Jan 10, 2025
2 parents 2f703fa + 61ad414 commit f5ec305
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CPAC/pipeline/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -1357,6 +1357,9 @@ def gather_pipes(self, wf, cfg, all=False, add_incl=None, add_excl=None):
wf.connect(id_string, "out_filename", nii_name, "format_string")

node, out = self.rpool[resource][pipe_idx]["data"]
if not node:
msg = f"Resource {resource} not found in resource pool."
raise FileNotFoundError(msg)
try:
wf.connect(node, out, nii_name, "in_file")
except OSError as os_error:
Expand Down

0 comments on commit f5ec305

Please sign in to comment.