Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

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)