makefile 621 B

123456789101112131415161718192021222324252627282930313233
  1. all: extract_stimulations assign_protocols filter analyse_firing_rates analyse_persistent_activity plot_firing_rates plot_traces report
  2. check_folders:
  3. python scripts/check_folder_structure.py
  4. extract_stimulations: check_folders
  5. python scripts/extract_stimulations.py
  6. assign_protocols:
  7. python extract_protocols.py
  8. filter:
  9. python filter_stimulations.py
  10. analyse_firing_rates:
  11. python analyse_firing_rates.py
  12. analyse_persistent_activity:
  13. python analyse_persistent_activity.py
  14. plot_firing_rates:
  15. python plot_traces.py
  16. plot_traces:
  17. python plot_traces.py
  18. report:
  19. python generate_report.py
  20. clean:
  21. rm -r out/