Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
5b1bafa
added all new analysis in proper schema
judewerth Feb 27, 2026
76b3a54
added new notebooks to analyze data
judewerth Feb 28, 2026
1283bd9
address spikeinterface version for extractor_dict (and rSTTFA changes)
judewerth Mar 23, 2026
13b94f8
address frame_paramset mistake (paramset table is now upstream
judewerth Mar 23, 2026
9033e64
active_frames will no longer contain random indices if not enough pea…
judewerth Mar 23, 2026
52703cc
updated pyproject to include versions
judewerth Mar 23, 2026
311bcfa
added min_spikes filtering to STTFA
judewerth Mar 25, 2026
b5730b4
added get_probe_type function for clarity
judewerth Mar 25, 2026
28a8cde
add num_elec_inside to culture.OrganoidImplantationImage
judewerth Mar 25, 2026
c0f58d4
updated trace filtering to match ephys.LFP
judewerth Mar 25, 2026
3193783
address burst spike indexing (-1 mismatch)
judewerth Mar 25, 2026
f039647
added functionality to insert empty array if no spikes remain after r…
judewerth Mar 25, 2026
44c2a4e
made hygiene improvements (virtually)
judewerth Mar 26, 2026
4bd7b05
add analyze single organoid notebook
judewerth Mar 26, 2026
abde3bb
review: fix sub-issues 1a/1c/1d - lazy imports and FOOOFAnalysis FK r…
MilagrosMarin Mar 27, 2026
04e36d0
review: lazy imports for neo/quantities/elephant in mua.py; fix weigh…
MilagrosMarin Mar 27, 2026
a956b90
review: use get_probe_type helper in TracePlot.make() (Comment 7)
MilagrosMarin Mar 27, 2026
5b21d62
review: use OrganoidImplantationImage as source of truth for num_elec…
MilagrosMarin Mar 27, 2026
940d0f9
review: fix EphysSessionProbe logic order in LongitudinalSpectralAnal…
MilagrosMarin Mar 27, 2026
2aa167a
Add docstring to LongitudinalSpectralAnalysis.BandPower part table
MilagrosMarin Mar 27, 2026
54869cb
Revert TracePlot probe_type lookup to organoid_id-only restriction
MilagrosMarin Mar 27, 2026
70eeca9
fix: replace fetch1 with explicit existence check for OrganoidImplant…
MilagrosMarin Mar 27, 2026
ce8efea
fix: guard elec_bool against -1 sentinel from map_channel_to_electrode
MilagrosMarin Mar 27, 2026
aa60adf
fix: fetch lfp_sampling_rate from DB in Coherence instead of hardcodi…
MilagrosMarin Mar 27, 2026
2d3c574
doc: clarify hardcoded fs=20000 assumption in PopulationBursts
MilagrosMarin Mar 27, 2026
937d207
doc: clarify execution_duration=0 is transient in Coherence and Longi…
MilagrosMarin Mar 27, 2026
f664a09
fix: add upper boundary check in find_active_frames to prevent IndexE…
MilagrosMarin Mar 27, 2026
848b9c9
add keysource to Coherence table
judewerth Mar 27, 2026
3cc4456
updated pyproject
judewerth Mar 27, 2026
49d0823
Merge pull request #1 from MilagrosMarin/review/pr-211-review
judewerth Mar 30, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78,327 changes: 78,327 additions & 0 deletions notebooks/ANALYZE_single_organoid.ipynb

Large diffs are not rendered by default.

5,024 changes: 5,024 additions & 0 deletions notebooks/ANALYZE_single_session.ipynb

Large diffs are not rendered by default.

604 changes: 604 additions & 0 deletions notebooks/CREATE_impedance_measurements.ipynb

Large diffs are not rendered by default.

1,508 changes: 1,508 additions & 0 deletions notebooks/CREATE_new_MUA_session.ipynb

Large diffs are not rendered by default.

601 changes: 601 additions & 0 deletions notebooks/CREATE_new_burst_session.ipynb

Large diffs are not rendered by default.

2,571 changes: 2,571 additions & 0 deletions notebooks/CREATE_new_coupling_session.ipynb

Large diffs are not rendered by default.

1,408 changes: 1,408 additions & 0 deletions notebooks/CREATE_new_culture_session.ipynb

Large diffs are not rendered by default.

2,744 changes: 2,744 additions & 0 deletions notebooks/CREATE_new_fooof_session.ipynb

Large diffs are not rendered by default.

2,330 changes: 2,330 additions & 0 deletions notebooks/CREATE_new_frame_analysis.ipynb

Large diffs are not rendered by default.

3,153 changes: 3,153 additions & 0 deletions notebooks/CREATE_new_frame_session.ipynb

Large diffs are not rendered by default.

1,650 changes: 1,650 additions & 0 deletions notebooks/CREATE_new_trace_plot.ipynb

Large diffs are not rendered by default.

915 changes: 915 additions & 0 deletions notebooks/EXPLORE_frame_analysis.ipynb

Large diffs are not rendered by default.

5,024 changes: 5,024 additions & 0 deletions notebooks/EXPLORE_single_session.ipynb

Large diffs are not rendered by default.

6,528 changes: 1,553 additions & 4,975 deletions notebooks/EXPLORE_spike_sorting.ipynb

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ dependencies = [
# Patch-clamp dependencies (pyabf replaces stfio, ipfx replaces AllenSDK)
"pyabf>=2.3.0",
"ipfx>=1.0.0",
"bottleneck>=1.5.0",
"neo>=0.14.4",
"quantities>=0.16.4",
"elephant>=1.1.1",
"specparam>=2.0.0",
"tensorpac>=0.6.5",
]

[project.optional-dependencies]
Expand Down
Loading