We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d6cf8d commit 4500a03Copy full SHA for 4500a03
1 file changed
snakemake/dag.py
@@ -1853,8 +1853,9 @@ def handle_pipes_and_services(self):
1853
j.pipe_group = group
1854
visited.add(j)
1855
1856
- if has_nodelocal:
+ if has_nodelocal and not self.workflow.local_exec:
1857
# put the dependencies in the same user group (not pipe group as pipes are ran in parallel, whereas we want serial for nodelocal files)
1858
+ # NOTE do NOT create usergroup in the node's local inst of snakemake lest the resources get merge, see: resources.py: class GroupResources
1859
if user_groups:
1860
ugroup = user_groups.pop()
1861
else:
0 commit comments