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 4486775 commit 9cfb703Copy full SHA for 9cfb703
nipype/pipeline/plugins/sgegraph.py
@@ -122,7 +122,7 @@ def make_job_name(jobnumber, nodeslist):
122
values = ' '
123
for jobid in dependencies[idx]:
124
## Avoid dependancies of done jobs
125
- if cache_doneness_per_node[jobid] == False:
+ if not self._dont_resubmit_completed_jobs or cache_doneness_per_node[jobid] == False:
126
values += "${{{0}}},".format(make_job_name(jobid, nodes))
127
if values != ' ': # i.e. if some jobs were added to dependency list
128
values = values.rstrip(',')
0 commit comments