Skip to content

Commit

Permalink
responsemean: Fix terminal message for 1 b-value
Browse files Browse the repository at this point in the history
  • Loading branch information
Lestropie committed Sep 11, 2024
1 parent 7bd2a1d commit 0b27783
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/mrtrix3/commands/responsemean.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def execute(): #pylint: disable=unused-variable
data.append(subject)

app.console(f'Calculating mean RF across {len(data)} inputs, '
f'with {len(data[0])} {"b-values" if len(data[0])>1 else ""} '
f'with {len(data[0])} b-value{"s" if len(data[0])>1 else ""} '
f'and lmax={2*(len(data[0][0])-1)}')

# Old approach: Just take the average across all subjects
Expand Down

0 comments on commit 0b27783

Please sign in to comment.