-
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.
* fix subgroup coords * add wslfp dep * start work on RWSLFPSignalFromSpikes * get RWSLFPFromSpikes working * clean up electrodes tutorial * rwslfp working * advanced LFP working * remove template_trace.ipynb * debugged RWSLFPFromPSCs * progress testing RWSLFP * finish RWSLFPFromSpikes test * finish RWSLFP tests * finish RWSLFP docs * add sphinx duration extension * add last LFP docstrings * update copyright date * bump to v0.14.0
- Loading branch information
Showing
18 changed files
with
1,553 additions
and
436 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 |
---|---|---|
@@ -1,13 +1,19 @@ | ||
"""Contains probes, convenience functions for generating electrode array coordinates, | ||
signals, spiking, and LFP""" | ||
from cleo.ephys.lfp import TKLFPSignal | ||
from cleo.ephys.spiking import MultiUnitSpiking, SortedSpiking, Spiking | ||
from cleo.ephys.lfp import ( | ||
LFPSignalBase, | ||
RWSLFPSignalBase, | ||
RWSLFPSignalFromPSCs, | ||
RWSLFPSignalFromSpikes, | ||
TKLFPSignal, | ||
) | ||
from cleo.ephys.probes import ( | ||
Probe, | ||
Signal, | ||
linear_shank_coords, | ||
tetrode_shank_coords, | ||
poly2_shank_coords, | ||
poly3_shank_coords, | ||
tetrode_shank_coords, | ||
tile_coords, | ||
) | ||
from cleo.ephys.spiking import MultiUnitSpiking, SortedSpiking, Spiking |
Oops, something went wrong.