Skip to content

Commit

Permalink
Update python/mrtrix3/commands/5ttgen/odf.py
Browse files Browse the repository at this point in the history
Co-authored-by: Robert Smith <[email protected]>
  • Loading branch information
arkiev and Lestropie authored Oct 11, 2024
1 parent 1e9afad commit 006ebb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/mrtrix3/commands/5ttgen/odf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ def usage(base_parser, subparsers): # pylint: disable=unused-variable
parser.set_author("Arkiev D'Souza ([email protected]) & Robert E. Smith ([email protected])")
parser.set_synopsis('Generate a 5TT image from ODF images.')

parser.add_argument('template_odf_wm', type=app.Parser.ImageIn(), help='The input white-matter ODF')
parser.add_argument('template_odf_gm', type=app.Parser.ImageIn(), help='The input grey-matter ODF')
parser.add_argument('template_odf_csf', type=app.Parser.ImageIn(), help='The input cerebrospinal fluid ODF')
parser.add_argument('odf_wm', type=app.Parser.ImageIn(), help='The input white-matter ODF')
parser.add_argument('odf_gm', type=app.Parser.ImageIn(), help='The input grey-matter ODF')
parser.add_argument('odf_csf', type=app.Parser.ImageIn(), help='The input cerebrospinal fluid ODF')
parser.add_argument('mask_image', type=app.Parser.ImageIn(), help='The input binary brain mask image')
parser.add_argument('fTT_image', type=app.Parser.ImageOut(), help='The output 5TT image')

Expand Down

0 comments on commit 006ebb7

Please sign in to comment.