We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c59c6ea commit 9d4a4feCopy full SHA for 9d4a4fe
nibabies/workflows/base.py
@@ -836,6 +836,10 @@ def clean_datasinks(workflow: pe.Workflow) -> pe.Workflow:
836
for node in workflow.list_node_names():
837
if node.split('.')[-1].startswith('ds_'):
838
workflow.get_node(node).interface.out_path_base = ''
839
+ workflow.get_node(node).interface.inputs.base_directory = config.execution.output_dir
840
+
841
+ if config.execution.output_layout == 'multiverse':
842
+ workflow.get_node(node).interface.inputs.hash = config.execution.parameters_hash
843
return workflow
844
845
0 commit comments