Skip to content

Latest commit

 

History

History
273 lines (178 loc) · 6.62 KB

CHANGELOG.rst

File metadata and controls

273 lines (178 loc) · 6.62 KB

Changes

Version 0.9.6

2018-10-23

  • Fixed jacksheet parsing
  • Failure to add MNI coordinates to contacts or pairs no longer critical

Version 0.9.5

2018-10-12

  • Added MNICoordinatesReader to read MNI coordinates files
  • MNI coordinates now get added to contacts and pairs whenever they aren't already present

Version 0.9.4

2018-10-4

  • Added stim_params accessor to unpack the stim_params field

Bug fixes:

  • LocationSearch events are 'task_events' by default, similar to PS
  • EEGReader now uses the reader's subject, experiment, session when determining full EEG filename whenever possible

Version 0.9.3

2018-08-17

New features:

  • Added support for reading MATLAB montage files (#199)

Bug fixes:

  • Fixed issue reading certain sources.json files (#195)
  • Fixed issue loading partial sessions (#204)
  • Fixed issues loading PS4_FR data (#211, #200)
  • load_eeg can now load periods entirely preceding an event (#209)

Version 0.9.2

2018-08-08

  • Ignore events with negative eegoffset values when loading EEG data (#192).

Version 0.9.1

2018-08-07

  • Fixed issues loading pyFR data (#180)
  • Fixed loading of YC events (#182)
  • Fixed loading of jacksheets with tabs instead of spaces (#185)
  • Breaking change: removed to_xyz methods (#187)

Version 0.9.0

2018-08-03

New features:

  • Added initial support for caching some data types (#143)
  • Added a new tutorial to the documentation (#151)

Improvements:

  • Improved the reading EEG metadata for resumed sessions (#139)
  • Taught CMLReader.load_events how to handle string arguments in addition to lists (#150)
  • Ramulator HDF5 reader now handles missing channels without crashing (#158)
  • Updated EEGReader to use rel_start as the start time given to EEGContainer (#167)
  • Allowed the use of contacts data for the scheme keyword argument in CMLReader.load_eeg (#169)
  • Made get_data_index a static method of CMLReader to simplify imports (#170)

Bug fixes:

  • Duplicated channels no longer cause issues when loading Ramulator HDF5 files (#142)
  • Fixed low-level Ramulator readers to get the most recent timestamped directory (#152)
  • Ensured events can be read for PS and TH tasks (#154, #160)

Version 0.8.1

2018-07-23

This is a minor update with the following changes and additions:

  • Added shortcuts for common queries with pandas accessors (#133)
  • Deferred path finding until necessary (#135)
  • Significantly improved read speed for split EEG data (#137)

Version 0.8.0

2018-07-19

  • Added support for loading pyFR data (#117)
  • Simplified EEG loading by removing the option to load directly via epochs (#125)
  • Renamed the class holding results from CMLReader.load_eeg to EEGContainer to avoid confusion with the PTSA TimeSeries class (#126)
  • Added a new CMLReader.load_events classmethod to load events from multiple subjects and/or experiments (#129)
  • Added support for loading multisession EEG data (#130)

Version 0.7.2

2018-07-17

  • Improved conversion of EEG data to PTSA format (#107)
  • Fixed loading events for PS2 and PS4 (#110, #112)
  • Improved error message when trying to load EEG with an empty events DataFrame (#114)

Version 0.7.1

2018-07-12

New feature:

  • Results of get_data_index are now cached using functools.lru_cache (#101).

Bug fix:

  • Magic importing of reader classes didn't work if not in a specific working directory (#104). Fixed in PR #105.

Version 0.7.0

2018-07-06

User-facing changes:

  • Localization and montage numbers are now converted to integers instead of being strings (#91)
  • Fixed loading of montage data for subjects with a montage number other than 0 (#95)
  • Added preliminary support for loading ltp data (#97)

Other changes:

  • CI testing updated to use an environment variable to specify what Python version to run (#93)
  • Test data gets written to a temporary directory instead of polluting the cmlreaders.test.data package (#96)
  • Reader classes are automatically discovered instead of having to specify them in cmlreaders/readers/__init__.py (#99)

Version 0.6.0

2018-06-29

This release fixes several bugs with EEG reading when passing a referencing scheme and improves performance when loading pairs/contacts data. Highlights:

  • Adds and improves existing test cases for rereferencing EEG data
  • Improved load speed of pairs.json/contacts.json by about 2 orders of magnitude (#89)
  • Speeds up loading of split EEG data when specifying a referencing scheme by only loading the required data (#85)

Version 0.5.0

2018-06-26

New features:

  • Allow globally setting the root directory with an environment variable (#46)
  • Added a function to check if EEG data can be rereferenced
  • Automatically determine montage and localization numbers when possible (#77)
  • Added a fromfile method to classes based on BaseCMLReader to more easily directly load specific data types (#79)

Improvements:

  • Added support for reading EEG data from restarted sessions (#68)
  • Improved the ergonomics of passing a scheme keyword argument to rereference EEG data (#70)
  • Make channel filtering via the scheme keyword argument more explicit (#80)

Bug fixes:

  • Handle loading PS4 events (#47)
  • Fixed paths with respect to montage/localization confusion (#62)
  • Fixed the CSVReader to correctly read jacksheets (#65)
  • Handle gaps in contact numbers when reading EEG data (#63)

Version 0.4.0

2018-06-06

  • Implemented custom TimeSeries representation that can be converted to PTSA or MNE format
  • Implemented EEG reader with support for loading a full session or event-based subset
  • Updated getting started guide and documentation

Version 0.3.1

2018-05-24

  • Minor bugfix to allow conda package to build correctly

Version 0.3.0

2018-05-24

  • Updated API to use .load() and .get_reader()
  • Added Json, Montage, Localization, Event, Classifier, ReportData, and ElectrodeCateogry readers
  • Refactored base reader class to use a metaclass for registering new readers

Version 0.2.0

2018-05-15

  • Implemented basic Text and CSV readers
  • Somewhat stabilized the API/internals
  • Improved error message when files are not found

Version 0.1.1

2018-04-26

  • Minor API/name changes
  • Renamed package for Pep8 compliance

Version 0.1.0

2018-04-20

  • Initial alpha release for internal developer use