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
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:53:26.220000-05:00'
contentSize: 9688931
contentUrl:
- https://api.dandiarchive.org/api/assets/c342d98d-7e6a-484c-a52e-8c8d24249743/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c36/ef7/c36ef711-85e4-47da-9d08-f09fe3d90de8
dateModified: '2023-11-11T11:17:43.660102-05:00'
digest:
dandi:dandi-etag: 6a2981fa34876a2e2da82cce5f5d1bcb-1
dandi:sha2-256: 4a94c1db4413dd9ea308cc08bf42b44b557da58ac1988a43d6aa91e226bd2639
encodingFormat: application/x-nwb
id: dandiasset:c342d98d-7e6a-484c-a52e-8c8d24249743
identifier: c342d98d-7e6a-484c-a52e-8c8d24249743
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F32-B24-5dpf-12-unsorted-nac/sub-Temp-pref-F32-B24-5dpf-12-unsorted-nac_ses-20231024T124500_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT45900S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F32_B24_5dpf_12_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-24T12:45:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:17:43.660102-05:00'
id: urn:uuid:bc2d6050-d3e1-4a57-981f-76f5542f0d22
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:17:43.600108-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:53:22.760000-05:00'
contentSize: 9704346
contentUrl:
- https://api.dandiarchive.org/api/assets/59eedeb9-3f80-4e5c-9bca-117ab96e3746/download/
- https://dandiarchive.s3.amazonaws.com/blobs/bd0/a29/bd0a2987-e55c-46fc-b9de-03a8c67cec7f
dateModified: '2023-11-11T11:17:43.529886-05:00'
digest:
dandi:dandi-etag: 371ea834862b124411e2e4b95d3badef-1
dandi:sha2-256: 4d482f472dcc826b10adca0aaf330a571a6c528a2cf0eaea34d8298f07c1f643
encodingFormat: application/x-nwb
id: dandiasset:59eedeb9-3f80-4e5c-9bca-117ab96e3746
identifier: 59eedeb9-3f80-4e5c-9bca-117ab96e3746
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F32-B24-5dpf-11-unsorted-nac/sub-Temp-pref-F32-B24-5dpf-11-unsorted-nac_ses-20231024T121300_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT43980S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F32_B24_5dpf_11_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-24T12:13:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:17:43.529886-05:00'
id: urn:uuid:52e89769-8629-47cd-9ba2-a2d33c54d712
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:17:43.499887-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:53:36.620000-05:00'
contentSize: 9912761
contentUrl:
- https://api.dandiarchive.org/api/assets/ae3e731d-c1b5-451c-8bf2-ce9151305dc2/download/
- https://dandiarchive.s3.amazonaws.com/blobs/390/4a2/3904a275-207e-4dc5-b416-b07bedb5e9f7
dateModified: '2023-11-11T11:17:43.870055-05:00'
digest:
dandi:dandi-etag: 61ac1dd85a8952c49c2aca6b51ed0d18-1
dandi:sha2-256: 808bfd34af7af918bccd0f77259cd62449483abd883c74d2701d9ca6cb3c5ccf
encodingFormat: application/x-nwb
id: dandiasset:ae3e731d-c1b5-451c-8bf2-ce9151305dc2
identifier: ae3e731d-c1b5-451c-8bf2-ce9151305dc2
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F32-B24-5dpf-15-unsorted-nac/sub-Temp-pref-F32-B24-5dpf-15-unsorted-nac_ses-20231024T142000_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT51600S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F32_B24_5dpf_15_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-24T14:20:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:17:43.870055-05:00'
id: urn:uuid:f9e67b3a-03ba-4e3e-81fc-06c6687e5da6
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:17:43.863727-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:53:29.690000-05:00'
contentSize: 9971791
contentUrl:
- https://api.dandiarchive.org/api/assets/764a694a-f9b7-4f52-b415-5b44e61781d1/download/
- https://dandiarchive.s3.amazonaws.com/blobs/2fb/36f/2fb36f81-c913-4498-a0f1-55426ba80e72
dateModified: '2023-11-11T11:17:43.786887-05:00'
digest:
dandi:dandi-etag: 3f7d31b39e1437f657bf9cda057c7d80-1
dandi:sha2-256: 99089f42ad99068007b7cbc8c5e700a1ebb7949025c664e72519060f0fe4f59c
encodingFormat: application/x-nwb
id: dandiasset:764a694a-f9b7-4f52-b415-5b44e61781d1
identifier: 764a694a-f9b7-4f52-b415-5b44e61781d1
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F32-B24-5dpf-13-unsorted-nac/sub-Temp-pref-F32-B24-5dpf-13-unsorted-nac_ses-20231024T131600_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT47760S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F32_B24_5dpf_13_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-24T13:16:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:17:43.786887-05:00'
id: urn:uuid:fa897c06-96a3-4c9a-ace3-9c9b2bad9745
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:17:43.770149-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:53:33.160000-05:00'
contentSize: 9705300
contentUrl:
- https://api.dandiarchive.org/api/assets/c2aad141-be22-4ad9-84c0-96d177cee073/download/
- https://dandiarchive.s3.amazonaws.com/blobs/dfc/41c/dfc41ca1-babc-4206-a033-d41980f1e36f
dateModified: '2023-11-11T11:17:43.887123-05:00'
digest:
dandi:dandi-etag: f8c3b3524777fa72d57e3e46efef893c-1
dandi:sha2-256: 0ba6dce55e5e80083bde03c68907312cd5a29b5dcb3e586eb3add6f0712b113b
encodingFormat: application/x-nwb
id: dandiasset:c2aad141-be22-4ad9-84c0-96d177cee073
identifier: c2aad141-be22-4ad9-84c0-96d177cee073
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F32-B24-5dpf-14-unsorted-nac/sub-Temp-pref-F32-B24-5dpf-14-unsorted-nac_ses-20231024T134900_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT49740S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F32_B24_5dpf_14_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-24T13:49:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:17:43.887123-05:00'
id: urn:uuid:3b634591-a8f3-4e35-8838-7378f2aff486
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:17:43.885479-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:53:40.190000-05:00'
contentSize: 9701727
contentUrl:
- https://api.dandiarchive.org/api/assets/4916ebde-cd86-475d-8744-c24fad0a1b50/download/
- https://dandiarchive.s3.amazonaws.com/blobs/593/cea/593ceac1-8ca2-4bce-97b6-b39288d52db3
dateModified: '2023-11-11T11:17:47.155997-05:00'
digest:
dandi:dandi-etag: 9f11a12ab3d0ecc48e2008f09f4f4b85-1
dandi:sha2-256: 9008c18189d860b022cbe12217708aca56d76e5815bbe4e5758c44f4f67dfff3
encodingFormat: application/x-nwb
id: dandiasset:4916ebde-cd86-475d-8744-c24fad0a1b50
identifier: 4916ebde-cd86-475d-8744-c24fad0a1b50
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F32-B24-5dpf-16-unsorted-nac/sub-Temp-pref-F32-B24-5dpf-16-unsorted-nac_ses-20231024T145500_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT53700S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F32_B24_5dpf_16_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-24T14:55:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:17:47.155997-05:00'
id: urn:uuid:8cfe1af2-2dcb-4dbf-b8dc-4308d5603bd1
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:17:47.155997-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:53:43.680000-05:00'
contentSize: 9812694
contentUrl:
- https://api.dandiarchive.org/api/assets/6ee6babe-7b52-4fed-a406-d0b9f0f2cc45/download/
- https://dandiarchive.s3.amazonaws.com/blobs/720/195/720195b4-2b91-4dd3-a8b8-d3e8b3009b31
dateModified: '2023-11-11T11:17:47.835647-05:00'
digest:
dandi:dandi-etag: adc15bffbc8f8cb8df9bf41a0db10a47-1
dandi:sha2-256: fe64c519d7dc0369ff47443beed3e06b1586b88af25c90657215f1c6c1e2f474
encodingFormat: application/x-nwb
id: dandiasset:6ee6babe-7b52-4fed-a406-d0b9f0f2cc45
identifier: 6ee6babe-7b52-4fed-a406-d0b9f0f2cc45
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F32-B24-5dpf-17-unsorted-nac/sub-Temp-pref-F32-B24-5dpf-17-unsorted-nac_ses-20231024T152600_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT55560S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F32_B24_5dpf_17_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-24T15:26:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:17:47.835647-05:00'
id: urn:uuid:ea62ba6a-0644-4076-9c25-1487770d4228
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:17:47.835647-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:53:47.170000-05:00'
contentSize: 9687416
contentUrl:
- https://api.dandiarchive.org/api/assets/b391faa4-fdbe-4652-91da-f0846200ed79/download/
- https://dandiarchive.s3.amazonaws.com/blobs/223/9f1/2239f1ca-ba09-41a1-b8f7-e31b2bc71ab7
dateModified: '2023-11-11T11:17:47.835647-05:00'
digest:
dandi:dandi-etag: cf48ebbee9a98ff06d540c1660febf75-1
dandi:sha2-256: 8d2163270b8174c81c7144e40bd69b8416c8b75c37b8680d0f6ee8bf3be52f80
encodingFormat: application/x-nwb
id: dandiasset:b391faa4-fdbe-4652-91da-f0846200ed79
identifier: b391faa4-fdbe-4652-91da-f0846200ed79
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F32-B24-7dpf-01-unsorted-nac/sub-Temp-pref-F32-B24-7dpf-01-unsorted-nac_ses-20231019T113100_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P7DT41460S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F32_B24_7dpf_01_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-19T11:31:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:17:47.835647-05:00'
id: urn:uuid:3e8b0f96-901a-4a66-a65f-74a43da154f0
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:17:47.795648-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:53:50.670000-05:00'
contentSize: 9873396
contentUrl:
- https://api.dandiarchive.org/api/assets/93b6aafa-065d-48e9-985b-0b9bf949d0a3/download/
- https://dandiarchive.s3.amazonaws.com/blobs/b92/f3d/b92f3dbc-a03f-4128-a388-433a24adc3c8
dateModified: '2023-11-11T11:17:48.415650-05:00'
digest:
dandi:dandi-etag: bee80dbd50dfcaccc2d3030a794c4321-1
dandi:sha2-256: 008d945ae300d3defaf782c43fadb20550eca96ccdde6d59b356ab776283e432
encodingFormat: application/x-nwb
id: dandiasset:93b6aafa-065d-48e9-985b-0b9bf949d0a3
identifier: 93b6aafa-065d-48e9-985b-0b9bf949d0a3
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F32-B24-7dpf-02-unsorted-nac/sub-Temp-pref-F32-B24-7dpf-02-unsorted-nac_ses-20231019T120400_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P7DT43440S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F32_B24_7dpf_02_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-19T12:04:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:17:48.415650-05:00'
id: urn:uuid:e8d1df43-6a3c-4c84-b5ea-2e529afbff37
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:17:48.406006-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:53:54.130000-05:00'
contentSize: 9758633
contentUrl:
- https://api.dandiarchive.org/api/assets/300f5ae6-47f8-439a-82c4-33e24a3d6eab/download/
- https://dandiarchive.s3.amazonaws.com/blobs/a83/fe5/a83fe5d4-d0bd-4467-a1db-400224221282
dateModified: '2023-11-11T11:17:48.985629-05:00'
digest:
dandi:dandi-etag: fffaf9726e0fbcf76eb00c71a5b155ab-1
dandi:sha2-256: 03ff7c09fd8909c9c4aac5188c91736f91ab580b544b794536f22d4f53bc029d
encodingFormat: application/x-nwb
id: dandiasset:300f5ae6-47f8-439a-82c4-33e24a3d6eab
identifier: 300f5ae6-47f8-439a-82c4-33e24a3d6eab
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F32-B24-7dpf-03-unsorted-nac/sub-Temp-pref-F32-B24-7dpf-03-unsorted-nac_ses-20231019T125600_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P7DT46560S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F32_B24_7dpf_03_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-19T12:56:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:17:48.985629-05:00'
id: urn:uuid:aec9e9ee-5425-4e11-b427-a72ddf74a36c
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:17:48.825628-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:53:57.590000-05:00'
contentSize: 9709200
contentUrl:
- https://api.dandiarchive.org/api/assets/1f83d1cf-c403-4e6f-886e-f18fed26c8f6/download/
- https://dandiarchive.s3.amazonaws.com/blobs/41d/b2a/41db2aca-000b-4d47-8276-c9096aa3e6c7
dateModified: '2023-11-11T11:17:50.405638-05:00'
digest:
dandi:dandi-etag: d002738596505ac9ecc5a55d7bdb6878-1
dandi:sha2-256: ff1e51f4424d3efe29551921d132e6f9b6ec95b7485a81950abbf6da15f28401
encodingFormat: application/x-nwb
id: dandiasset:1f83d1cf-c403-4e6f-886e-f18fed26c8f6
identifier: 1f83d1cf-c403-4e6f-886e-f18fed26c8f6
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F32-B24-7dpf-04-unsorted-nac/sub-Temp-pref-F32-B24-7dpf-04-unsorted-nac_ses-20231019T132700_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P7DT48420S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F32_B24_7dpf_04_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-19T13:27:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:17:50.405638-05:00'
id: urn:uuid:6efc5f07-dde2-4905-87d7-a9e29931ca30
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:17:50.365991-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:54:01.090000-05:00'
contentSize: 9872612
contentUrl:
- https://api.dandiarchive.org/api/assets/75785dff-530a-46e5-8bc4-e2f41e1b0382/download/
- https://dandiarchive.s3.amazonaws.com/blobs/08a/8fb/08a8fb76-78e4-45e0-8df3-a5a8236d02b5
dateModified: '2023-11-11T11:17:50.465638-05:00'
digest:
dandi:dandi-etag: 3950a1dc709910bb0572e870b549e20d-1
dandi:sha2-256: b530e294024acf310f664f7ff411ac5947d247e06c916b7e5ed316b5be46d69a
encodingFormat: application/x-nwb
id: dandiasset:75785dff-530a-46e5-8bc4-e2f41e1b0382
identifier: 75785dff-530a-46e5-8bc4-e2f41e1b0382
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F32-B24-7dpf-05-unsorted-nac/sub-Temp-pref-F32-B24-7dpf-05-unsorted-nac_ses-20231019T140400_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P7DT50640S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F32_B24_7dpf_05_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-19T14:04:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:17:50.465638-05:00'
id: urn:uuid:8d087cda-05e2-408f-9b97-e4fdabefe52c
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:17:50.395985-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:54:08.140000-05:00'
contentSize: 9818951
contentUrl:
- https://api.dandiarchive.org/api/assets/2c0b9b6c-c134-4244-8005-acc49497d3f1/download/
- https://dandiarchive.s3.amazonaws.com/blobs/65c/6bf/65c6bfcf-c2fb-4b46-a87d-28510238a209
dateModified: '2023-11-11T11:17:51.385674-05:00'
digest:
dandi:dandi-etag: 09e438dc6ad0d1419acacb5e41dde4e1-1
dandi:sha2-256: e8d095938d8392ecaa9cd601a4b679fa1c9a645fe4d7df658f6875237311378a
encodingFormat: application/x-nwb
id: dandiasset:2c0b9b6c-c134-4244-8005-acc49497d3f1
identifier: 2c0b9b6c-c134-4244-8005-acc49497d3f1
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F32-B24-7dpf-07-unsorted-nac/sub-Temp-pref-F32-B24-7dpf-07-unsorted-nac_ses-20231019T153500_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P7DT56100S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F32_B24_7dpf_07_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-19T15:35:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:17:51.385674-05:00'
id: urn:uuid:214316a1-1e22-482a-99de-c326230a560e
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:17:51.306022-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:54:04.620000-05:00'
contentSize: 9733135
contentUrl:
- https://api.dandiarchive.org/api/assets/42d6d358-a486-4924-ad3b-490223cc987b/download/
- https://dandiarchive.s3.amazonaws.com/blobs/0ce/b70/0ceb7094-1f6f-4bec-b44e-2bb26dc4e454
dateModified: '2023-11-11T11:17:51.385674-05:00'
digest:
dandi:dandi-etag: b6c24b3d1d485279d66564c70b29d99a-1
dandi:sha2-256: d3f40455bf6947d48e5e86ac7243322876ab5e107bfc945616f65463d0dd9f12
encodingFormat: application/x-nwb
id: dandiasset:42d6d358-a486-4924-ad3b-490223cc987b
identifier: 42d6d358-a486-4924-ad3b-490223cc987b
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F32-B24-7dpf-06-unsorted-nac/sub-Temp-pref-F32-B24-7dpf-06-unsorted-nac_ses-20231019T150200_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P7DT54120S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F32_B24_7dpf_06_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-19T15:02:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:17:51.385674-05:00'
id: urn:uuid:323b986a-22fa-4b45-8976-c520e231ea6c
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:17:51.335685-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:54:15.190000-05:00'
contentSize: 9782866
contentUrl:
- https://api.dandiarchive.org/api/assets/2a83e4ec-42cc-4834-93de-8dc37b5ab5ef/download/
- https://dandiarchive.s3.amazonaws.com/blobs/b38/8a8/b388a848-29e2-46dd-ad4f-28a573eaf7f6
dateModified: '2023-11-11T11:17:53.031773-05:00'
digest:
dandi:dandi-etag: 58f8c156d66d36f498b1a8c39f6fcedc-1
dandi:sha2-256: e0f253ce8ef83f3a5a94fbe0c018312e45bf28d18cfbfe2cfe274984633ad3b0
encodingFormat: application/x-nwb
id: dandiasset:2a83e4ec-42cc-4834-93de-8dc37b5ab5ef
identifier: 2a83e4ec-42cc-4834-93de-8dc37b5ab5ef
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F32-B24-7dpf-09-unsorted-nac/sub-Temp-pref-F32-B24-7dpf-09-unsorted-nac_ses-20231019T165000_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P7DT60600S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F32_B24_7dpf_09_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-19T16:50:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:17:53.031773-05:00'
id: urn:uuid:d61d7ee9-7ed8-4577-902e-837e6d52a402
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:17:53.021421-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:54:11.690000-05:00'
contentSize: 9821614
contentUrl:
- https://api.dandiarchive.org/api/assets/4d68f1f4-a63c-4694-bb35-e5b0d6c56c89/download/
- https://dandiarchive.s3.amazonaws.com/blobs/48f/3e1/48f3e1fc-8f22-4116-94c4-8114dc4a7d1a
dateModified: '2023-11-11T11:17:51.825676-05:00'
digest:
dandi:dandi-etag: b775e9bcf217f596df8bc7e6c7f4cd77-1
dandi:sha2-256: bf5de9d7596150f836dcef7c0726d065ceaa0be6b6e21f8f251b4d512eab4bc7
encodingFormat: application/x-nwb
id: dandiasset:4d68f1f4-a63c-4694-bb35-e5b0d6c56c89
identifier: 4d68f1f4-a63c-4694-bb35-e5b0d6c56c89
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F32-B24-7dpf-08-unsorted-nac/sub-Temp-pref-F32-B24-7dpf-08-unsorted-nac_ses-20231019T161800_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P7DT58680S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F32_B24_7dpf_08_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-19T16:18:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:17:51.825676-05:00'
id: urn:uuid:24864a1e-5aa5-47be-9be6-853165cde55f
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:17:51.825676-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:54:18.680000-05:00'
contentSize: 9916990
contentUrl:
- https://api.dandiarchive.org/api/assets/701123be-9bc8-4b1f-afcd-2534492e5d1f/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c6b/341/c6b341e9-bf45-41b4-8e5b-13bf8e370969
dateModified: '2023-11-11T11:17:53.481286-05:00'
digest:
dandi:dandi-etag: c3d9386bda448d61b049319e6322a6bb-1
dandi:sha2-256: c673956d935e23c0d87dc0102e9e7961a741774317c448e91def8c93b35ae8a2
encodingFormat: application/x-nwb
id: dandiasset:701123be-9bc8-4b1f-afcd-2534492e5d1f
identifier: 701123be-9bc8-4b1f-afcd-2534492e5d1f
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F32-B24-7dpf-10-unsorted-nac/sub-Temp-pref-F32-B24-7dpf-10-unsorted-nac_ses-20231019T172200_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P7DT62520S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F32_B24_7dpf_10_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-19T17:22:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:17:53.481286-05:00'
id: urn:uuid:e015646b-e004-44ba-8ac9-2e32d4207069
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:17:53.471287-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
Tip!
Press p or to see the previous file or,
n or to see the next file