├── .gitignore ├── LICENSE ├── README.md ├── RELEASE_NOTES.md ├── code ├── processing_params.json ├── run ├── run_aind ├── run_capsule_aind.py ├── run_capsule_nwb.py ├── run_capsule_spikeglx.py ├── run_nwb ├── run_spikeglx └── version.py ├── environment ├── Dockerfile ├── Dockerfile_local └── environment.yml └── metadata └── metadata.yml /.gitignore: -------------------------------------------------------------------------------- 1 | /data/ 2 | /results/ 3 | /scratch/ 4 | 5 | .vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenNeuralDynamics/aind-ephys-spikesort-kilosort25-full/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenNeuralDynamics/aind-ephys-spikesort-kilosort25-full/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenNeuralDynamics/aind-ephys-spikesort-kilosort25-full/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /code/processing_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenNeuralDynamics/aind-ephys-spikesort-kilosort25-full/HEAD/code/processing_params.json -------------------------------------------------------------------------------- /code/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenNeuralDynamics/aind-ephys-spikesort-kilosort25-full/HEAD/code/run -------------------------------------------------------------------------------- /code/run_aind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenNeuralDynamics/aind-ephys-spikesort-kilosort25-full/HEAD/code/run_aind -------------------------------------------------------------------------------- /code/run_capsule_aind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenNeuralDynamics/aind-ephys-spikesort-kilosort25-full/HEAD/code/run_capsule_aind.py -------------------------------------------------------------------------------- /code/run_capsule_nwb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenNeuralDynamics/aind-ephys-spikesort-kilosort25-full/HEAD/code/run_capsule_nwb.py -------------------------------------------------------------------------------- /code/run_capsule_spikeglx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenNeuralDynamics/aind-ephys-spikesort-kilosort25-full/HEAD/code/run_capsule_spikeglx.py -------------------------------------------------------------------------------- /code/run_nwb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenNeuralDynamics/aind-ephys-spikesort-kilosort25-full/HEAD/code/run_nwb -------------------------------------------------------------------------------- /code/run_spikeglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenNeuralDynamics/aind-ephys-spikesort-kilosort25-full/HEAD/code/run_spikeglx -------------------------------------------------------------------------------- /code/version.py: -------------------------------------------------------------------------------- 1 | version = "v3.0" 2 | -------------------------------------------------------------------------------- /environment/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenNeuralDynamics/aind-ephys-spikesort-kilosort25-full/HEAD/environment/Dockerfile -------------------------------------------------------------------------------- /environment/Dockerfile_local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenNeuralDynamics/aind-ephys-spikesort-kilosort25-full/HEAD/environment/Dockerfile_local -------------------------------------------------------------------------------- /environment/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenNeuralDynamics/aind-ephys-spikesort-kilosort25-full/HEAD/environment/environment.yml -------------------------------------------------------------------------------- /metadata/metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenNeuralDynamics/aind-ephys-spikesort-kilosort25-full/HEAD/metadata/metadata.yml --------------------------------------------------------------------------------