-
Notifications
You must be signed in to change notification settings - Fork 15
Zebrafish pipeline plan
John Pearson edited this page Feb 26, 2018
·
1 revision
Create a fully-functioning visualization prototype sufficient to show feasibility for an NIH grant. The prototype should
- Pull images from the NI-DAQ card (can start by mocking an image server: just draw files from disk)
- Run CaImAn's preprocessing pipeline on these images.
Dockerize CaImAn- Assess how well CaImAn functions on zebrafish (as opposed to mouse cortical) data
- Send preprocessed data back to server:
- Locations of cells
- Deconvolved spike trains
- Build a visualization server like Jupyter that will let a user navigate to a particular port on
localhost
and see the data streaming in.- This can be either a plugin to the server, or the server itself.
- We probably want to use WebGL for performance.
- The server in this case is part web server (it needs to send the js and html to the client) but the client should also be able to get images from the server via, e.g., REST calls.
- Might also be nice to paint the cells found by CaImAn as an example of how effective the algorithm is.
- Should the web server be part of the data server or separate? In Jupyter, it's all the same, because it's just middleware handling a kernel. For our case, a separate web server could be small and hook into the data server via the C API, but this may be too complicated (or unnecessary) for a first pass.
- Communication between pipeline pieces: gRPC? http?