├── .gitignore ├── .gitmodules ├── Kwik.py ├── LoadTT_openephys.m ├── LoadTT_simpleclust.m ├── MatData2Kwd.m ├── OpenEphys.py ├── Python3 ├── Binary.py ├── Binary_data_loading_example.ipynb ├── Kwik.py ├── OpenEphys.py └── SettingsXML.py ├── README.md ├── convert_open_ephys_to_kwik.m ├── ephys2plx ├── LICENSE ├── README.md ├── ephys2plx.m ├── ephys2plx_mex.c ├── ephys2plx_mex.mexmaci64 ├── ephys2plx_mex.mexw64 ├── ephys2plx_mex.o ├── ephysConv.m ├── ephysGetPlxName.m ├── getEphysInfo.m ├── getFileHeader.m └── get_full_path.m ├── get_full_path.m ├── get_session_info.m ├── list_open_ephys_binary.m ├── load_open_ephys_binary.m ├── load_open_ephys_data.m ├── load_open_ephys_data_chunked.m ├── load_open_ephys_data_faster.m └── lowFreqCorrection └── loadAndCorrectPhase.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/.gitmodules -------------------------------------------------------------------------------- /Kwik.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/Kwik.py -------------------------------------------------------------------------------- /LoadTT_openephys.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/LoadTT_openephys.m -------------------------------------------------------------------------------- /LoadTT_simpleclust.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/LoadTT_simpleclust.m -------------------------------------------------------------------------------- /MatData2Kwd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/MatData2Kwd.m -------------------------------------------------------------------------------- /OpenEphys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/OpenEphys.py -------------------------------------------------------------------------------- /Python3/Binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/Python3/Binary.py -------------------------------------------------------------------------------- /Python3/Binary_data_loading_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/Python3/Binary_data_loading_example.ipynb -------------------------------------------------------------------------------- /Python3/Kwik.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/Python3/Kwik.py -------------------------------------------------------------------------------- /Python3/OpenEphys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/Python3/OpenEphys.py -------------------------------------------------------------------------------- /Python3/SettingsXML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/Python3/SettingsXML.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/README.md -------------------------------------------------------------------------------- /convert_open_ephys_to_kwik.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/convert_open_ephys_to_kwik.m -------------------------------------------------------------------------------- /ephys2plx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/ephys2plx/LICENSE -------------------------------------------------------------------------------- /ephys2plx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/ephys2plx/README.md -------------------------------------------------------------------------------- /ephys2plx/ephys2plx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/ephys2plx/ephys2plx.m -------------------------------------------------------------------------------- /ephys2plx/ephys2plx_mex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/ephys2plx/ephys2plx_mex.c -------------------------------------------------------------------------------- /ephys2plx/ephys2plx_mex.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/ephys2plx/ephys2plx_mex.mexmaci64 -------------------------------------------------------------------------------- /ephys2plx/ephys2plx_mex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/ephys2plx/ephys2plx_mex.mexw64 -------------------------------------------------------------------------------- /ephys2plx/ephys2plx_mex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/ephys2plx/ephys2plx_mex.o -------------------------------------------------------------------------------- /ephys2plx/ephysConv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/ephys2plx/ephysConv.m -------------------------------------------------------------------------------- /ephys2plx/ephysGetPlxName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/ephys2plx/ephysGetPlxName.m -------------------------------------------------------------------------------- /ephys2plx/getEphysInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/ephys2plx/getEphysInfo.m -------------------------------------------------------------------------------- /ephys2plx/getFileHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/ephys2plx/getFileHeader.m -------------------------------------------------------------------------------- /ephys2plx/get_full_path.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/ephys2plx/get_full_path.m -------------------------------------------------------------------------------- /get_full_path.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/get_full_path.m -------------------------------------------------------------------------------- /get_session_info.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/get_session_info.m -------------------------------------------------------------------------------- /list_open_ephys_binary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/list_open_ephys_binary.m -------------------------------------------------------------------------------- /load_open_ephys_binary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/load_open_ephys_binary.m -------------------------------------------------------------------------------- /load_open_ephys_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/load_open_ephys_data.m -------------------------------------------------------------------------------- /load_open_ephys_data_chunked.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/load_open_ephys_data_chunked.m -------------------------------------------------------------------------------- /load_open_ephys_data_faster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/load_open_ephys_data_faster.m -------------------------------------------------------------------------------- /lowFreqCorrection/loadAndCorrectPhase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-ephys/analysis-tools/HEAD/lowFreqCorrection/loadAndCorrectPhase.m --------------------------------------------------------------------------------