This is the repo for some data analysis using the Open Source Steinmetz Neuropixel Dataset. The aim of this project is to roadtest different skill sets in an "open science" environment and be able to collaborate more freely.
🧠 Dense arrays (the physical type) were used to record from mice during a go/no-go task. It's an incredibly rich dataset for understanding movement, decisions, visual processing (and lots more I haven't thought of).
The easiest way to see what's in the data is to load it up and to read through the key labels on the dataset:
# choose one recording session (eg.20) to get labels
session_20 = steinmetz_data[20]
keys = session_20.keys()
print(keys)
Note: session 4 has really good Primary Visual Cortex data so that's always a good place to start.
🐭 You can read more about the neuropixel dataset here
The project has 3 current objectives:
- Use a Binder environment to write code openly and support learning (Binder is great for demos!)
- Explore the absolutely awesome dataset from Steinmetz's team to learn more about neural processing
- Continue learning and iterating over the code so that what took 20 lines, will eventually be done in 4
The analyses use python and there is a jupyter notebook in case you prefer jupyter.
As mentioned, I'm also using Binder with this repo. Binder builds a docker image and allows me to share the code in the form of an interactive notebook. By building and image it means that the environment it set up with all the dependencies needed to run the code. As "the set up" can often be the biggest hurdle to diving into a project, Binder offers a really cool way to do things using cloud infrastructure. You can read more about Binder here
Click the sheild to launch ths repo's Binder.
🌟 There's a few entry points:
- you can click the git sheild above to launch Binder
- you can fork the repo or open issues and run it yourself
- or you can reach out and say hi!
The jupyter notebook currently has tests implemented in the one file, however some next steps are to separate out the analyses and the tests. If you feel knowledgeable about this then feel free to open an issue! The goal is to move away from writing analyses just to publish a paper and towards good software pratices (such as TDD).
This is all made possible because of the Nick Steinmetz and the Neuropixel researchers who have made this data available for use.