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 045b28e commit c697018Copy full SHA for c697018
nipype/interfaces/base/core.py
@@ -857,6 +857,7 @@ class must be instantiated with a command argument
857
858
"""
859
input_spec = CommandLineInputSpec
860
+ _cmd_prefix = ''
861
_cmd = None
862
_version = None
863
_terminal_output = 'stream'
@@ -915,7 +916,7 @@ def cmdline(self):
915
916
""" `command` plus any arguments (args)
917
validates arguments and generates command line"""
918
self._check_mandatory_inputs()
- allargs = [self.cmd] + self._parse_inputs()
919
+ allargs = [self._cmd_prefix + self.cmd] + self._parse_inputs()
920
return ' '.join(allargs)
921
922
@property
0 commit comments