Skip to content

Commit 8fd5fbe

Browse files
committed
CFG: Remove hacks intended to ease development
1 parent 2ff1ddc commit 8fd5fbe

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

fmriprep/cli/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def _slice_time_ref(value, parser):
258258
"--level",
259259
action="store",
260260
default="full",
261-
# choices=["minimal", "resampling", "full"],
261+
choices=["minimal", "resampling", "full"],
262262
help="Processing level; may be 'minimal' (nothing that can be recomputed), "
263263
"'resampling' (recomputable targets that aid in resampling) "
264264
"or 'full' (all target outputs).",

fmriprep/config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,8 @@ class environment(_Config):
297297
class nipype(_Config):
298298
"""Nipype settings."""
299299

300-
crashfile_format = "pklz"
301-
"""The file format for crashfiles, either text or pickle."""
300+
crashfile_format = "txt"
301+
"""The file format for crashfiles, either text (txt) or pickle (pklz)."""
302302
get_linked_libs = False
303303
"""Run NiPype's tool to enlist linked libraries for every interface."""
304304
memory_gb = None
@@ -314,7 +314,7 @@ class nipype(_Config):
314314
"raise_insufficient": False,
315315
}
316316
"""Settings for NiPype's execution plugin."""
317-
remove_unnecessary_outputs = False
317+
remove_unnecessary_outputs = True
318318
"""Clean up unused outputs after running"""
319319
resource_monitor = False
320320
"""Enable resource monitor."""

0 commit comments

Comments
 (0)