Skip to content

Commit

Permalink
FIX - extra check override for no mri
Browse files Browse the repository at this point in the history
  • Loading branch information
jstout211 committed Feb 13, 2024
1 parent 6b21b62 commit 81b50f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nih2mne/make_meg_bids.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ def _input_checks(args):


args=parser.parse_args()
if (not args.mri_brik) and (not args.mri_bsight):
if (not args.mri_brik) and (not args.mri_bsight) and (not args.ignore_mri_checks):
raise ValueError('Must supply afni or brainsight coregistration')

#Initialize
Expand Down

0 comments on commit 81b50f9

Please sign in to comment.