What was new in previous releases?¶
Version 0.8 (2021-07-15)¶
This release brings numerous improvements and fixes based on feedback from our users, including those working with very large datasets. MNE-BIDS now handles previously-overlooked edge cases, offers a much more efficient way to store data on macOS and Linux (using symbolic links), and lays the groundwork for supporting BIDS derivatives, i.e., storing modified data.
Notable changes¶
You can now write preloaded and potentially modified data with
mne_bids.write_raw_bids()
by passingallow_preload=True
. This is a first step towards supporting derivative files.mne_bids.BIDSPath
now has property getters and setters for all BIDS entities. What this means is that you can now do things likebids_path.subject = '01'
instead ofbids_path.update(subject='01')
.We now support Deep Brain Stimulation (DBS) data.
The way we handle anatomical landmarks was greatly revamped to ensure weâre always using the correct coordinate systems. A new function,
mne_bids.get_anat_landmarks
, helps with extracting fiducial points from anatomical scans.When creating a BIDS dataset from FIFF files on macOS and Linux, MNE-BIDS can now optionally generate symbolic links to the original files instead of copies. Simply pass
symlink=True
tomne_bids.write_raw_bids()
. This can massively reduce the storage space requirements.
Detailed list of changes¶
Enhancements¶
The fields âDigitizedLandmarksâ and âDigitizedHeadPointsâ in the json sidecar of Neuromag data are now set to
true
orfalse
depending on whether any landmarks (NAS, RPA, LPA) or extra points are found inraw.info['dig']
, by Eduard Ort (#772)Updated the âRead BIDS datasetsâ example to use data from OpenNeuro, by Alex Rockhill (#753)
mne_bids.get_head_mri_trans()
is now more lenient when looking for the fiducial points (LPA, RPA, and nasion) in the MRI JSON sidecar file, and accepts a larger variety of landmark names (upper- and lowercase letters;'nasion'
instead of only'NAS'
), by Richard Höchenberger (#769)mne_bids.get_head_mri_trans()
gained a new keyword argumentt1_bids_path
, allowing for the MR scan to be stored in a different session or even in a different BIDS dataset than the electrophysiological recording, by Richard Höchenberger (#771)Add writing simultaneous EEG-iEEG recordings via
mne_bids.write_raw_bids()
. The desired output datatype must be specified in themne_bids.BIDSPath
object, by Richard Köhler (#774)mne_bids.write_raw_bids()
gained a new keyword argumentsymlink
, which allows to create symbolic links to the original data files instead of copying them over. Currently works forFIFF
files on macOS and Linux, by Richard Höchenberger (#778)mne_bids.BIDSPath
now has property getter and setter methods for all BIDS entities, i.e., you can now do things likebids_path.subject = 'foo'
and donât have to resort tobids_path.update()
. This also ensures youâll get proper completion suggestions from your favorite Python IDE, by Richard Höchenberger (#786)mne_bids.write_raw_bids()
now stores information about continuous head localization measurements (e.g., Elekta/Neuromag cHPI) in the MEG sidecar file, by Richard Höchenberger (#794)mne_bids.write_raw_bids()
gained a new parameterempty_room
that allows to specify an associated empty-room recording when writing an MEG data file. This information will be stored in theAssociatedEmptyRoom
field of the MEG JSON sidecar file, by Richard Höchenberger (#795)Added support for the new channel type
'dbs'
(Deep Brain Stimulation), which was introduced in MNE-Python 0.23, by Richard Köhler (#800)mne_bids.read_raw_bids()
now warns in many situations when it encounters a mismatch between the channels in*_channels.tsv
and the raw data, by Richard Höchenberger (#823)MNE BIDS now accepts
.mrk
head digitization files used in the KIT/Yokogawa/Ricoh MEG system, by Jean-RĂ©mi King and Stefan Appelhoff (#842)
API and behavior changes¶
Writing datasets via
write_raw_bids()
, will now never overwritedataset_description.json
file, by Adam Li (#765)When writing BIDS datasets, MNE-BIDS now tags them as BIDS 1.6.0 (we previously tagged them as BIDS 1.4.0), by Richard Höchenberger (#782)
mne_bids.read_raw_bids()
now passesallow_maxshield=True
to the MNE-Python reader function by default when reading FIFF files. Previously,extra_params=dict(allow_maxshield=True)
had to be passed explicitly, by Richard Höchenberger (#787)The
raw_to_bids
command has lost its--allow_maxshield
parameter. If writing a FIFF file, we will now always assume that writing data before applying a Maxwell filter is fine, by Richard Höchenberger (#787)mne_bids.BIDSPath.find_empty_room()
now first looks for anAssociatedEmptyRoom
field in the MEG JSON sidecar file to retrieve the empty-room recording; only if this information is missing, it will proceed to try and find the best-matching empty-room recording based on measurement date (i.e., fall back to the previous behavior), by Richard Höchenberger (#795)If
mne_bids.read_raw_bids()
encounters raw data with theSTI 014
stimulus channel and this channel is not explicitly listed in*_channels.tsv
, it is now automatically removed upon reading, by Richard Höchenberger (#823)mne_bids.get_anat_landmarks()
was added to clarify and simplify the process of generating landmarks that now need to be passed tomne_bids.write_anat()
; this deprecates the argumentsraw
,trans
andt1w
ofmne_bids.write_anat()
, by Alex Rockhill and Alexandre Gramfort (#827)write_raw_bids()
now accepts preloaded raws as input with some caveats if the new parameterallow_preload
is explicitly set toTrue
. This enables some preliminary support for items such as uncommon file formats, generated data, and processed derivatives, by Sin Kim (#819)MNE-BIDS now writes all TSV data files with a newline character at the end of the file, complying with UNIX/POSIX standards, by Stefan Appelhoff (#831)
Requirements¶
For downloading OpenNeuro datasets,
openneuro-py
is now required to run the examples and build the documentation, by Alex Rockhill (#753)MNE-BIDS now depends on setuptools. This package is normally installed by your Python distribution automatically, so we donât expect any users to be affected by this change, by Richard Höchenberger (#794)
MNE-BIDS now requires Python 3.7 or higher, because Python 3.6 is soon reaching its end of life.
Bug fixes¶
mne_bids.make_report()
now (1) detects male/female sex and left/right handedness irrespective of letter case, (2) will parse agender
column if nosex
column is found inparticipants.tsv
, and (3) reports sex as male/female instead of man/woman, by Alex Rockhill (#755)The
mne.Annotations
BAD_ACQ_SKIP
â added by the acquisition system toFIFF
files â will now be preserved when reading raw data, even if these time periods are not explicitly included in*_events.tsv
, by Richard Höchenberger and Alexandre Gramfort (#754 and #762)mne_bids.write_raw_bids()
will handle different cased extensions for EDF files, such as edf and EDF by Adam Li (#765)mne_bids.inspect_dataset()
didnât handle certain filenames correctly on some systems, by Richard Höchenberger (#769)mne_bids.write_raw_bids()
now works across data types withoverwrite=True
, by Alexandre Gramfort (#791)mne_bids.read_raw_bids()
didnât always replace all traces of the measurement date and time stored in the raw data with the date found in *_scans.tsv, by Richard Höchenberger (#812, #815)mne_bids.read_raw_bids()
crashed when the (optional)acq_time
column was missing in*_scans.tsv
, by Alexandre Gramfort (#814)mne_bids.write_raw_bids()
doesnât crash anymore if the designated output directory contains the string"tsv"
, by Richard Höchenberger (#833)mne_bids.get_head_mri_trans()
gave incorrect results when the T1 image was not in LIA format, now all formats function properly, by Alex Rockhill and Alexandre Gramfort (#827)mne_bids.get_head_mri_trans()
andmne_bids.write_anat()
used a T1w image but depended specifically on the freesurfer T1w image. Now the FreeSurfer subjects directory is used, by Alex Rockhill and Alexandre Gramfort (#827)
Version 0.7 (2021-03-22)¶
This release brings numerous enhancements and bug fixes that enhance reading and writing BIDS data, and improve compatibility with the latest BIDS specifications.
Notable changes¶
Channel names in
*_channels.tsv
and*_electrodes.tsv
files now always take precedence over the names stored in the raw files.When reading data where the same trial type refers to different trigger values, we will now automatically create hierarchical event names in the form of
trial_type/value1
, trial_type/value2` etc.mne_bids.write_raw_bids()
now allows users to specify a format conversion via the newformat
parameter.Various improvements to data reading and
mne_bids.BIDSPath
make working with real-life data easier.Many bug fixes in
mne_bids.write_raw_bids()
and in the MNE-BIDS Inspector.
Authors¶
Detailed list of changes¶
Enhancements¶
Some datasets out in the real world have a non-standard
stim_type
instead of atrial_type
column in*_events.tsv
.mne_bids.read_raw_bids()
now makes use of this column, and emits a warning, encouraging users to rename it, by Richard Höchenberger (#680)When reading data where the same event name or trial type refers to different event or trigger values, we will now create a hierarchical event name in the form of
trial_type/value
, e.g.stimulus/110
, by Richard Höchenberger (#688)When reading data via
mne_bids.read_raw_bids()
, the channel names specified in the BIDS*_channels.tsv
and*_electrodes.tsv
files now always take precedence over (and do not need to match) the channel names stored in the raw files anymore, by Adam Li and Richard Höchenberger (#691, #704)Improve the
Convert iEEG data to BIDS
tutorial to include a note on how BIDS and MNE-Python coordinate frames are handled, by Adam Li (#717)More detailed error messages when trying to write modified data via
mne_bids.write_raw_bids()
, by Richard Höchenberger (#719)If
check=True
,mne_bids.BIDSPath
now checks thespace
entity to be valid according to BIDS specification Appendix VIII, by Stefan Appelhoff (#724)Data types that are currently unsupported by MNE-BIDS (e.g.
dwi
,func
) can now be used inmne_bids.BIDSPath
by settingcheck=False
, by Adam Li (#744)Arbitrary file names can now be represented as a BIDSPath` by passing the entire name as
suffix
and settingcheck=False
, by Adam Li (#729)Add support for MNEâs flux excitation channel (
exci
), by Maximilien Chaumon (#728)mne_bids.BIDSPath.match()
gained a new parametercheck
; when settingcheck=True
,match()
will only return paths that conform to BIDS, by Richard Höchenberger (#726)BIDSPath.root
now automatically expands~
to the userâs home directory, by Richard Höchenberger (#725)
API and behavior changes¶
Add
format
kwarg tomne_bids.write_raw_bids()
that allows users to specify if they want to force conversion toBrainVision
orFIF
file format, by Adam Li (#672)mne_bids.read_raw_bids()
now stores theparticipant_id
value fromparticipants.tsv
inraw.info['subject_info']['his_id']
, not inraw.info['subject_info']['participant_id']
anymore, by Richard Höchenberger (#745)
Requirements¶
Bug fixes¶
Fix writing MEGIN Triux files, by Alexandre Gramfort (#674)
Anonymization of EDF files in
write_raw_bids()
will now convert recording date to01-01-1985 00:00:00
if anonymization takes place, while setting the recording date in thescans.tsv
file to the anonymized date, thus making the file EDF/EDFBrowser compliant, by Adam Li (#669)mne_bids.write_raw_bids()
will not overwrite an existingcoordsystem.json
anymore, unless explicitly requested, by Adam Li (#675)mne_bids.read_raw_bids()
now properly handles datasets without event descriptions, by Richard Höchenberger (#680)mne_bids.stats.count_events()
now handles files without atrial_type
orstim_type
column gracefully, by Richard Höchenberger (#682)mne_bids.read_raw_bids()
now correctly treatscoordsystem.json
as optional for EEG and MEG data, by Diego Lozano-Soldevilla (#691)mne_bids.read_raw_bids()
now ignoresexclude
parameters passed viaextra_params
, by Richard Höchenberger (#703)mne_bids.write_raw_bids()
now retains original event IDs in thevalue
column of*_events.tsv
, by Richard Höchenberger (#708)Fix writing correct
iEEGCoordinateSystemDescription
, by Stefan Appelhoff (#706)FIF files that were split due to filesize limitations (using the
_split-<label>
entity), are now all listed inscans.tsv
, as recommended by BIDS, by Eduard Ort (#710)The
mne_bids inspect
command now automatically tries to discover flat channels by default; this should have been the case all along, but the default parameter was set incorrectly, by Richard Höchenberger (#726)mne_bids.inspect_dataset()
would sometimes open the same file multiple times, by Richard Höchenberger (#726)mne_bids.inspect_dataset()
would try to open the SSP projector selection window for non-MEG data, by Richard Höchenberger (#726)
Version 0.6 đ (2020-12-16)¶
These are challenging days for many of us, and to make your lives ever so slightly easier, weâve been working hard to deliver this early Christmas present đ And even if you do not celebrate Christmas, we are quite certain you will like what we got for you! So â what are you waiting for? Itâs time to unwrap!
Notable changes¶
The new Inspector, which can be invoked via
mne_bids.inspect_dataset()
, allows you to interactively explore your raw data, change the bad channels selection, and editmne.Annotations
. It also performs automated detection of flat data segments or channels, to assist you during visual inspection. The capabilities of the inspector will be further expanded in upcoming releases of MNE-BIDS.To further assist you during data inspection, we have added a function to summarize all events present in a dataset,
mne_bids.stats.count_events()
.Sidecar JSON files can now be updated using a template via
mne_bids.update_sidecar_json()
.You can now read and write FLASH MRI images using
mne_bids.write_anat()
. We also fixed some issues with MRI defacing along the way.Event durations are now preserved upon reading and writing data (we used to set all event durations to zero before).
Authors¶
Detailed list of changes¶
Enhancements¶
The function
mne_bids.print_dir_tree()
has a new parameterreturn_str
which allows it to return a str of the dir tree instead of printing it, by Stefan Appelhoff (#600)The function
mne_bids.print_dir_tree()
has a new parameterreturn_str
which allows it to return a str of the dir tree instead of printing it, by Stefan Appelhoff (#600)mne_bids.write_raw_bids()
now preserves event durations when writingmne.Annotations
to*_events.tsv
files, andmne_bids.read_raw_bids()
restores these durations upon reading, by Richard Höchenberger (#603)Writing BrainVision data via
mne_bids.write_raw_bids()
will now set the unit of EEG channels to ”V for enhanced interoperability with other software, by Alexandre Gramfort, Stefan Appelhoff, and Richard Höchenberger (#610)New function
mne_bids.stats.count_events()
to easily summarize all the events present in a dataset, by Alexandre Gramfort (#629)Add
mne_bids.update_sidecar_json()
to allow updating sidecar JSON files with a template, by Adam Li and Austin Hurst (#601)Add support for anonymizing EDF and BDF files without converting to BrainVision format, by Austin Hurst (#636)
Add support for writing FLASH MRI data with
mne_bids.write_anat()
, by Alexandre Gramfort (#641)Add interactive data inspector
mne_bids.inspect_dataset()
, by Richard Höchenberger (#561)Do not complain about missing events if itâs likely weâre dealing with resting-state data in
mne_bids.write_raw_bids()
, by new contributor Ethan Knights (#631)
API changes¶
When passing event IDs to
mne_bids.write_raw_bids()
viaevents_data
without an accompanying event description inevent_id
, we will now raise a ValueError. This ensures that accidentally un-described events wonât get written unnoticed, by Richard Höchenberger (#603)The
mne_bids.get_head_mri_trans()
now has a parameterextra_params
to allow passing arguments specific to a file format, by Mainak Jas (#638)The first parameter of
mne_bids.write_anat()
is now calledimage
and nott1w
, by Alexandre Gramfort (#641)
Requirements¶
Writing BrainVision data now requires
pybv
0.4 or later.
Bug fixes¶
Make sure large FIF files with splits are handled transparently on read and write, by Alexandre Gramfort (#612)
The function
mne_bids.write_raw_bids()
now outputs*_electrodes.tsv
and*_coordsystem.json
files for EEG/iEEG data that are BIDS-compliant (only contain subject, session, acquisition, and space entities), by Adam Li (#601)Make sure writing empty-room data with anonymization shifts the session back in time, by Alexandre Gramfort (#611)
Fix a bug in
mne_bids.write_raw_bids()
, where passing raw data withmne.Annotations
set and theevent_id
dictionary not containing themne.Annotations
descriptions as keys would raise an error, by Richard Höchenberger (#603)Fix a bug in
mne_bids.write_raw_bids()
when passing raw MEG data with Internal Active Shielding (IAS) from Triux system, by Alexandre Gramfort (#616)Fix a bug in
mne_bids.write_raw_bids()
, where original format of data was not kept when writing to FIFF, by Alexandre Gramfort, Stefan Appelhoff, and Richard Höchenberger (#610)Fix a bug where conversion to BrainVision format was done even when non-Volt channel types were present in the data (BrainVision conversion is done by
pybv
, which currently only supports Volt channel types), by Stefan Appelhoff (#619)Ensure sidecar files (tsv and
json
) are always read and written in UTF-8, by Richard Höchenberger (#625)Fix a bug where
participants.tsv
was not being appended to correctly when it contained a subset ofhand
,age
andsex
, by Adam Li (#648)mne_bids.copyfiles.copyfile_eeglab()
didnât handle certain EEGLAB files correctly, by Richard Höchenberger (#653)Fix bug where images with different orientations than the T1 used to define the landmarks were defaced improperly, by Alex Rockhill (#651)
Version 0.5 (2020-10-22)¶
This is a big release with lots of changes, many of them breaking existing code. But do not fear: migration is easy, and you will love what we have been cooking for you!
Notable changes¶
We introduce
mne_bids.BIDSPath
, a new class for all BIDS file and folder operations. All functions in MNE-BIDS that previously accepted filenames and folder locations (e.g.bids_root
) have been updated to work withBIDSPath
. Others have been removed. Consequently, you will need to update your existing code, too. See theAPI changes
section for an overview of which functions have changed or have been removed, and follow this introduction and our to learn about the basics ofBIDSPath
. Donât worry â itâs going to be a breeze! đ€MNE-BIDS now requires MNE-Python 0.21.
The new function
mne_bids.make_report()
can help you populate a paragraph of your next paperâs methods section!You can now interactively mark channels as bad using
mne_bids.mark_bad_channels
.Elekta/Neuromag/MEGIN fine-calibration and crosstalk files can now be stored in your BIDS dataset via
mne_bids.write_meg_calibration()
andmne_bids.write_meg_crosstalk()
.When writing a raw file that contains annotations, these will now be converted to and stored as events by
mne_bids.write_raw_bids()
.
Authors¶
The following people have contributed to this release of MNE-BIDS:
Detailed list of changes¶
Enhancements¶
Introduce
mne_bids.BIDSPath
, the new universal MNE-BIDS working horse for file operations, by Adam Li, Alex Rockhill, and Richard Höchenberger (#496, #507, #511, #514, #542)The new function
mne_bids.make_report()
and its corresponding CLI function,make_report
, produce human-readable summary of the BIDS dataset, by Adam Li (#457)read_raw_bids()
now readsparticipants.tsv
data, by Adam Li (#392)mne_bids.get_entity_vals()
has gainedignore_*
keyword arguments to exclude specific values from the list of results, e.g. the entities for a particular subject or task, by Richard Höchenberger (#409)mne_bids.write_raw_bids()
now uses thespace
BIDS entity when writing iEEG electrodes and coordinate frames, by Adam Li (#390)convert_ieeg_to_bids
to now use sample ECoG EDF data, by Adam Li (#390)mne_bids.write_raw_bids()
now writesCoordinateSystemDescription
as specified in BIDS Specification if CoordinateSystem is MNE-compatible, by Adam Li (#416)mne_bids.write_raw_bids()
andmne_bids.read_raw_bids()
now handle scalp EEG if Captrak coordinate system and NAS/LPA/RPA landmarks are present, by Adam Li (#416)write_raw_bids()
now adds citations to theREADME
, by Alex Rockhill (#463)make_dataset_description()
now has an additional parameterdataset_type
to set the recommended fieldDatasetType
(defaults to"raw"
), by Stefan Appelhoff (#472)mne_bids.copyfiles.copyfile_brainvision()
now has ananonymize
parameter to control anonymization, by Stefan Appelhoff (#475)mne_bids.read_raw_bids()
andmne_bids.write_raw_bids()
now map respiratory (RESP
) channel types, by Richard Höchenberger (#482)When impedance values are available from a
raw.impedances
attribute, MNE-BIDS will now write animpedance
column to*_electrodes.tsv
files, by Stefan Appelhoff (#484)mne_bids.write_raw_bids()
writes out status_description with'n/a'
values into the channels.tsv sidecar file, by Adam Li (#489)Added a new function
mne_bids.mark_bad_channels
and command line interfacemark_bad_channels
which allows updating of the channel status (bad, good) and description of an existing BIDS dataset, by Richard Höchenberger (#491)mne_bids.read_raw_bids()
correctly maps all specifiedhandedness
andsex
options to MNE-Python, instead of only an incomplete subset, by Richard Höchenberger (#550)mne_bids.write_raw_bids()
only writes aREADME
if it does not already exist, by Adam Li (#489)Allow
mne_bids.write_raw_bids()
to write EEG/iEEG files from Persyst usingmne.io.read_raw_persyst
function, by Adam Li (#546)mne_bids.print_dir_tree()
now works if apathlib.Path
object is passed, by Adam Li (#555)Allow writing of Elekta/Neuromag/MEGIN fine-calibration and crosstalk data via the new functions
mne_bids.write_meg_calibration()
andmne_bids.write_meg_crosstalk()
, and retrieval of the file locations viaBIDSPath.meg_calibration_fpath
andBIDSPath.meg_crosstalk_fpath
, by Richard Höchenberger (#562)Allow
mne_bids.write_raw_bids()
to write EEG/iEEG files from Nihon Kohden usingmne.io.read_raw_nihon
function, by Adam Li (#567)Allow
mne_bids.get_entity_vals()
to ignore datatypes usingignore_datatypes
kwarg, by Adam Li (#578)Add
with_key
keyword argument tomne_bids.get_entity_vals()
to allow returning the full entity strings, by Adam Li (#578)mne_bids.write_raw_bids()
now also writesmne.io.Raw.annotations
to*_events.tsv
, by Adam Li and Richard Höchenberger (#582)BIDS conformity: The
_part-%d
entity is now called_split-
throughout BIDS, MNE, and MNE-BIDS, by Stefan Appelhoff (#417)
Bug fixes¶
Fix bug in
write_raw_bids()
where raw.info[âsubject_infoâ] can beNone
, by Adam Li (#392)read_raw_bids()
will now read all channels fromelectrodes.tsv
. Channels with coordinates'n/a'
will also be included but their location set tonp.nan
in theraw
object, by Adam Li (#393)Do not change an events array passed to
write_raw_bids()
via theevents_data
keyword argument, by Alexandre Gramfort (#402)Fix
mne_bids.read_raw_bids()
to correctly scale coordinate to meters inelectrodes.tsv
, and also read possible iEEG coordinate frames via the âspaceâ BIDs-entity, by Adam Li (#390)Fix coordystem reading in
mne_bids.read_raw_bids()
for cases where theacq
is undefined, by Stefan Appelhoff (#440)Calling
write_raw_bids()
withoverwrite==True
will preserve existing entries inparticipants.tsv
andparticipants.json
if the new dataset does not contain these entries, by Adam Li (#442)BIDS entity
recording
should be represented asrec
in filenames, by Adam Li (#446)Fix
write_raw_bids()
wheninfo['dig']
isNone
, by Alexandre Gramfort (#452)mne_bids.write_raw_bids()
now appliesverbose
to the functions that read events, by Evgenii Kalenkovich (#453)Fix
raw_to_bids
CLI tool to work with non-FIFF files, by Austin Hurst (#456)Fix
mne_bids.write_raw_bids()
to output BTI and CTF data in thescans.tsv
according to the BIDS specification, by Adam Li (#465)mne_bids.read_raw_bids()
now populates the list of bad channels based on*_channels.tsv
if (and only if) astatus
column is present, ignoring similar metadata stored in raw file (which will still be used if nostatus
column is present in*_channels.tsv
), by Richard Höchenberger (#499)Ensure that
Raw.info['bads']
returned bymne_bids.read_raw_bids()
is always a list, by Richard Höchenberger (#501)mne_bids.write_raw_bids()
now ensures that all parts of themne.io.Raw
instance stay in sync when using anonymization to shift dates, e.g.raw.annotations
, by Richard Höchenberger (#504)Fix
mne_bids.write_raw_bids()
failed BIDS validator forraw.info['dig'] = []
, by Alex Rockhill (#505)Ensure
mne_bids.print_dir_tree()
prints files and directories in alphabetical order, by Richard Höchenberger (#563)mne_bids.write_raw_bids()
now writes the correct coordinate system names to the JSON sidecars, by Richard Höchenberger (#585)
API changes¶
In the transition to using mne_bids.BIDSPath
, the following functions have been updated:
mne_bids.write_anat()
now accepts amne_bids.BIDSPath
instead of entities as keyword arguments, by Adam Li (#575)In
mne_bids.write_raw_bids()
,mne_bids.read_raw_bids()
, andmne_bids.get_head_mri_trans()
, thebids_basename
andbids_root
keyword arguments have been removed. The functions now expectbids_path
, an instance ofmne_bids.BIDSPath
, by Adam Li (#525)
The following functions have been removed:
mne_bids.make_bids_basename
has been removed. Usemne_bids.BIDSPath
directly, by Adam Li (#511)mne_bids.get_matched_empty_room
has been removed. Usemne_bids.BIDSPath.find_empty_room()
instead, by Richard Höchenberger (#421, #535)mne_bids.make_bids_folders
has been removed. Usemne_bids.BIDSPath.mkdir()
instead, by Adam Li (#543)
Further API changes:
The functions
mne_bids.write_anat()
,mne_bids.make_report()
,mne_bids.get_entity_vals()
andmne_bids.get_datatypes()
use now expect aroot
keyword argument instead ofbids_root
, Adam Li (#556)Added namespace
mne_bids.path
which hosts path-like functionality for MNE-BIDS, by Adam Li (#483)The
datasets.py
module was removed fromMNE-BIDS
and its utility was replaced bymne.datasets
, by Stefan Appelhoff (#471)mne_bids.make_dataset_description()
now accepts the argumentoverwrite
, which will reset all fields ifTrue
. IfFalse
, user-provided fields will no longer be overwritten bymne_bids.write_raw_bids()
when itsoverwrite
argument isTrue
, unless new values are supplied, by Alex Rockhill (#478)A function for retrieval of BIDS entity values from a filename,
mne_bids.get_entities_from_fname()
, is now part of the public API (it used to be a private function calledmne_bids.path._parse_bids_filename
), by Richard Höchenberger and Adam Li (#487, #496)Entity names passed to
mne_bids.get_entity_vals()
must now be in the âlongâ format, e.g.subject
instead ofsub
etc., by Richard Höchenberger (#501)It is now required to specify the Power Line Frequency to use
write_raw_bids()
, while in 0.4 it could be estimated, by Alexandre Gramfort and Alex Rockhill (#506)Rename
mne_bids.get_modalities
tomne_bids.get_datatypes()
for getting data types from a BIDS dataset, by Alexandre Gramfort (#253)
Version 0.4 (2020-04-04)¶
Changelog¶
Added automatic conversion of FIF to BrainVision format with warning for EEG only data and conversion to FIF for meg non-FIF data, by Alex Rockhill (#237)
Add possibility to pass raw readers parameters (e.g. allow_maxshield) to
read_raw_bids()
to allow reading BIDS-formatted data before applying maxfilter, by Sophie HerbstNew feature in
mne_bids.write.write_anat
for shear deface of mri, by Alex Rockhill (#271)Added option to anonymize by shifting measurement date with anonymize parameter, in accordance with BIDS specifications, by Alex Rockhill (#280)
Added
mne_bids.get_matched_empty_room
to get empty room filename matching a data file, by Mainak Jas (#290)Add ability for
mne_bids.get_head_mri_trans()
to read fiducial points from fif data without applying maxfilter, by Maximilien Chaumon (#291)Added landmark argument to
write_anat()
to pass landmark location directly for deface, by Alex Rockhill (#292)Standardized bids_root and output_path arguments in
read_raw_bids()
,write_raw_bids()
, andmake_bids_folders
to just bids_root, by Adam Li (#303)Add existence check for
write_raw_bids()
beforemake_dataset_description()
is called, by Adam Li (#331)Update scans.tsv writer to adhere to MNE-Python v0.20+ where meas_date is stored as a
datetime
object, by Adam Li (#344)read_raw_bids()
now reads in sidecar json files to set, or estimate Power Line Frequency, by Adam Li (#341)Allow FIF files with multiple parts to be read using
read_raw_bids()
, by Teon Brooks (#346)Added handedness to participant files, by Dominik Welke (#354)
MNE-BIDS can now handle a paths that are
pathlib.Path
objects (in addition to strings), by Richard Höchenberger (#362)The documentation is now available for all MNE-BIDS versions via a dropdown menu, by Stefan Appelhoff (#370)
Bug¶
Fixed broken event timing broken by conversion to BV in
write_raw_bids()
, by Alex Rockhill (#294)Support KIT related files .elp and .hsp BIDS conversion in
write_raw_bids()
, by Fu-Te Wong (#323)Enforce that the name arg is a required field for
mne_bids.make_dataset_description()
, by Teon Brooks and Stefan Appelhoff (#342)Fix writing to scans.tsv file when anonymization is turned on, by Adam Li (#352)
Fix
read_raw_bids()
to properly read in sidecar json even if a similarly named copy lives inside âderivatives/â sub-folder, by Adam Li (#350)Fix
read_raw_bids()
to properly read in events.tsv sidecar if the âtrial_typeâ description has a â#â character in it, by Adam Li (#355)Avoid cases in which NumPy would raise a FutureWarning when populating TSV files, by Richard Höchenberger (#372)
Remove events with an unknown onset, and assume unknown event durations to be zero, when reading BIDS data via
read_raw_bids()
, by Richard Höchenberger (#375)
Authors¶
People who contributed to this release (in alphabetical order):
Version 0.3 (2019-12-17)¶
Changelog¶
New function
mne_bids.get_modalities
for getting data types from a BIDS dataset, by Stefan Appelhoff (#253)New function
mne_bids.get_entity_vals()
allows to get a list of instances of a certain entity in a BIDS directory, by Mainak Jas and Stefan Appelhoff (#252)mne_bids.print_dir_tree()
now accepts an argumentmax_depth
which can limit the depth until which the directory tree is printed, by Stefan Appelhoff (#245)New command line function exposed
cp
for renaming/copying files including automatic doc generation âCLIâ, by Stefan Appelhoff (#225)read_raw_bids()
now also reads channels.tsv files accompanying a raw BIDS file and sets the channel types accordingly, by Stefan Appelhoff (#219)Add example
convert_mri_and_trans
for usingget_head_mri_trans()
andwrite_anat()
, by Stefan Appelhoff (#211)get_head_mri_trans()
allows retrieving atrans
object from a BIDS dataset that contains MEG and T1 weighted MRI data, by Stefan Appelhoff (#211)write_anat()
allows writing T1 weighted MRI scans for subjects and optionally creating a T1w.json sidecar from a suppliedtrans
object, by Stefan Appelhoff (#211)read_raw_bids()
will return the the raw object withraw.info['bads']
already populated, whenever achannels.tsv
file is present, by Stefan Appelhoff (#209)read_raw_bids()
is now more likely to find event and channel sidecar json files, by Marijn van Vliet (#233)Enhanced
read_raw_bids()
andwrite_raw_bids()
for iEEG coordinates along with example and unit test, by Adam Li (#335)
Bug¶
Fixed bug in
mne_bids.datasets.fetch_faces_data
where downloading multiple subjects was impossible, by Stefan Appelhoff (#262)Fixed bug where
read_raw_bids()
would throw a ValueError upon encountering strings in the âonsetâ or âdurationâ column of events.tsv files, by Stefan Appelhoff (#234)Allow raw data from KIT systems to have two marker files specified, by Matt Sanderson (#173)
API¶
read_raw_bids()
no longer optionally returnsevents
andevent_id
but returns the raw object withmne.Annotations
, whenever anevents.tsv
file is present, by Stefan Appelhoff (#209)
Authors¶
People who contributed to this release (in alphabetical order):
Version 0.2 (2019-04-26)¶
Changelog¶
Add a reader for BIDS compatible raw files, by Mainak Jas (#135)
Bug¶
Normalize the length of the branches in
mne_bids.print_dir_tree()
by the length of the root path, leading to more adequate visual display, by Stefan Appelhoff (#192)Assert a minimum required MNE-version, by Dominik Welke (#166)
Add function in mne_bids.utils to copy and rename CTF files
mne_bids.utils.copyfile_ctf
, by Romain Quentin (#162)Encoding of BrainVision .vhdr/.vmrk files is checked to prevent encoding/decoding errors when modifying, by Dominik Welke (#155)
The original units present in the raw data will now correctly be written to channels.tsv files for BrainVision, EEGLAB, and EDF, by Stefan Appelhoff (#125)
Fix logic with inferring unknown channel types for CTF data, by Mainak Jas (#129)
Fix the file naming for FIF files to only expose the part key-value pair when files are split, by Teon Brooks (#137)
Allow files with no stim channel, which could be the case for example in resting state data, by Mainak Jas (#167)
Better handling of unicode strings in TSV files, by Mainak Jas (#172)
Fix separator in scans.tsv to always be /, by Matt Sanderson (#176)
Add seeg to
mne_bids.utils._handle_datatype
when determining the kind of ieeg data, by Ezequiel Mikulan (#180)Fix problem in copying CTF files on Network File System due to a bug upstream in Python, by Mainak Jas (#174)
Fix problem in copying BTi files. Now, a utility function ensures that all the related files such as config and headshape are copied correctly, by Mainak Jas (#135)
Fix name of âsampleâ and âvalueâ columns on events.tsv files, by Ezequiel Mikulan (#185)
Update function to copy KIT files to the meg directory, by Matt Sanderson (#187)
API¶
make_dataset_description()
is now available frommne_bids
main namespace, all copyfile functions are available frommne_bids.copyfiles
namespace, by Stefan Appelhoff (#196)Add support for non maxfiltered .fif files, by Maximilien Chaumon (#171)
Remove support for Neuroscan
.cnt
data because its support is no longer planned in BIDS, by Stefan Appelhoff (#142)Remove support for Python 2 because it is no longer supported in MNE-Python, by Teon Brooks (#141)
Remove Pandas requirement to reduce number of dependencies, by Matt Sanderson (#122)
Use more modern API of event_from_annotations in MNE for extracting events in .vhdr and .set files, by Mainak Jas (#167)
Authors¶
People who contributed to this release (in alphabetical order):
Version 0.1 (2018-11-05)¶
Changelog¶
Add example for how to rename BrainVision file triplets: rename_brainvision_files.py, by Stefan Appelhoff (#104)
Add function to fetch BrainVision testing data
mne_bids.datasets.fetch_brainvision_testing_data
, by Stefan Appelhoff (#104)Add support for EEG and a corresponding example: make_eeg_bids.py, by Stefan Appelhoff (#78)
Update
mne_bids.raw_to_bids
to work for KIT and BTi systems, by Teon Brooks (#16)Add support for iEEG and add
mne_bids.make_bids_folders
andmne_bids.make_bids_folders
, by Chris Holdgraf (#28 and #37)Add command line interface, by Teon Brooks (#31)
Add
mne_bids.print_dir_tree()
for visualizing directory structures and restructuring package to be more open towards integration of other modalities (iEEG, EEG), by Stefan Appelhoff (#55)Automatically generate participants.tsv, by Matt Sanderson (#70)
Add support for KIT marker files to be exported with raw data, by Matt Sanderson (#114)
Bug¶
Correctly handle the case when measurement date is not available, by Mainak Jas (#23)
Fix counting of miscellaneous channels, by Matt Sanderson (#49)
The source data is now copied over to the new BIDS directory. Previously this was only true for FIF data, by Stefan Appelhoff (#55)
Fix ordering of columns in scans.tsv, by Matt Sanderson (#68)
Fix bug in how artificial trigger channel STI014 is handled in channels.tsv for KIT systems, by Matt Sanderson (#72)
Fix channel types for KIT system in channels.tsv, by Matt Sanderson (#76)
Fix the way FIF files are named to satisfy the BIDS part parameters of the filename construction, Teon Brooks (#102)
Fix how overwriting of data is handled, by Matt Sanderson (#99)
Authors¶
People who contributed to this release (in alphabetical order):