12345678910111213141516171819202122232425262728293031323334 |
- all: clean prepare_folder_structure extract_stimulations assign_protocols filter analyse_firing_rates analyse_persistent_activity plot_traces plot_firing_rates report
- prepare_folder_structure:
- python scripts/check_folder_structure.py
- extract_stimulations:
- python scripts/extract_stimulations.py
- assign_protocols:
- python scripts/extract_protocols.py
- filter:
- python scripts/filter_stimulations.py
- analyse_firing_rates:
- python scripts/analyse_firing_rates.py
- analyse_persistent_activity:
- python scripts/analyse_persistent_activity.py
- plot_traces:
- python scripts/plot_traces.py
- plot_firing_rates:
- python scripts/plot_firing_rates.py
- report:
- python scripts/generate_report.py
- clean:
- rm -r out/
|