Skip to content

Commit

Permalink
fixed output spec name
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Jul 27, 2021
1 parent 16505db commit 0ea314c
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions pydra/tasks/dcm2niix/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,19 @@
"out_file",
{"argstr": "-f {filename}", "help_string": "The output name for the file"},
),
(
"compress",
str,
# "n",
{
"argstr": "-z {compress}",
"allowed_values": ("y", "o", "i", "n", "3"),
"help_string": (
"gz compress images [y=pigz, o=optimal pigz, "
"i=internal:miniz, n=no, 3=no,3D]"
),
},
),
(
"compression_level",
int,
Expand Down Expand Up @@ -230,19 +243,6 @@
),
},
),
(
"compress",
str,
# "n",
{
"argstr": "-z {compress}",
"allowed_values": ("y", "o", "i", "n", "3"),
"help_string": (
"gz compress images [y=pigz, o=optimal pigz, "
"i=internal:miniz, n=no, 3=no,3D]"
),
},
),
(
"big_endian",
str,
Expand Down Expand Up @@ -309,7 +309,7 @@
]

Dcm2NiixOutputSpec = SpecInfo(
name="Dcm2niixInputs", fields=output_fields, bases=(ShellOutSpec,)
name="Dcm2niixOutputs", fields=output_fields, bases=(ShellOutSpec,)
)


Expand Down

0 comments on commit 0ea314c

Please sign in to comment.