makefile 859 B

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