Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

assets.yaml 51 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. blobDateModified: '2023-12-10T19:11:45.790000+01:00'
  6. contentSize: 152311342
  7. contentUrl:
  8. - https://api.dandiarchive.org/api/assets/a1ae7526-4152-4395-aea1-9b5fe395b71d/download/
  9. - https://dandiarchive.s3.amazonaws.com/blobs/191/923/1919235d-beaf-42cf-a8bc-3a12134d1019
  10. dateModified: '2023-12-10T19:19:20.365790+01:00'
  11. datePublished: '2024-01-06T00:43:26.777600+00:00'
  12. digest:
  13. dandi:dandi-etag: 7da00e80330fe40b97d5f3e46668bc28-3
  14. dandi:sha2-256: 6cdd806db7a501b6bbaaa66b4f5b2d5db0856ae3441fd8b42003a4a4f3405b52
  15. encodingFormat: video/x-msvideo
  16. id: dandiasset:a1ae7526-4152-4395-aea1-9b5fe395b71d
  17. identifier: a1ae7526-4152-4395-aea1-9b5fe395b71d
  18. path: sub-fly-094/sub-fly-094_ses-20200620122048_behavior+image+ophys/a8173d1b-03df-4580-b6d3-9499604280c3_external_file_0.avi
  19. publishedBy:
  20. endDate: '2024-01-06T00:43:26.777600+00:00'
  21. id: urn:uuid:ba96c849-a432-48f1-b275-9e5e402b5085
  22. name: DANDI publish
  23. schemaKey: PublishActivity
  24. startDate: '2024-01-06T00:43:26.777600+00:00'
  25. wasAssociatedWith:
  26. - id: urn:uuid:cd81a5d9-ab40-494e-a47c-793bf6851f1e
  27. identifier: RRID:SCR_017571
  28. name: DANDI API
  29. schemaKey: Software
  30. version: 0.1.0
  31. schemaKey: Asset
  32. schemaVersion: 0.6.4
  33. wasGeneratedBy:
  34. - description: Metadata generated by DANDI cli
  35. endDate: '2023-12-10T19:19:20.365767+01:00'
  36. id: urn:uuid:ed445973-57f7-4586-b1db-59a3649f598d
  37. name: Metadata generation
  38. schemaKey: Activity
  39. startDate: '2023-12-10T19:19:20.365767+01:00'
  40. wasAssociatedWith:
  41. - identifier: RRID:SCR_019009
  42. name: DANDI Command Line Interface
  43. schemaKey: Software
  44. url: https://github.com/dandi/dandi-cli
  45. version: 0.58.1
  46. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  47. access:
  48. - schemaKey: AccessRequirements
  49. status: dandi:OpenAccess
  50. blobDateModified: '2023-12-10T19:12:07.340000+01:00'
  51. contentSize: 171709998
  52. contentUrl:
  53. - https://api.dandiarchive.org/api/assets/6dfe0576-c84e-46d6-97f8-fbf072895e0e/download/
  54. - https://dandiarchive.s3.amazonaws.com/blobs/202/503/202503b4-cf28-43f7-9491-ba5d682df7b9
  55. dateModified: '2023-12-10T19:19:21.596588+01:00'
  56. datePublished: '2024-01-06T00:43:26.899183+00:00'
  57. digest:
  58. dandi:dandi-etag: e6b8659d2ba33dd8fd50109be48ae77c-3
  59. dandi:sha2-256: 203ae6c4871e44cd00c6ebd5867d32248bf745578934b046cd3e673f44e7db73
  60. encodingFormat: video/x-msvideo
  61. id: dandiasset:6dfe0576-c84e-46d6-97f8-fbf072895e0e
  62. identifier: 6dfe0576-c84e-46d6-97f8-fbf072895e0e
  63. path: sub-fly-089/sub-fly-089_ses-20200618081653_behavior+image+ophys/5c033c49-ed7c-49c1-841a-10cc13faf1d0_external_file_0.avi
  64. publishedBy:
  65. endDate: '2024-01-06T00:43:26.899183+00:00'
  66. id: urn:uuid:a76c45cf-17a2-4ec6-af00-f7073852815b
  67. name: DANDI publish
  68. schemaKey: PublishActivity
  69. startDate: '2024-01-06T00:43:26.899183+00:00'
  70. wasAssociatedWith:
  71. - id: urn:uuid:cc7e2116-8b03-4e1e-8d5c-66a42ed95637
  72. identifier: RRID:SCR_017571
  73. name: DANDI API
  74. schemaKey: Software
  75. version: 0.1.0
  76. schemaKey: Asset
  77. schemaVersion: 0.6.4
  78. wasGeneratedBy:
  79. - description: Metadata generated by DANDI cli
  80. endDate: '2023-12-10T19:19:21.596542+01:00'
  81. id: urn:uuid:2917834c-e956-45ad-9fb8-8a0135fde45d
  82. name: Metadata generation
  83. schemaKey: Activity
  84. startDate: '2023-12-10T19:19:21.596542+01:00'
  85. wasAssociatedWith:
  86. - identifier: RRID:SCR_019009
  87. name: DANDI Command Line Interface
  88. schemaKey: Software
  89. url: https://github.com/dandi/dandi-cli
  90. version: 0.58.1
  91. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  92. access:
  93. - schemaKey: AccessRequirements
  94. status: dandi:OpenAccess
  95. blobDateModified: '2023-12-10T19:12:02.870000+01:00'
  96. contentSize: 230954542
  97. contentUrl:
  98. - https://api.dandiarchive.org/api/assets/f8253c46-7bdc-4de2-b44e-14862281051f/download/
  99. - https://dandiarchive.s3.amazonaws.com/blobs/b12/ffd/b12ffd4b-43ea-4010-984c-dc0dbaa810ed
  100. dateModified: '2023-12-10T19:19:21.005646+01:00'
  101. datePublished: '2024-01-06T00:43:26.905557+00:00'
  102. digest:
  103. dandi:dandi-etag: 2117502a3430c5fe8e783c7d3655df96-4
  104. dandi:sha2-256: 03732b08cae31e2e2273fc57100778d4667df64444cf4f5c3a2c2663cfd21b28
  105. encodingFormat: video/x-msvideo
  106. id: dandiasset:f8253c46-7bdc-4de2-b44e-14862281051f
  107. identifier: f8253c46-7bdc-4de2-b44e-14862281051f
  108. path: sub-fly-087/sub-fly-087_ses-20200228161226_behavior+image+ophys/715320fc-831c-4218-a723-32ca9e147cb2_external_file_0.avi
  109. publishedBy:
  110. endDate: '2024-01-06T00:43:26.905557+00:00'
  111. id: urn:uuid:1bcf2698-5833-4f40-ba39-b7203f386423
  112. name: DANDI publish
  113. schemaKey: PublishActivity
  114. startDate: '2024-01-06T00:43:26.905557+00:00'
  115. wasAssociatedWith:
  116. - id: urn:uuid:1c77e802-8b73-4d94-b36e-f6a0093efca0
  117. identifier: RRID:SCR_017571
  118. name: DANDI API
  119. schemaKey: Software
  120. version: 0.1.0
  121. schemaKey: Asset
  122. schemaVersion: 0.6.4
  123. wasGeneratedBy:
  124. - description: Metadata generated by DANDI cli
  125. endDate: '2023-12-10T19:19:21.005611+01:00'
  126. id: urn:uuid:c3531134-c2cf-401b-8bd7-bf2275530084
  127. name: Metadata generation
  128. schemaKey: Activity
  129. startDate: '2023-12-10T19:19:21.005611+01:00'
  130. wasAssociatedWith:
  131. - identifier: RRID:SCR_019009
  132. name: DANDI Command Line Interface
  133. schemaKey: Software
  134. url: https://github.com/dandi/dandi-cli
  135. version: 0.58.1
  136. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  137. access:
  138. - schemaKey: AccessRequirements
  139. status: dandi:OpenAccess
  140. blobDateModified: '2023-12-10T19:12:04.920000+01:00'
  141. contentSize: 150738478
  142. contentUrl:
  143. - https://api.dandiarchive.org/api/assets/0beef1a3-5e96-4672-907d-96a10dd3dcb4/download/
  144. - https://dandiarchive.s3.amazonaws.com/blobs/a50/63f/a5063f4d-98ce-47c1-add8-1ed5825e05af
  145. dateModified: '2023-12-10T19:20:05.961787+01:00'
  146. datePublished: '2024-01-06T00:43:26.911983+00:00'
  147. digest:
  148. dandi:dandi-etag: a4680d76308d0866bc46403a55543d63-3
  149. dandi:sha2-256: f8b1a9a199b49715006423cbc4446bac9c6b77a9b77560697705684e67568356
  150. encodingFormat: video/x-msvideo
  151. id: dandiasset:0beef1a3-5e96-4672-907d-96a10dd3dcb4
  152. identifier: 0beef1a3-5e96-4672-907d-96a10dd3dcb4
  153. path: sub-fly-097/sub-fly-097_ses-20200627113329_behavior+image+ophys/2226474c-b04b-4bf0-8e32-b89ba3ee9587_external_file_0.avi
  154. publishedBy:
  155. endDate: '2024-01-06T00:43:26.911983+00:00'
  156. id: urn:uuid:8b321352-8a0b-414f-b8e8-afcb79a58f6d
  157. name: DANDI publish
  158. schemaKey: PublishActivity
  159. startDate: '2024-01-06T00:43:26.911983+00:00'
  160. wasAssociatedWith:
  161. - id: urn:uuid:e51897b4-833d-4b02-b75b-ecf3f0bb8730
  162. identifier: RRID:SCR_017571
  163. name: DANDI API
  164. schemaKey: Software
  165. version: 0.1.0
  166. schemaKey: Asset
  167. schemaVersion: 0.6.4
  168. wasGeneratedBy:
  169. - description: Metadata generated by DANDI cli
  170. endDate: '2023-12-10T19:20:05.961764+01:00'
  171. id: urn:uuid:a5cee270-842c-4de1-89f5-4babdafe26c2
  172. name: Metadata generation
  173. schemaKey: Activity
  174. startDate: '2023-12-10T19:20:05.961764+01:00'
  175. wasAssociatedWith:
  176. - identifier: RRID:SCR_019009
  177. name: DANDI Command Line Interface
  178. schemaKey: Software
  179. url: https://github.com/dandi/dandi-cli
  180. version: 0.58.1
  181. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  182. access:
  183. - schemaKey: AccessRequirements
  184. status: dandi:OpenAccess
  185. blobDateModified: '2023-12-10T19:12:06.200000+01:00'
  186. contentSize: 190584366
  187. contentUrl:
  188. - https://api.dandiarchive.org/api/assets/c4e94c0b-54ef-4dc9-91a8-b95ee91cc629/download/
  189. - https://dandiarchive.s3.amazonaws.com/blobs/39d/d72/39dd72e3-9eaa-4ce5-a565-376f7ba9eb54
  190. dateModified: '2023-12-10T19:20:25.922801+01:00'
  191. datePublished: '2024-01-06T00:43:26.917941+00:00'
  192. digest:
  193. dandi:dandi-etag: 35c6a78853534dc37cd7a19f7e703d68-3
  194. dandi:sha2-256: f184cae921d2e049f55f9569a0d40326c4d3b5d9090ada668ca8e87c7f1d06ee
  195. encodingFormat: video/x-msvideo
  196. id: dandiasset:c4e94c0b-54ef-4dc9-91a8-b95ee91cc629
  197. identifier: c4e94c0b-54ef-4dc9-91a8-b95ee91cc629
  198. path: sub-fly-098/sub-fly-098_ses-20200627130208_behavior+image+ophys/0fd93d4a-c7d9-4157-99aa-973815d2a707_external_file_0.avi
  199. publishedBy:
  200. endDate: '2024-01-06T00:43:26.917941+00:00'
  201. id: urn:uuid:fbdc7b2a-4023-4f6e-9821-793e6d14be53
  202. name: DANDI publish
  203. schemaKey: PublishActivity
  204. startDate: '2024-01-06T00:43:26.917941+00:00'
  205. wasAssociatedWith:
  206. - id: urn:uuid:b606e401-78c6-46c8-91a6-e5957c08fa05
  207. identifier: RRID:SCR_017571
  208. name: DANDI API
  209. schemaKey: Software
  210. version: 0.1.0
  211. schemaKey: Asset
  212. schemaVersion: 0.6.4
  213. wasGeneratedBy:
  214. - description: Metadata generated by DANDI cli
  215. endDate: '2023-12-10T19:20:25.922777+01:00'
  216. id: urn:uuid:db2bc9a8-a331-4c47-b0cc-90c56f6dd356
  217. name: Metadata generation
  218. schemaKey: Activity
  219. startDate: '2023-12-10T19:20:25.922777+01:00'
  220. wasAssociatedWith:
  221. - identifier: RRID:SCR_019009
  222. name: DANDI Command Line Interface
  223. schemaKey: Software
  224. url: https://github.com/dandi/dandi-cli
  225. version: 0.58.1
  226. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  227. access:
  228. - schemaKey: AccessRequirements
  229. status: dandi:OpenAccess
  230. approach:
  231. - name: behavioral approach
  232. schemaKey: ApproachType
  233. - name: microscopy approach; cell population imaging
  234. schemaKey: ApproachType
  235. blobDateModified: '2023-12-10T19:11:06.620000+01:00'
  236. contentSize: 67210717736
  237. contentUrl:
  238. - https://api.dandiarchive.org/api/assets/14b60d03-73b8-4a49-830d-4887cfea1914/download/
  239. - https://dandiarchive.s3.amazonaws.com/blobs/63e/9b2/63e9b254-6972-4575-8f0f-35c137fa6a1f
  240. dateModified: '2023-12-11T12:50:55.168548+01:00'
  241. datePublished: '2024-01-06T00:43:26.924457+00:00'
  242. digest:
  243. dandi:dandi-etag: de7a7a7d8cacfd58f5da0da126729878-1002
  244. dandi:sha2-256: 45c3054aede3c5488370317307a1a95aa19b7ca92576af5be1ba48d065f467b5
  245. encodingFormat: application/x-nwb
  246. id: dandiasset:14b60d03-73b8-4a49-830d-4887cfea1914
  247. identifier: 14b60d03-73b8-4a49-830d-4887cfea1914
  248. keywords:
  249. - walking
  250. - neural Correlates
  251. - brain-wide Scale
  252. - drosophila
  253. - volumetric two-photon imaging
  254. - neural activity mapping
  255. - locomotor signals
  256. measurementTechnique:
  257. - name: two-photon microscopy technique
  258. schemaKey: MeasurementTechniqueType
  259. - name: analytical technique
  260. schemaKey: MeasurementTechniqueType
  261. - name: surgical technique
  262. schemaKey: MeasurementTechniqueType
  263. - name: behavioral technique
  264. schemaKey: MeasurementTechniqueType
  265. path: sub-fly-098/sub-fly-098_ses-20200627130208_behavior+image+ophys.nwb
  266. publishedBy:
  267. endDate: '2024-01-06T00:43:26.924457+00:00'
  268. id: urn:uuid:fd5896aa-8c19-486b-9718-a89831189389
  269. name: DANDI publish
  270. schemaKey: PublishActivity
  271. startDate: '2024-01-06T00:43:26.924457+00:00'
  272. wasAssociatedWith:
  273. - id: urn:uuid:30868830-565a-40b4-b666-a9f15b92e9fe
  274. identifier: RRID:SCR_017571
  275. name: DANDI API
  276. schemaKey: Software
  277. version: 0.1.0
  278. schemaKey: Asset
  279. schemaVersion: 0.6.4
  280. variableMeasured:
  281. - schemaKey: PropertyValue
  282. value: OpticalChannel
  283. - schemaKey: PropertyValue
  284. value: ImagingPlane
  285. - schemaKey: PropertyValue
  286. value: Position
  287. - schemaKey: PropertyValue
  288. value: ProcessingModule
  289. - schemaKey: PropertyValue
  290. value: TwoPhotonSeries
  291. - schemaKey: PropertyValue
  292. value: SpatialSeries
  293. wasAttributedTo:
  294. - age:
  295. schemaKey: PropertyValue
  296. unitText: ISO-8601 duration
  297. value: P3D/P4D
  298. valueReference:
  299. schemaKey: PropertyValue
  300. value: dandi:BirthReference
  301. genotype: w+/w+;UAS-myr::tdTomato/UAS-GCaMP6f;nSyb-Gal4/+
  302. identifier: fly_098
  303. schemaKey: Participant
  304. sex:
  305. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  306. name: Female
  307. schemaKey: SexType
  308. species:
  309. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  310. name: Drosophila melanogaster - Fruit fly
  311. schemaKey: SpeciesType
  312. wasGeneratedBy:
  313. - description: We use volumetric two-photon imaging to map neural activity associated
  314. with walking across the entire brain of Drosophila. We detect locomotor signals
  315. in approximately 40% of the brain, identify a global signal associated with the
  316. transition from rest to walking, and define clustered neural signals selectively
  317. associated with changes in forward or angular velocity.
  318. identifier: '20200627130208'
  319. name: '20200627130208'
  320. schemaKey: Session
  321. startDate: '2020-06-27T13:02:18.301376-07:00'
  322. - description: Metadata generated by DANDI cli
  323. endDate: '2023-12-11T12:50:55.168522+01:00'
  324. id: urn:uuid:8ba35983-11e5-4cfd-b861-17fdb917c522
  325. name: Metadata generation
  326. schemaKey: Activity
  327. startDate: '2023-12-11T12:50:51.490523+01:00'
  328. wasAssociatedWith:
  329. - identifier: RRID:SCR_019009
  330. name: DANDI Command Line Interface
  331. schemaKey: Software
  332. url: https://github.com/dandi/dandi-cli
  333. version: 0.58.1
  334. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  335. access:
  336. - schemaKey: AccessRequirements
  337. status: dandi:OpenAccess
  338. blobDateModified: '2023-12-10T19:11:09.400000+01:00'
  339. contentSize: 178525742
  340. contentUrl:
  341. - https://api.dandiarchive.org/api/assets/5671b1c1-b52b-4f09-80a8-603dc2740a29/download/
  342. - https://dandiarchive.s3.amazonaws.com/blobs/2bd/7eb/2bd7ebc4-ffff-482e-a080-6d8d51806be1
  343. dateModified: '2023-12-11T15:23:44.640037+01:00'
  344. datePublished: '2024-01-06T00:43:26.934993+00:00'
  345. digest:
  346. dandi:dandi-etag: 3f68ef605cd6bff48f30e4a054782f0a-3
  347. dandi:sha2-256: 91c8220eae5d81033698fd9383ed52d43ac11f74822039d7d1bdf64923b741b6
  348. encodingFormat: video/x-msvideo
  349. id: dandiasset:5671b1c1-b52b-4f09-80a8-603dc2740a29
  350. identifier: 5671b1c1-b52b-4f09-80a8-603dc2740a29
  351. path: sub-fly-099/sub-fly-099_ses-20200627142647_behavior+image+ophys/03a93cbc-f437-4686-b728-e4c231b35634_external_file_0.avi
  352. publishedBy:
  353. endDate: '2024-01-06T00:43:26.934993+00:00'
  354. id: urn:uuid:3f9e771a-dc13-4c61-9f80-d63d2062a728
  355. name: DANDI publish
  356. schemaKey: PublishActivity
  357. startDate: '2024-01-06T00:43:26.934993+00:00'
  358. wasAssociatedWith:
  359. - id: urn:uuid:2de14aa9-46d7-445e-979e-8c68ad58f96f
  360. identifier: RRID:SCR_017571
  361. name: DANDI API
  362. schemaKey: Software
  363. version: 0.1.0
  364. schemaKey: Asset
  365. schemaVersion: 0.6.4
  366. wasGeneratedBy:
  367. - description: Metadata generated by DANDI cli
  368. endDate: '2023-12-11T15:23:44.640009+01:00'
  369. id: urn:uuid:d2459fec-4399-4cda-a281-0b3e30ccbc5f
  370. name: Metadata generation
  371. schemaKey: Activity
  372. startDate: '2023-12-11T15:23:44.640009+01:00'
  373. wasAssociatedWith:
  374. - identifier: RRID:SCR_019009
  375. name: DANDI Command Line Interface
  376. schemaKey: Software
  377. url: https://github.com/dandi/dandi-cli
  378. version: 0.58.1
  379. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  380. access:
  381. - schemaKey: AccessRequirements
  382. status: dandi:OpenAccess
  383. approach:
  384. - name: behavioral approach
  385. schemaKey: ApproachType
  386. - name: microscopy approach; cell population imaging
  387. schemaKey: ApproachType
  388. blobDateModified: '2023-12-10T19:11:04.980000+01:00'
  389. contentSize: 66914446036
  390. contentUrl:
  391. - https://api.dandiarchive.org/api/assets/0d19fe7f-aec2-429a-ad9a-23e576f11bde/download/
  392. - https://dandiarchive.s3.amazonaws.com/blobs/f18/2f7/f182f7b1-038b-432a-ae6a-98de1716e776
  393. dateModified: '2023-12-11T12:56:46.968604+01:00'
  394. datePublished: '2024-01-06T00:43:26.943793+00:00'
  395. digest:
  396. dandi:dandi-etag: dc307d39b0e10340f17dc4286cd88688-998
  397. dandi:sha2-256: 964e39450c06d523c08fd76b90a36f7cd2117a2a72864db3eb6d7df4a479e3e8
  398. encodingFormat: application/x-nwb
  399. id: dandiasset:0d19fe7f-aec2-429a-ad9a-23e576f11bde
  400. identifier: 0d19fe7f-aec2-429a-ad9a-23e576f11bde
  401. keywords:
  402. - walking
  403. - neural Correlates
  404. - brain-wide Scale
  405. - drosophila
  406. - volumetric two-photon imaging
  407. - neural activity mapping
  408. - locomotor signals
  409. measurementTechnique:
  410. - name: two-photon microscopy technique
  411. schemaKey: MeasurementTechniqueType
  412. - name: analytical technique
  413. schemaKey: MeasurementTechniqueType
  414. - name: surgical technique
  415. schemaKey: MeasurementTechniqueType
  416. - name: behavioral technique
  417. schemaKey: MeasurementTechniqueType
  418. path: sub-fly-097/sub-fly-097_ses-20200627113329_behavior+image+ophys.nwb
  419. publishedBy:
  420. endDate: '2024-01-06T00:43:26.943793+00:00'
  421. id: urn:uuid:13cba7a4-2883-4105-9ea6-3f485f0142fc
  422. name: DANDI publish
  423. schemaKey: PublishActivity
  424. startDate: '2024-01-06T00:43:26.943793+00:00'
  425. wasAssociatedWith:
  426. - id: urn:uuid:907809df-3c1f-4d2d-801b-227764192dd4
  427. identifier: RRID:SCR_017571
  428. name: DANDI API
  429. schemaKey: Software
  430. version: 0.1.0
  431. schemaKey: Asset
  432. schemaVersion: 0.6.4
  433. variableMeasured:
  434. - schemaKey: PropertyValue
  435. value: OpticalChannel
  436. - schemaKey: PropertyValue
  437. value: ImagingPlane
  438. - schemaKey: PropertyValue
  439. value: Position
  440. - schemaKey: PropertyValue
  441. value: ProcessingModule
  442. - schemaKey: PropertyValue
  443. value: TwoPhotonSeries
  444. - schemaKey: PropertyValue
  445. value: SpatialSeries
  446. wasAttributedTo:
  447. - age:
  448. schemaKey: PropertyValue
  449. unitText: ISO-8601 duration
  450. value: P3D/P4D
  451. valueReference:
  452. schemaKey: PropertyValue
  453. value: dandi:BirthReference
  454. genotype: w+/w+;UAS-myr::tdTomato/UAS-GCaMP6f;nSyb-Gal4/+
  455. identifier: fly_097
  456. schemaKey: Participant
  457. sex:
  458. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  459. name: Female
  460. schemaKey: SexType
  461. species:
  462. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  463. name: Drosophila melanogaster - Fruit fly
  464. schemaKey: SpeciesType
  465. wasGeneratedBy:
  466. - description: We use volumetric two-photon imaging to map neural activity associated
  467. with walking across the entire brain of Drosophila. We detect locomotor signals
  468. in approximately 40% of the brain, identify a global signal associated with the
  469. transition from rest to walking, and define clustered neural signals selectively
  470. associated with changes in forward or angular velocity.
  471. identifier: '20200627113329'
  472. name: '20200627113329'
  473. schemaKey: Session
  474. startDate: '2020-06-27T11:33:37.100887-07:00'
  475. - description: Metadata generated by DANDI cli
  476. endDate: '2023-12-11T12:56:46.968584+01:00'
  477. id: urn:uuid:1e07c50d-9405-435c-bc76-78ff123fafca
  478. name: Metadata generation
  479. schemaKey: Activity
  480. startDate: '2023-12-11T12:56:43.288329+01:00'
  481. wasAssociatedWith:
  482. - identifier: RRID:SCR_019009
  483. name: DANDI Command Line Interface
  484. schemaKey: Software
  485. url: https://github.com/dandi/dandi-cli
  486. version: 0.58.1
  487. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  488. access:
  489. - schemaKey: AccessRequirements
  490. status: dandi:OpenAccess
  491. blobDateModified: '2023-12-10T19:11:26.450000+01:00'
  492. contentSize: 221779502
  493. contentUrl:
  494. - https://api.dandiarchive.org/api/assets/66904371-fc5e-4bb6-b266-1713a97137df/download/
  495. - https://dandiarchive.s3.amazonaws.com/blobs/9b4/db5/9b4db5d7-fa2d-421b-9bf1-0011ea7cee82
  496. dateModified: '2023-12-11T15:29:48.928928+01:00'
  497. datePublished: '2024-01-06T00:43:26.951132+00:00'
  498. digest:
  499. dandi:dandi-etag: 0ac840b35198769710f41c0cfdc4d971-4
  500. dandi:sha2-256: d57c4fdaba3abb38bfbf6bbdb091df2ca4d355afb5fade1e25b588390a3f7659
  501. encodingFormat: video/x-msvideo
  502. id: dandiasset:66904371-fc5e-4bb6-b266-1713a97137df
  503. identifier: 66904371-fc5e-4bb6-b266-1713a97137df
  504. path: sub-fly-100/sub-fly-100_ses-20200702083849_behavior+image+ophys/3b40b188-a623-47f6-a5a3-e1d53b46e62a_external_file_0.avi
  505. publishedBy:
  506. endDate: '2024-01-06T00:43:26.951132+00:00'
  507. id: urn:uuid:04b46868-4605-42aa-9561-5e1b1a6063ab
  508. name: DANDI publish
  509. schemaKey: PublishActivity
  510. startDate: '2024-01-06T00:43:26.951132+00:00'
  511. wasAssociatedWith:
  512. - id: urn:uuid:6b9fd2e0-4476-468c-a848-e702bc899de0
  513. identifier: RRID:SCR_017571
  514. name: DANDI API
  515. schemaKey: Software
  516. version: 0.1.0
  517. schemaKey: Asset
  518. schemaVersion: 0.6.4
  519. wasGeneratedBy:
  520. - description: Metadata generated by DANDI cli
  521. endDate: '2023-12-11T15:29:48.928899+01:00'
  522. id: urn:uuid:5ebb9f60-fcfe-4a3a-904b-b2702e5382f7
  523. name: Metadata generation
  524. schemaKey: Activity
  525. startDate: '2023-12-11T15:29:48.928899+01:00'
  526. wasAssociatedWith:
  527. - identifier: RRID:SCR_019009
  528. name: DANDI Command Line Interface
  529. schemaKey: Software
  530. url: https://github.com/dandi/dandi-cli
  531. version: 0.58.1
  532. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  533. access:
  534. - schemaKey: AccessRequirements
  535. status: dandi:OpenAccess
  536. approach:
  537. - name: behavioral approach
  538. schemaKey: ApproachType
  539. - name: microscopy approach; cell population imaging
  540. schemaKey: ApproachType
  541. blobDateModified: '2023-12-10T19:11:08.160000+01:00'
  542. contentSize: 66626834273
  543. contentUrl:
  544. - https://api.dandiarchive.org/api/assets/dbb2efb4-f297-4ae7-89b1-b22408765168/download/
  545. - https://dandiarchive.s3.amazonaws.com/blobs/5eb/604/5eb604ff-b2de-4d51-a73e-506c1e6848de
  546. dateModified: '2023-12-11T13:11:20.015651+01:00'
  547. datePublished: '2024-01-06T00:43:26.957369+00:00'
  548. digest:
  549. dandi:dandi-etag: 7a403be5338629cd9ac47302ff230dff-993
  550. dandi:sha2-256: 1df46789312fbfd237f6f9ed4c465d05ff51bb4475a468338e3a7865aa67b346
  551. encodingFormat: application/x-nwb
  552. id: dandiasset:dbb2efb4-f297-4ae7-89b1-b22408765168
  553. identifier: dbb2efb4-f297-4ae7-89b1-b22408765168
  554. keywords:
  555. - walking
  556. - neural Correlates
  557. - brain-wide Scale
  558. - drosophila
  559. - volumetric two-photon imaging
  560. - neural activity mapping
  561. - locomotor signals
  562. measurementTechnique:
  563. - name: two-photon microscopy technique
  564. schemaKey: MeasurementTechniqueType
  565. - name: analytical technique
  566. schemaKey: MeasurementTechniqueType
  567. - name: surgical technique
  568. schemaKey: MeasurementTechniqueType
  569. - name: behavioral technique
  570. schemaKey: MeasurementTechniqueType
  571. path: sub-fly-089/sub-fly-089_ses-20200618081653_behavior+image+ophys.nwb
  572. publishedBy:
  573. endDate: '2024-01-06T00:43:26.957369+00:00'
  574. id: urn:uuid:c9e7ddc1-d362-473b-9573-85c807067fae
  575. name: DANDI publish
  576. schemaKey: PublishActivity
  577. startDate: '2024-01-06T00:43:26.957369+00:00'
  578. wasAssociatedWith:
  579. - id: urn:uuid:8f780604-217f-4d87-b00d-290061cb6206
  580. identifier: RRID:SCR_017571
  581. name: DANDI API
  582. schemaKey: Software
  583. version: 0.1.0
  584. schemaKey: Asset
  585. schemaVersion: 0.6.4
  586. variableMeasured:
  587. - schemaKey: PropertyValue
  588. value: OpticalChannel
  589. - schemaKey: PropertyValue
  590. value: ImagingPlane
  591. - schemaKey: PropertyValue
  592. value: Position
  593. - schemaKey: PropertyValue
  594. value: ProcessingModule
  595. - schemaKey: PropertyValue
  596. value: TwoPhotonSeries
  597. - schemaKey: PropertyValue
  598. value: SpatialSeries
  599. wasAttributedTo:
  600. - age:
  601. schemaKey: PropertyValue
  602. unitText: ISO-8601 duration
  603. value: P3D/P4D
  604. valueReference:
  605. schemaKey: PropertyValue
  606. value: dandi:BirthReference
  607. genotype: w+/w+;UAS-myr::tdTomato/UAS-GCaMP6f;nSyb-Gal4/+
  608. identifier: fly_089
  609. schemaKey: Participant
  610. sex:
  611. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  612. name: Female
  613. schemaKey: SexType
  614. species:
  615. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  616. name: Drosophila melanogaster - Fruit fly
  617. schemaKey: SpeciesType
  618. wasGeneratedBy:
  619. - description: We use volumetric two-photon imaging to map neural activity associated
  620. with walking across the entire brain of Drosophila. We detect locomotor signals
  621. in approximately 40% of the brain, identify a global signal associated with the
  622. transition from rest to walking, and define clustered neural signals selectively
  623. associated with changes in forward or angular velocity.
  624. identifier: '20200618081653'
  625. name: '20200618081653'
  626. schemaKey: Session
  627. startDate: '2020-06-18T08:17:27.446655-07:00'
  628. - description: Metadata generated by DANDI cli
  629. endDate: '2023-12-11T13:11:20.015625+01:00'
  630. id: urn:uuid:3a81924e-e600-47a4-a61d-20b6463a5406
  631. name: Metadata generation
  632. schemaKey: Activity
  633. startDate: '2023-12-11T13:11:14.782169+01:00'
  634. wasAssociatedWith:
  635. - identifier: RRID:SCR_019009
  636. name: DANDI Command Line Interface
  637. schemaKey: Software
  638. url: https://github.com/dandi/dandi-cli
  639. version: 0.58.1
  640. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  641. access:
  642. - schemaKey: AccessRequirements
  643. status: dandi:OpenAccess
  644. blobDateModified: '2023-12-10T19:11:10.810000+01:00'
  645. contentSize: 209983022
  646. contentUrl:
  647. - https://api.dandiarchive.org/api/assets/58cee1a0-dbf1-4c09-b767-250469a9c7a2/download/
  648. - https://dandiarchive.s3.amazonaws.com/blobs/c5a/d22/c5ad221a-7650-413c-8644-59b742e2c61c
  649. dateModified: '2023-12-11T15:56:53.323188+01:00'
  650. datePublished: '2024-01-06T00:43:26.971860+00:00'
  651. digest:
  652. dandi:dandi-etag: 039a1f09244c7cc79c76977b10d92443-4
  653. dandi:sha2-256: 803099f9a583cdbc0538aeaa52989efce03e583b1b85c74bfec817fb6cbfed8d
  654. encodingFormat: video/x-msvideo
  655. id: dandiasset:58cee1a0-dbf1-4c09-b767-250469a9c7a2
  656. identifier: 58cee1a0-dbf1-4c09-b767-250469a9c7a2
  657. path: sub-fly-101/sub-fly-101_ses-20200702100612_behavior+image+ophys/28ff4aa7-25cb-4439-9825-f4087dd31fd6_external_file_0.avi
  658. publishedBy:
  659. endDate: '2024-01-06T00:43:26.971860+00:00'
  660. id: urn:uuid:c6d0143c-03aa-4053-bb26-1bdb56506085
  661. name: DANDI publish
  662. schemaKey: PublishActivity
  663. startDate: '2024-01-06T00:43:26.971860+00:00'
  664. wasAssociatedWith:
  665. - id: urn:uuid:6aae91a6-4647-4989-9bce-f00dd7f1a570
  666. identifier: RRID:SCR_017571
  667. name: DANDI API
  668. schemaKey: Software
  669. version: 0.1.0
  670. schemaKey: Asset
  671. schemaVersion: 0.6.4
  672. wasGeneratedBy:
  673. - description: Metadata generated by DANDI cli
  674. endDate: '2023-12-11T15:56:53.323156+01:00'
  675. id: urn:uuid:c1323769-7bf9-4c24-af36-55a38219da54
  676. name: Metadata generation
  677. schemaKey: Activity
  678. startDate: '2023-12-11T15:56:53.323156+01:00'
  679. wasAssociatedWith:
  680. - identifier: RRID:SCR_019009
  681. name: DANDI Command Line Interface
  682. schemaKey: Software
  683. url: https://github.com/dandi/dandi-cli
  684. version: 0.58.1
  685. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  686. access:
  687. - schemaKey: AccessRequirements
  688. status: dandi:OpenAccess
  689. approach:
  690. - name: behavioral approach
  691. schemaKey: ApproachType
  692. - name: microscopy approach; cell population imaging
  693. schemaKey: ApproachType
  694. blobDateModified: '2023-12-10T19:11:00.110000+01:00'
  695. contentSize: 67208806013
  696. contentUrl:
  697. - https://api.dandiarchive.org/api/assets/0ce7e3b3-2b2e-4f62-9491-be5f1088121a/download/
  698. - https://dandiarchive.s3.amazonaws.com/blobs/97d/f6b/97df6b08-3e39-4d94-970b-2d8dc92f16a8
  699. dateModified: '2023-12-11T13:22:27.806869+01:00'
  700. datePublished: '2024-01-06T00:43:26.977999+00:00'
  701. digest:
  702. dandi:dandi-etag: c027ecae40315f8bde36042f3e781b9c-1002
  703. dandi:sha2-256: facce6549b14d52bc1128757db7c1648c3794794afc025d716e828439019c152
  704. encodingFormat: application/x-nwb
  705. id: dandiasset:0ce7e3b3-2b2e-4f62-9491-be5f1088121a
  706. identifier: 0ce7e3b3-2b2e-4f62-9491-be5f1088121a
  707. keywords:
  708. - walking
  709. - neural Correlates
  710. - brain-wide Scale
  711. - drosophila
  712. - volumetric two-photon imaging
  713. - neural activity mapping
  714. - locomotor signals
  715. measurementTechnique:
  716. - name: two-photon microscopy technique
  717. schemaKey: MeasurementTechniqueType
  718. - name: analytical technique
  719. schemaKey: MeasurementTechniqueType
  720. - name: surgical technique
  721. schemaKey: MeasurementTechniqueType
  722. - name: behavioral technique
  723. schemaKey: MeasurementTechniqueType
  724. path: sub-fly-094/sub-fly-094_ses-20200620122048_behavior+image+ophys.nwb
  725. publishedBy:
  726. endDate: '2024-01-06T00:43:26.977999+00:00'
  727. id: urn:uuid:d5f5c4aa-d5ec-4c2c-ad2a-f219514802be
  728. name: DANDI publish
  729. schemaKey: PublishActivity
  730. startDate: '2024-01-06T00:43:26.977999+00:00'
  731. wasAssociatedWith:
  732. - id: urn:uuid:781d2563-9cc3-4a87-9c01-565160aaea3b
  733. identifier: RRID:SCR_017571
  734. name: DANDI API
  735. schemaKey: Software
  736. version: 0.1.0
  737. schemaKey: Asset
  738. schemaVersion: 0.6.4
  739. variableMeasured:
  740. - schemaKey: PropertyValue
  741. value: OpticalChannel
  742. - schemaKey: PropertyValue
  743. value: ImagingPlane
  744. - schemaKey: PropertyValue
  745. value: Position
  746. - schemaKey: PropertyValue
  747. value: ProcessingModule
  748. - schemaKey: PropertyValue
  749. value: TwoPhotonSeries
  750. - schemaKey: PropertyValue
  751. value: SpatialSeries
  752. wasAttributedTo:
  753. - age:
  754. schemaKey: PropertyValue
  755. unitText: ISO-8601 duration
  756. value: P3D/P4D
  757. valueReference:
  758. schemaKey: PropertyValue
  759. value: dandi:BirthReference
  760. genotype: w+/w+;UAS-myr::tdTomato/UAS-GCaMP6f;nSyb-Gal4/+
  761. identifier: fly_094
  762. schemaKey: Participant
  763. sex:
  764. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  765. name: Female
  766. schemaKey: SexType
  767. species:
  768. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  769. name: Drosophila melanogaster - Fruit fly
  770. schemaKey: SpeciesType
  771. wasGeneratedBy:
  772. - description: We use volumetric two-photon imaging to map neural activity associated
  773. with walking across the entire brain of Drosophila. We detect locomotor signals
  774. in approximately 40% of the brain, identify a global signal associated with the
  775. transition from rest to walking, and define clustered neural signals selectively
  776. associated with changes in forward or angular velocity.
  777. identifier: '20200620122048'
  778. name: '20200620122048'
  779. schemaKey: Session
  780. startDate: '2020-06-20T12:20:53.684457-07:00'
  781. - description: Metadata generated by DANDI cli
  782. endDate: '2023-12-11T13:22:27.806849+01:00'
  783. id: urn:uuid:4b7f573f-91d5-4d5b-8e45-b08ff3e16532
  784. name: Metadata generation
  785. schemaKey: Activity
  786. startDate: '2023-12-11T13:22:25.145631+01:00'
  787. wasAssociatedWith:
  788. - identifier: RRID:SCR_019009
  789. name: DANDI Command Line Interface
  790. schemaKey: Software
  791. url: https://github.com/dandi/dandi-cli
  792. version: 0.58.1
  793. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  794. access:
  795. - schemaKey: AccessRequirements
  796. status: dandi:OpenAccess
  797. blobDateModified: '2023-12-10T19:12:03.910000+01:00'
  798. contentSize: 155194926
  799. contentUrl:
  800. - https://api.dandiarchive.org/api/assets/ee7bda44-60af-4b52-9192-6f403445adb1/download/
  801. - https://dandiarchive.s3.amazonaws.com/blobs/b0c/4d7/b0c4d7ed-556d-43a9-b247-139249bc97fc
  802. dateModified: '2023-12-11T15:58:33.748104+01:00'
  803. datePublished: '2024-01-06T00:43:26.985594+00:00'
  804. digest:
  805. dandi:dandi-etag: 0dddb1538bd1c449774d82640dad2331-3
  806. dandi:sha2-256: 657e13b65e90ba15522dff89ff92e4f77bb3ed4697af35213d5157d01031a23a
  807. encodingFormat: video/x-msvideo
  808. id: dandiasset:ee7bda44-60af-4b52-9192-6f403445adb1
  809. identifier: ee7bda44-60af-4b52-9192-6f403445adb1
  810. path: sub-fly-105/sub-fly-105_ses-20200704142706_behavior+image+ophys/fcc255da-02e5-448f-b491-123282813f0b_external_file_0.avi
  811. publishedBy:
  812. endDate: '2024-01-06T00:43:26.985594+00:00'
  813. id: urn:uuid:0551e3f3-c023-4f94-a762-2e77f5686002
  814. name: DANDI publish
  815. schemaKey: PublishActivity
  816. startDate: '2024-01-06T00:43:26.985594+00:00'
  817. wasAssociatedWith:
  818. - id: urn:uuid:dc10d10e-80b1-4d6b-a62b-d6dbb1926d64
  819. identifier: RRID:SCR_017571
  820. name: DANDI API
  821. schemaKey: Software
  822. version: 0.1.0
  823. schemaKey: Asset
  824. schemaVersion: 0.6.4
  825. wasGeneratedBy:
  826. - description: Metadata generated by DANDI cli
  827. endDate: '2023-12-11T15:58:33.748071+01:00'
  828. id: urn:uuid:6b3479e9-55ff-4337-9bfa-2998d3195fbb
  829. name: Metadata generation
  830. schemaKey: Activity
  831. startDate: '2023-12-11T15:58:33.748071+01:00'
  832. wasAssociatedWith:
  833. - identifier: RRID:SCR_019009
  834. name: DANDI Command Line Interface
  835. schemaKey: Software
  836. url: https://github.com/dandi/dandi-cli
  837. version: 0.58.1
  838. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  839. access:
  840. - schemaKey: AccessRequirements
  841. status: dandi:OpenAccess
  842. approach:
  843. - name: behavioral approach
  844. schemaKey: ApproachType
  845. - name: microscopy approach; cell population imaging
  846. schemaKey: ApproachType
  847. blobDateModified: '2023-12-10T19:11:01.760000+01:00'
  848. contentSize: 68975371022
  849. contentUrl:
  850. - https://api.dandiarchive.org/api/assets/80be44d6-db90-4807-bb1b-abdac5c580eb/download/
  851. - https://dandiarchive.s3.amazonaws.com/blobs/34d/a9e/34da9e7f-b914-455d-afb7-cb82131990d8
  852. dateModified: '2023-12-11T13:14:49.612599+01:00'
  853. datePublished: '2024-01-06T00:43:26.991469+00:00'
  854. digest:
  855. dandi:dandi-etag: 021b4c4d84451f2e413217da9f6bc6ef-1028
  856. dandi:sha2-256: e764c812af86f12603b45a909bc5f6033357153193581f729e538a93d9602559
  857. encodingFormat: application/x-nwb
  858. id: dandiasset:80be44d6-db90-4807-bb1b-abdac5c580eb
  859. identifier: 80be44d6-db90-4807-bb1b-abdac5c580eb
  860. keywords:
  861. - walking
  862. - neural Correlates
  863. - brain-wide Scale
  864. - drosophila
  865. - volumetric two-photon imaging
  866. - neural activity mapping
  867. - locomotor signals
  868. measurementTechnique:
  869. - name: two-photon microscopy technique
  870. schemaKey: MeasurementTechniqueType
  871. - name: analytical technique
  872. schemaKey: MeasurementTechniqueType
  873. - name: surgical technique
  874. schemaKey: MeasurementTechniqueType
  875. - name: behavioral technique
  876. schemaKey: MeasurementTechniqueType
  877. path: sub-fly-087/sub-fly-087_ses-20200228161226_behavior+image+ophys.nwb
  878. publishedBy:
  879. endDate: '2024-01-06T00:43:26.991469+00:00'
  880. id: urn:uuid:a484e95e-e4e0-47ed-914c-40bac9bfa3ee
  881. name: DANDI publish
  882. schemaKey: PublishActivity
  883. startDate: '2024-01-06T00:43:26.991469+00:00'
  884. wasAssociatedWith:
  885. - id: urn:uuid:8c35da05-3a65-4d91-a147-089a5894cdf7
  886. identifier: RRID:SCR_017571
  887. name: DANDI API
  888. schemaKey: Software
  889. version: 0.1.0
  890. schemaKey: Asset
  891. schemaVersion: 0.6.4
  892. variableMeasured:
  893. - schemaKey: PropertyValue
  894. value: OpticalChannel
  895. - schemaKey: PropertyValue
  896. value: ImagingPlane
  897. - schemaKey: PropertyValue
  898. value: Position
  899. - schemaKey: PropertyValue
  900. value: ProcessingModule
  901. - schemaKey: PropertyValue
  902. value: TwoPhotonSeries
  903. - schemaKey: PropertyValue
  904. value: SpatialSeries
  905. wasAttributedTo:
  906. - age:
  907. schemaKey: PropertyValue
  908. unitText: ISO-8601 duration
  909. value: P3D/P4D
  910. valueReference:
  911. schemaKey: PropertyValue
  912. value: dandi:BirthReference
  913. genotype: w+/w+;UAS-myr::tdTomato/UAS-GCaMP6f;nSyb-Gal4/+
  914. identifier: fly_087
  915. schemaKey: Participant
  916. sex:
  917. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  918. name: Female
  919. schemaKey: SexType
  920. species:
  921. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  922. name: Drosophila melanogaster - Fruit fly
  923. schemaKey: SpeciesType
  924. wasGeneratedBy:
  925. - description: We use volumetric two-photon imaging to map neural activity associated
  926. with walking across the entire brain of Drosophila. We detect locomotor signals
  927. in approximately 40% of the brain, identify a global signal associated with the
  928. transition from rest to walking, and define clustered neural signals selectively
  929. associated with changes in forward or angular velocity.
  930. identifier: '20200228161226'
  931. name: '20200228161226'
  932. schemaKey: Session
  933. startDate: '2020-02-28T16:12:42.799114-08:00'
  934. - description: Metadata generated by DANDI cli
  935. endDate: '2023-12-11T13:14:49.612579+01:00'
  936. id: urn:uuid:5182e03f-eb8a-4555-a75d-f7206d20978d
  937. name: Metadata generation
  938. schemaKey: Activity
  939. startDate: '2023-12-11T13:14:46.178718+01:00'
  940. wasAssociatedWith:
  941. - identifier: RRID:SCR_019009
  942. name: DANDI Command Line Interface
  943. schemaKey: Software
  944. url: https://github.com/dandi/dandi-cli
  945. version: 0.58.1
  946. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  947. access:
  948. - schemaKey: AccessRequirements
  949. status: dandi:OpenAccess
  950. approach:
  951. - name: behavioral approach
  952. schemaKey: ApproachType
  953. - name: microscopy approach; cell population imaging
  954. schemaKey: ApproachType
  955. blobDateModified: '2023-12-10T19:10:58.490000+01:00'
  956. contentSize: 67681351575
  957. contentUrl:
  958. - https://api.dandiarchive.org/api/assets/6c1de3f6-25b1-411d-81eb-09f46d2dae67/download/
  959. - https://dandiarchive.s3.amazonaws.com/blobs/eae/04e/eae04e73-3c21-405f-8a14-c3eb7d4fd881
  960. dateModified: '2023-12-11T16:35:18.158039+01:00'
  961. datePublished: '2024-01-06T00:43:26.998212+00:00'
  962. digest:
  963. dandi:dandi-etag: 0bbf6e156aca20d3d8786c9c574e1cf1-1009
  964. dandi:sha2-256: 20f47f43c3ae4dabd7d5d6108e9158376606dff64014b347e2b443c31b0d8975
  965. encodingFormat: application/x-nwb
  966. id: dandiasset:6c1de3f6-25b1-411d-81eb-09f46d2dae67
  967. identifier: 6c1de3f6-25b1-411d-81eb-09f46d2dae67
  968. keywords:
  969. - walking
  970. - neural Correlates
  971. - brain-wide Scale
  972. - drosophila
  973. - volumetric two-photon imaging
  974. - neural activity mapping
  975. - locomotor signals
  976. measurementTechnique:
  977. - name: two-photon microscopy technique
  978. schemaKey: MeasurementTechniqueType
  979. - name: analytical technique
  980. schemaKey: MeasurementTechniqueType
  981. - name: surgical technique
  982. schemaKey: MeasurementTechniqueType
  983. - name: behavioral technique
  984. schemaKey: MeasurementTechniqueType
  985. path: sub-fly-100/sub-fly-100_ses-20200702083849_behavior+image+ophys.nwb
  986. publishedBy:
  987. endDate: '2024-01-06T00:43:26.998212+00:00'
  988. id: urn:uuid:1cf44cb8-45dd-4180-bae6-5ed60c3239b5
  989. name: DANDI publish
  990. schemaKey: PublishActivity
  991. startDate: '2024-01-06T00:43:26.998212+00:00'
  992. wasAssociatedWith:
  993. - id: urn:uuid:55bf6931-1ee0-4923-9a03-ca4390723d45
  994. identifier: RRID:SCR_017571
  995. name: DANDI API
  996. schemaKey: Software
  997. version: 0.1.0
  998. schemaKey: Asset
  999. schemaVersion: 0.6.4
  1000. variableMeasured:
  1001. - schemaKey: PropertyValue
  1002. value: OpticalChannel
  1003. - schemaKey: PropertyValue
  1004. value: ImagingPlane
  1005. - schemaKey: PropertyValue
  1006. value: Position
  1007. - schemaKey: PropertyValue
  1008. value: ProcessingModule
  1009. - schemaKey: PropertyValue
  1010. value: TwoPhotonSeries
  1011. - schemaKey: PropertyValue
  1012. value: SpatialSeries
  1013. wasAttributedTo:
  1014. - age:
  1015. schemaKey: PropertyValue
  1016. unitText: ISO-8601 duration
  1017. value: P3D/P4D
  1018. valueReference:
  1019. schemaKey: PropertyValue
  1020. value: dandi:BirthReference
  1021. genotype: w+/w+;UAS-myr::tdTomato/UAS-GCaMP6f;nSyb-Gal4/+
  1022. identifier: fly_100
  1023. schemaKey: Participant
  1024. sex:
  1025. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1026. name: Female
  1027. schemaKey: SexType
  1028. species:
  1029. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  1030. name: Drosophila melanogaster - Fruit fly
  1031. schemaKey: SpeciesType
  1032. wasGeneratedBy:
  1033. - description: We use volumetric two-photon imaging to map neural activity associated
  1034. with walking across the entire brain of Drosophila. We detect locomotor signals
  1035. in approximately 40% of the brain, identify a global signal associated with the
  1036. transition from rest to walking, and define clustered neural signals selectively
  1037. associated with changes in forward or angular velocity.
  1038. identifier: '20200702083849'
  1039. name: '20200702083849'
  1040. schemaKey: Session
  1041. startDate: '2020-07-02T08:38:55.956354-07:00'
  1042. - description: Metadata generated by DANDI cli
  1043. endDate: '2023-12-11T16:35:18.158020+01:00'
  1044. id: urn:uuid:36feb63d-2fc1-4f3b-84ad-647a131545d0
  1045. name: Metadata generation
  1046. schemaKey: Activity
  1047. startDate: '2023-12-11T16:35:14.754615+01:00'
  1048. wasAssociatedWith:
  1049. - identifier: RRID:SCR_019009
  1050. name: DANDI Command Line Interface
  1051. schemaKey: Software
  1052. url: https://github.com/dandi/dandi-cli
  1053. version: 0.58.1
  1054. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1055. access:
  1056. - schemaKey: AccessRequirements
  1057. status: dandi:OpenAccess
  1058. approach:
  1059. - name: behavioral approach
  1060. schemaKey: ApproachType
  1061. - name: microscopy approach; cell population imaging
  1062. schemaKey: ApproachType
  1063. blobDateModified: '2023-12-10T19:10:55.200000+01:00'
  1064. contentSize: 68193425704
  1065. contentUrl:
  1066. - https://api.dandiarchive.org/api/assets/ce45745d-26db-42dc-aad4-851d85db99b1/download/
  1067. - https://dandiarchive.s3.amazonaws.com/blobs/c5a/7e8/c5a7e8e4-3fed-4141-9517-24901c813d2b
  1068. dateModified: '2023-12-11T16:34:24.903858+01:00'
  1069. datePublished: '2024-01-06T00:43:27.006963+00:00'
  1070. digest:
  1071. dandi:dandi-etag: b61c8a35ab08811ecc107b4f516e8917-1017
  1072. dandi:sha2-256: e45083f1ac9aec0a11731aad8ff61251be52188083b54f3b6ec36e8a786763b5
  1073. encodingFormat: application/x-nwb
  1074. id: dandiasset:ce45745d-26db-42dc-aad4-851d85db99b1
  1075. identifier: ce45745d-26db-42dc-aad4-851d85db99b1
  1076. keywords:
  1077. - walking
  1078. - neural Correlates
  1079. - brain-wide Scale
  1080. - drosophila
  1081. - volumetric two-photon imaging
  1082. - neural activity mapping
  1083. - locomotor signals
  1084. measurementTechnique:
  1085. - name: two-photon microscopy technique
  1086. schemaKey: MeasurementTechniqueType
  1087. - name: analytical technique
  1088. schemaKey: MeasurementTechniqueType
  1089. - name: surgical technique
  1090. schemaKey: MeasurementTechniqueType
  1091. - name: behavioral technique
  1092. schemaKey: MeasurementTechniqueType
  1093. path: sub-fly-099/sub-fly-099_ses-20200627142647_behavior+image+ophys.nwb
  1094. publishedBy:
  1095. endDate: '2024-01-06T00:43:27.006963+00:00'
  1096. id: urn:uuid:a4646433-2ff8-4733-baa0-39c4843a6e25
  1097. name: DANDI publish
  1098. schemaKey: PublishActivity
  1099. startDate: '2024-01-06T00:43:27.006963+00:00'
  1100. wasAssociatedWith:
  1101. - id: urn:uuid:f2bc468a-5ed0-4de3-96ee-7f74b9c4cf4c
  1102. identifier: RRID:SCR_017571
  1103. name: DANDI API
  1104. schemaKey: Software
  1105. version: 0.1.0
  1106. schemaKey: Asset
  1107. schemaVersion: 0.6.4
  1108. variableMeasured:
  1109. - schemaKey: PropertyValue
  1110. value: OpticalChannel
  1111. - schemaKey: PropertyValue
  1112. value: ImagingPlane
  1113. - schemaKey: PropertyValue
  1114. value: Position
  1115. - schemaKey: PropertyValue
  1116. value: ProcessingModule
  1117. - schemaKey: PropertyValue
  1118. value: TwoPhotonSeries
  1119. - schemaKey: PropertyValue
  1120. value: SpatialSeries
  1121. wasAttributedTo:
  1122. - age:
  1123. schemaKey: PropertyValue
  1124. unitText: ISO-8601 duration
  1125. value: P3D/P4D
  1126. valueReference:
  1127. schemaKey: PropertyValue
  1128. value: dandi:BirthReference
  1129. genotype: w+/w+;UAS-myr::tdTomato/UAS-GCaMP6f;nSyb-Gal4/+
  1130. identifier: fly_099
  1131. schemaKey: Participant
  1132. sex:
  1133. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1134. name: Female
  1135. schemaKey: SexType
  1136. species:
  1137. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  1138. name: Drosophila melanogaster - Fruit fly
  1139. schemaKey: SpeciesType
  1140. wasGeneratedBy:
  1141. - description: We use volumetric two-photon imaging to map neural activity associated
  1142. with walking across the entire brain of Drosophila. We detect locomotor signals
  1143. in approximately 40% of the brain, identify a global signal associated with the
  1144. transition from rest to walking, and define clustered neural signals selectively
  1145. associated with changes in forward or angular velocity.
  1146. identifier: '20200627142647'
  1147. name: '20200627142647'
  1148. schemaKey: Session
  1149. startDate: '2020-06-27T14:27:04.361307-07:00'
  1150. - description: Metadata generated by DANDI cli
  1151. endDate: '2023-12-11T16:34:24.903838+01:00'
  1152. id: urn:uuid:578a2957-f960-4f7c-846d-f511c1977417
  1153. name: Metadata generation
  1154. schemaKey: Activity
  1155. startDate: '2023-12-11T16:34:21.283172+01:00'
  1156. wasAssociatedWith:
  1157. - identifier: RRID:SCR_019009
  1158. name: DANDI Command Line Interface
  1159. schemaKey: Software
  1160. url: https://github.com/dandi/dandi-cli
  1161. version: 0.58.1
  1162. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1163. access:
  1164. - schemaKey: AccessRequirements
  1165. status: dandi:OpenAccess
  1166. approach:
  1167. - name: behavioral approach
  1168. schemaKey: ApproachType
  1169. - name: microscopy approach; cell population imaging
  1170. schemaKey: ApproachType
  1171. blobDateModified: '2023-12-10T19:10:56.810000+01:00'
  1172. contentSize: 67839866857
  1173. contentUrl:
  1174. - https://api.dandiarchive.org/api/assets/c7953c75-0075-4b6f-9b10-21a004fae06e/download/
  1175. - https://dandiarchive.s3.amazonaws.com/blobs/ce1/b66/ce1b6675-64d7-497f-a603-953faab191ff
  1176. dateModified: '2023-12-11T16:52:55.273418+01:00'
  1177. datePublished: '2024-01-06T00:43:27.014658+00:00'
  1178. digest:
  1179. dandi:dandi-etag: 3cda9f15a0d6b7c7b930ea62a73b8292-1011
  1180. dandi:sha2-256: 277bbe3c27c53147e75a875c05e836346ff633fd086a15953cf2cea407eac9b1
  1181. encodingFormat: application/x-nwb
  1182. id: dandiasset:c7953c75-0075-4b6f-9b10-21a004fae06e
  1183. identifier: c7953c75-0075-4b6f-9b10-21a004fae06e
  1184. keywords:
  1185. - walking
  1186. - neural Correlates
  1187. - brain-wide Scale
  1188. - drosophila
  1189. - volumetric two-photon imaging
  1190. - neural activity mapping
  1191. - locomotor signals
  1192. measurementTechnique:
  1193. - name: two-photon microscopy technique
  1194. schemaKey: MeasurementTechniqueType
  1195. - name: analytical technique
  1196. schemaKey: MeasurementTechniqueType
  1197. - name: surgical technique
  1198. schemaKey: MeasurementTechniqueType
  1199. - name: behavioral technique
  1200. schemaKey: MeasurementTechniqueType
  1201. path: sub-fly-101/sub-fly-101_ses-20200702100612_behavior+image+ophys.nwb
  1202. publishedBy:
  1203. endDate: '2024-01-06T00:43:27.014658+00:00'
  1204. id: urn:uuid:ae1dfcaa-fd70-413e-89da-f66b2ab5b852
  1205. name: DANDI publish
  1206. schemaKey: PublishActivity
  1207. startDate: '2024-01-06T00:43:27.014658+00:00'
  1208. wasAssociatedWith:
  1209. - id: urn:uuid:44ccfb85-1d00-4bbd-ab26-3a8a435cad6e
  1210. identifier: RRID:SCR_017571
  1211. name: DANDI API
  1212. schemaKey: Software
  1213. version: 0.1.0
  1214. schemaKey: Asset
  1215. schemaVersion: 0.6.4
  1216. variableMeasured:
  1217. - schemaKey: PropertyValue
  1218. value: OpticalChannel
  1219. - schemaKey: PropertyValue
  1220. value: ImagingPlane
  1221. - schemaKey: PropertyValue
  1222. value: Position
  1223. - schemaKey: PropertyValue
  1224. value: ProcessingModule
  1225. - schemaKey: PropertyValue
  1226. value: TwoPhotonSeries
  1227. - schemaKey: PropertyValue
  1228. value: SpatialSeries
  1229. wasAttributedTo:
  1230. - age:
  1231. schemaKey: PropertyValue
  1232. unitText: ISO-8601 duration
  1233. value: P3D/P4D
  1234. valueReference:
  1235. schemaKey: PropertyValue
  1236. value: dandi:BirthReference
  1237. genotype: w+/w+;UAS-myr::tdTomato/UAS-GCaMP6f;nSyb-Gal4/+
  1238. identifier: fly_101
  1239. schemaKey: Participant
  1240. sex:
  1241. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1242. name: Female
  1243. schemaKey: SexType
  1244. species:
  1245. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  1246. name: Drosophila melanogaster - Fruit fly
  1247. schemaKey: SpeciesType
  1248. wasGeneratedBy:
  1249. - description: We use volumetric two-photon imaging to map neural activity associated
  1250. with walking across the entire brain of Drosophila. We detect locomotor signals
  1251. in approximately 40% of the brain, identify a global signal associated with the
  1252. transition from rest to walking, and define clustered neural signals selectively
  1253. associated with changes in forward or angular velocity.
  1254. identifier: '20200702100612'
  1255. name: '20200702100612'
  1256. schemaKey: Session
  1257. startDate: '2020-07-02T10:06:21.983514-07:00'
  1258. - description: Metadata generated by DANDI cli
  1259. endDate: '2023-12-11T16:52:55.273397+01:00'
  1260. id: urn:uuid:f7ed4c80-0074-464b-aae4-5d3e6afe4f84
  1261. name: Metadata generation
  1262. schemaKey: Activity
  1263. startDate: '2023-12-11T16:52:52.059381+01:00'
  1264. wasAssociatedWith:
  1265. - identifier: RRID:SCR_019009
  1266. name: DANDI Command Line Interface
  1267. schemaKey: Software
  1268. url: https://github.com/dandi/dandi-cli
  1269. version: 0.58.1
  1270. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1271. access:
  1272. - schemaKey: AccessRequirements
  1273. status: dandi:OpenAccess
  1274. approach:
  1275. - name: behavioral approach
  1276. schemaKey: ApproachType
  1277. - name: microscopy approach; cell population imaging
  1278. schemaKey: ApproachType
  1279. blobDateModified: '2023-12-10T19:11:03.380000+01:00'
  1280. contentSize: 67255903464
  1281. contentUrl:
  1282. - https://api.dandiarchive.org/api/assets/bf0b60f3-60fe-4489-abb6-27e239f21cff/download/
  1283. - https://dandiarchive.s3.amazonaws.com/blobs/741/3bd/7413bde1-fb38-4aa0-9612-71777e086941
  1284. dateModified: '2023-12-11T17:12:22.372014+01:00'
  1285. datePublished: '2024-01-06T00:43:27.020995+00:00'
  1286. digest:
  1287. dandi:dandi-etag: 8ff8dd7af07a7c77a7102ff35a90baf9-1003
  1288. dandi:sha2-256: f5bebe3c1ad981391e982701aad60177dca708b2e8074edcb506477eb809346f
  1289. encodingFormat: application/x-nwb
  1290. id: dandiasset:bf0b60f3-60fe-4489-abb6-27e239f21cff
  1291. identifier: bf0b60f3-60fe-4489-abb6-27e239f21cff
  1292. keywords:
  1293. - walking
  1294. - neural Correlates
  1295. - brain-wide Scale
  1296. - drosophila
  1297. - volumetric two-photon imaging
  1298. - neural activity mapping
  1299. - locomotor signals
  1300. measurementTechnique:
  1301. - name: two-photon microscopy technique
  1302. schemaKey: MeasurementTechniqueType
  1303. - name: analytical technique
  1304. schemaKey: MeasurementTechniqueType
  1305. - name: surgical technique
  1306. schemaKey: MeasurementTechniqueType
  1307. - name: behavioral technique
  1308. schemaKey: MeasurementTechniqueType
  1309. path: sub-fly-105/sub-fly-105_ses-20200704142706_behavior+image+ophys.nwb
  1310. publishedBy:
  1311. endDate: '2024-01-06T00:43:27.020995+00:00'
  1312. id: urn:uuid:6dc59542-77be-4596-8638-c69b55b08670
  1313. name: DANDI publish
  1314. schemaKey: PublishActivity
  1315. startDate: '2024-01-06T00:43:27.020995+00:00'
  1316. wasAssociatedWith:
  1317. - id: urn:uuid:00b85951-4158-4a1a-b1ec-9adf760d247e
  1318. identifier: RRID:SCR_017571
  1319. name: DANDI API
  1320. schemaKey: Software
  1321. version: 0.1.0
  1322. schemaKey: Asset
  1323. schemaVersion: 0.6.4
  1324. variableMeasured:
  1325. - schemaKey: PropertyValue
  1326. value: OpticalChannel
  1327. - schemaKey: PropertyValue
  1328. value: ImagingPlane
  1329. - schemaKey: PropertyValue
  1330. value: Position
  1331. - schemaKey: PropertyValue
  1332. value: ProcessingModule
  1333. - schemaKey: PropertyValue
  1334. value: TwoPhotonSeries
  1335. - schemaKey: PropertyValue
  1336. value: SpatialSeries
  1337. wasAttributedTo:
  1338. - age:
  1339. schemaKey: PropertyValue
  1340. unitText: ISO-8601 duration
  1341. value: P3D/P4D
  1342. valueReference:
  1343. schemaKey: PropertyValue
  1344. value: dandi:BirthReference
  1345. genotype: w+/w+;UAS-myr::tdTomato/UAS-GCaMP6f;nSyb-Gal4/+
  1346. identifier: fly_105
  1347. schemaKey: Participant
  1348. sex:
  1349. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1350. name: Female
  1351. schemaKey: SexType
  1352. species:
  1353. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  1354. name: Drosophila melanogaster - Fruit fly
  1355. schemaKey: SpeciesType
  1356. wasGeneratedBy:
  1357. - description: We use volumetric two-photon imaging to map neural activity associated
  1358. with walking across the entire brain of Drosophila. We detect locomotor signals
  1359. in approximately 40% of the brain, identify a global signal associated with the
  1360. transition from rest to walking, and define clustered neural signals selectively
  1361. associated with changes in forward or angular velocity.
  1362. identifier: '20200704142706'
  1363. name: '20200704142706'
  1364. schemaKey: Session
  1365. startDate: '2020-07-04T14:27:12.085179-07:00'
  1366. - description: Metadata generated by DANDI cli
  1367. endDate: '2023-12-11T17:12:22.371996+01:00'
  1368. id: urn:uuid:7ee31cb4-7f11-48f2-bbac-1ef2b30badc8
  1369. name: Metadata generation
  1370. schemaKey: Activity
  1371. startDate: '2023-12-11T17:12:19.850155+01:00'
  1372. wasAssociatedWith:
  1373. - identifier: RRID:SCR_019009
  1374. name: DANDI Command Line Interface
  1375. schemaKey: Software
  1376. url: https://github.com/dandi/dandi-cli
  1377. version: 0.58.1
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...