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.

intanio.py 378 B

12345678910111213
  1. # -*- coding: utf-8 -*-
  2. from neo.io.basefromrawio import BaseFromRaw
  3. from neo.rawio.intanrawio import IntanRawIO
  4. class IntanIO(IntanRawIO, BaseFromRaw):
  5. __doc__ = IntanRawIO.__doc__
  6. _prefered_signal_group_mode = 'group-by-same-units'
  7. def __init__(self, filename):
  8. IntanRawIO.__init__(self, filename=filename)
  9. BaseFromRaw.__init__(self, filename)