Gill-Chiel-eNeuro-2020-metadata.yml 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789
  1. # === GLOBAL PARAMETERS ======================================================
  2. neurotic_config:
  3. # prepended to remote_data_dir unless remote_data_dir is already a full URL
  4. remote_data_root: https://gin.g-node.org/jpgill86/Gill-Chiel-eNeuro-2020-data/raw/master
  5. # these aliases are not officially part of the neurotic spec, but are
  6. # instead a feature of the YAML language, and nesting them under
  7. # neurotic_config ensures neurotic will not mistake them for a dataset
  8. aliases:
  9. colors:
  10. - &color-B38 'EFBF46' # yellow
  11. - &color-I2 'DC5151' # red
  12. - &color-B8 'DA8BC3' # pink
  13. - &color-B6B9 '64B5CD' # light blue
  14. - &color-B3B6B9 '5A9BC5' # medium blue
  15. - &color-B3 '4F80BD' # dark blue
  16. - &color-B4B5 '00A86B' # jade green
  17. - &color-traces '666666' # dark gray
  18. epoch_encoder_possible_labels: &epoch_encoder_possible_labels
  19. - B38 activity
  20. - I2 protraction activity
  21. - B8 activity
  22. - B3/6/9/10 activity
  23. - B4/B5 activity
  24. - Inward movement
  25. - Force shoulder end
  26. - Force rise start
  27. - Force plateau start
  28. - Force plateau end
  29. - Force drop end
  30. filters: &filters
  31. - channel: I2
  32. lowpass: 100 # Hz
  33. filters-JG07: &filters-JG07 # I2 channel was named differently for JG07
  34. - channel: I2-L
  35. lowpass: 100 # Hz
  36. burst_detectors: &burst_detectors # used only if fast loading is off (lazy=False)
  37. - &burst_detectors-B38
  38. spiketrain: B38
  39. thresholds: [8, 5] # Hz, based on McManus et al. 2014
  40. - &burst_detectors-I2
  41. spiketrain: I2
  42. thresholds: [10, 5] # Hz, same as Cullins et al. 2015a (based on Hurwitz et al. 1996)
  43. - &burst_detectors-B8
  44. spiketrain: B8a/b
  45. thresholds: [3, 3] # Hz, same as Cullins et al. 2015a (based on Morton and Chiel 1993a)
  46. - &burst_detectors-B6B9
  47. spiketrain: B6/B9
  48. thresholds: [10, 5] # Hz, based on Lu et al. 2015
  49. - &burst_detectors-B3
  50. spiketrain: B3
  51. thresholds: [8, 2] # Hz, based on Lu et al. 2015
  52. - &burst_detectors-B4B5
  53. spiketrain: B4/B5
  54. thresholds: [3, 3] # Hz, same as Cullins et al. 2015a ? (Table 1 says 3 Hz, text says first/last spike; based on Warman and Chiel 1995 ?)
  55. # === DATA SETS ==============================================================
  56. # --- ANIMAL 1 ---------------------------------------------------------------
  57. Animal 1 Unloaded 1:
  58. description: 'JG07 2018-05-20 002 [1169, 1191]'
  59. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 1 Unloaded 1
  60. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 1 Unloaded 1
  61. data_file: Animal 1 Unloaded 1.axgx
  62. video_file: Animal 1 Unloaded 1.mp4
  63. annotations_file: Animal 1 Unloaded 1 Annotations.csv
  64. epoch_encoder_file: Animal 1 Unloaded 1 Epoch Encoder.csv
  65. video_offset: 1169 # sec
  66. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  67. plots: &plots-JG07
  68. - channel: I2-L
  69. ylim: [-30, 30] # uV
  70. color: *color-traces
  71. - channel: RN-L
  72. ylim: [-60, 60] # uV
  73. color: *color-traces
  74. - channel: BN2-L
  75. ylim: [-100, 100] # uV
  76. color: *color-traces
  77. - channel: BN3-L
  78. ylim: [-80, 80] # uV
  79. color: *color-traces
  80. - channel: Force
  81. ylim: [-10, 300] # mN
  82. color: *color-traces
  83. filters: *filters-JG07 # used only if fast loading is off (lazy=False)
  84. amplitude_discriminators: &amplitude_discriminators-JG07 # used only if fast loading is off (lazy=False)
  85. - name: B38
  86. channel: BN2-L
  87. units: uV
  88. amplitude: [15, 30]
  89. epoch: B38 activity
  90. color: *color-B38
  91. - name: I2
  92. channel: I2-L
  93. units: uV
  94. amplitude: [2, 30]
  95. epoch: I2 protraction activity
  96. color: *color-I2
  97. - name: B8a/b
  98. channel: RN-L
  99. units: uV
  100. amplitude: [-40, -10]
  101. epoch: B8 activity
  102. color: *color-B8
  103. - name: B6/B9
  104. channel: BN2-L
  105. units: uV
  106. amplitude: [-40, -12]
  107. epoch: B3/6/9/10 activity
  108. color: *color-B6B9
  109. - name: B3
  110. channel: BN2-L
  111. units: uV
  112. amplitude: [40, 100]
  113. epoch: B3/6/9/10 activity
  114. color: *color-B3
  115. - name: B4/B5
  116. channel: BN3-L
  117. units: uV
  118. amplitude: [50, 120]
  119. epoch: B4/B5 activity
  120. color: *color-B4B5
  121. burst_detectors: &burst_detectors-JG07 # used only if fast loading is off (lazy=False)
  122. - *burst_detectors-B38
  123. - *burst_detectors-I2
  124. - spiketrain: B8a/b
  125. thresholds: [2, 2] # Hz, both thresholds reduced for this animal because B8a/b signal was weak with few spikes
  126. - *burst_detectors-B6B9
  127. - *burst_detectors-B3
  128. - *burst_detectors-B4B5
  129. Animal 1 Unloaded 2:
  130. description: 'JG07 2018-05-20 002 [1495, 1518]'
  131. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 1 Unloaded 2
  132. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 1 Unloaded 2
  133. data_file: Animal 1 Unloaded 2.axgx
  134. video_file: Animal 1 Unloaded 2.mp4
  135. annotations_file: Animal 1 Unloaded 2 Annotations.csv
  136. epoch_encoder_file: Animal 1 Unloaded 2 Epoch Encoder.csv
  137. video_offset: 1495 # sec
  138. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  139. plots: *plots-JG07
  140. filters: *filters-JG07 # used only if fast loading is off (lazy=False)
  141. amplitude_discriminators: *amplitude_discriminators-JG07 # used only if fast loading is off (lazy=False)
  142. burst_detectors: *burst_detectors-JG07 # used only if fast loading is off (lazy=False)
  143. Animal 1 Unloaded 3:
  144. description: 'JG07 2018-05-20 002 [1581, 1615]'
  145. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 1 Unloaded 3
  146. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 1 Unloaded 3
  147. data_file: Animal 1 Unloaded 3.axgx
  148. video_file: Animal 1 Unloaded 3.mp4
  149. annotations_file: Animal 1 Unloaded 3 Annotations.csv
  150. epoch_encoder_file: Animal 1 Unloaded 3 Epoch Encoder.csv
  151. video_offset: 1581 # sec
  152. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  153. plots: *plots-JG07
  154. filters: *filters-JG07 # used only if fast loading is off (lazy=False)
  155. amplitude_discriminators: *amplitude_discriminators-JG07 # used only if fast loading is off (lazy=False)
  156. burst_detectors: *burst_detectors-JG07 # used only if fast loading is off (lazy=False)
  157. Animal 1 Loaded 1:
  158. description: 'JG07 2018-05-20 002 [2716, 2755]'
  159. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 1 Loaded 1
  160. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 1 Loaded 1
  161. data_file: Animal 1 Loaded 1.axgx
  162. video_file: Animal 1 Loaded 1.mp4
  163. annotations_file: Animal 1 Loaded 1 Annotations.csv
  164. epoch_encoder_file: Animal 1 Loaded 1 Epoch Encoder.csv
  165. video_offset: 2716 # sec
  166. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  167. plots: *plots-JG07
  168. filters: *filters-JG07 # used only if fast loading is off (lazy=False)
  169. amplitude_discriminators: *amplitude_discriminators-JG07 # used only if fast loading is off (lazy=False)
  170. burst_detectors: *burst_detectors-JG07 # used only if fast loading is off (lazy=False)
  171. # --- ANIMAL 2 ---------------------------------------------------------------
  172. Animal 2 Unloaded 1:
  173. description: 'JG08 2018-06-21 002 [ 256, 287]'
  174. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 2 Unloaded 1
  175. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 2 Unloaded 1
  176. data_file: Animal 2 Unloaded 1.axgx
  177. video_file: Animal 2 Unloaded 1.mp4
  178. annotations_file: Animal 2 Unloaded 1 Annotations.csv
  179. epoch_encoder_file: Animal 2 Unloaded 1 Epoch Encoder.csv
  180. video_offset: 256 # sec
  181. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  182. plots: &plots-JG08
  183. - channel: I2
  184. ylim: [-30, 30] # uV
  185. color: *color-traces
  186. - channel: RN
  187. ylim: [-100, 100] # uV
  188. color: *color-traces
  189. - channel: BN2
  190. ylim: [-150, 150] # uV
  191. color: *color-traces
  192. - channel: BN3
  193. ylim: [-150, 150] # uV
  194. color: *color-traces
  195. - channel: Force
  196. ylim: [-10, 300] # mN
  197. color: *color-traces
  198. filters: *filters # used only if fast loading is off (lazy=False)
  199. amplitude_discriminators: &amplitude_discriminators-JG08 # used only if fast loading is off (lazy=False)
  200. - name: B38
  201. channel: BN2
  202. units: uV
  203. amplitude: [17, 26]
  204. epoch: B38 activity
  205. color: *color-B38
  206. - name: I2
  207. channel: I2
  208. units: uV
  209. amplitude: [2, 75]
  210. epoch: I2 protraction activity
  211. color: *color-I2
  212. - name: B8a/b
  213. channel: RN
  214. units: uV
  215. amplitude: [-50, -12]
  216. epoch: B8 activity
  217. color: *color-B8
  218. - name: B6/B9
  219. channel: BN2
  220. units: uV
  221. amplitude: [-50, -30]
  222. epoch: B3/6/9/10 activity
  223. color: *color-B6B9
  224. - name: B3
  225. channel: BN2
  226. units: uV
  227. amplitude: [50, 150]
  228. epoch: B3/6/9/10 activity
  229. color: *color-B3
  230. - name: B4/B5
  231. channel: BN3
  232. units: uV
  233. amplitude: [50, 200]
  234. epoch: B4/B5 activity
  235. color: *color-B4B5
  236. burst_detectors: &burst_detectors-JG08 # used only if fast loading is off (lazy=False)
  237. - *burst_detectors-B38
  238. - *burst_detectors-I2
  239. - *burst_detectors-B8
  240. - spiketrain: B6/B9
  241. thresholds: [10, 3] # Hz, end threshold reduced for this animal
  242. - *burst_detectors-B3
  243. - *burst_detectors-B4B5
  244. Animal 2 Unloaded 2:
  245. description: 'JG08 2018-06-21 002 [ 454, 481]'
  246. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 2 Unloaded 2
  247. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 2 Unloaded 2
  248. data_file: Animal 2 Unloaded 2.axgx
  249. video_file: Animal 2 Unloaded 2.mp4
  250. annotations_file: Animal 2 Unloaded 2 Annotations.csv
  251. epoch_encoder_file: Animal 2 Unloaded 2 Epoch Encoder.csv
  252. video_offset: 454 # sec
  253. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  254. plots: *plots-JG08
  255. filters: *filters # used only if fast loading is off (lazy=False)
  256. amplitude_discriminators: *amplitude_discriminators-JG08 # used only if fast loading is off (lazy=False)
  257. burst_detectors: *burst_detectors-JG08 # used only if fast loading is off (lazy=False)
  258. Animal 2 Loaded 1:
  259. description: 'JG08 2018-06-21 002 [ 141, 210]'
  260. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 2 Loaded 1
  261. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 2 Loaded 1
  262. data_file: Animal 2 Loaded 1.axgx
  263. video_file: Animal 2 Loaded 1.mp4
  264. annotations_file: Animal 2 Loaded 1 Annotations.csv
  265. epoch_encoder_file: Animal 2 Loaded 1 Epoch Encoder.csv
  266. video_offset: 141 # sec
  267. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  268. plots: *plots-JG08
  269. filters: *filters # used only if fast loading is off (lazy=False)
  270. amplitude_discriminators: *amplitude_discriminators-JG08 # used only if fast loading is off (lazy=False)
  271. burst_detectors: *burst_detectors-JG08 # used only if fast loading is off (lazy=False)
  272. Animal 2 Loaded 2:
  273. description: 'JG08 2018-06-21 002 [ 660, 701]'
  274. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 2 Loaded 2
  275. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 2 Loaded 2
  276. data_file: Animal 2 Loaded 2.axgx
  277. video_file: Animal 2 Loaded 2.mp4
  278. annotations_file: Animal 2 Loaded 2 Annotations.csv
  279. epoch_encoder_file: Animal 2 Loaded 2 Epoch Encoder.csv
  280. video_offset: 660 # sec
  281. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  282. plots: *plots-JG08
  283. filters: *filters # used only if fast loading is off (lazy=False)
  284. amplitude_discriminators: *amplitude_discriminators-JG08 # used only if fast loading is off (lazy=False)
  285. burst_detectors: *burst_detectors-JG08 # used only if fast loading is off (lazy=False)
  286. Animal 2 Loaded 3:
  287. description: 'JG08 2018-06-21 002 [1448, 1477]'
  288. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 2 Loaded 3
  289. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 2 Loaded 3
  290. data_file: Animal 2 Loaded 3.axgx
  291. video_file: Animal 2 Loaded 3.mp4
  292. annotations_file: Animal 2 Loaded 3 Annotations.csv
  293. epoch_encoder_file: Animal 2 Loaded 3 Epoch Encoder.csv
  294. video_offset: 1448 # sec
  295. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  296. plots: *plots-JG08
  297. filters: *filters # used only if fast loading is off (lazy=False)
  298. amplitude_discriminators: *amplitude_discriminators-JG08 # used only if fast loading is off (lazy=False)
  299. burst_detectors: *burst_detectors-JG08 # used only if fast loading is off (lazy=False)
  300. # --- ANIMAL 3 ---------------------------------------------------------------
  301. Animal 3 Unloaded 1:
  302. description: 'JG11 2019-04-03 001 [1791, 1819]'
  303. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 3 Unloaded 1
  304. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 3 Unloaded 1
  305. data_file: Animal 3 Unloaded 1.axgx
  306. video_file: Animal 3 Unloaded 1.mp4
  307. annotations_file: Animal 3 Unloaded 1 Annotations.csv
  308. epoch_encoder_file: Animal 3 Unloaded 1 Epoch Encoder.csv
  309. video_offset: 1791 # sec
  310. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  311. plots: &plots-JG11
  312. - channel: I2
  313. ylim: [-30, 30] # uV
  314. color: *color-traces
  315. - channel: RN
  316. ylim: [-30, 30] # uV
  317. color: *color-traces
  318. - channel: BN2
  319. ylim: [-100, 100] # uV
  320. color: *color-traces
  321. - channel: BN3-PROX
  322. ylim: [-100, 100] # uV
  323. color: *color-traces
  324. - channel: Force
  325. ylim: [-10, 500] # mN
  326. color: *color-traces
  327. filters: *filters # used only if fast loading is off (lazy=False)
  328. amplitude_discriminators: &amplitude_discriminators-JG11 # used only if fast loading is off (lazy=False)
  329. - name: B38
  330. channel: BN2
  331. units: uV
  332. amplitude: [20, 50]
  333. epoch: B38 activity
  334. color: *color-B38
  335. - name: I2
  336. channel: I2
  337. units: uV
  338. amplitude: [2, 20]
  339. epoch: I2 protraction activity
  340. color: *color-I2
  341. - name: B8a/b
  342. channel: RN
  343. units: uV
  344. amplitude: [-30, -8]
  345. epoch: B8 activity
  346. color: *color-B8
  347. - name: B6/B9
  348. channel: BN2
  349. units: uV
  350. amplitude: [-60, -15]
  351. epoch: B3/6/9/10 activity
  352. color: *color-B6B9
  353. - name: B3
  354. channel: BN2
  355. units: uV
  356. amplitude: [-120, -60]
  357. epoch: B3/6/9/10 activity
  358. color: *color-B3
  359. - name: B4/B5
  360. channel: BN3-PROX
  361. units: uV
  362. amplitude: [70, 150]
  363. epoch: B4/B5 activity
  364. color: *color-B4B5
  365. burst_detectors: &burst_detectors-JG11 # used only if fast loading is off (lazy=False)
  366. - *burst_detectors-B38
  367. - *burst_detectors-I2
  368. - *burst_detectors-B8
  369. - *burst_detectors-B6B9
  370. - *burst_detectors-B3
  371. - spiketrain: B4/B5
  372. thresholds: [1.5, 1.5] # Hz, both thresholds reduced for this animal because only one neuron appeared to project
  373. Animal 3 Unloaded 2:
  374. description: 'JG11 2019-04-03 004 [ 551, 568]'
  375. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 3 Unloaded 2
  376. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 3 Unloaded 2
  377. data_file: Animal 3 Unloaded 2.axgx
  378. video_file: Animal 3 Unloaded 2.mp4
  379. annotations_file: Animal 3 Unloaded 2 Annotations.csv
  380. epoch_encoder_file: Animal 3 Unloaded 2 Epoch Encoder.csv
  381. video_offset: 551 # sec
  382. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  383. plots: *plots-JG11
  384. filters: *filters # used only if fast loading is off (lazy=False)
  385. amplitude_discriminators: *amplitude_discriminators-JG11 # used only if fast loading is off (lazy=False)
  386. burst_detectors: *burst_detectors-JG11 # used only if fast loading is off (lazy=False)
  387. Animal 3 Loaded 1:
  388. description: 'JG11 2019-04-03 004 [1226, 1280]'
  389. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 3 Loaded 1
  390. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 3 Loaded 1
  391. data_file: Animal 3 Loaded 1.axgx
  392. video_file: Animal 3 Loaded 1.mp4
  393. annotations_file: Animal 3 Loaded 1 Annotations.csv
  394. epoch_encoder_file: Animal 3 Loaded 1 Epoch Encoder.csv
  395. video_offset: 1226 # sec
  396. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  397. plots: *plots-JG11
  398. filters: *filters # used only if fast loading is off (lazy=False)
  399. amplitude_discriminators: *amplitude_discriminators-JG11 # used only if fast loading is off (lazy=False)
  400. burst_detectors: *burst_detectors-JG11 # used only if fast loading is off (lazy=False)
  401. # --- ANIMAL 4 ---------------------------------------------------------------
  402. Animal 4 Unloaded 1:
  403. description: 'JG12 2019-05-10 002 [ 147, 165]'
  404. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 4 Unloaded 1
  405. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 4 Unloaded 1
  406. data_file: Animal 4 Unloaded 1.axgx
  407. video_file: Animal 4 Unloaded 1.mp4
  408. annotations_file: Animal 4 Unloaded 1 Annotations.csv
  409. epoch_encoder_file: Animal 4 Unloaded 1 Epoch Encoder.csv
  410. video_offset: 147 # sec
  411. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  412. plots: &plots-JG12
  413. - channel: I2
  414. ylim: [-50, 50] # uV
  415. color: *color-traces
  416. - channel: RN
  417. ylim: [-25, 25] # uV
  418. color: *color-traces
  419. - channel: BN2
  420. ylim: [-45, 45] # uV
  421. color: *color-traces
  422. - channel: BN3-DIST
  423. ylim: [-60, 60] # uV
  424. color: *color-traces
  425. - channel: Force
  426. ylim: [-10, 500] # mN
  427. color: *color-traces
  428. filters: *filters # used only if fast loading is off (lazy=False)
  429. amplitude_discriminators: &amplitude_discriminators-JG12 # used only if fast loading is off (lazy=False)
  430. - name: B38
  431. channel: BN2
  432. units: uV
  433. amplitude: [7, 20]
  434. epoch: B38 activity
  435. color: *color-B38
  436. - name: I2
  437. channel: I2
  438. units: uV
  439. amplitude: [2, 75]
  440. epoch: I2 protraction activity
  441. color: *color-I2
  442. - name: B8a/b
  443. channel: RN
  444. units: uV
  445. amplitude: [-30, -8]
  446. epoch: B8 activity
  447. color: *color-B8
  448. - name: B6/B9
  449. channel: BN2
  450. units: uV
  451. amplitude: [-25, -9]
  452. epoch: B3/6/9/10 activity
  453. color: *color-B6B9
  454. - name: B3
  455. channel: BN2
  456. units: uV
  457. amplitude: [-60, -25]
  458. epoch: B3/6/9/10 activity
  459. color: *color-B3
  460. - name: B4/B5
  461. channel: BN3-DIST
  462. units: uV
  463. amplitude: [-80, -20]
  464. epoch: B4/B5 activity
  465. color: *color-B4B5
  466. burst_detectors: *burst_detectors # used only if fast loading is off (lazy=False)
  467. Animal 4 Unloaded 2:
  468. description: 'JG12 2019-05-10 002 [ 228, 245]'
  469. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 4 Unloaded 2
  470. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 4 Unloaded 2
  471. data_file: Animal 4 Unloaded 2.axgx
  472. video_file: Animal 4 Unloaded 2.mp4
  473. annotations_file: Animal 4 Unloaded 2 Annotations.csv
  474. epoch_encoder_file: Animal 4 Unloaded 2 Epoch Encoder.csv
  475. video_offset: 228 # sec
  476. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  477. plots: *plots-JG12
  478. filters: *filters # used only if fast loading is off (lazy=False)
  479. amplitude_discriminators: *amplitude_discriminators-JG12 # used only if fast loading is off (lazy=False)
  480. burst_detectors: *burst_detectors # used only if fast loading is off (lazy=False)
  481. Animal 4 Unloaded 3:
  482. description: 'JG12 2019-05-10 002 [ 277, 291]'
  483. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 4 Unloaded 3
  484. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 4 Unloaded 3
  485. data_file: Animal 4 Unloaded 3.axgx
  486. video_file: Animal 4 Unloaded 3.mp4
  487. annotations_file: Animal 4 Unloaded 3 Annotations.csv
  488. epoch_encoder_file: Animal 4 Unloaded 3 Epoch Encoder.csv
  489. video_offset: 277 # sec
  490. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  491. plots: *plots-JG12
  492. filters: *filters # used only if fast loading is off (lazy=False)
  493. amplitude_discriminators: *amplitude_discriminators-JG12 # used only if fast loading is off (lazy=False)
  494. burst_detectors: *burst_detectors # used only if fast loading is off (lazy=False)
  495. Animal 4 Loaded 1:
  496. description: 'JG12 2019-05-10 002 [ 434, 465]'
  497. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 4 Loaded 1
  498. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 4 Loaded 1
  499. data_file: Animal 4 Loaded 1.axgx
  500. video_file: Animal 4 Loaded 1.mp4
  501. annotations_file: Animal 4 Loaded 1 Annotations.csv
  502. epoch_encoder_file: Animal 4 Loaded 1 Epoch Encoder.csv
  503. video_offset: 434 # sec
  504. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  505. plots: *plots-JG12
  506. filters: *filters # used only if fast loading is off (lazy=False)
  507. amplitude_discriminators: *amplitude_discriminators-JG12 # used only if fast loading is off (lazy=False)
  508. burst_detectors: *burst_detectors # used only if fast loading is off (lazy=False)
  509. Animal 4 Loaded 2:
  510. description: 'JG12 2019-05-10 002 [2897, 2937]'
  511. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 4 Loaded 2
  512. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 4 Loaded 2
  513. data_file: Animal 4 Loaded 2.axgx
  514. video_file: Animal 4 Loaded 2.mp4
  515. annotations_file: Animal 4 Loaded 2 Annotations.csv
  516. epoch_encoder_file: Animal 4 Loaded 2 Epoch Encoder.csv
  517. video_offset: 2897 # sec
  518. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  519. plots: *plots-JG12
  520. filters: *filters # used only if fast loading is off (lazy=False)
  521. amplitude_discriminators: *amplitude_discriminators-JG12 # used only if fast loading is off (lazy=False)
  522. burst_detectors: *burst_detectors # used only if fast loading is off (lazy=False)
  523. Animal 4 Unloaded 2 Superset:
  524. description: 'JG12 2019-05-10 002 [ 223.4, 261.4]'
  525. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 4 Unloaded 2 Superset
  526. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 4 Unloaded 2 Superset
  527. data_file: Animal 4 Unloaded 2 Superset.axgx
  528. video_file: Animal 4 Unloaded 2 Superset.mp4
  529. annotations_file: Animal 4 Unloaded 2 Superset Annotations.csv
  530. epoch_encoder_file: Animal 4 Unloaded 2 Superset Epoch Encoder.csv
  531. video_offset: 223.4 # sec
  532. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  533. plots: *plots-JG12
  534. filters: *filters # used only if fast loading is off (lazy=False)
  535. amplitude_discriminators: *amplitude_discriminators-JG12 # used only if fast loading is off (lazy=False)
  536. burst_detectors: *burst_detectors # used only if fast loading is off (lazy=False)
  537. Animal 4 Loaded 2 Superset:
  538. description: 'JG12 2019-05-10 002 [2875.3, 3039.3]'
  539. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 4 Loaded 2 Superset
  540. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 4 Loaded 2 Superset
  541. data_file: Animal 4 Loaded 2 Superset.axgx
  542. video_file: Animal 4 Loaded 2 Superset.mp4
  543. annotations_file: Animal 4 Loaded 2 Superset Annotations.csv
  544. epoch_encoder_file: Animal 4 Loaded 2 Superset Epoch Encoder.csv
  545. video_offset: 2875.3 # sec
  546. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  547. plots: *plots-JG12
  548. filters: *filters # used only if fast loading is off (lazy=False)
  549. amplitude_discriminators: *amplitude_discriminators-JG12 # used only if fast loading is off (lazy=False)
  550. burst_detectors: *burst_detectors # used only if fast loading is off (lazy=False)
  551. # --- ANIMAL 5 ---------------------------------------------------------------
  552. Animal 5 Unloaded 1:
  553. description: 'JG14 2019-07-30 001 [1834, 1865]'
  554. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 5 Unloaded 1
  555. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 5 Unloaded 1
  556. data_file: Animal 5 Unloaded 1.axgx
  557. video_file: Animal 5 Unloaded 1.mp4
  558. annotations_file: Animal 5 Unloaded 1 Annotations.csv
  559. epoch_encoder_file: Animal 5 Unloaded 1 Epoch Encoder.csv
  560. video_offset: 1834 # sec
  561. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  562. plots: &plots-JG14
  563. - channel: I2
  564. ylim: [-30, 30] # uV
  565. color: *color-traces
  566. - channel: RN
  567. ylim: [-30, 30] # uV
  568. color: *color-traces
  569. - channel: BN2
  570. ylim: [-50, 50] # uV
  571. color: *color-traces
  572. - channel: BN3-PROX
  573. ylim: [-60, 60] # uV
  574. color: *color-traces
  575. - channel: Force
  576. ylim: [-10, 500] # mN
  577. color: *color-traces
  578. filters: *filters # used only if fast loading is off (lazy=False)
  579. amplitude_discriminators: &amplitude_discriminators-JG14 # used only if fast loading is off (lazy=False)
  580. - name: B38
  581. channel: BN2
  582. units: uV
  583. amplitude: [12, 25]
  584. epoch: B38 activity
  585. color: *color-B38
  586. - name: I2
  587. channel: I2
  588. units: uV
  589. amplitude: [1, 10]
  590. epoch: I2 protraction activity
  591. color: *color-I2
  592. - name: B8a/b
  593. channel: RN
  594. units: uV
  595. amplitude: [-15, -6]
  596. epoch: B8 activity
  597. color: *color-B8
  598. - name: B6/B9
  599. channel: BN2
  600. units: uV
  601. amplitude: [-30, -20]
  602. epoch: B3/6/9/10 activity
  603. color: *color-B6B9
  604. - name: B3
  605. channel: BN2
  606. units: uV
  607. amplitude: [-80, -30]
  608. epoch: B3/6/9/10 activity
  609. color: *color-B3
  610. - name: B4/B5
  611. channel: BN3-PROX
  612. units: uV
  613. amplitude: [-40, -13]
  614. epoch: B4/B5 activity
  615. color: *color-B4B5
  616. burst_detectors: &burst_detectors-JG14 # used only if fast loading is off (lazy=False)
  617. - *burst_detectors-B38
  618. - *burst_detectors-I2
  619. - *burst_detectors-B8
  620. - spiketrain: B6/B9
  621. thresholds: [4, 2] # Hz, both thresholds reduced for this animal because B6/B9 always fired slowly
  622. - *burst_detectors-B3
  623. - *burst_detectors-B4B5
  624. Animal 5 Unloaded 2:
  625. description: 'JG14 2019-07-30 001 [1909, 1943]'
  626. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 5 Unloaded 2
  627. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 5 Unloaded 2
  628. data_file: Animal 5 Unloaded 2.axgx
  629. video_file: Animal 5 Unloaded 2.mp4
  630. annotations_file: Animal 5 Unloaded 2 Annotations.csv
  631. epoch_encoder_file: Animal 5 Unloaded 2 Epoch Encoder.csv
  632. video_offset: 1909 # sec
  633. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  634. plots: *plots-JG14
  635. filters: *filters # used only if fast loading is off (lazy=False)
  636. amplitude_discriminators: *amplitude_discriminators-JG14 # used only if fast loading is off (lazy=False)
  637. burst_detectors: *burst_detectors-JG14 # used only if fast loading is off (lazy=False)
  638. Animal 5 Unloaded 3:
  639. description: 'JG14 2019-07-30 001 [2049, 2084]'
  640. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 5 Unloaded 3
  641. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 5 Unloaded 3
  642. data_file: Animal 5 Unloaded 3.axgx
  643. video_file: Animal 5 Unloaded 3.mp4
  644. annotations_file: Animal 5 Unloaded 3 Annotations.csv
  645. epoch_encoder_file: Animal 5 Unloaded 3 Epoch Encoder.csv
  646. video_offset: 2049 # sec
  647. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  648. plots: *plots-JG14
  649. filters: *filters # used only if fast loading is off (lazy=False)
  650. amplitude_discriminators: *amplitude_discriminators-JG14 # used only if fast loading is off (lazy=False)
  651. burst_detectors: *burst_detectors-JG14 # used only if fast loading is off (lazy=False)
  652. Animal 5 Loaded 1:
  653. description: 'JG14 2019-07-29 004 [ 828, 870]'
  654. data_dir: Gill-Chiel-eNeuro-2020-data/Animal 5 Loaded 1
  655. remote_data_dir: Gill-Chiel-eNeuro-2020-data/Animal 5 Loaded 1
  656. data_file: Animal 5 Loaded 1.axgx
  657. video_file: Animal 5 Loaded 1.mp4
  658. annotations_file: Animal 5 Loaded 1 Annotations.csv
  659. epoch_encoder_file: Animal 5 Loaded 1 Epoch Encoder.csv
  660. video_offset: 828 # sec
  661. epoch_encoder_possible_labels: *epoch_encoder_possible_labels
  662. plots: *plots-JG14
  663. filters: *filters # used only if fast loading is off (lazy=False)
  664. amplitude_discriminators: *amplitude_discriminators-JG14 # used only if fast loading is off (lazy=False)
  665. burst_detectors: *burst_detectors-JG14 # used only if fast loading is off (lazy=False)