Skip to content

Commit 0ea314c

Browse files
committed
fixed output spec name
1 parent 16505db commit 0ea314c

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

pydra/tasks/dcm2niix/utils.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,19 @@
2929
"out_file",
3030
{"argstr": "-f {filename}", "help_string": "The output name for the file"},
3131
),
32+
(
33+
"compress",
34+
str,
35+
# "n",
36+
{
37+
"argstr": "-z {compress}",
38+
"allowed_values": ("y", "o", "i", "n", "3"),
39+
"help_string": (
40+
"gz compress images [y=pigz, o=optimal pigz, "
41+
"i=internal:miniz, n=no, 3=no,3D]"
42+
),
43+
},
44+
),
3245
(
3346
"compression_level",
3447
int,
@@ -230,19 +243,6 @@
230243
),
231244
},
232245
),
233-
(
234-
"compress",
235-
str,
236-
# "n",
237-
{
238-
"argstr": "-z {compress}",
239-
"allowed_values": ("y", "o", "i", "n", "3"),
240-
"help_string": (
241-
"gz compress images [y=pigz, o=optimal pigz, "
242-
"i=internal:miniz, n=no, 3=no,3D]"
243-
),
244-
},
245-
),
246246
(
247247
"big_endian",
248248
str,
@@ -309,7 +309,7 @@
309309
]
310310

311311
Dcm2NiixOutputSpec = SpecInfo(
312-
name="Dcm2niixInputs", fields=output_fields, bases=(ShellOutSpec,)
312+
name="Dcm2niixOutputs", fields=output_fields, bases=(ShellOutSpec,)
313313
)
314314

315315

0 commit comments

Comments
 (0)