Skip to content

Commit

Permalink
niftyfit interface - ASL processing: the fit_qt1 interface is modifie…
Browse files Browse the repository at this point in the history
…d to accomodate the TIs list and the order of the parameters
  • Loading branch information
Nicolas Toussaint committed Jan 11, 2016
1 parent 3591a76 commit cdb3a54
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions nipype/interfaces/niftyfit/qt1.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class FitQt1InputSpec(NIFTYFITCommandInputSpec):

source_file = File(exists=True, desc='Filename of the 4D Multi-Echo T1 source image (mandatory)',
argstr='-source %s', mandatory=True)
argstr='-source %s', mandatory=True, position=2)

# *** Output options:
t1map = File(genfile=True, exists=True, desc='Filename of the estimated output T1 map (in ms).',
Expand Down Expand Up @@ -42,7 +42,8 @@ class FitQt1InputSpec(NIFTYFITCommandInputSpec):

SR = traits.Bool(desc='Saturation Recovery fitting [default].', argstr='-SR')
IR = traits.Bool(desc='Inversion Recovery fitting [default].', argstr='-SR')
T1s = traits.ListFloat(desc='Inversion times for T1 data as a list (in s)', argstr='-T1s %f %f %f')
TIs = traits.List(traits.Float, minlen=3, maxlen=3, desc='Inversion times for T1 data as a list (in s)',
argstr='-TIs %s', sep=' ')
T1Lists = traits.File(exists=True, desc='Filename of list of pre-defined TIs', argstr='-T1List %s')

# SPGR options
Expand Down

0 comments on commit cdb3a54

Please sign in to comment.