@@ -33,7 +33,7 @@ def search(logdir, regex):
33
33
a given regular expression.
34
34
35
35
Examples:\n
36
- nipype search nipype/wd/log -r '.*subject123.*'
36
+ nipypecli search nipype/wd/log -r '.*subject123.*'
37
37
"""
38
38
from .crash_files import iter_tracebacks
39
39
@@ -61,8 +61,8 @@ def crash(crashfile, rerun, debug, ipydebug, dir):
61
61
For certain crash files, one can rerun a failed node in a temp directory.
62
62
63
63
Examples:\n
64
- nipype crash crashfile.pklz\n
65
- nipype crash crashfile.pklz -r -i\n
64
+ nipypecli crash crashfile.pklz\n
65
+ nipypecli crash crashfile.pklz -r -i\n
66
66
"""
67
67
from .crash_files import display_crash_file
68
68
@@ -82,7 +82,7 @@ def show(pklz_file):
82
82
"""Print the content of Nipype node .pklz file.
83
83
84
84
Examples:\n
85
- nipype show node.pklz
85
+ nipypecli show node.pklz
86
86
"""
87
87
from pprint import pprint
88
88
from ..utils .filemanip import loadpkl
@@ -104,8 +104,8 @@ def run(ctx, module, interface, list, help):
104
104
"""Run a Nipype Interface.
105
105
106
106
Examples:\n
107
- nipype run nipype.interfaces.nipy --list\n
108
- nipype run nipype.interfaces.nipy ComputeMask --help
107
+ nipypecli run nipype.interfaces.nipy --list\n
108
+ nipypecli run nipype.interfaces.nipy ComputeMask --help
109
109
"""
110
110
import argparse
111
111
from .utils import add_args_options
0 commit comments