report.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <title> Recordings of graded persístent activity mediated by ion channel cooperativity</title>
  6. </head>
  7. <body>
  8. <h2>Overview</h2>
  9. <div>
  10. <p>In total, {{total_number_of_cells}} cells were recorded with {{total_number_of_protocols}} runs of protocols
  11. to test for persistent activity. From all recordings, we analysed {{number_of_analysed_protocols}} protocols
  12. ({{number_cooperative}} with cooperative channels, {{ number_independent}} as controls). The other
  13. {{number_of_filtered_protocols}} were not suitable for analysis for different reasons (run <code> make filter</code> to get a detailed overview).
  14. </p>
  15. </div>
  16. <h3>Table of analysed protocols</h3>
  17. {{ overview_table }}
  18. <h3>Firing rates in analysed protocols</h3>
  19. {% for img in overview_plots %}
  20. <div>
  21. <h5>{{ img }}</h5>
  22. <img src="out/plots/{{img}}.png" alt="Overview">
  23. </div>
  24. {% endfor %}
  25. <h2>Traces</h2>
  26. {% for protocol in protocols %}
  27. <h3>{{ protocol.type }}</h3>
  28. {% for img in protocol.stim_ids %}
  29. <div>
  30. <h5>{{ protocol.type }} - {{img}}</h5>
  31. <img src="out/plots/{{img}}.png" alt="Trace">
  32. </div>
  33. {% endfor %}
  34. {% endfor %}
  35. </body>
  36. </html>