We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec35b55 commit 412f7afCopy full SHA for 412f7af
nipype/interfaces/mrtrix3/utils.py
@@ -638,10 +638,20 @@ class MRConvertInputSpec(MRTrix3BaseInputSpec):
638
mandatory=False,
639
desc="import data from a JSON file into header key-value pairs",
640
)
641
+ json_export = File(
642
+ exists=False,
643
+ argstr="-json_export %s",
644
+ mandatory=False,
645
+ desc="export data from an image header key-value pairs into a JSON file",
646
+ )
647
648
649
class MRConvertOutputSpec(TraitedSpec):
650
out_file = File(exists=True, desc="output image")
651
652
+ exists=True,
653
+ desc="exported data from an image header key-value pairs in a JSON file",
654
655
656
657
class MRConvert(MRTrix3Base):
0 commit comments