Skip to content

Commit

Permalink
fix command in example comment (#12545)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathieu Scheltienne authored Apr 18, 2024
1 parent 6b5a59d commit 321825b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/forward/left_cerebellum_volume_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@
# And display source positions in freeview::
#
# >>> from mne.utils import run_subprocess
# >>> mri_fname = subjects_dir + '/sample/mri/brain.mgz'
# >>> run_subprocess(['freeview', '-v', mri_fname, '-v',
# '%s:colormap=lut:opacity=0.5' % aseg_fname, '-v',
# '%s:colormap=jet:colorscale=0,2' % nii_fname,
# '-slice', '157 75 105'])
# >>> mri_fname = subjects_dir / "sample" / "mri" / "brain.mgz"
# >>> run_subprocess(["freeview", "-v", str(mri_fname), "-v",
# f"{aseg_fname}:colormap=lut:opacity=0.5",
# "-v", f"{nii_fname}:colormap=jet:colorscale=0,2",
# "--slice", "157", "75", "105"])

0 comments on commit 321825b

Please sign in to comment.