bluepyemodel.evaluation.recordings¶
Module with recording classes and functions.
Functions
|
Returns a list of valid recordings (where the variable is in the location). |
|
Look for i_membrane in a location. |
|
Get all overall currents available in a location. |
|
Get all ion concentrations available in a location. |
|
Get all possible variables in a location. |
Classes
|
Recording that can be checked, with recording every 0.1 ms. |
|
Stimulus recording that can be checked, with recording every 0.1 ms.. |
|
Recording that can be checked, but that do not records at fixed dt. |
|
Stimulus recording that can be checked, but that do not records at fixed dt. |
- class FixedDtRecordingCustom(name=None, location=None, variable='v')¶
Bases:
LooseDtRecordingCustomRecording that can be checked, with recording every 0.1 ms.
Constructor.
- Parameters:
- instantiate(sim=None, icell=None)¶
Instantiate recording.
- class FixedDtRecordingStimulus(name=None, location=None, variable=None)¶
Bases:
LooseDtRecordingStimulusStimulus recording that can be checked, with recording every 0.1 ms..
Constructor
- Parameters:
- instantiate(sim=None, icell=None, stimulus=None)¶
Instantiate recording.
- class LooseDtRecordingCustom(name=None, location=None, variable='v')¶
Bases:
CompRecordingRecording that can be checked, but that do not records at fixed dt.
Constructor.
- Parameters:
- instantiate(sim=None, icell=None)¶
Instantiate recording.
- property response¶
Return recording response. Turn current densities into currents.
- class LooseDtRecordingStimulus(name=None, location=None, variable=None)¶
Bases:
CompRecordingStimulus recording that can be checked, but that do not records at fixed dt.
Constructor
- Parameters:
- instantiate(sim=None, icell=None, stimulus=None)¶
Instantiate recording.
- check_recordings(recordings, icell, sim)¶
Returns a list of valid recordings (where the variable is in the location).
- get_i_membrane(isection)¶
Look for i_membrane in a location.
- get_loc_currents(isection)¶
Get all overall currents available in a location.
- get_loc_ions(isection)¶
Get all ion concentrations available in a location.
- get_loc_varlist(isection)¶
Get all possible variables in a location.