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
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2023-12-10T19:11:45.790000+01:00'
contentSize: 152311342
contentUrl:
- https://api.dandiarchive.org/api/assets/a1ae7526-4152-4395-aea1-9b5fe395b71d/download/
- https://dandiarchive.s3.amazonaws.com/blobs/191/923/1919235d-beaf-42cf-a8bc-3a12134d1019
dateModified: '2023-12-10T19:19:20.365790+01:00'
datePublished: '2024-01-06T00:43:26.777600+00:00'
digest:
dandi:dandi-etag: 7da00e80330fe40b97d5f3e46668bc28-3
dandi:sha2-256: 6cdd806db7a501b6bbaaa66b4f5b2d5db0856ae3441fd8b42003a4a4f3405b52
encodingFormat: video/x-msvideo
id: dandiasset:a1ae7526-4152-4395-aea1-9b5fe395b71d
identifier: a1ae7526-4152-4395-aea1-9b5fe395b71d
path: sub-fly-094/sub-fly-094_ses-20200620122048_behavior+image+ophys/a8173d1b-03df-4580-b6d3-9499604280c3_external_file_0.avi
publishedBy:
endDate: '2024-01-06T00:43:26.777600+00:00'
id: urn:uuid:ba96c849-a432-48f1-b275-9e5e402b5085
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-01-06T00:43:26.777600+00:00'
wasAssociatedWith:
- id: urn:uuid:cd81a5d9-ab40-494e-a47c-793bf6851f1e
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-10T19:19:20.365767+01:00'
id: urn:uuid:ed445973-57f7-4586-b1db-59a3649f598d
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-10T19:19:20.365767+01:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2023-12-10T19:12:07.340000+01:00'
contentSize: 171709998
contentUrl:
- https://api.dandiarchive.org/api/assets/6dfe0576-c84e-46d6-97f8-fbf072895e0e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/202/503/202503b4-cf28-43f7-9491-ba5d682df7b9
dateModified: '2023-12-10T19:19:21.596588+01:00'
datePublished: '2024-01-06T00:43:26.899183+00:00'
digest:
dandi:dandi-etag: e6b8659d2ba33dd8fd50109be48ae77c-3
dandi:sha2-256: 203ae6c4871e44cd00c6ebd5867d32248bf745578934b046cd3e673f44e7db73
encodingFormat: video/x-msvideo
id: dandiasset:6dfe0576-c84e-46d6-97f8-fbf072895e0e
identifier: 6dfe0576-c84e-46d6-97f8-fbf072895e0e
path: sub-fly-089/sub-fly-089_ses-20200618081653_behavior+image+ophys/5c033c49-ed7c-49c1-841a-10cc13faf1d0_external_file_0.avi
publishedBy:
endDate: '2024-01-06T00:43:26.899183+00:00'
id: urn:uuid:a76c45cf-17a2-4ec6-af00-f7073852815b
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-01-06T00:43:26.899183+00:00'
wasAssociatedWith:
- id: urn:uuid:cc7e2116-8b03-4e1e-8d5c-66a42ed95637
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-10T19:19:21.596542+01:00'
id: urn:uuid:2917834c-e956-45ad-9fb8-8a0135fde45d
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-10T19:19:21.596542+01:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2023-12-10T19:12:02.870000+01:00'
contentSize: 230954542
contentUrl:
- https://api.dandiarchive.org/api/assets/f8253c46-7bdc-4de2-b44e-14862281051f/download/
- https://dandiarchive.s3.amazonaws.com/blobs/b12/ffd/b12ffd4b-43ea-4010-984c-dc0dbaa810ed
dateModified: '2023-12-10T19:19:21.005646+01:00'
datePublished: '2024-01-06T00:43:26.905557+00:00'
digest:
dandi:dandi-etag: 2117502a3430c5fe8e783c7d3655df96-4
dandi:sha2-256: 03732b08cae31e2e2273fc57100778d4667df64444cf4f5c3a2c2663cfd21b28
encodingFormat: video/x-msvideo
id: dandiasset:f8253c46-7bdc-4de2-b44e-14862281051f
identifier: f8253c46-7bdc-4de2-b44e-14862281051f
path: sub-fly-087/sub-fly-087_ses-20200228161226_behavior+image+ophys/715320fc-831c-4218-a723-32ca9e147cb2_external_file_0.avi
publishedBy:
endDate: '2024-01-06T00:43:26.905557+00:00'
id: urn:uuid:1bcf2698-5833-4f40-ba39-b7203f386423
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-01-06T00:43:26.905557+00:00'
wasAssociatedWith:
- id: urn:uuid:1c77e802-8b73-4d94-b36e-f6a0093efca0
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-10T19:19:21.005611+01:00'
id: urn:uuid:c3531134-c2cf-401b-8bd7-bf2275530084
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-10T19:19:21.005611+01:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2023-12-10T19:12:04.920000+01:00'
contentSize: 150738478
contentUrl:
- https://api.dandiarchive.org/api/assets/0beef1a3-5e96-4672-907d-96a10dd3dcb4/download/
- https://dandiarchive.s3.amazonaws.com/blobs/a50/63f/a5063f4d-98ce-47c1-add8-1ed5825e05af
dateModified: '2023-12-10T19:20:05.961787+01:00'
datePublished: '2024-01-06T00:43:26.911983+00:00'
digest:
dandi:dandi-etag: a4680d76308d0866bc46403a55543d63-3
dandi:sha2-256: f8b1a9a199b49715006423cbc4446bac9c6b77a9b77560697705684e67568356
encodingFormat: video/x-msvideo
id: dandiasset:0beef1a3-5e96-4672-907d-96a10dd3dcb4
identifier: 0beef1a3-5e96-4672-907d-96a10dd3dcb4
path: sub-fly-097/sub-fly-097_ses-20200627113329_behavior+image+ophys/2226474c-b04b-4bf0-8e32-b89ba3ee9587_external_file_0.avi
publishedBy:
endDate: '2024-01-06T00:43:26.911983+00:00'
id: urn:uuid:8b321352-8a0b-414f-b8e8-afcb79a58f6d
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-01-06T00:43:26.911983+00:00'
wasAssociatedWith:
- id: urn:uuid:e51897b4-833d-4b02-b75b-ecf3f0bb8730
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-10T19:20:05.961764+01:00'
id: urn:uuid:a5cee270-842c-4de1-89f5-4babdafe26c2
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-10T19:20:05.961764+01:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2023-12-10T19:12:06.200000+01:00'
contentSize: 190584366
contentUrl:
- https://api.dandiarchive.org/api/assets/c4e94c0b-54ef-4dc9-91a8-b95ee91cc629/download/
- https://dandiarchive.s3.amazonaws.com/blobs/39d/d72/39dd72e3-9eaa-4ce5-a565-376f7ba9eb54
dateModified: '2023-12-10T19:20:25.922801+01:00'
datePublished: '2024-01-06T00:43:26.917941+00:00'
digest:
dandi:dandi-etag: 35c6a78853534dc37cd7a19f7e703d68-3
dandi:sha2-256: f184cae921d2e049f55f9569a0d40326c4d3b5d9090ada668ca8e87c7f1d06ee
encodingFormat: video/x-msvideo
id: dandiasset:c4e94c0b-54ef-4dc9-91a8-b95ee91cc629
identifier: c4e94c0b-54ef-4dc9-91a8-b95ee91cc629
path: sub-fly-098/sub-fly-098_ses-20200627130208_behavior+image+ophys/0fd93d4a-c7d9-4157-99aa-973815d2a707_external_file_0.avi
publishedBy:
endDate: '2024-01-06T00:43:26.917941+00:00'
id: urn:uuid:fbdc7b2a-4023-4f6e-9821-793e6d14be53
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-01-06T00:43:26.917941+00:00'
wasAssociatedWith:
- id: urn:uuid:b606e401-78c6-46c8-91a6-e5957c08fa05
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-10T19:20:25.922777+01:00'
id: urn:uuid:db2bc9a8-a331-4c47-b0cc-90c56f6dd356
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-10T19:20:25.922777+01:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-12-10T19:11:06.620000+01:00'
contentSize: 67210717736
contentUrl:
- https://api.dandiarchive.org/api/assets/14b60d03-73b8-4a49-830d-4887cfea1914/download/
- https://dandiarchive.s3.amazonaws.com/blobs/63e/9b2/63e9b254-6972-4575-8f0f-35c137fa6a1f
dateModified: '2023-12-11T12:50:55.168548+01:00'
datePublished: '2024-01-06T00:43:26.924457+00:00'
digest:
dandi:dandi-etag: de7a7a7d8cacfd58f5da0da126729878-1002
dandi:sha2-256: 45c3054aede3c5488370317307a1a95aa19b7ca92576af5be1ba48d065f467b5
encodingFormat: application/x-nwb
id: dandiasset:14b60d03-73b8-4a49-830d-4887cfea1914
identifier: 14b60d03-73b8-4a49-830d-4887cfea1914
keywords:
- walking
- neural Correlates
- brain-wide Scale
- drosophila
- volumetric two-photon imaging
- neural activity mapping
- locomotor signals
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-fly-098/sub-fly-098_ses-20200627130208_behavior+image+ophys.nwb
publishedBy:
endDate: '2024-01-06T00:43:26.924457+00:00'
id: urn:uuid:fd5896aa-8c19-486b-9718-a89831189389
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-01-06T00:43:26.924457+00:00'
wasAssociatedWith:
- id: urn:uuid:30868830-565a-40b4-b666-a9f15b92e9fe
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: SpatialSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P3D/P4D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: w+/w+;UAS-myr::tdTomato/UAS-GCaMP6f;nSyb-Gal4/+
identifier: fly_098
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
name: Drosophila melanogaster - Fruit fly
schemaKey: SpeciesType
wasGeneratedBy:
- description: We use volumetric two-photon imaging to map neural activity associated
with walking across the entire brain of Drosophila. We detect locomotor signals
in approximately 40% of the brain, identify a global signal associated with the
transition from rest to walking, and define clustered neural signals selectively
associated with changes in forward or angular velocity.
identifier: '20200627130208'
name: '20200627130208'
schemaKey: Session
startDate: '2020-06-27T13:02:18.301376-07:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-11T12:50:55.168522+01:00'
id: urn:uuid:8ba35983-11e5-4cfd-b861-17fdb917c522
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-11T12:50:51.490523+01:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2023-12-10T19:11:09.400000+01:00'
contentSize: 178525742
contentUrl:
- https://api.dandiarchive.org/api/assets/5671b1c1-b52b-4f09-80a8-603dc2740a29/download/
- https://dandiarchive.s3.amazonaws.com/blobs/2bd/7eb/2bd7ebc4-ffff-482e-a080-6d8d51806be1
dateModified: '2023-12-11T15:23:44.640037+01:00'
datePublished: '2024-01-06T00:43:26.934993+00:00'
digest:
dandi:dandi-etag: 3f68ef605cd6bff48f30e4a054782f0a-3
dandi:sha2-256: 91c8220eae5d81033698fd9383ed52d43ac11f74822039d7d1bdf64923b741b6
encodingFormat: video/x-msvideo
id: dandiasset:5671b1c1-b52b-4f09-80a8-603dc2740a29
identifier: 5671b1c1-b52b-4f09-80a8-603dc2740a29
path: sub-fly-099/sub-fly-099_ses-20200627142647_behavior+image+ophys/03a93cbc-f437-4686-b728-e4c231b35634_external_file_0.avi
publishedBy:
endDate: '2024-01-06T00:43:26.934993+00:00'
id: urn:uuid:3f9e771a-dc13-4c61-9f80-d63d2062a728
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-01-06T00:43:26.934993+00:00'
wasAssociatedWith:
- id: urn:uuid:2de14aa9-46d7-445e-979e-8c68ad58f96f
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-11T15:23:44.640009+01:00'
id: urn:uuid:d2459fec-4399-4cda-a281-0b3e30ccbc5f
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-11T15:23:44.640009+01:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-12-10T19:11:04.980000+01:00'
contentSize: 66914446036
contentUrl:
- https://api.dandiarchive.org/api/assets/0d19fe7f-aec2-429a-ad9a-23e576f11bde/download/
- https://dandiarchive.s3.amazonaws.com/blobs/f18/2f7/f182f7b1-038b-432a-ae6a-98de1716e776
dateModified: '2023-12-11T12:56:46.968604+01:00'
datePublished: '2024-01-06T00:43:26.943793+00:00'
digest:
dandi:dandi-etag: dc307d39b0e10340f17dc4286cd88688-998
dandi:sha2-256: 964e39450c06d523c08fd76b90a36f7cd2117a2a72864db3eb6d7df4a479e3e8
encodingFormat: application/x-nwb
id: dandiasset:0d19fe7f-aec2-429a-ad9a-23e576f11bde
identifier: 0d19fe7f-aec2-429a-ad9a-23e576f11bde
keywords:
- walking
- neural Correlates
- brain-wide Scale
- drosophila
- volumetric two-photon imaging
- neural activity mapping
- locomotor signals
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-fly-097/sub-fly-097_ses-20200627113329_behavior+image+ophys.nwb
publishedBy:
endDate: '2024-01-06T00:43:26.943793+00:00'
id: urn:uuid:13cba7a4-2883-4105-9ea6-3f485f0142fc
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-01-06T00:43:26.943793+00:00'
wasAssociatedWith:
- id: urn:uuid:907809df-3c1f-4d2d-801b-227764192dd4
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: SpatialSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P3D/P4D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: w+/w+;UAS-myr::tdTomato/UAS-GCaMP6f;nSyb-Gal4/+
identifier: fly_097
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
name: Drosophila melanogaster - Fruit fly
schemaKey: SpeciesType
wasGeneratedBy:
- description: We use volumetric two-photon imaging to map neural activity associated
with walking across the entire brain of Drosophila. We detect locomotor signals
in approximately 40% of the brain, identify a global signal associated with the
transition from rest to walking, and define clustered neural signals selectively
associated with changes in forward or angular velocity.
identifier: '20200627113329'
name: '20200627113329'
schemaKey: Session
startDate: '2020-06-27T11:33:37.100887-07:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-11T12:56:46.968584+01:00'
id: urn:uuid:1e07c50d-9405-435c-bc76-78ff123fafca
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-11T12:56:43.288329+01:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2023-12-10T19:11:26.450000+01:00'
contentSize: 221779502
contentUrl:
- https://api.dandiarchive.org/api/assets/66904371-fc5e-4bb6-b266-1713a97137df/download/
- https://dandiarchive.s3.amazonaws.com/blobs/9b4/db5/9b4db5d7-fa2d-421b-9bf1-0011ea7cee82
dateModified: '2023-12-11T15:29:48.928928+01:00'
datePublished: '2024-01-06T00:43:26.951132+00:00'
digest:
dandi:dandi-etag: 0ac840b35198769710f41c0cfdc4d971-4
dandi:sha2-256: d57c4fdaba3abb38bfbf6bbdb091df2ca4d355afb5fade1e25b588390a3f7659
encodingFormat: video/x-msvideo
id: dandiasset:66904371-fc5e-4bb6-b266-1713a97137df
identifier: 66904371-fc5e-4bb6-b266-1713a97137df
path: sub-fly-100/sub-fly-100_ses-20200702083849_behavior+image+ophys/3b40b188-a623-47f6-a5a3-e1d53b46e62a_external_file_0.avi
publishedBy:
endDate: '2024-01-06T00:43:26.951132+00:00'
id: urn:uuid:04b46868-4605-42aa-9561-5e1b1a6063ab
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-01-06T00:43:26.951132+00:00'
wasAssociatedWith:
- id: urn:uuid:6b9fd2e0-4476-468c-a848-e702bc899de0
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-11T15:29:48.928899+01:00'
id: urn:uuid:5ebb9f60-fcfe-4a3a-904b-b2702e5382f7
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-11T15:29:48.928899+01:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-12-10T19:11:08.160000+01:00'
contentSize: 66626834273
contentUrl:
- https://api.dandiarchive.org/api/assets/dbb2efb4-f297-4ae7-89b1-b22408765168/download/
- https://dandiarchive.s3.amazonaws.com/blobs/5eb/604/5eb604ff-b2de-4d51-a73e-506c1e6848de
dateModified: '2023-12-11T13:11:20.015651+01:00'
datePublished: '2024-01-06T00:43:26.957369+00:00'
digest:
dandi:dandi-etag: 7a403be5338629cd9ac47302ff230dff-993
dandi:sha2-256: 1df46789312fbfd237f6f9ed4c465d05ff51bb4475a468338e3a7865aa67b346
encodingFormat: application/x-nwb
id: dandiasset:dbb2efb4-f297-4ae7-89b1-b22408765168
identifier: dbb2efb4-f297-4ae7-89b1-b22408765168
keywords:
- walking
- neural Correlates
- brain-wide Scale
- drosophila
- volumetric two-photon imaging
- neural activity mapping
- locomotor signals
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-fly-089/sub-fly-089_ses-20200618081653_behavior+image+ophys.nwb
publishedBy:
endDate: '2024-01-06T00:43:26.957369+00:00'
id: urn:uuid:c9e7ddc1-d362-473b-9573-85c807067fae
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-01-06T00:43:26.957369+00:00'
wasAssociatedWith:
- id: urn:uuid:8f780604-217f-4d87-b00d-290061cb6206
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: SpatialSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P3D/P4D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: w+/w+;UAS-myr::tdTomato/UAS-GCaMP6f;nSyb-Gal4/+
identifier: fly_089
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
name: Drosophila melanogaster - Fruit fly
schemaKey: SpeciesType
wasGeneratedBy:
- description: We use volumetric two-photon imaging to map neural activity associated
with walking across the entire brain of Drosophila. We detect locomotor signals
in approximately 40% of the brain, identify a global signal associated with the
transition from rest to walking, and define clustered neural signals selectively
associated with changes in forward or angular velocity.
identifier: '20200618081653'
name: '20200618081653'
schemaKey: Session
startDate: '2020-06-18T08:17:27.446655-07:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-11T13:11:20.015625+01:00'
id: urn:uuid:3a81924e-e600-47a4-a61d-20b6463a5406
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-11T13:11:14.782169+01:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2023-12-10T19:11:10.810000+01:00'
contentSize: 209983022
contentUrl:
- https://api.dandiarchive.org/api/assets/58cee1a0-dbf1-4c09-b767-250469a9c7a2/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c5a/d22/c5ad221a-7650-413c-8644-59b742e2c61c
dateModified: '2023-12-11T15:56:53.323188+01:00'
datePublished: '2024-01-06T00:43:26.971860+00:00'
digest:
dandi:dandi-etag: 039a1f09244c7cc79c76977b10d92443-4
dandi:sha2-256: 803099f9a583cdbc0538aeaa52989efce03e583b1b85c74bfec817fb6cbfed8d
encodingFormat: video/x-msvideo
id: dandiasset:58cee1a0-dbf1-4c09-b767-250469a9c7a2
identifier: 58cee1a0-dbf1-4c09-b767-250469a9c7a2
path: sub-fly-101/sub-fly-101_ses-20200702100612_behavior+image+ophys/28ff4aa7-25cb-4439-9825-f4087dd31fd6_external_file_0.avi
publishedBy:
endDate: '2024-01-06T00:43:26.971860+00:00'
id: urn:uuid:c6d0143c-03aa-4053-bb26-1bdb56506085
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-01-06T00:43:26.971860+00:00'
wasAssociatedWith:
- id: urn:uuid:6aae91a6-4647-4989-9bce-f00dd7f1a570
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-11T15:56:53.323156+01:00'
id: urn:uuid:c1323769-7bf9-4c24-af36-55a38219da54
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-11T15:56:53.323156+01:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-12-10T19:11:00.110000+01:00'
contentSize: 67208806013
contentUrl:
- https://api.dandiarchive.org/api/assets/0ce7e3b3-2b2e-4f62-9491-be5f1088121a/download/
- https://dandiarchive.s3.amazonaws.com/blobs/97d/f6b/97df6b08-3e39-4d94-970b-2d8dc92f16a8
dateModified: '2023-12-11T13:22:27.806869+01:00'
datePublished: '2024-01-06T00:43:26.977999+00:00'
digest:
dandi:dandi-etag: c027ecae40315f8bde36042f3e781b9c-1002
dandi:sha2-256: facce6549b14d52bc1128757db7c1648c3794794afc025d716e828439019c152
encodingFormat: application/x-nwb
id: dandiasset:0ce7e3b3-2b2e-4f62-9491-be5f1088121a
identifier: 0ce7e3b3-2b2e-4f62-9491-be5f1088121a
keywords:
- walking
- neural Correlates
- brain-wide Scale
- drosophila
- volumetric two-photon imaging
- neural activity mapping
- locomotor signals
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-fly-094/sub-fly-094_ses-20200620122048_behavior+image+ophys.nwb
publishedBy:
endDate: '2024-01-06T00:43:26.977999+00:00'
id: urn:uuid:d5f5c4aa-d5ec-4c2c-ad2a-f219514802be
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-01-06T00:43:26.977999+00:00'
wasAssociatedWith:
- id: urn:uuid:781d2563-9cc3-4a87-9c01-565160aaea3b
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: SpatialSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P3D/P4D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: w+/w+;UAS-myr::tdTomato/UAS-GCaMP6f;nSyb-Gal4/+
identifier: fly_094
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
name: Drosophila melanogaster - Fruit fly
schemaKey: SpeciesType
wasGeneratedBy:
- description: We use volumetric two-photon imaging to map neural activity associated
with walking across the entire brain of Drosophila. We detect locomotor signals
in approximately 40% of the brain, identify a global signal associated with the
transition from rest to walking, and define clustered neural signals selectively
associated with changes in forward or angular velocity.
identifier: '20200620122048'
name: '20200620122048'
schemaKey: Session
startDate: '2020-06-20T12:20:53.684457-07:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-11T13:22:27.806849+01:00'
id: urn:uuid:4b7f573f-91d5-4d5b-8e45-b08ff3e16532
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-11T13:22:25.145631+01:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2023-12-10T19:12:03.910000+01:00'
contentSize: 155194926
contentUrl:
- https://api.dandiarchive.org/api/assets/ee7bda44-60af-4b52-9192-6f403445adb1/download/
- https://dandiarchive.s3.amazonaws.com/blobs/b0c/4d7/b0c4d7ed-556d-43a9-b247-139249bc97fc
dateModified: '2023-12-11T15:58:33.748104+01:00'
datePublished: '2024-01-06T00:43:26.985594+00:00'
digest:
dandi:dandi-etag: 0dddb1538bd1c449774d82640dad2331-3
dandi:sha2-256: 657e13b65e90ba15522dff89ff92e4f77bb3ed4697af35213d5157d01031a23a
encodingFormat: video/x-msvideo
id: dandiasset:ee7bda44-60af-4b52-9192-6f403445adb1
identifier: ee7bda44-60af-4b52-9192-6f403445adb1
path: sub-fly-105/sub-fly-105_ses-20200704142706_behavior+image+ophys/fcc255da-02e5-448f-b491-123282813f0b_external_file_0.avi
publishedBy:
endDate: '2024-01-06T00:43:26.985594+00:00'
id: urn:uuid:0551e3f3-c023-4f94-a762-2e77f5686002
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-01-06T00:43:26.985594+00:00'
wasAssociatedWith:
- id: urn:uuid:dc10d10e-80b1-4d6b-a62b-d6dbb1926d64
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-11T15:58:33.748071+01:00'
id: urn:uuid:6b3479e9-55ff-4337-9bfa-2998d3195fbb
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-11T15:58:33.748071+01:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-12-10T19:11:01.760000+01:00'
contentSize: 68975371022
contentUrl:
- https://api.dandiarchive.org/api/assets/80be44d6-db90-4807-bb1b-abdac5c580eb/download/
- https://dandiarchive.s3.amazonaws.com/blobs/34d/a9e/34da9e7f-b914-455d-afb7-cb82131990d8
dateModified: '2023-12-11T13:14:49.612599+01:00'
datePublished: '2024-01-06T00:43:26.991469+00:00'
digest:
dandi:dandi-etag: 021b4c4d84451f2e413217da9f6bc6ef-1028
dandi:sha2-256: e764c812af86f12603b45a909bc5f6033357153193581f729e538a93d9602559
encodingFormat: application/x-nwb
id: dandiasset:80be44d6-db90-4807-bb1b-abdac5c580eb
identifier: 80be44d6-db90-4807-bb1b-abdac5c580eb
keywords:
- walking
- neural Correlates
- brain-wide Scale
- drosophila
- volumetric two-photon imaging
- neural activity mapping
- locomotor signals
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-fly-087/sub-fly-087_ses-20200228161226_behavior+image+ophys.nwb
publishedBy:
endDate: '2024-01-06T00:43:26.991469+00:00'
id: urn:uuid:a484e95e-e4e0-47ed-914c-40bac9bfa3ee
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-01-06T00:43:26.991469+00:00'
wasAssociatedWith:
- id: urn:uuid:8c35da05-3a65-4d91-a147-089a5894cdf7
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: SpatialSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P3D/P4D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: w+/w+;UAS-myr::tdTomato/UAS-GCaMP6f;nSyb-Gal4/+
identifier: fly_087
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
name: Drosophila melanogaster - Fruit fly
schemaKey: SpeciesType
wasGeneratedBy:
- description: We use volumetric two-photon imaging to map neural activity associated
with walking across the entire brain of Drosophila. We detect locomotor signals
in approximately 40% of the brain, identify a global signal associated with the
transition from rest to walking, and define clustered neural signals selectively
associated with changes in forward or angular velocity.
identifier: '20200228161226'
name: '20200228161226'
schemaKey: Session
startDate: '2020-02-28T16:12:42.799114-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-11T13:14:49.612579+01:00'
id: urn:uuid:5182e03f-eb8a-4555-a75d-f7206d20978d
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-11T13:14:46.178718+01:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-12-10T19:10:58.490000+01:00'
contentSize: 67681351575
contentUrl:
- https://api.dandiarchive.org/api/assets/6c1de3f6-25b1-411d-81eb-09f46d2dae67/download/
- https://dandiarchive.s3.amazonaws.com/blobs/eae/04e/eae04e73-3c21-405f-8a14-c3eb7d4fd881
dateModified: '2023-12-11T16:35:18.158039+01:00'
datePublished: '2024-01-06T00:43:26.998212+00:00'
digest:
dandi:dandi-etag: 0bbf6e156aca20d3d8786c9c574e1cf1-1009
dandi:sha2-256: 20f47f43c3ae4dabd7d5d6108e9158376606dff64014b347e2b443c31b0d8975
encodingFormat: application/x-nwb
id: dandiasset:6c1de3f6-25b1-411d-81eb-09f46d2dae67
identifier: 6c1de3f6-25b1-411d-81eb-09f46d2dae67
keywords:
- walking
- neural Correlates
- brain-wide Scale
- drosophila
- volumetric two-photon imaging
- neural activity mapping
- locomotor signals
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-fly-100/sub-fly-100_ses-20200702083849_behavior+image+ophys.nwb
publishedBy:
endDate: '2024-01-06T00:43:26.998212+00:00'
id: urn:uuid:1cf44cb8-45dd-4180-bae6-5ed60c3239b5
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-01-06T00:43:26.998212+00:00'
wasAssociatedWith:
- id: urn:uuid:55bf6931-1ee0-4923-9a03-ca4390723d45
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: SpatialSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P3D/P4D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: w+/w+;UAS-myr::tdTomato/UAS-GCaMP6f;nSyb-Gal4/+
identifier: fly_100
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
name: Drosophila melanogaster - Fruit fly
schemaKey: SpeciesType
wasGeneratedBy:
- description: We use volumetric two-photon imaging to map neural activity associated
with walking across the entire brain of Drosophila. We detect locomotor signals
in approximately 40% of the brain, identify a global signal associated with the
transition from rest to walking, and define clustered neural signals selectively
associated with changes in forward or angular velocity.
identifier: '20200702083849'
name: '20200702083849'
schemaKey: Session
startDate: '2020-07-02T08:38:55.956354-07:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-11T16:35:18.158020+01:00'
id: urn:uuid:36feb63d-2fc1-4f3b-84ad-647a131545d0
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-11T16:35:14.754615+01:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-12-10T19:10:55.200000+01:00'
contentSize: 68193425704
contentUrl:
- https://api.dandiarchive.org/api/assets/ce45745d-26db-42dc-aad4-851d85db99b1/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c5a/7e8/c5a7e8e4-3fed-4141-9517-24901c813d2b
dateModified: '2023-12-11T16:34:24.903858+01:00'
datePublished: '2024-01-06T00:43:27.006963+00:00'
digest:
dandi:dandi-etag: b61c8a35ab08811ecc107b4f516e8917-1017
dandi:sha2-256: e45083f1ac9aec0a11731aad8ff61251be52188083b54f3b6ec36e8a786763b5
encodingFormat: application/x-nwb
id: dandiasset:ce45745d-26db-42dc-aad4-851d85db99b1
identifier: ce45745d-26db-42dc-aad4-851d85db99b1
keywords:
- walking
- neural Correlates
- brain-wide Scale
- drosophila
- volumetric two-photon imaging
- neural activity mapping
- locomotor signals
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-fly-099/sub-fly-099_ses-20200627142647_behavior+image+ophys.nwb
publishedBy:
endDate: '2024-01-06T00:43:27.006963+00:00'
id: urn:uuid:a4646433-2ff8-4733-baa0-39c4843a6e25
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-01-06T00:43:27.006963+00:00'
wasAssociatedWith:
- id: urn:uuid:f2bc468a-5ed0-4de3-96ee-7f74b9c4cf4c
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: SpatialSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P3D/P4D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: w+/w+;UAS-myr::tdTomato/UAS-GCaMP6f;nSyb-Gal4/+
identifier: fly_099
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
name: Drosophila melanogaster - Fruit fly
schemaKey: SpeciesType
wasGeneratedBy:
- description: We use volumetric two-photon imaging to map neural activity associated
with walking across the entire brain of Drosophila. We detect locomotor signals
in approximately 40% of the brain, identify a global signal associated with the
transition from rest to walking, and define clustered neural signals selectively
associated with changes in forward or angular velocity.
identifier: '20200627142647'
name: '20200627142647'
schemaKey: Session
startDate: '2020-06-27T14:27:04.361307-07:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-11T16:34:24.903838+01:00'
id: urn:uuid:578a2957-f960-4f7c-846d-f511c1977417
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-11T16:34:21.283172+01:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-12-10T19:10:56.810000+01:00'
contentSize: 67839866857
contentUrl:
- https://api.dandiarchive.org/api/assets/c7953c75-0075-4b6f-9b10-21a004fae06e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/ce1/b66/ce1b6675-64d7-497f-a603-953faab191ff
dateModified: '2023-12-11T16:52:55.273418+01:00'
datePublished: '2024-01-06T00:43:27.014658+00:00'
digest:
dandi:dandi-etag: 3cda9f15a0d6b7c7b930ea62a73b8292-1011
dandi:sha2-256: 277bbe3c27c53147e75a875c05e836346ff633fd086a15953cf2cea407eac9b1
encodingFormat: application/x-nwb
id: dandiasset:c7953c75-0075-4b6f-9b10-21a004fae06e
identifier: c7953c75-0075-4b6f-9b10-21a004fae06e
keywords:
- walking
- neural Correlates
- brain-wide Scale
- drosophila
- volumetric two-photon imaging
- neural activity mapping
- locomotor signals
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-fly-101/sub-fly-101_ses-20200702100612_behavior+image+ophys.nwb
publishedBy:
endDate: '2024-01-06T00:43:27.014658+00:00'
id: urn:uuid:ae1dfcaa-fd70-413e-89da-f66b2ab5b852
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-01-06T00:43:27.014658+00:00'
wasAssociatedWith:
- id: urn:uuid:44ccfb85-1d00-4bbd-ab26-3a8a435cad6e
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: SpatialSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P3D/P4D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: w+/w+;UAS-myr::tdTomato/UAS-GCaMP6f;nSyb-Gal4/+
identifier: fly_101
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
name: Drosophila melanogaster - Fruit fly
schemaKey: SpeciesType
wasGeneratedBy:
- description: We use volumetric two-photon imaging to map neural activity associated
with walking across the entire brain of Drosophila. We detect locomotor signals
in approximately 40% of the brain, identify a global signal associated with the
transition from rest to walking, and define clustered neural signals selectively
associated with changes in forward or angular velocity.
identifier: '20200702100612'
name: '20200702100612'
schemaKey: Session
startDate: '2020-07-02T10:06:21.983514-07:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-11T16:52:55.273397+01:00'
id: urn:uuid:f7ed4c80-0074-464b-aae4-5d3e6afe4f84
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-11T16:52:52.059381+01:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-12-10T19:11:03.380000+01:00'
contentSize: 67255903464
contentUrl:
- https://api.dandiarchive.org/api/assets/bf0b60f3-60fe-4489-abb6-27e239f21cff/download/
- https://dandiarchive.s3.amazonaws.com/blobs/741/3bd/7413bde1-fb38-4aa0-9612-71777e086941
dateModified: '2023-12-11T17:12:22.372014+01:00'
datePublished: '2024-01-06T00:43:27.020995+00:00'
digest:
dandi:dandi-etag: 8ff8dd7af07a7c77a7102ff35a90baf9-1003
dandi:sha2-256: f5bebe3c1ad981391e982701aad60177dca708b2e8074edcb506477eb809346f
encodingFormat: application/x-nwb
id: dandiasset:bf0b60f3-60fe-4489-abb6-27e239f21cff
identifier: bf0b60f3-60fe-4489-abb6-27e239f21cff
keywords:
- walking
- neural Correlates
- brain-wide Scale
- drosophila
- volumetric two-photon imaging
- neural activity mapping
- locomotor signals
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-fly-105/sub-fly-105_ses-20200704142706_behavior+image+ophys.nwb
publishedBy:
endDate: '2024-01-06T00:43:27.020995+00:00'
id: urn:uuid:6dc59542-77be-4596-8638-c69b55b08670
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-01-06T00:43:27.020995+00:00'
wasAssociatedWith:
- id: urn:uuid:00b85951-4158-4a1a-b1ec-9adf760d247e
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: SpatialSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P3D/P4D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: w+/w+;UAS-myr::tdTomato/UAS-GCaMP6f;nSyb-Gal4/+
identifier: fly_105
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
name: Drosophila melanogaster - Fruit fly
schemaKey: SpeciesType
wasGeneratedBy:
- description: We use volumetric two-photon imaging to map neural activity associated
with walking across the entire brain of Drosophila. We detect locomotor signals
in approximately 40% of the brain, identify a global signal associated with the
transition from rest to walking, and define clustered neural signals selectively
associated with changes in forward or angular velocity.
identifier: '20200704142706'
name: '20200704142706'
schemaKey: Session
startDate: '2020-07-04T14:27:12.085179-07:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-11T17:12:22.371996+01:00'
id: urn:uuid:7ee31cb4-7f11-48f2-bbac-1ef2b30badc8
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-11T17:12:19.850155+01:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
Tip!
Press p or to see the previous file or,
n or to see the next file