flatironinstitute / mountainlab-js

MountainLab is data processing, sharing and visualization software for scientists. It is built around MountainSort, spike sorting software, but is designed to be more generally applicable.
Other
43 stars 30 forks source link

mlprocessors: invoke processor classes directly -- including validation #66

Open magland opened 6 years ago

magland commented 6 years ago

for example

import ml_ephys ml_ephys.compute_templates(timeseries=...,etc)

That does not require mountainlab.

wysota commented 5 years ago

Basic support implemented. Works as follows:

import ml_ephys
proc = ml_ephys.compute_templates()
proc(timeseries=...)