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
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2023-12-11T16:10:18.991389-05:00'
contentSize: 480
contentUrl:
- https://api.dandiarchive.org/api/assets/9b32a049-b91e-4d05-98e8-e2242ad66296/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/f6d/e78/f6de788e-c0ae-45e2-ad66-c7e4e23cb063
dateModified: '2023-12-13T16:09:49.669324-05:00'
digest:
dandi:dandi-etag: 0a64e382b8f07a3c6e0c0d3b4f022dbb-1
dandi:sha2-256: cb078a0cd53fb04a57d6bafe5d29b5d09b4a0486c8d9b2fc2a13b60df236fe6e
encodingFormat: application/json
id: dandiasset:9b32a049-b91e-4d05-98e8-e2242ad66296
identifier: 9b32a049-b91e-4d05-98e8-e2242ad66296
path: derivatives/DWIprep_V.1.0/dataset_description.json
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:48.664029-05:00'
id: urn:uuid:29e2dd37-d825-40a6-8300-ab5a20304271
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:48.664029-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:49.669287-05:00'
id: urn:uuid:426f7834-e16a-4686-a2ef-60bd11659baa
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:49.669287-05: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-12T14:51:53.680171-05:00'
contentSize: 8671
contentUrl:
- https://api.dandiarchive.org/api/assets/48da9b03-93d9-4d05-b439-8660185f4111/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/0a1/f31/0a1f31de-6dcf-4293-9092-a2c510070432
dateModified: '2023-12-13T16:09:49.978786-05:00'
digest:
dandi:dandi-etag: e6880e07daecca688225da5346abb061-1
dandi:sha2-256: 49edc083a4fc5b7ba3ab97b2f086fe9a71cb03708cd1ce84bdc0039ae210ce72
encodingFormat: application/octet-stream
id: dandiasset:48da9b03-93d9-4d05-b439-8660185f4111
identifier: 48da9b03-93d9-4d05-b439-8660185f4111
path: derivatives/DWIprep_V.1.0/sub-243/sub-243_dwi-prep.bval
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:48.665611-05:00'
id: urn:uuid:05ab3371-14ad-4fd4-9636-cd84ba24c36e
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:48.665611-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:49.978757-05:00'
id: urn:uuid:a1de8c92-8a53-4ba9-8f03-f98614f015d2
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:49.978757-05: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-11T15:47:23.711082-05:00'
contentSize: 99
contentUrl:
- https://api.dandiarchive.org/api/assets/e7b4f76e-0ed2-415c-94bc-b1a4f19fe5b5/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/779/bda/779bda67-a9b1-40c9-bb86-b150e85ce2f2
dateModified: '2023-12-13T16:09:49.920552-05:00'
digest:
dandi:dandi-etag: 4abb3eaeb6d49e4f77468768cdb207d6-1
dandi:sha2-256: add9d97ffb002f64955399ef47ea1ebf9c7d9f910071b989d81a548e1fdae015
encodingFormat: application/json
id: dandiasset:e7b4f76e-0ed2-415c-94bc-b1a4f19fe5b5
identifier: e7b4f76e-0ed2-415c-94bc-b1a4f19fe5b5
path: dataset_description.json
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:49.920526-05:00'
id: urn:uuid:6a241d10-c6e3-4fd4-a67f-aaa3e5ff0795
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:49.920526-05: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-12T14:50:32.174437-05:00'
contentSize: 20736
contentUrl:
- https://api.dandiarchive.org/api/assets/e0c2a366-ed40-4144-be49-a0954378a83c/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/7f8/203/7f820356-2eaf-4e7a-8a3a-0de3c26850e2
dateModified: '2023-12-13T16:09:49.865227-05:00'
digest:
dandi:dandi-etag: 2b568aa3996cd684af13f40435188809-1
dandi:sha2-256: 3bbaff959697388b5b65e14be8e69d5bf6fb9a7ee74b6961a20c316702bdb53f
encodingFormat: application/octet-stream
id: dandiasset:e0c2a366-ed40-4144-be49-a0954378a83c
identifier: e0c2a366-ed40-4144-be49-a0954378a83c
path: derivatives/DWIprep_V.1.0/sub-243/sub-243_dwi-prep.bvec
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:48.666771-05:00'
id: urn:uuid:b23be5fe-6a3c-4bb3-8c97-05453bee51ef
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:48.666771-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:49.865192-05:00'
id: urn:uuid:c40b3c00-7bfc-4b5d-af4b-9f322be2f4de
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:49.865192-05: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-12T14:52:15.967646-05:00'
contentSize: 3065
contentUrl:
- https://api.dandiarchive.org/api/assets/6625d5e4-919b-470b-a819-f89805854793/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/1d6/204/1d62048e-0ab2-4225-a632-c95779466999
dateModified: '2023-12-13T16:09:53.157591-05:00'
digest:
dandi:dandi-etag: 8062eecfd749ab9160635fa0afeb08b5-1
dandi:sha2-256: 4f153eeb779dd0c1094abe752956579f1732d99ab623fcaade604d26cd3ee701
encodingFormat: application/octet-stream
id: dandiasset:6625d5e4-919b-470b-a819-f89805854793
identifier: 6625d5e4-919b-470b-a819-f89805854793
path: derivatives/DWIprep_V.1.0/sub-243/sub-243_dwi-prephcpl.bval
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:51.712853-05:00'
id: urn:uuid:c34d85e9-086d-43e5-b262-43891f545248
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:51.712853-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:53.157566-05:00'
id: urn:uuid:bf6bc9b5-10b9-4ce8-a1ef-c0e356a6d37c
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:53.157566-05: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-12T14:52:31.715981-05:00'
contentSize: 7518
contentUrl:
- https://api.dandiarchive.org/api/assets/3f002896-123d-4995-8264-95a025b5627f/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/be7/61b/be761b90-3039-4a22-895b-a3616d8c275f
dateModified: '2023-12-13T16:09:53.776999-05:00'
digest:
dandi:dandi-etag: 8814e96417b89722b8ce5107681695f7-1
dandi:sha2-256: 513a222044a1b577098dc2a8444b6466ee8f7c19e5576aef8d37074bb027bd00
encodingFormat: application/octet-stream
id: dandiasset:3f002896-123d-4995-8264-95a025b5627f
identifier: 3f002896-123d-4995-8264-95a025b5627f
path: derivatives/DWIprep_V.1.0/sub-243/sub-243_dwi-prephcpl.bvec
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:52.650181-05:00'
id: urn:uuid:24720ba8-9433-4212-a2fd-e113e945cba1
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:52.650181-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:53.776962-05:00'
id: urn:uuid:cef976b2-de08-406b-b3dc-21f268b7ab33
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:53.776962-05: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-12T14:34:56.820454-05:00'
contentSize: 3066
contentUrl:
- https://api.dandiarchive.org/api/assets/96cbad0b-73fa-492f-b53a-bbe8a42f88fa/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/c37/6ec/c376ec4a-d22b-4824-9730-32cfa97c1a17
dateModified: '2023-12-13T16:09:53.846754-05:00'
digest:
dandi:dandi-etag: d3a118f76bbfb91f4fd34df346a53241-1
dandi:sha2-256: bb9f58c033835dd08b2d76c0bcc076881d2bcf5a8a6cd91e9214389c4dd20496
encodingFormat: application/octet-stream
id: dandiasset:96cbad0b-73fa-492f-b53a-bbe8a42f88fa
identifier: 96cbad0b-73fa-492f-b53a-bbe8a42f88fa
path: derivatives/DWIprep_V.1.0/sub-243/sub-243_dwihcpl.bval
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:52.744632-05:00'
id: urn:uuid:d504f0be-38f4-4e06-a166-fecf6b3ed76e
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:52.744632-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:53.846717-05:00'
id: urn:uuid:82ce2f10-ef08-46cb-b202-109feafa2fe3
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:53.846717-05: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-12T14:34:46.458371-05:00'
contentSize: 7518
contentUrl:
- https://api.dandiarchive.org/api/assets/051a0308-f999-4287-8697-a90c14400fbb/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/88e/fc5/88efc5f2-30e0-47fd-858f-950fe219c4bb
dateModified: '2023-12-13T16:09:56.867426-05:00'
digest:
dandi:dandi-etag: 851ad355152709dc587467ca8ad6bff9-1
dandi:sha2-256: 4e3ba0f30070d36ae777e6dd0f26e7bc890b02e688b94d65452a20f5301d9a8b
encodingFormat: application/octet-stream
id: dandiasset:051a0308-f999-4287-8697-a90c14400fbb
identifier: 051a0308-f999-4287-8697-a90c14400fbb
path: derivatives/DWIprep_V.1.0/sub-243/sub-243_dwihcpl.bvec
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:55.919930-05:00'
id: urn:uuid:55cbfe7c-1f3a-4433-84d9-f5e82bddfa10
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:55.919930-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:56.867390-05:00'
id: urn:uuid:5394adc3-1c9d-43d3-89ed-038823ca00e0
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:56.867390-05: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-11T18:35:48-05:00'
contentSize: 18338
contentUrl:
- https://api.dandiarchive.org/api/assets/b42348fd-de27-4397-bc13-94235b12c369/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/566/a21/566a2172-20bb-45ff-8e2e-73535f7640ff
dateModified: '2023-12-13T16:09:57.491109-05:00'
digest:
dandi:dandi-etag: 28f1ba7ab568e512c751489a343255e7-1
dandi:sha2-256: 3cd0c6eadbdca4113253481843b0bc036f5fa7c5434b852c50e428c97047d8b3
encodingFormat: application/gzip
id: dandiasset:b42348fd-de27-4397-bc13-94235b12c369
identifier: b42348fd-de27-4397-bc13-94235b12c369
path: derivatives/DWIprep_V.1.0/sub-243/sub-243_inject.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:56.725550-05:00'
id: urn:uuid:425ffde6-96e0-4750-8258-34d84a9df8b7
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:56.725550-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:57.491073-05:00'
id: urn:uuid:abe41868-4acb-42ae-b782-b158127ae0aa
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:57.491073-05: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-13T14:26:18.335223-05:00'
contentSize: 13
contentUrl:
- https://api.dandiarchive.org/api/assets/6c3e0331-163a-4338-991f-3aa7c28e97f3/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/e12/c71/e12c7112-4a3d-48ee-bc45-871bfb17ebdc
dateModified: '2023-12-13T16:09:58.880508-05:00'
digest:
dandi:dandi-etag: 0509437216240f05077cec8d581a2fc8-1
dandi:sha2-256: 9302336a59ceeaf89423e216c6d87c120a690c8761adb2ae76e2ef0284bc7a9b
encodingFormat: application/octet-stream
id: dandiasset:6c3e0331-163a-4338-991f-3aa7c28e97f3
identifier: 6c3e0331-163a-4338-991f-3aa7c28e97f3
path: derivatives/DWIprep_V.1.0/sub-256/acqp
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:58.410248-05:00'
id: urn:uuid:1859076a-fcb1-47fe-ad52-891ae7fb9269
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:58.410248-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:58.880473-05:00'
id: urn:uuid:3a8f3fe5-76c2-4ddc-a301-55eb8b567916
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:58.880473-05: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-13T14:34:37.554960-05:00'
contentSize: 340
contentUrl:
- https://api.dandiarchive.org/api/assets/ac5bf09d-cc05-4616-9055-f3177ad2ef44/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/63d/ea3/63dea3c3-3bdd-4de0-b717-b17e27717f63
dateModified: '2023-12-13T16:10:00.180917-05:00'
digest:
dandi:dandi-etag: 67d0246b9f4d688f630ede6495abe097-1
dandi:sha2-256: f585e0d7f20d95ce6070dcb8949e826e542733f4333624b98c12b36ea64a0a0d
encodingFormat: application/octet-stream
id: dandiasset:ac5bf09d-cc05-4616-9055-f3177ad2ef44
identifier: ac5bf09d-cc05-4616-9055-f3177ad2ef44
path: derivatives/DWIprep_V.1.0/sub-256/bval
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:59.288595-05:00'
id: urn:uuid:29aeb733-b115-41d5-b215-b26aba0b4f67
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:59.288595-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:10:00.180880-05:00'
id: urn:uuid:075b6308-fd71-423f-8a34-5e860b26cedf
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:10:00.180880-05: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-13T14:34:37.550960-05:00'
contentSize: 2938
contentUrl:
- https://api.dandiarchive.org/api/assets/f926cd0f-6a2e-44fd-b9b5-e37aade2fbc9/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/e5a/f0c/e5af0c47-d50b-4a9d-8bc7-10ec790e1603
dateModified: '2023-12-13T16:10:00.971057-05:00'
digest:
dandi:dandi-etag: 021bbeed7f0143ff699017af942fb946-1
dandi:sha2-256: 96e6162d53f4bdc59b35a6525d691385d2ff007ab0cca6515047ed10f626ad33
encodingFormat: application/octet-stream
id: dandiasset:f926cd0f-6a2e-44fd-b9b5-e37aade2fbc9
identifier: f926cd0f-6a2e-44fd-b9b5-e37aade2fbc9
path: derivatives/DWIprep_V.1.0/sub-256/bvec
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:10:00.569625-05:00'
id: urn:uuid:966049f4-9369-4c60-939c-79544fdcbe1a
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:10:00.569625-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:10:00.971026-05:00'
id: urn:uuid:511dedea-a3b9-4fa1-aaa7-0271064b01cf
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:10:00.971026-05: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-13T14:26:18.344223-05:00'
contentSize: 292
contentUrl:
- https://api.dandiarchive.org/api/assets/48abbc3d-bf96-44a8-903e-beb35994b450/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/45f/f45/45ff4588-4f50-45bc-bb61-0694bb050786
dateModified: '2023-12-13T16:10:02.072894-05:00'
digest:
dandi:dandi-etag: d4d9bd9af6f74a6864af1c041f527ca7-1
dandi:sha2-256: 894f67f654be90a898f41b41ba9d40ef2d54b390e84aacb88c6fbab4536259bb
encodingFormat: application/octet-stream
id: dandiasset:48abbc3d-bf96-44a8-903e-beb35994b450
identifier: 48abbc3d-bf96-44a8-903e-beb35994b450
path: derivatives/DWIprep_V.1.0/sub-256/index
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:10:01.592145-05:00'
id: urn:uuid:321aff68-c5da-40fc-8141-7255ccc933a5
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:10:01.592145-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:10:02.072860-05:00'
id: urn:uuid:e90e6fdf-10d4-4630-8143-d614a167a098
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:10:02.072860-05: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-12T14:37:46.775056-05:00'
contentSize: 8672
contentUrl:
- https://api.dandiarchive.org/api/assets/208193aa-3794-4028-9bd7-f6b95b79ee3b/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/767/af5/767af566-7bfc-4184-a996-02287c40ef3d
dateModified: '2023-12-13T16:10:02.887228-05:00'
digest:
dandi:dandi-etag: 9d572ea71dbf3774bcb3c1b73653dfa5-1
dandi:sha2-256: 5698368c0e6f412130bc5bdd75993ebc0f9577685e6db26a3f02fbf9f7803b6f
encodingFormat: application/octet-stream
id: dandiasset:208193aa-3794-4028-9bd7-f6b95b79ee3b
identifier: 208193aa-3794-4028-9bd7-f6b95b79ee3b
path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwi-prep.bval
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:10:02.485008-05:00'
id: urn:uuid:c8ca29f5-da22-4526-8661-252ff2289628
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:10:02.485008-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:10:02.887194-05:00'
id: urn:uuid:420ac688-ee2e-45bb-8464-5af5aa2f22ff
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:10:02.887194-05: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-12T14:37:33.991785-05:00'
contentSize: 20817
contentUrl:
- https://api.dandiarchive.org/api/assets/0befeca4-3fd9-43da-b105-18b5ef7c8ef2/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/fce/38e/fce38e05-21bc-4812-b1ce-faa09b0a38d2
dateModified: '2023-12-13T16:10:03.931686-05:00'
digest:
dandi:dandi-etag: 44993126699c80586870145c0acc7fcc-1
dandi:sha2-256: 960f539121e924dab00ec03abbf03c3996ebcbe55ec1088971f2ebb3d406e276
encodingFormat: application/octet-stream
id: dandiasset:0befeca4-3fd9-43da-b105-18b5ef7c8ef2
identifier: 0befeca4-3fd9-43da-b105-18b5ef7c8ef2
path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwi-prep.bvec
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:10:03.460089-05:00'
id: urn:uuid:ab34748b-cca7-49b7-a33f-304fc12f8b56
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:10:03.460089-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:10:03.931651-05:00'
id: urn:uuid:5af24ae8-5e9c-4df2-905a-35b4d305ff4c
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:10:03.931651-05: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-12T14:38:34.618072-05:00'
contentSize: 3065
contentUrl:
- https://api.dandiarchive.org/api/assets/f91305cb-3aa7-4d39-b115-f34df596dc19/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/1d6/204/1d62048e-0ab2-4225-a632-c95779466999
dateModified: '2023-12-13T16:10:05.911436-05:00'
digest:
dandi:dandi-etag: 8062eecfd749ab9160635fa0afeb08b5-1
dandi:sha2-256: 4f153eeb779dd0c1094abe752956579f1732d99ab623fcaade604d26cd3ee701
encodingFormat: application/octet-stream
id: dandiasset:f91305cb-3aa7-4d39-b115-f34df596dc19
identifier: f91305cb-3aa7-4d39-b115-f34df596dc19
path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwi-prephcpl.bval
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:10:05.501162-05:00'
id: urn:uuid:f7079861-96c0-43db-8a0c-06d553ebc53a
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:10:05.501162-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:10:05.911400-05:00'
id: urn:uuid:c8abb929-5897-4bfa-aa5b-ac73ab4784f5
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:10:05.911400-05: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-12T14:38:21.974803-05:00'
contentSize: 7518
contentUrl:
- https://api.dandiarchive.org/api/assets/460230d1-1338-4587-809b-5d0c22300df9/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/be7/61b/be761b90-3039-4a22-895b-a3616d8c275f
dateModified: '2023-12-13T16:10:06.918325-05:00'
digest:
dandi:dandi-etag: 8814e96417b89722b8ce5107681695f7-1
dandi:sha2-256: 513a222044a1b577098dc2a8444b6466ee8f7c19e5576aef8d37074bb027bd00
encodingFormat: application/octet-stream
id: dandiasset:460230d1-1338-4587-809b-5d0c22300df9
identifier: 460230d1-1338-4587-809b-5d0c22300df9
path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwi-prephcpl.bvec
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:10:06.483859-05:00'
id: urn:uuid:6c9a1a96-2da7-4803-97f1-5e49b9f436fa
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:10:06.483859-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:10:06.918292-05:00'
id: urn:uuid:ce7317df-084b-441b-901a-057242e7ae73
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:10:06.918292-05: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-11T18:35:52-05:00'
contentSize: 152236625
contentUrl:
- https://api.dandiarchive.org/api/assets/8ae1f03c-74b1-4089-aa1f-ea43935ef71e/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/83e/e3b/83ee3bc6-a601-4b3f-b334-28ea32f9522c
dateModified: '2023-12-13T16:09:59.650748-05:00'
digest:
dandi:dandi-etag: 42f294ae67d13d7d4d610e1628fba2a1-3
dandi:sha2-256: d439551d0da7b2f6f6457fe7a1729a897b44c78a136f04baab70a6079e18ce58
encodingFormat: application/gzip
id: dandiasset:8ae1f03c-74b1-4089-aa1f-ea43935ef71e
identifier: 8ae1f03c-74b1-4089-aa1f-ea43935ef71e
path: derivatives/DWIprep_V.1.0/sub-243/sub-243_dwihcpl.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:56.243099-05:00'
id: urn:uuid:c50d0058-ebe2-4069-bd0b-2ec8c735e185
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:56.243099-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:59.650715-05:00'
id: urn:uuid:24b061f4-b107-4d9f-a868-f33fa818b501
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:59.650715-05: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-13T12:10:50.954950-05:00'
contentSize: 534413048
contentUrl:
- https://api.dandiarchive.org/api/assets/f8d0e8b4-7d1e-40fc-893e-e86673575712/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/e00/6fb/e006fbb6-4959-490d-bc87-d3f3ce65280b
dateModified: '2023-12-13T16:09:54.981129-05:00'
digest:
dandi:dandi-etag: 834422382e96841b0339ff77264b070f-8
dandi:sha2-256: 1df4a1b29b5c90c7536dcfea9b4ff1d76badd72b19a71816360b0699d3d22153
encodingFormat: application/gzip
id: dandiasset:f8d0e8b4-7d1e-40fc-893e-e86673575712
identifier: f8d0e8b4-7d1e-40fc-893e-e86673575712
path: derivatives/DWIprep_V.1.0/sub-243/sub-243_dwi-prephcpl.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:53.089013-05:00'
id: urn:uuid:9b8aff81-a515-46c7-bd81-52b7309df1dd
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:53.089013-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:54.981098-05:00'
id: urn:uuid:1d4cc770-1db3-42fb-81e4-c16f768ed4eb
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:54.981098-05: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-12T14:36:30.111432-05:00'
contentSize: 3066
contentUrl:
- https://api.dandiarchive.org/api/assets/56905d84-f956-4e6a-b84b-768cb0d38971/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/c37/6ec/c376ec4a-d22b-4824-9730-32cfa97c1a17
dateModified: '2023-12-13T16:11:12.837008-05:00'
digest:
dandi:dandi-etag: d3a118f76bbfb91f4fd34df346a53241-1
dandi:sha2-256: bb9f58c033835dd08b2d76c0bcc076881d2bcf5a8a6cd91e9214389c4dd20496
encodingFormat: application/octet-stream
id: dandiasset:56905d84-f956-4e6a-b84b-768cb0d38971
identifier: 56905d84-f956-4e6a-b84b-768cb0d38971
path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwihcpl.bval
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:12.462064-05:00'
id: urn:uuid:32df547d-8667-4e53-91f5-55f15226709b
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:12.462064-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:12.836973-05:00'
id: urn:uuid:d043365f-1dad-448d-bc29-ccb61201555a
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:12.836973-05: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-12T14:35:57.293736-05:00'
contentSize: 7518
contentUrl:
- https://api.dandiarchive.org/api/assets/d6495202-c51d-44b6-97c2-6a59bca69dcf/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/88e/fc5/88efc5f2-30e0-47fd-858f-950fe219c4bb
dateModified: '2023-12-13T16:11:13.639998-05:00'
digest:
dandi:dandi-etag: 851ad355152709dc587467ca8ad6bff9-1
dandi:sha2-256: 4e3ba0f30070d36ae777e6dd0f26e7bc890b02e688b94d65452a20f5301d9a8b
encodingFormat: application/octet-stream
id: dandiasset:d6495202-c51d-44b6-97c2-6a59bca69dcf
identifier: d6495202-c51d-44b6-97c2-6a59bca69dcf
path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwihcpl.bvec
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:13.355799-05:00'
id: urn:uuid:656c27f9-aefc-4c80-8986-fa30dcab1915
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:13.355799-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:13.639964-05:00'
id: urn:uuid:1ddb228e-ff42-414b-a705-5e44fde01bdc
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:13.639964-05: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-11T16:34:19.368082-05:00'
contentSize: 767951200
contentUrl:
- https://api.dandiarchive.org/api/assets/ca204cb2-354f-4fad-882e-864a1335a569/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/5c7/a58/5c7a58fa-3358-4aed-82bf-98739039eb4d
dateModified: '2023-12-13T16:10:09.743013-05:00'
digest:
dandi:dandi-etag: ae1500b91126b66cea8762798388efdd-12
dandi:sha2-256: e6c0e4e7209187fec187963b9ae13f2ba636920a84ebd0187c53911e5a449d8a
encodingFormat: application/octet-stream
id: dandiasset:ca204cb2-354f-4fad-882e-864a1335a569
identifier: ca204cb2-354f-4fad-882e-864a1335a569
path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwi-prephcpl.nii
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:10:07.583450-05:00'
id: urn:uuid:c2ceffd3-f054-43cc-b5b2-2af46ec7f9af
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:10:07.583450-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:10:09.742978-05:00'
id: urn:uuid:0c914750-de75-4e04-b769-c00feb028fcf
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:10:09.742978-05: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-11T14:32:24.091995-05:00'
contentSize: 4423
contentUrl:
- https://api.dandiarchive.org/api/assets/596dfe24-31a4-4f53-97c2-2dc1931a7d2a/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/ccb/530/ccb5308e-219e-48f9-8a1f-32f0e872110c
dateModified: '2023-12-13T16:11:17.293802-05:00'
digest:
dandi:dandi-etag: 51bb313f2aaa0ffb2a64fd8f5196bcc8-1
dandi:sha2-256: c4e03869046f40864132201f9d7f75653a6094bfed9474909c2731a86e7f9885
encodingFormat: application/gzip
id: dandiasset:596dfe24-31a4-4f53-97c2-2dc1931a7d2a
identifier: 596dfe24-31a4-4f53-97c2-2dc1931a7d2a
path: derivatives/DWIprep_V.1.0/sub-256/sub-256_inject.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:16.881758-05:00'
id: urn:uuid:7926219e-82fd-45fa-b8a6-bb43e7fede57
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:16.881758-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:17.293744-05:00'
id: urn:uuid:3e971ae8-238d-4c3f-810f-b123006c3ac3
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:17.293744-05: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-11T16:52:53.587865-05:00'
contentSize: 364
contentUrl:
- https://api.dandiarchive.org/api/assets/2e97021b-f0df-49d7-b67a-f3a523d15e29/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/079/c5c/079c5c17-ba3a-40d1-a696-e77ee8c7f211
dateModified: '2023-12-13T16:11:18.892957-05:00'
digest:
dandi:dandi-etag: 2f1a253fad778ba36614f66eb803ca59-1
dandi:sha2-256: ccb9b2fa4b7c3a926613aca5346231be47b81d74523760af41e50b2ed95cf0d5
encodingFormat: application/json
id: dandiasset:2e97021b-f0df-49d7-b67a-f3a523d15e29
identifier: 2e97021b-f0df-49d7-b67a-f3a523d15e29
path: participants.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:18.601088-05:00'
id: urn:uuid:c630be7c-179b-475b-9728-0f85f6f79f16
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:18.601088-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:18.892921-05:00'
id: urn:uuid:5f35aa8f-c859-4efc-af94-b43bdb3cd754
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:18.892921-05: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-11T16:53:50.618081-05:00'
contentSize: 51
contentUrl:
- https://api.dandiarchive.org/api/assets/aa0435fe-d2b9-45f3-80ce-f1280f795cc5/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/d1b/b00/d1bb0004-c6fa-4217-81cc-d1ee5eabb499
dateModified: '2023-12-13T16:11:20.508973-05:00'
digest:
dandi:dandi-etag: 2bf090ae07510b3ef74c30f422922ada-1
dandi:sha2-256: dff48ec340e8fc5556fedca5df17da8141c21f7448db9250d9e0883195536f02
encodingFormat: text/tab-separated-values
id: dandiasset:aa0435fe-d2b9-45f3-80ce-f1280f795cc5
identifier: aa0435fe-d2b9-45f3-80ce-f1280f795cc5
path: participants.tsv
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:20.145617-05:00'
id: urn:uuid:9f442484-7119-4d60-935a-6c99332d44a7
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:20.145617-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:20.508936-05:00'
id: urn:uuid:122e075c-4bb5-478d-b152-a52d7e444fe5
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:20.508936-05: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-12T14:33:15.852450-05:00'
contentSize: 8671
contentUrl:
- https://api.dandiarchive.org/api/assets/e3d2b57a-565e-4810-bd86-6fe9e0ac2198/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/498/e9d/498e9d96-be84-47f6-a096-fc6bf408a55c
dateModified: '2023-12-13T16:11:22.063434-05:00'
digest:
dandi:dandi-etag: a4617cde4478641106312fd514c29fc6-1
dandi:sha2-256: 45fb7cffac16be1d848208b77f9235ba01edab2ced39afc30e76cd1499606b33
encodingFormat: application/octet-stream
id: dandiasset:e3d2b57a-565e-4810-bd86-6fe9e0ac2198
identifier: e3d2b57a-565e-4810-bd86-6fe9e0ac2198
path: sub-243/dwi/sub-243_dwi.bval
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: '243'
schemaKey: Participant
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:21.696455-05:00'
id: urn:uuid:cef9d80e-7737-4330-8e47-b700fbbdfcb0
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:21.696455-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:22.063396-05:00'
id: urn:uuid:09ce8862-0bed-47f3-84de-1a75ee4c0ce4
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:22.063396-05: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-12T14:32:07.529001-05:00'
contentSize: 20736
contentUrl:
- https://api.dandiarchive.org/api/assets/2d568e02-6c93-42c9-be8c-f31e96fdf2a5/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/6e1/be6/6e1be631-b53f-4e93-8a28-0f0555f033bd
dateModified: '2023-12-13T16:11:23.596103-05:00'
digest:
dandi:dandi-etag: bb587652877458545f178e48722a90d9-1
dandi:sha2-256: 975da857e8abc660d9a34813906c62ca117c7b9b4634dd80e2d530e23a0fabce
encodingFormat: application/octet-stream
id: dandiasset:2d568e02-6c93-42c9-be8c-f31e96fdf2a5
identifier: 2d568e02-6c93-42c9-be8c-f31e96fdf2a5
path: sub-243/dwi/sub-243_dwi.bvec
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: '243'
schemaKey: Participant
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:23.245269-05:00'
id: urn:uuid:de66cc78-f022-4c89-bd02-af883e77e760
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:23.245269-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:23.596064-05:00'
id: urn:uuid:402acbb3-d1b0-4bf6-adf4-78a8e9869091
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:23.596064-05: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-11T16:21:35.585803-05:00'
contentSize: 2026
contentUrl:
- https://api.dandiarchive.org/api/assets/d453f083-c24f-4f4e-876c-8d4a9ab1a0e8/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/357/ebb/357ebb03-c51d-4d9f-aeea-c3bd8838589a
dateModified: '2023-12-13T16:11:25.026816-05:00'
digest:
dandi:dandi-etag: 275b57279a747b503d520d3eaf3a0bc2-1
dandi:sha2-256: 6d34f6993889ff563501ae6fbb3506eb4ecb822ec51b445d43a5533610be999d
encodingFormat: application/json
id: dandiasset:d453f083-c24f-4f4e-876c-8d4a9ab1a0e8
identifier: d453f083-c24f-4f4e-876c-8d4a9ab1a0e8
path: sub-243/dwi/sub-243_dwi.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: '243'
schemaKey: Participant
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:24.742412-05:00'
id: urn:uuid:7bf83dbf-ef51-4d1d-a42d-6d551e6fcf19
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:24.742412-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:25.026783-05:00'
id: urn:uuid:1f6a7dec-fcb5-4b41-b743-ddf1d11f4fe0
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:25.026783-05: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-11T14:39:33.129297-05:00'
contentSize: 167096143
contentUrl:
- https://api.dandiarchive.org/api/assets/5c4c5cf8-5cf3-41dc-9b6f-94cb417aaf47/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/86f/58e/86f58eed-8cd9-43f2-887e-1bd97da6449f
dateModified: '2023-12-13T16:11:17.575603-05:00'
digest:
dandi:dandi-etag: 422aac4e50a7431fdfdc065feb907704-3
dandi:sha2-256: 4a7722d47594cdb1da91d009cd133944885d2e4b0b6b2ceea599b56f18d57e2d
encodingFormat: application/gzip
id: dandiasset:5c4c5cf8-5cf3-41dc-9b6f-94cb417aaf47
identifier: 5c4c5cf8-5cf3-41dc-9b6f-94cb417aaf47
path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwihcpl.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:14.297776-05:00'
id: urn:uuid:d55bb25b-1f7e-4ebd-9397-3c046b08a67f
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:14.297776-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:17.575569-05:00'
id: urn:uuid:3344c9de-8de3-4214-8d1e-2b24c9b71831
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:17.575569-05: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-12T14:32:46.640831-05:00'
contentSize: 8672
contentUrl:
- https://api.dandiarchive.org/api/assets/e3ca9c32-47c6-4e90-98c2-ee2d3db8ddc9/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/767/af5/767af566-7bfc-4184-a996-02287c40ef3d
dateModified: '2023-12-13T16:12:20.369137-05:00'
digest:
dandi:dandi-etag: 9d572ea71dbf3774bcb3c1b73653dfa5-1
dandi:sha2-256: 5698368c0e6f412130bc5bdd75993ebc0f9577685e6db26a3f02fbf9f7803b6f
encodingFormat: application/octet-stream
id: dandiasset:e3ca9c32-47c6-4e90-98c2-ee2d3db8ddc9
identifier: e3ca9c32-47c6-4e90-98c2-ee2d3db8ddc9
path: sub-256/dwi/sub-256_dwi.bval
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: '256'
schemaKey: Participant
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:12:20.099719-05:00'
id: urn:uuid:a2c81fec-58eb-4448-8db8-fcd31abf06c1
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:12:20.099719-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:12:20.369104-05:00'
id: urn:uuid:bfc24842-38be-48b4-b00e-baaf20b38aed
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:12:20.369104-05: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-12T14:32:34.440572-05:00'
contentSize: 20817
contentUrl:
- https://api.dandiarchive.org/api/assets/7b6d2f21-68a8-462e-aca3-ca668092838a/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/a8c/2f7/a8c2f741-1338-4152-a0e3-ecc2c3457b01
dateModified: '2023-12-13T16:12:21.168596-05:00'
digest:
dandi:dandi-etag: a2f7984cfcbbc811f9c29d6fc37d6818-1
dandi:sha2-256: 3ca0330a66d041ed02dee0cffabef9fc7d508f46bd2c0af9ee7f2df834d5fb47
encodingFormat: application/octet-stream
id: dandiasset:7b6d2f21-68a8-462e-aca3-ca668092838a
identifier: 7b6d2f21-68a8-462e-aca3-ca668092838a
path: sub-256/dwi/sub-256_dwi.bvec
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: '256'
schemaKey: Participant
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:12:20.846042-05:00'
id: urn:uuid:a3036277-a28f-4726-9c5c-a8e2610fd3c8
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:12:20.846042-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:12:21.168564-05:00'
id: urn:uuid:3badf596-8ddd-4b3d-861b-b189448a7c7f
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:12:21.168564-05: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-11T16:21:52.924172-05:00'
contentSize: 2026
contentUrl:
- https://api.dandiarchive.org/api/assets/7eb1574a-a37a-4422-a777-155a3f4ad407/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/357/ebb/357ebb03-c51d-4d9f-aeea-c3bd8838589a
dateModified: '2023-12-13T16:12:22.792863-05:00'
digest:
dandi:dandi-etag: 275b57279a747b503d520d3eaf3a0bc2-1
dandi:sha2-256: 6d34f6993889ff563501ae6fbb3506eb4ecb822ec51b445d43a5533610be999d
encodingFormat: application/json
id: dandiasset:7eb1574a-a37a-4422-a777-155a3f4ad407
identifier: 7eb1574a-a37a-4422-a777-155a3f4ad407
path: sub-256/dwi/sub-256_dwi.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: '256'
schemaKey: Participant
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:12:22.534750-05:00'
id: urn:uuid:294b5abd-9db2-4048-9544-a924d57b7777
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:12:22.534750-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:12:22.792826-05:00'
id: urn:uuid:aec1dcfb-7671-456d-b0d0-8720592d9db2
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:12:22.792826-05: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-11T18:35:36-05:00'
contentSize: 238878159
contentUrl:
- https://api.dandiarchive.org/api/assets/26f087b2-f7da-4822-8de4-0ba789d18f04/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/5a0/b46/5a0b4663-eddb-47f4-8fc3-83025775796c
dateModified: '2023-12-13T16:11:30.113171-05:00'
digest:
dandi:dandi-etag: cd882ecdc7fb726b9cda5422d952c8dd-4
dandi:sha2-256: f28df32e174ccfe7894dc62d0ae979d95394df2dfb534d9e0067f5ec588fae08
encodingFormat: application/gzip
id: dandiasset:26f087b2-f7da-4822-8de4-0ba789d18f04
identifier: 26f087b2-f7da-4822-8de4-0ba789d18f04
path: sub-243/dwi/sub-243_dwi.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: '243'
schemaKey: Participant
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:26.421363-05:00'
id: urn:uuid:29900ce8-6298-4472-88cf-ff29c2b35c0d
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:26.421363-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:30.113138-05:00'
id: urn:uuid:117e204e-9c4b-48a5-af33-a38e1a673e28
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:30.113138-05: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-13T12:20:23.531940-05:00'
contentSize: 509961490
contentUrl:
- https://api.dandiarchive.org/api/assets/cd770d16-a2e6-409c-9e9a-235a1cdba544/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/206/592/20659205-19a7-4cdb-b02c-5f26744d4be0
dateModified: '2023-12-13T16:11:01.949939-05:00'
digest:
dandi:dandi-etag: 6c66449aada84a331c371401ca65ed02-8
dandi:sha2-256: 82398ac6b522bfbddd2d70c33ddf6448b2db88f9bf23fa15d080f3ba872fc15a
encodingFormat: application/gzip
id: dandiasset:cd770d16-a2e6-409c-9e9a-235a1cdba544
identifier: cd770d16-a2e6-409c-9e9a-235a1cdba544
path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwi-prephcpl.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:00.666217-05:00'
id: urn:uuid:76c44f33-2980-4b46-827c-862f46d4fafa
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:00.666217-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:11:01.949903-05:00'
id: urn:uuid:9ac704c8-297c-40ad-9991-6080c2e41037
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:11:01.949903-05: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-11T14:49:14-05:00'
contentSize: 2126315872
contentUrl:
- https://api.dandiarchive.org/api/assets/6d508452-b26f-4c25-9236-25449b410860/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/39c/cf7/39ccf77b-e848-45bd-b7dc-e1fea43bc043
dateModified: '2023-12-13T16:10:33.515084-05:00'
digest:
dandi:dandi-etag: f90f8603d46eaca5db1d5e3278a6302f-32
dandi:sha2-256: b9d4134d6bd86aa44d591ceeec715d47d2c2afe5d6576f4dcc5eeca3eadcb5a2
encodingFormat: application/octet-stream
id: dandiasset:6d508452-b26f-4c25-9236-25449b410860
identifier: 6d508452-b26f-4c25-9236-25449b410860
path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwi-prep.nii
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:10:04.293036-05:00'
id: urn:uuid:76674ab2-cb03-41c7-94a9-17c66e509dae
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:10:04.293036-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:10:33.515050-05:00'
id: urn:uuid:b783db22-7997-4221-80a1-4b0f121d3654
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:10:33.515050-05: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-13T12:18:17.893273-05:00'
contentSize: 1529476491
contentUrl:
- https://api.dandiarchive.org/api/assets/3341e0a6-bb18-4aaf-9f75-1caaa4b26ef4/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/a36/736/a3673687-e771-42a9-82da-c19933a7bd7f
dateModified: '2023-12-13T16:09:53.636060-05:00'
digest:
dandi:dandi-etag: 50a73d72112614f5e8b6fa31eb0ae16a-23
encodingFormat: application/gzip
id: dandiasset:3341e0a6-bb18-4aaf-9f75-1caaa4b26ef4
identifier: 3341e0a6-bb18-4aaf-9f75-1caaa4b26ef4
path: derivatives/DWIprep_V.1.0/sub-243/sub-243_dwi-prep.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:48.666248-05:00'
id: urn:uuid:df294873-be38-4252-a0e8-ae56e716bed3
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:48.666248-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:09:53.636028-05:00'
id: urn:uuid:c6ba17c7-82d6-4cf5-82e6-d4f1ccf63c6b
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:09:53.636028-05: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-11T14:34:27.135623-05:00'
contentSize: 465154660
contentUrl:
- https://api.dandiarchive.org/api/assets/4aab0fb0-5207-4a4e-bd59-5dbd519ae656/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/5d4/35e/5d435eaa-10f4-49fa-803b-1b1397b023d3
dateModified: '2023-12-13T16:12:29.705052-05:00'
digest:
dandi:dandi-etag: 99cea2b0e92f8feee4b6ff0422f9b851-7
encodingFormat: application/gzip
id: dandiasset:4aab0fb0-5207-4a4e-bd59-5dbd519ae656
identifier: 4aab0fb0-5207-4a4e-bd59-5dbd519ae656
path: sub-256/dwi/sub-256_dwi.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: '256'
schemaKey: Participant
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:12:23.276825-05:00'
id: urn:uuid:3ae06b24-8fd2-4b31-84a7-6898647a5af2
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:12:23.276825-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.1
- description: Metadata generated by DANDI cli
endDate: '2023-12-13T16:12:29.705018-05:00'
id: urn:uuid:4cecc9b9-d863-4803-999e-4833c97ad963
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-13T16:12:29.705018-05: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