Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Example Notebooks for 001259 #106

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 8 additions & 0 deletions 001259/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Example Sessions for Dandiset 001259

This submission provides 2 notebooks showcasing example sessions for the Dandiset 001259.

Each notebook provides an example of how to access the critical data and metadata from the 2 types of experiments in the dataset:

- `ephys_example_notebook.ipynb` showcases one example session from the 001259 dataset containing operant behavior and concurrent OpenEphys recordings in primary auditory cortex (A1).
- `optogenetics_example_notebook.ipynb` showcases one example session from the 001259 dataset containing operant behavior and concurrent optogenetic stimulation.
13 changes: 13 additions & 0 deletions 001259/environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# run: conda env create --file environment.yml
name: schneider_notebook_env
channels:
- conda-forge
dependencies:
- python==3.12
- ipykernel
- matplotlib
- dandi
- pip
- pip:
- remfile
- schneider-lab-to-nwb @ git+https://github.com/catalystneuro/schneider-lab-to-nwb.git@main
813 changes: 813 additions & 0 deletions 001259/ephys_example_notebook.ipynb

Large diffs are not rendered by default.

597 changes: 597 additions & 0 deletions 001259/opto_example_notebook.ipynb

Large diffs are not rendered by default.

35 changes: 35 additions & 0 deletions 001259/stream_nwbfile.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
from pynwb import NWBHDF5IO
import remfile
import h5py
from dandi.dandiapi import DandiAPIClient

def stream_nwbfile(DANDISET_ID, file_path):
'''Stream NWB file from DANDI archive.

Parameters
----------
DANDISET_ID : str
Dandiset ID
file_path : str
Path to NWB file in DANDI archive

Returns
-------
nwbfile : NWBFile
NWB file
io : NWBHDF5IO
NWB IO object (for closing)

Notes
-----
The io object must be closed after use.
'''
with DandiAPIClient() as client:
client.dandi_authenticate()
asset = client.get_dandiset(DANDISET_ID, 'draft').get_asset_by_path(file_path)
s3_url = asset.get_content_url(follow_redirects=1, strip_query=False)
file_system = remfile.File(s3_url)
file = h5py.File(file_system, mode="r")
io = NWBHDF5IO(file=file, load_namespaces=True)
nwbfile = io.read()
return nwbfile, io
Loading