mne_bids.write_meg_crosstalk#

mne_bids.write_meg_crosstalk(fname, bids_path, verbose=None)[source]#

Write the Elekta/Neuromag/MEGIN crosstalk information to disk.

Parameters:
fnamepath-like

The path of the FIFF file containing the crosstalk information.

bids_pathBIDSPath

A mne_bids.BIDSPath instance with at least root and subject set, and that datatype is either 'meg' or None.

verbosebool | str | int | None

Control verbosity of the logging output. If None, use the default verbosity level. See the logging documentation and mne.verbose() for details. Should only be passed as a keyword argument.

Examples

>>> data_path = mne.datasets.testing.data_path(download=False) 
>>> crosstalk_fname = op.join(data_path, 'SSS', 'ct_sparse.fif') 
>>> bids_path = BIDSPath(subject='01', session='test',
...                      root=op.join(data_path, 'mne_bids')) 
>>> write_meg_crosstalk(crosstalk_fname, bids_path) 
Writing crosstalk file to ...sub-01_ses-test_acq-crosstalk_meg.fif

Examples using mne_bids.write_meg_crosstalk#

02. Convert MNE sample data to BIDS format

02. Convert MNE sample data to BIDS format

13. Anonymizing a BIDS dataset

13. Anonymizing a BIDS dataset