plexonio.py 609 B

12345678910111213141516171819202122
  1. # -*- coding: utf-8 -*-
  2. from neo.io.basefromrawio import BaseFromRaw
  3. from neo.rawio.plexonrawio import PlexonRawIO
  4. class PlexonIO(PlexonRawIO, BaseFromRaw):
  5. """
  6. Class for reading the old data format from Plexon
  7. acquisition system (.plx)
  8. Note that Plexon now use a new format PL2 which is NOT
  9. supported by this IO.
  10. Compatible with versions 100 to 106.
  11. Other versions have not been tested.
  12. """
  13. _prefered_signal_group_mode = 'split-all'
  14. def __init__(self, filename):
  15. PlexonRawIO.__init__(self, filename=filename)
  16. BaseFromRaw.__init__(self, filename)