aind-nwb-utils 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (412) hide show
  1. aind_nwb_utils-0.1.0/.flake8 +6 -0
  2. aind_nwb_utils-0.1.0/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
  3. aind_nwb_utils-0.1.0/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  4. aind_nwb_utils-0.1.0/.github/ISSUE_TEMPLATE/user-story.md +27 -0
  5. aind_nwb_utils-0.1.0/.github/workflows/init.yml +52 -0
  6. aind_nwb_utils-0.1.0/.github/workflows/tag_and_publish.yml +88 -0
  7. aind_nwb_utils-0.1.0/.github/workflows/test_and_lint.yml +26 -0
  8. aind_nwb_utils-0.1.0/.gitignore +139 -0
  9. aind_nwb_utils-0.1.0/LICENSE +21 -0
  10. aind_nwb_utils-0.1.0/PKG-INFO +117 -0
  11. aind_nwb_utils-0.1.0/README.md +94 -0
  12. aind_nwb_utils-0.1.0/doc_template/Makefile +20 -0
  13. aind_nwb_utils-0.1.0/doc_template/make.bat +35 -0
  14. aind_nwb_utils-0.1.0/doc_template/source/_static/dark-logo.svg +129 -0
  15. aind_nwb_utils-0.1.0/doc_template/source/_static/favicon.ico +0 -0
  16. aind_nwb_utils-0.1.0/doc_template/source/_static/light-logo.svg +128 -0
  17. aind_nwb_utils-0.1.0/doc_template/source/conf.py +51 -0
  18. aind_nwb_utils-0.1.0/doc_template/source/index.rst +22 -0
  19. aind_nwb_utils-0.1.0/pyproject.toml +82 -0
  20. aind_nwb_utils-0.1.0/setup.cfg +4 -0
  21. aind_nwb_utils-0.1.0/setup.py +4 -0
  22. aind_nwb_utils-0.1.0/src/aind_nwb_utils/__init__.py +3 -0
  23. aind_nwb_utils-0.1.0/src/aind_nwb_utils/nwb_io.py +50 -0
  24. aind_nwb_utils-0.1.0/src/aind_nwb_utils/utils.py +302 -0
  25. aind_nwb_utils-0.1.0/src/aind_nwb_utils.egg-info/PKG-INFO +117 -0
  26. aind_nwb_utils-0.1.0/src/aind_nwb_utils.egg-info/SOURCES.txt +410 -0
  27. aind_nwb_utils-0.1.0/src/aind_nwb_utils.egg-info/dependency_links.txt +1 -0
  28. aind_nwb_utils-0.1.0/src/aind_nwb_utils.egg-info/requires.txt +12 -0
  29. aind_nwb_utils-0.1.0/src/aind_nwb_utils.egg-info/top_level.txt +1 -0
  30. aind_nwb_utils-0.1.0/tests/__init__.py +1 -0
  31. aind_nwb_utils-0.1.0/tests/resources/data_description.json +74 -0
  32. aind_nwb_utils-0.1.0/tests/resources/multiplan-ophys_behavior.nwb +0 -0
  33. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/.zattrs +7 -0
  34. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/.zgroup +3 -0
  35. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/.zmetadata +1482 -0
  36. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/acquisition/.zgroup +3 -0
  37. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/analysis/.zgroup +3 -0
  38. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/file_create_date/.zarray +24 -0
  39. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/file_create_date/.zattrs +3 -0
  40. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/file_create_date/0 +0 -0
  41. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/.zgroup +3 -0
  42. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/institution/.zarray +24 -0
  43. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/institution/.zattrs +3 -0
  44. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/institution/0 +0 -0
  45. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/session_id/.zarray +24 -0
  46. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/session_id/.zattrs +3 -0
  47. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/session_id/0 +0 -0
  48. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/.zattrs +5 -0
  49. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/.zgroup +3 -0
  50. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/age/.zarray +24 -0
  51. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/age/.zattrs +4 -0
  52. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/age/0 +0 -0
  53. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/date_of_birth/.zarray +24 -0
  54. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/date_of_birth/.zattrs +3 -0
  55. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/date_of_birth/0 +0 -0
  56. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/genotype/.zarray +24 -0
  57. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/genotype/.zattrs +3 -0
  58. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/genotype/0 +0 -0
  59. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/sex/.zarray +24 -0
  60. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/sex/.zattrs +3 -0
  61. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/sex/0 +0 -0
  62. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/species/.zarray +24 -0
  63. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/species/.zattrs +3 -0
  64. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/species/0 +0 -0
  65. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/subject_id/.zarray +24 -0
  66. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/subject_id/.zattrs +3 -0
  67. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/general/subject/subject_id/0 +0 -0
  68. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/identifier/.zarray +24 -0
  69. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/identifier/.zattrs +3 -0
  70. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/identifier/0 +0 -0
  71. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/.zgroup +3 -0
  72. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/.zattrs +6 -0
  73. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/.zgroup +3 -0
  74. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/.zattrs +18 -0
  75. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/.zgroup +3 -0
  76. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/angle/.zarray +20 -0
  77. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/angle/.zattrs +7 -0
  78. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/angle/0 +0 -0
  79. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/angle/1 +0 -0
  80. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/angle/10 +0 -0
  81. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/angle/11 +0 -0
  82. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/angle/12 +0 -0
  83. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/angle/13 +0 -0
  84. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/angle/14 +0 -0
  85. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/angle/15 +0 -0
  86. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/angle/2 +0 -0
  87. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/angle/3 +0 -0
  88. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/angle/4 +0 -0
  89. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/angle/5 +0 -0
  90. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/angle/6 +0 -0
  91. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/angle/7 +0 -0
  92. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/angle/8 +0 -0
  93. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/angle/9 +0 -0
  94. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area/.zarray +20 -0
  95. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area/.zattrs +7 -0
  96. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area/0 +0 -0
  97. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area/1 +0 -0
  98. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area/10 +0 -0
  99. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area/11 +0 -0
  100. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area/12 +0 -0
  101. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area/13 +0 -0
  102. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area/14 +0 -0
  103. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area/15 +0 -0
  104. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area/2 +0 -0
  105. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area/3 +0 -0
  106. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area/4 +0 -0
  107. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area/5 +0 -0
  108. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area/6 +0 -0
  109. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area/7 +0 -0
  110. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area/8 +0 -0
  111. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area/9 +0 -0
  112. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area_raw/.zarray +20 -0
  113. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area_raw/.zattrs +7 -0
  114. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area_raw/0 +0 -0
  115. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area_raw/1 +0 -0
  116. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area_raw/10 +0 -0
  117. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area_raw/11 +0 -0
  118. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area_raw/12 +0 -0
  119. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area_raw/13 +0 -0
  120. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area_raw/14 +0 -0
  121. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area_raw/15 +0 -0
  122. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area_raw/2 +0 -0
  123. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area_raw/3 +0 -0
  124. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area_raw/4 +0 -0
  125. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area_raw/5 +0 -0
  126. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area_raw/6 +0 -0
  127. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area_raw/7 +0 -0
  128. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area_raw/8 +0 -0
  129. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/area_raw/9 +0 -0
  130. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_x/.zarray +20 -0
  131. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_x/.zattrs +7 -0
  132. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_x/0 +0 -0
  133. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_x/1 +0 -0
  134. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_x/10 +0 -0
  135. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_x/11 +0 -0
  136. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_x/12 +0 -0
  137. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_x/13 +0 -0
  138. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_x/14 +0 -0
  139. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_x/15 +0 -0
  140. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_x/2 +0 -0
  141. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_x/3 +0 -0
  142. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_x/4 +0 -0
  143. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_x/5 +0 -0
  144. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_x/6 +0 -0
  145. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_x/7 +0 -0
  146. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_x/8 +0 -0
  147. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_x/9 +0 -0
  148. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_y/.zarray +20 -0
  149. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_y/.zattrs +7 -0
  150. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_y/0 +0 -0
  151. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_y/1 +0 -0
  152. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_y/10 +0 -0
  153. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_y/11 +0 -0
  154. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_y/12 +0 -0
  155. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_y/13 +0 -0
  156. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_y/14 +0 -0
  157. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_y/15 +0 -0
  158. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_y/2 +0 -0
  159. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_y/3 +0 -0
  160. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_y/4 +0 -0
  161. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_y/5 +0 -0
  162. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_y/6 +0 -0
  163. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_y/7 +0 -0
  164. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_y/8 +0 -0
  165. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/data_y/9 +0 -0
  166. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/height/.zarray +20 -0
  167. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/height/.zattrs +7 -0
  168. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/height/0 +0 -0
  169. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/height/1 +0 -0
  170. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/height/10 +0 -0
  171. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/height/11 +0 -0
  172. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/height/12 +0 -0
  173. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/height/13 +0 -0
  174. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/height/14 +0 -0
  175. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/height/15 +0 -0
  176. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/height/2 +0 -0
  177. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/height/3 +0 -0
  178. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/height/4 +0 -0
  179. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/height/5 +0 -0
  180. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/height/6 +0 -0
  181. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/height/7 +0 -0
  182. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/height/8 +0 -0
  183. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/height/9 +0 -0
  184. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/id/.zarray +20 -0
  185. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/id/.zattrs +6 -0
  186. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/id/0 +0 -0
  187. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/id/1 +0 -0
  188. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/id/10 +0 -0
  189. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/id/11 +0 -0
  190. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/id/12 +0 -0
  191. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/id/13 +0 -0
  192. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/id/14 +0 -0
  193. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/id/15 +0 -0
  194. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/id/2 +0 -0
  195. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/id/3 +0 -0
  196. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/id/4 +0 -0
  197. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/id/5 +0 -0
  198. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/id/6 +0 -0
  199. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/id/7 +0 -0
  200. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/id/8 +0 -0
  201. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/id/9 +0 -0
  202. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/name/.zarray +24 -0
  203. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/name/.zattrs +7 -0
  204. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/name/0 +0 -0
  205. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/name/1 +0 -0
  206. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/name/10 +0 -0
  207. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/name/11 +0 -0
  208. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/name/12 +0 -0
  209. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/name/13 +0 -0
  210. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/name/14 +0 -0
  211. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/name/15 +0 -0
  212. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/name/2 +0 -0
  213. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/name/3 +0 -0
  214. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/name/4 +0 -0
  215. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/name/5 +0 -0
  216. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/name/6 +0 -0
  217. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/name/7 +0 -0
  218. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/name/8 +0 -0
  219. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/name/9 +0 -0
  220. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/reference_frame/.zarray +24 -0
  221. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/reference_frame/.zattrs +7 -0
  222. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/reference_frame/0 +0 -0
  223. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/reference_frame/1 +0 -0
  224. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/reference_frame/10 +0 -0
  225. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/reference_frame/11 +0 -0
  226. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/reference_frame/12 +0 -0
  227. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/reference_frame/13 +0 -0
  228. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/reference_frame/14 +0 -0
  229. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/reference_frame/15 +0 -0
  230. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/reference_frame/2 +0 -0
  231. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/reference_frame/3 +0 -0
  232. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/reference_frame/4 +0 -0
  233. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/reference_frame/5 +0 -0
  234. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/reference_frame/6 +0 -0
  235. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/reference_frame/7 +0 -0
  236. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/reference_frame/8 +0 -0
  237. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/reference_frame/9 +0 -0
  238. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/timestamps/.zarray +20 -0
  239. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/timestamps/.zattrs +7 -0
  240. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/timestamps/0 +0 -0
  241. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/timestamps/1 +0 -0
  242. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/timestamps/10 +0 -0
  243. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/timestamps/11 +0 -0
  244. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/timestamps/12 +0 -0
  245. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/timestamps/13 +0 -0
  246. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/timestamps/14 +0 -0
  247. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/timestamps/15 +0 -0
  248. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/timestamps/2 +0 -0
  249. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/timestamps/3 +0 -0
  250. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/timestamps/4 +0 -0
  251. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/timestamps/5 +0 -0
  252. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/timestamps/6 +0 -0
  253. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/timestamps/7 +0 -0
  254. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/timestamps/8 +0 -0
  255. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/timestamps/9 +0 -0
  256. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/width/.zarray +20 -0
  257. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/width/.zattrs +7 -0
  258. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/width/0 +0 -0
  259. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/width/1 +0 -0
  260. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/width/10 +0 -0
  261. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/width/11 +0 -0
  262. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/width/12 +0 -0
  263. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/width/13 +0 -0
  264. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/width/14 +0 -0
  265. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/width/15 +0 -0
  266. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/width/2 +0 -0
  267. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/width/3 +0 -0
  268. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/width/4 +0 -0
  269. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/width/5 +0 -0
  270. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/width/6 +0 -0
  271. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/width/7 +0 -0
  272. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/width/8 +0 -0
  273. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/eye_tracking/width/9 +0 -0
  274. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/likely_blink_times/.zattrs +7 -0
  275. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/likely_blink_times/.zgroup +3 -0
  276. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/likely_blink_times/data/.zarray +20 -0
  277. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/likely_blink_times/data/.zattrs +7 -0
  278. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/likely_blink_times/data/0 +0 -0
  279. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/likely_blink_times/timestamps/.zarray +20 -0
  280. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/likely_blink_times/timestamps/.zattrs +5 -0
  281. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/likely_blink_times/timestamps/0 +0 -0
  282. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/likely_blink_times/timestamps/1 +0 -0
  283. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/likely_blink_times/timestamps/2 +0 -0
  284. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/likely_blink_times/timestamps/3 +0 -0
  285. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/likely_blink_times/timestamps/4 +0 -0
  286. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/likely_blink_times/timestamps/5 +0 -0
  287. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/likely_blink_times/timestamps/6 +0 -0
  288. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/eye_tracking/likely_blink_times/timestamps/7 +0 -0
  289. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/test_module/.zattrs +6 -0
  290. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/processing/test_module/.zgroup +3 -0
  291. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/session_description/.zarray +24 -0
  292. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/session_description/.zattrs +3 -0
  293. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/session_description/0 +0 -0
  294. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/session_start_time/.zarray +24 -0
  295. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/session_start_time/.zattrs +3 -0
  296. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/session_start_time/0 +0 -0
  297. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/.zgroup +3 -0
  298. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/.zgroup +3 -0
  299. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/.zgroup +3 -0
  300. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/namespace/.zarray +30 -0
  301. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/namespace/.zattrs +3 -0
  302. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/namespace/0 +1 -0
  303. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.base/.zarray +30 -0
  304. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.base/.zattrs +3 -0
  305. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.base/0 +1 -0
  306. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.behavior/.zarray +30 -0
  307. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.behavior/.zattrs +3 -0
  308. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.behavior/0 +1 -0
  309. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.device/.zarray +30 -0
  310. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.device/.zattrs +3 -0
  311. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.device/0 +1 -0
  312. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.ecephys/.zarray +30 -0
  313. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.ecephys/.zattrs +3 -0
  314. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.ecephys/0 +1 -0
  315. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.epoch/.zarray +30 -0
  316. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.epoch/.zattrs +3 -0
  317. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.epoch/0 +1 -0
  318. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.file/.zarray +30 -0
  319. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.file/.zattrs +3 -0
  320. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.file/0 +1 -0
  321. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.icephys/.zarray +30 -0
  322. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.icephys/.zattrs +3 -0
  323. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.icephys/0 +1 -0
  324. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.image/.zarray +30 -0
  325. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.image/.zattrs +3 -0
  326. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.image/0 +1 -0
  327. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.misc/.zarray +30 -0
  328. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.misc/.zattrs +3 -0
  329. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.misc/0 +1 -0
  330. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.ogen/.zarray +30 -0
  331. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.ogen/.zattrs +3 -0
  332. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.ogen/0 +1 -0
  333. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.ophys/.zarray +30 -0
  334. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.ophys/.zattrs +3 -0
  335. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.ophys/0 +1 -0
  336. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.retinotopy/.zarray +30 -0
  337. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.retinotopy/.zattrs +3 -0
  338. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.7.0/nwb.retinotopy/0 +1 -0
  339. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/.zgroup +3 -0
  340. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/namespace/.zarray +30 -0
  341. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/namespace/.zattrs +3 -0
  342. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/namespace/0 +1 -0
  343. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.base/.zarray +30 -0
  344. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.base/.zattrs +3 -0
  345. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.base/0 +1 -0
  346. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.behavior/.zarray +30 -0
  347. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.behavior/.zattrs +3 -0
  348. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.behavior/0 +1 -0
  349. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.device/.zarray +30 -0
  350. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.device/.zattrs +3 -0
  351. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.device/0 +1 -0
  352. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.ecephys/.zarray +30 -0
  353. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.ecephys/.zattrs +3 -0
  354. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.ecephys/0 +1 -0
  355. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.epoch/.zarray +30 -0
  356. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.epoch/.zattrs +3 -0
  357. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.epoch/0 +1 -0
  358. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.file/.zarray +30 -0
  359. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.file/.zattrs +3 -0
  360. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.file/0 +1 -0
  361. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.icephys/.zarray +30 -0
  362. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.icephys/.zattrs +3 -0
  363. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.icephys/0 +1 -0
  364. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.image/.zarray +30 -0
  365. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.image/.zattrs +3 -0
  366. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.image/0 +1 -0
  367. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.misc/.zarray +30 -0
  368. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.misc/.zattrs +3 -0
  369. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.misc/0 +1 -0
  370. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.ogen/.zarray +30 -0
  371. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.ogen/.zattrs +3 -0
  372. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.ogen/0 +1 -0
  373. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.ophys/.zarray +30 -0
  374. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.ophys/.zattrs +3 -0
  375. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.ophys/0 +1 -0
  376. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.retinotopy/.zarray +30 -0
  377. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.retinotopy/.zattrs +3 -0
  378. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/core/2.8.0/nwb.retinotopy/0 +1 -0
  379. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-common/.zgroup +3 -0
  380. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-common/1.8.0/.zgroup +3 -0
  381. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-common/1.8.0/base/.zarray +30 -0
  382. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-common/1.8.0/base/.zattrs +3 -0
  383. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-common/1.8.0/base/0 +1 -0
  384. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-common/1.8.0/namespace/.zarray +30 -0
  385. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-common/1.8.0/namespace/.zattrs +3 -0
  386. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-common/1.8.0/namespace/0 +1 -0
  387. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-common/1.8.0/sparse/.zarray +30 -0
  388. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-common/1.8.0/sparse/.zattrs +3 -0
  389. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-common/1.8.0/sparse/0 +1 -0
  390. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-common/1.8.0/table/.zarray +30 -0
  391. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-common/1.8.0/table/.zattrs +3 -0
  392. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-common/1.8.0/table/0 +1 -0
  393. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-experimental/.zgroup +3 -0
  394. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-experimental/0.5.0/.zgroup +3 -0
  395. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-experimental/0.5.0/experimental/.zarray +30 -0
  396. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-experimental/0.5.0/experimental/.zattrs +3 -0
  397. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-experimental/0.5.0/experimental/0 +1 -0
  398. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-experimental/0.5.0/namespace/.zarray +30 -0
  399. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-experimental/0.5.0/namespace/.zattrs +3 -0
  400. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-experimental/0.5.0/namespace/0 +1 -0
  401. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-experimental/0.5.0/resources/.zarray +30 -0
  402. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-experimental/0.5.0/resources/.zattrs +3 -0
  403. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/specifications/hdmf-experimental/0.5.0/resources/0 +1 -0
  404. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/stimulus/.zgroup +3 -0
  405. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/stimulus/presentation/.zgroup +3 -0
  406. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/stimulus/templates/.zgroup +3 -0
  407. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/timestamps_reference_time/.zarray +24 -0
  408. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/timestamps_reference_time/.zattrs +3 -0
  409. aind_nwb_utils-0.1.0/tests/resources/multiplane-ophys_eye-tracking/timestamps_reference_time/0 +0 -0
  410. aind_nwb_utils-0.1.0/tests/resources/subject.json +36 -0
  411. aind_nwb_utils-0.1.0/tests/test_nwb_io.py +44 -0
  412. aind_nwb_utils-0.1.0/tests/test_utils.py +128 -0
@@ -0,0 +1,6 @@
1
+ [flake8]
2
+ exclude =
3
+ .git,
4
+ __pycache__,
5
+ build
6
+ max-complexity = 10
@@ -0,0 +1,38 @@
1
+ ---
2
+ name: Bug report
3
+ about: Create a report to help us improve
4
+ title: ''
5
+ labels: ''
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ **Describe the bug**
11
+ A clear and concise description of what the bug is.
12
+
13
+ **To Reproduce**
14
+ Steps to reproduce the behavior:
15
+ 1. Go to '...'
16
+ 2. Click on '....'
17
+ 3. Scroll down to '....'
18
+ 4. See error
19
+
20
+ **Expected behavior**
21
+ A clear and concise description of what you expected to happen.
22
+
23
+ **Screenshots**
24
+ If applicable, add screenshots to help explain your problem.
25
+
26
+ **Desktop (please complete the following information):**
27
+ - OS: [e.g. iOS]
28
+ - Browser [e.g. chrome, safari]
29
+ - Version [e.g. 22]
30
+
31
+ **Smartphone (please complete the following information):**
32
+ - Device: [e.g. iPhone6]
33
+ - OS: [e.g. iOS8.1]
34
+ - Browser [e.g. stock browser, safari]
35
+ - Version [e.g. 22]
36
+
37
+ **Additional context**
38
+ Add any other context about the problem here.
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: Feature request
3
+ about: Suggest an idea for this project
4
+ title: ''
5
+ labels: ''
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ **Is your feature request related to a problem? Please describe.**
11
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12
+
13
+ **Describe the solution you'd like**
14
+ A clear and concise description of what you want to happen.
15
+
16
+ **Describe alternatives you've considered**
17
+ A clear and concise description of any alternative solutions or features you've considered.
18
+
19
+ **Additional context**
20
+ Add any other context or screenshots about the feature request here.
@@ -0,0 +1,27 @@
1
+ ---
2
+ name: User story
3
+ about: This template provides a basic structure for user story issues.
4
+ title: ''
5
+ labels: ''
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ # User story
11
+ As a ..., I want to ..., so I can ...
12
+
13
+ *Ideally, this is in the issue title, but if not, you can put it here. If so, delete this section.*
14
+
15
+ # Acceptance criteria
16
+ - [ ] This is something that can be verified to show that this user story is satisfied.
17
+
18
+ # Sprint Ready Checklist
19
+ - [ ] 1. Acceptance criteria defined
20
+ - [ ] 2. Team understands acceptance criteria
21
+ - [ ] 3. Team has defined solution / steps to satisfy acceptance criteria
22
+ - [ ] 4. Acceptance criteria is verifiable / testable
23
+ - [ ] 5. External / 3rd Party dependencies identified
24
+ - [ ] 6. Ticket is prioritized and sized
25
+
26
+ # Notes
27
+ *Add any helpful notes here.*
@@ -0,0 +1,52 @@
1
+ # Workflow runs only once when the template is first used.
2
+ # File can be safely deleted after repo is initialized.
3
+ name: Initialize repository
4
+ on:
5
+ push:
6
+ branches:
7
+ - main
8
+
9
+ jobs:
10
+ initialize-package:
11
+ name: Initialize the package
12
+ if: ${{github.event.repository.name != 'aind-library-template'}}
13
+ runs-on: ubuntu-latest
14
+ env:
15
+ REPO_NAME: ${{ github.event.repository.name }}
16
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
17
+ steps:
18
+ - name: Checkout
19
+ uses: actions/checkout@v3
20
+ - name: Rename package
21
+ run: |
22
+ pkg_name=$(echo "${REPO_NAME}" | tr - _)
23
+ current_description='description = "Prints messages to stdout. Simple boilerplate for libraries."'
24
+ new_description='description = "Generated from aind-library-template"'
25
+ readme_description='Template for a minimal, basic repository for an AIND library.'
26
+ new_readme_description='Generated from aind-library-template'
27
+ echo "Package Name ${pkg_name}"
28
+ mkdir src/${pkg_name}
29
+ touch src/${pkg_name}/__init__.py
30
+ echo '"""Init package"""' >> src/${pkg_name}/__init__.py
31
+ echo '__version__ = "0.0.0"' >> src/${pkg_name}/__init__.py
32
+ sed -i "s/aind_library_template/${pkg_name}/" pyproject.toml
33
+ sed -i "s/aind-library-template/${REPO_NAME}/" pyproject.toml
34
+ sed -i "s/aind_library_template/${pkg_name}/" doc_template/source/conf.py
35
+ sed -i "s/${current_description}/${new_description}/" pyproject.toml
36
+ sed -i "/pandas/d" pyproject.toml
37
+ sed -i "s/aind-library-template/${REPO_NAME}/" README.md
38
+ sed -i "s/${readme_description}/${new_readme_description}/" README.md
39
+ - name: Commit changes
40
+ uses: EndBug/add-and-commit@v9
41
+ with:
42
+ default_author: github_actions
43
+ message: "ci: version bump [skip actions]"
44
+ add: '["pyproject.toml", "README.md", "src/*", "doc_template/source/conf.py"]'
45
+ remove: '["-r src/aind_library_template", "tests/test_message_handler.py"]'
46
+ - name: Add first tag
47
+ run: |
48
+ git tag v0.0.0
49
+ git push origin v0.0.0
50
+ - name: Disable workflow
51
+ run: |
52
+ gh workflow disable -R $GITHUB_REPOSITORY "${{ github.workflow }}"
@@ -0,0 +1,88 @@
1
+ name: Tag and publish
2
+ on:
3
+ push:
4
+ branches:
5
+ - main
6
+ # Remove line 61 to enable automated semantic version bumps.
7
+ # Change line 67 from "if: false" to "if: true" to enable PyPI publishing.
8
+ # Requires that svc-aindscicomp be added as an admin to repo.
9
+ jobs:
10
+ update_badges:
11
+ runs-on: ubuntu-latest
12
+ continue-on-error: true
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ with:
16
+ ref: ${{ env.DEFAULT_BRANCH }}
17
+ fetch-depth: 0
18
+ token: ${{ secrets.SERVICE_TOKEN }}
19
+ - name: Set up Python 3.10
20
+ uses: actions/setup-python@v3
21
+ with:
22
+ python-version: '3.10'
23
+ - name: Install dependencies
24
+ run: |
25
+ python -m pip install -e .[dev] --no-cache-dir
26
+ - name: Get Python version and Update README.md
27
+ run: |
28
+ python_version=$(grep "requires-python" pyproject.toml | grep -o ">=[^\"]*")
29
+ python_badge=$(grep -o 'python-[^)]*' README.md)
30
+ new_python_badge="python-$python_version-blue?logo=python"
31
+ sed -i "s/$python_badge/$new_python_badge/g" README.md
32
+ - name: Get interrogate values and Update README.md
33
+ run: |
34
+ interrogate_val=$(interrogate . | grep -o 'actual: [0-9]*\.[0-9]*' | awk '{print $2}')
35
+ interrogate_badge=$(grep -o 'interrogate-[^)]*' README.md)
36
+ if (( $(echo "$interrogate_val >= 90.00" | bc -l) )); then
37
+ new_interrogate_badge="interrogate-$interrogate_val%25-brightgreen"
38
+ elif (( $(echo "$interrogate_val < 80.00" | bc -l) )); then
39
+ new_interrogate_badge="interrogate-$interrogate_val%25-red"
40
+ else
41
+ new_interrogate_badge="interrogate-$interrogate_val%25-yellow"
42
+ fi
43
+ sed -i "s/$interrogate_badge/$new_interrogate_badge/g" README.md
44
+ - name: Get Coverage values and Update README.md
45
+ run: |
46
+ coverage run -m unittest discover
47
+ coverage_val=$(coverage report | grep "^TOTAL" | grep -o '[0-9]\+%' | grep -o '[0-9]\+')
48
+ coverage_badge=$(grep -o "coverage-[^?]*" README.md)
49
+ if (( $(echo "$coverage_val >= 90.00" | bc -l) )); then
50
+ new_coverage_badge="coverage-$coverage_val%25-brightgreen"
51
+ elif (( $(echo "$coverage_val < 80.00" | bc -l) )); then
52
+ new_coverage_badge="coverage-$coverage_val%25-red"
53
+ else
54
+ new_coverage_badge="coverage-$coverage_val%25-yellow"
55
+ fi
56
+ sed -i "s/$coverage_badge/$new_coverage_badge/g" README.md
57
+ - name: Commit changes
58
+ uses: EndBug/add-and-commit@v9
59
+ with:
60
+ default_author: github_actions
61
+ message: "ci: update badges [skip actions]"
62
+ add: '["README.md"]'
63
+ tag:
64
+ needs: update_badges
65
+ uses: AllenNeuralDynamics/aind-github-actions/.github/workflows/tag.yml@main
66
+ secrets:
67
+ SERVICE_TOKEN: ${{ secrets.SERVICE_TOKEN }}
68
+ publish:
69
+ needs: tag
70
+
71
+ runs-on: ubuntu-latest
72
+ steps:
73
+ - uses: actions/checkout@v3
74
+ - name: Pull latest changes
75
+ run: git pull origin main
76
+ - name: Set up Python 3.10
77
+ uses: actions/setup-python@v2
78
+ with:
79
+ python-version: '3.10'
80
+ - name: Install dependencies
81
+ run: |
82
+ pip install --upgrade setuptools wheel twine build
83
+ python -m build
84
+ twine check dist/*
85
+ - name: Publish on PyPI
86
+ uses: pypa/gh-action-pypi-publish@release/v1
87
+ with:
88
+ password: ${{ secrets.AIND_PYPI_TOKEN }}
@@ -0,0 +1,26 @@
1
+ name: Lint and run tests
2
+
3
+ on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+
8
+ jobs:
9
+ ci:
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ matrix:
13
+ python-version: [ '3.10', '3.11', '3.12' ]
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - name: Set up Python ${{ matrix.python-version }}
17
+ uses: actions/setup-python@v3
18
+ with:
19
+ python-version: ${{ matrix.python-version }}
20
+ - name: Install dependencies
21
+ run: |
22
+ python -m pip install -e .[dev]
23
+ - name: Run linter checks
24
+ run: flake8 . && interrogate --verbose .
25
+ - name: Run tests and coverage
26
+ run: coverage run -m unittest discover && coverage report
@@ -0,0 +1,139 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ pip-wheel-metadata/
24
+ share/python-wheels/
25
+ *.egg-info/
26
+ .installed.cfg
27
+ *.egg
28
+ MANIFEST
29
+
30
+ # PyInstaller
31
+ # Usually these files are written by a python script from a template
32
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
33
+ *.manifest
34
+ *.spec
35
+
36
+ # Installer logs
37
+ pip-log.txt
38
+ pip-delete-this-directory.txt
39
+
40
+ # Unit test / coverage reports
41
+ htmlcov/
42
+ .tox/
43
+ .nox/
44
+ .coverage
45
+ .coverage.*
46
+ .cache
47
+ nosetests.xml
48
+ coverage.xml
49
+ *.cover
50
+ *.py,cover
51
+ .hypothesis/
52
+ .pytest_cache/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ target/
76
+
77
+ # Jupyter Notebook
78
+ .ipynb_checkpoints
79
+
80
+ # IPython
81
+ profile_default/
82
+ ipython_config.py
83
+
84
+ # pyenv
85
+ .python-version
86
+
87
+ # pipenv
88
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
90
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
91
+ # install all needed dependencies.
92
+ #Pipfile.lock
93
+
94
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
95
+ __pypackages__/
96
+
97
+ # Celery stuff
98
+ celerybeat-schedule
99
+ celerybeat.pid
100
+
101
+ # SageMath parsed files
102
+ *.sage.py
103
+
104
+ # Environments
105
+ .env
106
+ .venv
107
+ env/
108
+ venv/
109
+ ENV/
110
+ env.bak/
111
+ venv.bak/
112
+
113
+ # Spyder project settings
114
+ .spyderproject
115
+ .spyproject
116
+
117
+ # Rope project settings
118
+ .ropeproject
119
+
120
+ # mkdocs documentation
121
+ /site
122
+
123
+ # mypy
124
+ .mypy_cache/
125
+ .dmypy.json
126
+ dmypy.json
127
+
128
+ # Pyre type checker
129
+ .pyre/
130
+
131
+ # PyCharm
132
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
133
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
134
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
135
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
136
+ .idea/
137
+
138
+ # MacOs
139
+ **/.DS_Store
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 Allen Institute for Neural Dynamics
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,117 @@
1
+ Metadata-Version: 2.4
2
+ Name: aind-nwb-utils
3
+ Version: 0.1.0
4
+ Summary: Generated from aind-library-template
5
+ Author: Allen Institute for Neural Dynamics
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Requires-Python: >=3.10
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Requires-Dist: pynwb
12
+ Requires-Dist: hdmf-zarr
13
+ Requires-Dist: xarray
14
+ Provides-Extra: dev
15
+ Requires-Dist: black; extra == "dev"
16
+ Requires-Dist: coverage; extra == "dev"
17
+ Requires-Dist: flake8; extra == "dev"
18
+ Requires-Dist: interrogate; extra == "dev"
19
+ Requires-Dist: isort; extra == "dev"
20
+ Requires-Dist: Sphinx; extra == "dev"
21
+ Requires-Dist: furo; extra == "dev"
22
+ Dynamic: license-file
23
+
24
+ # aind-nwb-utils
25
+
26
+ [![License](https://img.shields.io/badge/license-MIT-brightgreen)](LICENSE)
27
+ ![Code Style](https://img.shields.io/badge/code%20style-black-black)
28
+ [![semantic-release: angular](https://img.shields.io/badge/semantic--release-angular-e10079?logo=semantic-release)](https://github.com/semantic-release/semantic-release)
29
+ ![Interrogate](https://img.shields.io/badge/interrogate-100.0%25-brightgreen)
30
+ ![Coverage](https://img.shields.io/badge/coverage-93%25-brightgreen?logo=codecov)
31
+ ![Python](https://img.shields.io/badge/python->=3.10-blue?logo=python)
32
+
33
+ ## Usage
34
+ This package is intended to simplify and standardize the process of creating and interacting with NWB files. It is still in the early development stages, and the API and naming conventions are subject to change at any time.
35
+
36
+ ## Installation
37
+ To use the software, in the root directory, run
38
+ ```bash
39
+ pip install -e .
40
+ ```
41
+
42
+ To develop the code, run
43
+ ```bash
44
+ pip install -e .[dev]
45
+ ```
46
+
47
+ ## Contributing
48
+
49
+ ### Linters and testing
50
+
51
+ There are several libraries used to run linters, check documentation, and run tests.
52
+
53
+ - Please test your changes using the **coverage** library, which will run the tests and log a coverage report:
54
+
55
+ ```bash
56
+ coverage run -m unittest discover && coverage report
57
+ ```
58
+
59
+ - Use **interrogate** to check that modules, methods, etc. have been documented thoroughly:
60
+
61
+ ```bash
62
+ interrogate .
63
+ ```
64
+
65
+ - Use **flake8** to check that code is up to standards (no unused imports, etc.):
66
+ ```bash
67
+ flake8 .
68
+ ```
69
+
70
+ - Use **black** to automatically format the code into PEP standards:
71
+ ```bash
72
+ black .
73
+ ```
74
+
75
+ - Use **isort** to automatically sort import statements:
76
+ ```bash
77
+ isort .
78
+ ```
79
+
80
+ ### Pull requests
81
+
82
+ For internal members, please create a branch. For external members, please fork the repository and open a pull request from the fork. We'll primarily use [Angular](https://github.com/angular/angular/blob/main/CONTRIBUTING.md#commit) style for commit messages. Roughly, they should follow the pattern:
83
+ ```text
84
+ <type>(<scope>): <short summary>
85
+ ```
86
+
87
+ where scope (optional) describes the packages affected by the code changes and type (mandatory) is one of:
88
+
89
+ - **build**: Changes that affect build tools or external dependencies (example scopes: pyproject.toml, setup.py)
90
+ - **ci**: Changes to our CI configuration files and scripts (examples: .github/workflows/ci.yml)
91
+ - **docs**: Documentation only changes
92
+ - **feat**: A new feature
93
+ - **fix**: A bugfix
94
+ - **perf**: A code change that improves performance
95
+ - **refactor**: A code change that neither fixes a bug nor adds a feature
96
+ - **test**: Adding missing tests or correcting existing tests
97
+
98
+ ### Semantic Release
99
+
100
+ The table below, from [semantic release](https://github.com/semantic-release/semantic-release), shows which commit message gets you which release type when `semantic-release` runs (using the default configuration):
101
+
102
+ | Commit message | Release type |
103
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------- |
104
+ | `fix(pencil): stop graphite breaking when too much pressure applied` | ~~Patch~~ Fix Release, Default release |
105
+ | `feat(pencil): add 'graphiteWidth' option` | ~~Minor~~ Feature Release |
106
+ | `perf(pencil): remove graphiteWidth option`<br><br>`BREAKING CHANGE: The graphiteWidth option has been removed.`<br>`The default graphite width of 10mm is always used for performance reasons.` | ~~Major~~ Breaking Release <br /> (Note that the `BREAKING CHANGE: ` token must be in the footer of the commit) |
107
+
108
+ ### Documentation
109
+ To generate the rst files source files for documentation, run
110
+ ```bash
111
+ sphinx-apidoc -o doc_template/source/ src
112
+ ```
113
+ Then to create the documentation HTML files, run
114
+ ```bash
115
+ sphinx-build -b html doc_template/source/ doc_template/build/html
116
+ ```
117
+ More info on sphinx installation can be found [here](https://www.sphinx-doc.org/en/master/usage/installation.html).
@@ -0,0 +1,94 @@
1
+ # aind-nwb-utils
2
+
3
+ [![License](https://img.shields.io/badge/license-MIT-brightgreen)](LICENSE)
4
+ ![Code Style](https://img.shields.io/badge/code%20style-black-black)
5
+ [![semantic-release: angular](https://img.shields.io/badge/semantic--release-angular-e10079?logo=semantic-release)](https://github.com/semantic-release/semantic-release)
6
+ ![Interrogate](https://img.shields.io/badge/interrogate-100.0%25-brightgreen)
7
+ ![Coverage](https://img.shields.io/badge/coverage-93%25-brightgreen?logo=codecov)
8
+ ![Python](https://img.shields.io/badge/python->=3.10-blue?logo=python)
9
+
10
+ ## Usage
11
+ This package is intended to simplify and standardize the process of creating and interacting with NWB files. It is still in the early development stages, and the API and naming conventions are subject to change at any time.
12
+
13
+ ## Installation
14
+ To use the software, in the root directory, run
15
+ ```bash
16
+ pip install -e .
17
+ ```
18
+
19
+ To develop the code, run
20
+ ```bash
21
+ pip install -e .[dev]
22
+ ```
23
+
24
+ ## Contributing
25
+
26
+ ### Linters and testing
27
+
28
+ There are several libraries used to run linters, check documentation, and run tests.
29
+
30
+ - Please test your changes using the **coverage** library, which will run the tests and log a coverage report:
31
+
32
+ ```bash
33
+ coverage run -m unittest discover && coverage report
34
+ ```
35
+
36
+ - Use **interrogate** to check that modules, methods, etc. have been documented thoroughly:
37
+
38
+ ```bash
39
+ interrogate .
40
+ ```
41
+
42
+ - Use **flake8** to check that code is up to standards (no unused imports, etc.):
43
+ ```bash
44
+ flake8 .
45
+ ```
46
+
47
+ - Use **black** to automatically format the code into PEP standards:
48
+ ```bash
49
+ black .
50
+ ```
51
+
52
+ - Use **isort** to automatically sort import statements:
53
+ ```bash
54
+ isort .
55
+ ```
56
+
57
+ ### Pull requests
58
+
59
+ For internal members, please create a branch. For external members, please fork the repository and open a pull request from the fork. We'll primarily use [Angular](https://github.com/angular/angular/blob/main/CONTRIBUTING.md#commit) style for commit messages. Roughly, they should follow the pattern:
60
+ ```text
61
+ <type>(<scope>): <short summary>
62
+ ```
63
+
64
+ where scope (optional) describes the packages affected by the code changes and type (mandatory) is one of:
65
+
66
+ - **build**: Changes that affect build tools or external dependencies (example scopes: pyproject.toml, setup.py)
67
+ - **ci**: Changes to our CI configuration files and scripts (examples: .github/workflows/ci.yml)
68
+ - **docs**: Documentation only changes
69
+ - **feat**: A new feature
70
+ - **fix**: A bugfix
71
+ - **perf**: A code change that improves performance
72
+ - **refactor**: A code change that neither fixes a bug nor adds a feature
73
+ - **test**: Adding missing tests or correcting existing tests
74
+
75
+ ### Semantic Release
76
+
77
+ The table below, from [semantic release](https://github.com/semantic-release/semantic-release), shows which commit message gets you which release type when `semantic-release` runs (using the default configuration):
78
+
79
+ | Commit message | Release type |
80
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------- |
81
+ | `fix(pencil): stop graphite breaking when too much pressure applied` | ~~Patch~~ Fix Release, Default release |
82
+ | `feat(pencil): add 'graphiteWidth' option` | ~~Minor~~ Feature Release |
83
+ | `perf(pencil): remove graphiteWidth option`<br><br>`BREAKING CHANGE: The graphiteWidth option has been removed.`<br>`The default graphite width of 10mm is always used for performance reasons.` | ~~Major~~ Breaking Release <br /> (Note that the `BREAKING CHANGE: ` token must be in the footer of the commit) |
84
+
85
+ ### Documentation
86
+ To generate the rst files source files for documentation, run
87
+ ```bash
88
+ sphinx-apidoc -o doc_template/source/ src
89
+ ```
90
+ Then to create the documentation HTML files, run
91
+ ```bash
92
+ sphinx-build -b html doc_template/source/ doc_template/build/html
93
+ ```
94
+ More info on sphinx installation can be found [here](https://www.sphinx-doc.org/en/master/usage/installation.html).
@@ -0,0 +1,20 @@
1
+ # Minimal makefile for Sphinx documentation
2
+ #
3
+
4
+ # You can set these variables from the command line, and also
5
+ # from the environment for the first two.
6
+ SPHINXOPTS ?=
7
+ SPHINXBUILD ?= sphinx-build
8
+ SOURCEDIR = source
9
+ BUILDDIR = build
10
+
11
+ # Put it first so that "make" without argument is like "make help".
12
+ help:
13
+ @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14
+
15
+ .PHONY: help Makefile
16
+
17
+ # Catch-all target: route all unknown targets to Sphinx using the new
18
+ # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19
+ %: Makefile
20
+ @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)