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 26cc84c commit 51aa4f5Copy full SHA for 51aa4f5
nipype/pipeline/plugins/oar.py
@@ -37,6 +37,8 @@ def __init__(self, **kwargs):
37
self._max_tries = 2
38
self._max_jobname_length = 15
39
if 'plugin_args' in kwargs and kwargs['plugin_args']:
40
+ if 'oarsub_args' in kwargs['plugin_args']:
41
+ self._oarsub_args = kwargs['plugin_args']['oarsub_args']
42
if 'retry_timeout' in kwargs['plugin_args']:
43
self._retry_timeout = kwargs['plugin_args']['retry_timeout']
44
if 'max_tries' in kwargs['plugin_args']:
0 commit comments