forked from NeuralEnsemble/python-neo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request NeuralEnsemble#1214 from JuliaSprenger/add/pl2
Add plexon2 support
- Loading branch information
Showing
13 changed files
with
1,893 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from neo.io.basefromrawio import BaseFromRaw | ||
from neo.rawio.plexon2rawio import Plexon2RawIO | ||
|
||
|
||
class Plexon2IO(Plexon2RawIO, BaseFromRaw): | ||
""" | ||
Class for reading data from Plexon PL2 files | ||
The IO is based on the Plexon2RawIO, see comments for memory optimization | ||
in neo.rawio.plexon2rawio.Plexon2RawIO | ||
""" | ||
|
||
def __init__(self, filename): | ||
Plexon2RawIO.__init__(self, filename=filename) | ||
BaseFromRaw.__init__(self, filename) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from neo.rawio.plexon2rawio.plexon2rawio import Plexon2RawIO |
Oops, something went wrong.