File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -139,6 +139,12 @@ def main(argv=None):
139
139
if exitcode != 0 :
140
140
sys .exit (exitcode )
141
141
142
+ if len (sdcflows_wf .list_node_names ()) == 0 :
143
+ config .loggers .cli .critical (
144
+ 'Workflow did not generate any jobs. Please check your inputs are valid.'
145
+ )
146
+ sys .exit (os .EX_USAGE )
147
+
142
148
# Initialize nipype config
143
149
config .nipype .init ()
144
150
# Make sure loggers are started
Original file line number Diff line number Diff line change @@ -248,8 +248,8 @@ def _bids_filter(value):
248
248
g_outputs .add_argument (
249
249
"--no-fmapless" ,
250
250
action = "store_false" ,
251
- dest = "fieldmapless " ,
252
- default = False ,
251
+ dest = "fmapless " ,
252
+ default = True ,
253
253
help = "Allow fieldmap-less estimation" ,
254
254
)
255
255
g_outputs .add_argument (
You can’t perform that action at this time.
0 commit comments