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
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T16:59:31.673662-05:00'
contentSize: 360
contentUrl:
- https://api.dandiarchive.org/api/assets/d817fec0-cf29-4e80-bbc8-bf091661fc23/download/
- https://dandiarchive.s3.amazonaws.com/blobs/076/d9c/076d9c91-9e14-451c-bad2-e5f8f5a65a1e
dateModified: '2024-01-29T17:10:25.973205-05:00'
digest:
dandi:dandi-etag: d259510fd6c3b27b232e0b94ea48ac8f-1
dandi:sha2-256: 6da2c35a9b142bfc56585c27ecf15e2d52e546495d152158c3cfa1d093aaeb67
encodingFormat: application/json
id: dandiasset:d817fec0-cf29-4e80-bbc8-bf091661fc23
identifier: d817fec0-cf29-4e80-bbc8-bf091661fc23
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-1_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:25.112007-05:00'
id: urn:uuid:ed1cfdcb-f23e-4bdb-8c42-553bd3ef9115
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:25.112007-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:25.973155-05:00'
id: urn:uuid:71832908-9933-453d-9b54-a3ebb4caf184
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:25.973155-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:01:58.309034-05:00'
contentSize: 360
contentUrl:
- https://api.dandiarchive.org/api/assets/96e2a754-1c00-4753-8a27-a0af8c19fe01/download/
- https://dandiarchive.s3.amazonaws.com/blobs/4db/e1c/4dbe1c86-abbc-4fca-abf7-b5888977eb69
dateModified: '2024-01-29T17:10:26.933159-05:00'
digest:
dandi:dandi-etag: f66c1bcecec355a1f05a4db175a272b2-1
dandi:sha2-256: 210d7063afb142f8c753c2e0cfa3b7038eccbafc82cbbdb1de342e5b4b91f54d
encodingFormat: application/json
id: dandiasset:96e2a754-1c00-4753-8a27-a0af8c19fe01
identifier: 96e2a754-1c00-4753-8a27-a0af8c19fe01
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-2_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:26.537252-05:00'
id: urn:uuid:57158027-f96a-4478-b31b-f2134fd4d6b8
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:26.537252-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:26.933123-05:00'
id: urn:uuid:407215cc-2bb1-4bf6-a7ce-f495e9f1e74a
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:26.933123-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:02:07.884124-05:00'
contentSize: 361
contentUrl:
- https://api.dandiarchive.org/api/assets/188e1f2e-10d9-4940-84b1-fbcf0255c9a1/download/
- https://dandiarchive.s3.amazonaws.com/blobs/700/3f9/7003f9f6-5d30-452a-ae0a-ef11798dbbf2
dateModified: '2024-01-29T17:10:29.723720-05:00'
digest:
dandi:dandi-etag: e42772ea0b1c08077e46796522bc4963-1
dandi:sha2-256: 011d89350c55a878628ea6266a874f5d093c86bbc0498432e2185f837be56338
encodingFormat: application/json
id: dandiasset:188e1f2e-10d9-4940-84b1-fbcf0255c9a1
identifier: 188e1f2e-10d9-4940-84b1-fbcf0255c9a1
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-3_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:28.608764-05:00'
id: urn:uuid:cbd01c9f-a72f-48b9-9c72-14aee23fd774
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:28.608764-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:29.723679-05:00'
id: urn:uuid:c095220f-cef9-4272-a193-856e43c99b76
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:29.723679-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:02:14.781188-05:00'
contentSize: 361
contentUrl:
- https://api.dandiarchive.org/api/assets/51de1ba8-5c5a-4b54-8562-07a0a6172e8a/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c57/c76/c57c7640-62d1-4a05-a764-6629c01ebb7b
dateModified: '2024-01-29T17:10:29.779645-05:00'
digest:
dandi:dandi-etag: 8c83f48c6900365a88915b8a764ed660-1
dandi:sha2-256: 1791e3858fb29bc326695cee71ac24bafec65f528d8ecaf5c74bd508088388ea
encodingFormat: application/json
id: dandiasset:51de1ba8-5c5a-4b54-8562-07a0a6172e8a
identifier: 51de1ba8-5c5a-4b54-8562-07a0a6172e8a
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-4_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:29.210755-05:00'
id: urn:uuid:c3d98b3d-6baf-4f27-9f89-77a2454dbbba
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:29.210755-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:29.779607-05:00'
id: urn:uuid:133c3231-4467-43cc-82d4-4b6dc26db46c
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:29.779607-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:02:23.981274-05:00'
contentSize: 361
contentUrl:
- https://api.dandiarchive.org/api/assets/90cdeceb-b514-41a9-9370-7be194741118/download/
- https://dandiarchive.s3.amazonaws.com/blobs/f78/1dc/f781dc34-7c71-448c-9ac6-a89b997ca50d
dateModified: '2024-01-29T17:10:32.092568-05:00'
digest:
dandi:dandi-etag: 610c0c03cce55c16579c8666b34d20a2-1
dandi:sha2-256: 4aa0e316fe536d522545aa6ce2fb7c871591ca364e6880b00037b991d52883eb
encodingFormat: application/json
id: dandiasset:90cdeceb-b514-41a9-9370-7be194741118
identifier: 90cdeceb-b514-41a9-9370-7be194741118
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-5_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:31.816396-05:00'
id: urn:uuid:1ae781b7-9457-4146-b853-94323747f8c6
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:31.816396-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:32.092530-05:00'
id: urn:uuid:c8c35a90-1b75-4448-951f-091dfa97cfaa
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:32.092530-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2020-11-19T13:22:42.694881-05:00'
contentSize: 167011013
contentUrl:
- https://api.dandiarchive.org/api/assets/4cd89d4b-2008-486a-9b67-13c698573e0c/download/
- https://dandiarchive.s3.amazonaws.com/blobs/625/4ad/6254ad3a-7e90-47d3-9dc2-b6996d0724db
dateModified: '2024-01-29T17:10:28.045048-05:00'
digest:
dandi:dandi-etag: 8382951b97d2a0d702ba69e773ccd91f-3
dandi:sha2-256: aa9541378bc20e3e6bf7a437e51b6cf1f74e816ee94fb82d24629108d85280f8
encodingFormat: application/gzip
id: dandiasset:4cd89d4b-2008-486a-9b67-13c698573e0c
identifier: 4cd89d4b-2008-486a-9b67-13c698573e0c
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-1_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:25.378060-05:00'
id: urn:uuid:47383a00-a9e7-4697-8a7b-54ebdb4666e8
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:25.378060-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:28.044986-05:00'
id: urn:uuid:47d24786-7a5c-4d58-9570-719e4bb0a68c
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:28.044986-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:02:32.669356-05:00'
contentSize: 361
contentUrl:
- https://api.dandiarchive.org/api/assets/70f34371-fc0f-4f03-afcc-5204bc270492/download/
- https://dandiarchive.s3.amazonaws.com/blobs/f83/beb/f83beb28-5f10-45cd-a054-07636cf8e5d5
dateModified: '2024-01-29T17:10:49.027313-05:00'
digest:
dandi:dandi-etag: d239ba9426f6eb59190c9a5ac01d2aac-1
dandi:sha2-256: 503383a721e467ae9d9c35b4727789ae8f75eb1889740610feb7543ba92fa2bc
encodingFormat: application/json
id: dandiasset:70f34371-fc0f-4f03-afcc-5204bc270492
identifier: 70f34371-fc0f-4f03-afcc-5204bc270492
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-6_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:48.743420-05:00'
id: urn:uuid:ec67ac8c-f162-4d18-a3d7-84a10d8f167f
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:48.743420-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:49.027280-05:00'
id: urn:uuid:fb0201d8-5f35-481f-af8b-93d1c2d659af
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:49.027280-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2020-11-19T13:21:22.424641-05:00'
contentSize: 163607862
contentUrl:
- https://api.dandiarchive.org/api/assets/2faeb937-1acf-43b3-b862-56a92024a17a/download/
- https://dandiarchive.s3.amazonaws.com/blobs/166/ec8/166ec8cd-43dc-4657-be1b-55d252e23943
dateModified: '2024-01-29T17:10:35.680529-05:00'
digest:
dandi:dandi-etag: db37e7584a8920a2066209903ee3beb1-3
dandi:sha2-256: 446c04e2aebf9b0463fd628ff927caea1473f737be0da1d394a6b7e43e68c203
encodingFormat: application/gzip
id: dandiasset:2faeb937-1acf-43b3-b862-56a92024a17a
identifier: 2faeb937-1acf-43b3-b862-56a92024a17a
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-5_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:33.467015-05:00'
id: urn:uuid:2c7f43d8-9c15-4066-8a7e-df4abcf93084
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:33.467015-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:35.680494-05:00'
id: urn:uuid:99fe2464-6f22-480f-9e73-ace815a2390c
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:35.680494-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:02:40.302427-05:00'
contentSize: 361
contentUrl:
- https://api.dandiarchive.org/api/assets/1fe377d0-d8c5-4eec-b7f3-805bf11e2594/download/
- https://dandiarchive.s3.amazonaws.com/blobs/cdd/ec6/cddec603-79a9-4998-af75-1f63badc2eb2
dateModified: '2024-01-29T17:11:01.314941-05:00'
digest:
dandi:dandi-etag: 57b2af85282e4f8a63cd8eb6582e5e2c-1
dandi:sha2-256: 42d6c28da2c4a476924a3ff5c5ecf2727b0582963a836b57686bb13ae9923226
encodingFormat: application/json
id: dandiasset:1fe377d0-d8c5-4eec-b7f3-805bf11e2594
identifier: 1fe377d0-d8c5-4eec-b7f3-805bf11e2594
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-7_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:11:01.083943-05:00'
id: urn:uuid:78e05f04-2e74-4929-821d-cfa5be6ed73f
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:11:01.083943-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:11:01.314913-05:00'
id: urn:uuid:213b4313-65db-4361-9ca4-a9ecbd57e02f
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:11:01.314913-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2020-11-19T13:13:31.214226-05:00'
contentSize: 163430542
contentUrl:
- https://api.dandiarchive.org/api/assets/76538de7-b93d-4088-a769-8a3d7b932eb7/download/
- https://dandiarchive.s3.amazonaws.com/blobs/4ca/c97/4cac9770-fce4-4ad6-b86e-4c4985dc4df7
dateModified: '2024-01-29T17:10:32.284987-05:00'
digest:
dandi:dandi-etag: fba053e01a47a05c396742ff6e73b739-3
dandi:sha2-256: b8f62efdceb000fa2dc40e6611cf80935d8a6c51cbf742422b5e95e0847b9d74
encodingFormat: application/gzip
id: dandiasset:76538de7-b93d-4088-a769-8a3d7b932eb7
identifier: 76538de7-b93d-4088-a769-8a3d7b932eb7
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-2_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:28.514480-05:00'
id: urn:uuid:3836a136-14a6-40d9-9dcf-3d1d2d2084d5
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:28.514480-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:32.284946-05:00'
id: urn:uuid:2faf5615-28af-435a-865f-9757ebacd015
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:32.284946-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2020-11-19T13:15:22.687558-05:00'
contentSize: 161339186
contentUrl:
- https://api.dandiarchive.org/api/assets/ec5767e6-031b-4718-8835-af337b801291/download/
- https://dandiarchive.s3.amazonaws.com/blobs/eb0/e23/eb0e23b5-291a-43eb-87da-6c85cf523fab
dateModified: '2024-01-29T17:10:52.197641-05:00'
digest:
dandi:dandi-etag: 6e4fed97d0144a184631fd4c36409dd6-3
dandi:sha2-256: cf061611c1182725c760847f6ca1bcff213a37c983d610a3ad72e86ca21ac362
encodingFormat: application/gzip
id: dandiasset:ec5767e6-031b-4718-8835-af337b801291
identifier: ec5767e6-031b-4718-8835-af337b801291
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-6_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:50.115243-05:00'
id: urn:uuid:fd8a863e-9a2f-4ea7-8c66-9da3db3ae735
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:50.115243-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:52.197499-05:00'
id: urn:uuid:cdd86cbb-f931-4acb-8ea6-3a60a989c61e
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:52.197499-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2020-11-19T13:13:36.825243-05:00'
contentSize: 161806883
contentUrl:
- https://api.dandiarchive.org/api/assets/30cd76d7-d248-4585-81da-4863e828c768/download/
- https://dandiarchive.s3.amazonaws.com/blobs/b4b/d11/b4bd11f7-6e9d-4335-b230-a7d2c822ad35
dateModified: '2024-01-29T17:10:32.618778-05:00'
digest:
dandi:dandi-etag: 79c05ff82b433fe1a3e33e5150c3e490-3
dandi:sha2-256: 8735fecabf53094f67696add74bb70d55a372aecb26a87b2823651bd59697eec
encodingFormat: application/gzip
id: dandiasset:30cd76d7-d248-4585-81da-4863e828c768
identifier: 30cd76d7-d248-4585-81da-4863e828c768
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-3_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:29.096819-05:00'
id: urn:uuid:f6b29982-5075-4a3d-a061-03c17f16b769
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:29.096819-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:32.618734-05:00'
id: urn:uuid:ab2a431d-ff1b-4962-be2e-f2af53a2ba1d
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:32.618734-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:02:53.926555-05:00'
contentSize: 360
contentUrl:
- https://api.dandiarchive.org/api/assets/1f64999c-4aa3-4c8e-b51f-d62131d8c21f/download/
- https://dandiarchive.s3.amazonaws.com/blobs/5c1/962/5c196270-794a-4b87-8044-ed1b81355577
dateModified: '2024-01-29T17:11:54.012963-05:00'
digest:
dandi:dandi-etag: e2a847d82556a73c8a91741df5b365fa-1
dandi:sha2-256: 825b209f3a1be0a0ff5a924003fdb4a6dfa21e1e7b77ada093e1b77b40213857
encodingFormat: application/json
id: dandiasset:1f64999c-4aa3-4c8e-b51f-d62131d8c21f
identifier: 1f64999c-4aa3-4c8e-b51f-d62131d8c21f
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-2_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:11:53.742725-05:00'
id: urn:uuid:759a0253-934c-4576-a02f-c4aee851ca0d
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:11:53.742725-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:11:54.012937-05:00'
id: urn:uuid:f7fe2fb0-5ee3-488c-aa6a-895e2710d6c3
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:11:54.012937-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2020-11-19T13:19:14.852256-05:00'
contentSize: 157868954
contentUrl:
- https://api.dandiarchive.org/api/assets/747f07e6-4491-42fc-9313-876f908e82d4/download/
- https://dandiarchive.s3.amazonaws.com/blobs/f32/c81/f32c81af-2795-4a8e-8896-193df2d3fb71
dateModified: '2024-01-29T17:10:34.178979-05:00'
digest:
dandi:dandi-etag: 9b820349c1bfd26301d3ef184a33a29d-3
dandi:sha2-256: b8faa0a98fc75f875e2f2484e80cef312e4386ae40a5a45fb2eb86fbf271d6fb
encodingFormat: application/gzip
id: dandiasset:747f07e6-4491-42fc-9313-876f908e82d4
identifier: 747f07e6-4491-42fc-9313-876f908e82d4
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-4_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:31.213060-05:00'
id: urn:uuid:9a6dcbd0-b479-474f-be36-ebb4e7f96991
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:31.213060-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:10:34.178936-05:00'
id: urn:uuid:49fa143e-63c3-4ee5-955a-642aab42e1a7
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:10:34.178936-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:03:21.647814-05:00'
contentSize: 361
contentUrl:
- https://api.dandiarchive.org/api/assets/ad835e9d-a71b-4437-a79c-6bb869ad5b7c/download/
- https://dandiarchive.s3.amazonaws.com/blobs/fbd/784/fbd78498-5a00-4783-9265-38b3b6f1bd94
dateModified: '2024-01-29T17:11:56.016300-05:00'
digest:
dandi:dandi-etag: 31e514cb112b7a6b86b69595091148c1-1
dandi:sha2-256: deaa3f587f63d0a882330c61a12b77e1a411d9745989f26e85d51337a9211639
encodingFormat: application/json
id: dandiasset:ad835e9d-a71b-4437-a79c-6bb869ad5b7c
identifier: ad835e9d-a71b-4437-a79c-6bb869ad5b7c
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-3_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:11:55.766139-05:00'
id: urn:uuid:f4b46030-f925-4b04-a73b-03a14f8119fe
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:11:55.766139-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:11:56.016267-05:00'
id: urn:uuid:7468bfbb-0c26-459f-bbd8-2e32235ef773
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:11:56.016267-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:02:46.918489-05:00'
contentSize: 360
contentUrl:
- https://api.dandiarchive.org/api/assets/1adf0f54-f7ac-4cc4-ad62-c166eb6098bf/download/
- https://dandiarchive.s3.amazonaws.com/blobs/78b/fa5/78bfa5d1-0120-4638-935c-00a2bdba8c80
dateModified: '2024-01-29T17:11:39.473087-05:00'
digest:
dandi:dandi-etag: d9a8086edcb72ff089a4ba317d174315-1
dandi:sha2-256: 84a5c02342276b81fc7a76e40c5373dc4020935f13d3cd4c68fec1987e8d15a0
encodingFormat: application/json
id: dandiasset:1adf0f54-f7ac-4cc4-ad62-c166eb6098bf
identifier: 1adf0f54-f7ac-4cc4-ad62-c166eb6098bf
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-1_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:11:39.272659-05:00'
id: urn:uuid:aa4f8c83-2712-45d4-9a84-a05eff5f0d32
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:11:39.272659-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:11:39.473052-05:00'
id: urn:uuid:52efb6a6-2a9f-4a31-b7ca-0bd7a177d0c4
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:11:39.473052-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:03:29.191885-05:00'
contentSize: 361
contentUrl:
- https://api.dandiarchive.org/api/assets/c017161c-c194-4ef8-8891-816f54ade174/download/
- https://dandiarchive.s3.amazonaws.com/blobs/ff1/ca3/ff1ca3ca-cde8-432b-9429-1c36c5a5f8b9
dateModified: '2024-01-29T17:12:15.517675-05:00'
digest:
dandi:dandi-etag: 7eb7cd9a990db58e2043c17be9500e7d-1
dandi:sha2-256: 6e038d35113f7f9840e4c8958b2904f4e0c704e76387b14d5c0b3cea3cfe555c
encodingFormat: application/json
id: dandiasset:c017161c-c194-4ef8-8891-816f54ade174
identifier: c017161c-c194-4ef8-8891-816f54ade174
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-4_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:12:15.281469-05:00'
id: urn:uuid:36349e62-b612-4a2f-9e01-230e6f7c7d7d
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:12:15.281469-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:12:15.517620-05:00'
id: urn:uuid:4f931e5f-4a81-42c9-9777-64f889a4297e
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:12:15.517620-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2020-11-19T13:21:14.248617-05:00'
contentSize: 177024478
contentUrl:
- https://api.dandiarchive.org/api/assets/ca3017bd-d8d1-41f7-a2ca-ba1a007bdd62/download/
- https://dandiarchive.s3.amazonaws.com/blobs/692/f1b/692f1bff-78cb-4e5a-8abf-0fc0aa6e0174
dateModified: '2024-01-29T17:11:59.497074-05:00'
digest:
dandi:dandi-etag: 8dea2d2bc1da3b9c70c597dbb1ef736a-3
dandi:sha2-256: 24937830d687da7f603ebd364377d43505c564a93a7da118edca422ea83455fa
encodingFormat: application/gzip
id: dandiasset:ca3017bd-d8d1-41f7-a2ca-ba1a007bdd62
identifier: ca3017bd-d8d1-41f7-a2ca-ba1a007bdd62
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-3_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:11:57.250440-05:00'
id: urn:uuid:f9ea9a51-01ed-43d1-ade7-658ad303f192
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:11:57.250440-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:11:59.496964-05:00'
id: urn:uuid:1ea13c9b-7c32-4151-a858-ec3d7a72031b
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:11:59.496964-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:03:39.111977-05:00'
contentSize: 361
contentUrl:
- https://api.dandiarchive.org/api/assets/39b0d0dc-bbe4-4a26-b2bb-f1df22a3054c/download/
- https://dandiarchive.s3.amazonaws.com/blobs/188/bfd/188bfd6b-9d39-4902-9045-d6e28ea2eeda
dateModified: '2024-01-29T17:12:18.794009-05:00'
digest:
dandi:dandi-etag: 2ee5c20cd0e7f67d2b107bfa7975ba4f-1
dandi:sha2-256: c89c578c39ab1609e33dfe1cc4678e6073f2257ed9d26538ef3860779b99454a
encodingFormat: application/json
id: dandiasset:39b0d0dc-bbe4-4a26-b2bb-f1df22a3054c
identifier: 39b0d0dc-bbe4-4a26-b2bb-f1df22a3054c
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-5_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:12:18.517311-05:00'
id: urn:uuid:d3107a92-9e4e-4731-a615-50687bb3f39c
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:12:18.517311-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:12:18.793971-05:00'
id: urn:uuid:53f0e0c4-e84e-4969-80f4-c6fd1c733241
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:12:18.793971-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2020-11-19T13:21:18.493630-05:00'
contentSize: 165966348
contentUrl:
- https://api.dandiarchive.org/api/assets/3cc4086a-8f0b-4de8-823f-f0e8e6688c17/download/
- https://dandiarchive.s3.amazonaws.com/blobs/ad7/04f/ad704f5e-ebd1-4048-a187-b11985f53d04
dateModified: '2024-01-29T17:11:04.321353-05:00'
digest:
dandi:dandi-etag: 74a13b06e18d0444f59c5f6b03536e42-3
dandi:sha2-256: 8d0bbe21fe9482ee84d643f9cc394c594adbea7fd512a56ce550744bd125abe9
encodingFormat: application/gzip
id: dandiasset:3cc4086a-8f0b-4de8-823f-f0e8e6688c17
identifier: 3cc4086a-8f0b-4de8-823f-f0e8e6688c17
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-7_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:11:02.339588-05:00'
id: urn:uuid:5fc49eb3-0cc6-403d-94f2-5ca6537a3a23
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:11:02.339588-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:11:04.321228-05:00'
id: urn:uuid:030df7eb-85fb-4c5d-b8cb-c634a1ab7502
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:11:04.321228-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:03:49.568075-05:00'
contentSize: 361
contentUrl:
- https://api.dandiarchive.org/api/assets/52ce18bf-bfe8-42de-a76d-f0151670a3b8/download/
- https://dandiarchive.s3.amazonaws.com/blobs/746/454/746454c8-1f59-4baa-a99e-cd07fa32f49b
dateModified: '2024-01-29T17:12:24.794500-05:00'
digest:
dandi:dandi-etag: a83ce528209735cd7f33b7c7ec7927d6-1
dandi:sha2-256: 62ebe955fbf0eb1042a60b888761e35020cbaf52943c5619716a96796b676953
encodingFormat: application/json
id: dandiasset:52ce18bf-bfe8-42de-a76d-f0151670a3b8
identifier: 52ce18bf-bfe8-42de-a76d-f0151670a3b8
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-6_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:12:24.360062-05:00'
id: urn:uuid:1dbc4a68-3a56-4550-bb6b-2f5277d0502b
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:12:24.360062-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:12:24.794465-05:00'
id: urn:uuid:793f75e9-7ca5-4f18-bd61-81e9214b4b78
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:12:24.794465-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2020-11-19T13:21:06.062593-05:00'
contentSize: 169780510
contentUrl:
- https://api.dandiarchive.org/api/assets/ce5d418c-70eb-4ca6-91eb-5c774562abb2/download/
- https://dandiarchive.s3.amazonaws.com/blobs/317/a41/317a411d-5918-4c5a-92ef-6caf97e114a5
dateModified: '2024-01-29T17:11:42.774231-05:00'
digest:
dandi:dandi-etag: fb2f870d041c7ebc2c36d449c86a222c-3
dandi:sha2-256: ef1ff73d4d4748b65db1f51b41ba41ffac06de069009a49e32aa12c6e4942e10
encodingFormat: application/gzip
id: dandiasset:ce5d418c-70eb-4ca6-91eb-5c774562abb2
identifier: ce5d418c-70eb-4ca6-91eb-5c774562abb2
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-1_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:11:40.531385-05:00'
id: urn:uuid:70a5ce5d-fb64-4c3c-825a-e3777ebdbd92
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:11:40.531385-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:11:42.773937-05:00'
id: urn:uuid:a068a9ac-9d5f-42e3-ba94-c09e1740d6ef
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:11:42.773937-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:03:56.960145-05:00'
contentSize: 361
contentUrl:
- https://api.dandiarchive.org/api/assets/9db85c4b-fbc2-453f-bbd7-7b023d06f7c8/download/
- https://dandiarchive.s3.amazonaws.com/blobs/a96/54f/a9654fe0-4bf9-4778-a06f-d9a131f7298d
dateModified: '2024-01-29T17:12:51.787271-05:00'
digest:
dandi:dandi-etag: 0cb6dadeba22cec2c447b1bb71917933-1
dandi:sha2-256: 1e739f07e642d8106f15728542d795f81529319f37bc6f408ea4e940a1b440ba
encodingFormat: application/json
id: dandiasset:9db85c4b-fbc2-453f-bbd7-7b023d06f7c8
identifier: 9db85c4b-fbc2-453f-bbd7-7b023d06f7c8
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-7_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:12:51.555459-05:00'
id: urn:uuid:4497752f-1e52-40ad-bf99-b01fcb44f1ed
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:12:51.555459-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:12:51.787249-05:00'
id: urn:uuid:44596da0-1796-4a14-a394-81f82c2f71fd
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:12:51.787249-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2020-11-19T13:23:54.268095-05:00'
contentSize: 166497450
contentUrl:
- https://api.dandiarchive.org/api/assets/b09e876e-0409-457c-a507-cbe5dbf36d94/download/
- https://dandiarchive.s3.amazonaws.com/blobs/a54/bc9/a54bc9ee-6da4-4c8b-9f44-a3b7a64ed87b
dateModified: '2024-01-29T17:12:22.005607-05:00'
digest:
dandi:dandi-etag: 1dd52fb072471bd20d6e8b4996906acb-3
dandi:sha2-256: b6a3d3c5a0f7027fad79d34f58041f4393c9c96f2c74aedea0508c87cf0604c7
encodingFormat: application/gzip
id: dandiasset:b09e876e-0409-457c-a507-cbe5dbf36d94
identifier: b09e876e-0409-457c-a507-cbe5dbf36d94
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-5_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:12:20.017765-05:00'
id: urn:uuid:0f67aa0f-1faa-43dc-9428-4cc923792241
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:12:20.017765-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:12:22.005572-05:00'
id: urn:uuid:c1be5dbb-1369-4ada-9f11-265cb25a9da8
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:12:22.005572-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2020-11-19T13:21:07.548597-05:00'
contentSize: 166836335
contentUrl:
- https://api.dandiarchive.org/api/assets/b8479749-6597-481b-8061-2dae5ce11dbd/download/
- https://dandiarchive.s3.amazonaws.com/blobs/4fa/1c5/4fa1c587-b933-4762-b818-a6439fdc1a7e
dateModified: '2024-01-29T17:11:57.195374-05:00'
digest:
dandi:dandi-etag: 068a482cff6289358215d918fda4659e-3
dandi:sha2-256: 251226c365a98ff76834c1b334347d36a43187d5e418063c2d51f8a16e5242e6
encodingFormat: application/gzip
id: dandiasset:b8479749-6597-481b-8061-2dae5ce11dbd
identifier: b8479749-6597-481b-8061-2dae5ce11dbd
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-2_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:11:55.107261-05:00'
id: urn:uuid:9ee75dc3-2145-452c-8f64-c100c4972bb0
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:11:55.107261-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:11:57.195327-05:00'
id: urn:uuid:a781b7b9-f1ad-498d-8ae6-15e735d7cdb6
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:11:57.195327-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2020-11-19T13:24:44.693245-05:00'
contentSize: 159920442
contentUrl:
- https://api.dandiarchive.org/api/assets/9c202217-5e47-4e07-911f-bb5109f11eed/download/
- https://dandiarchive.s3.amazonaws.com/blobs/99d/7b5/99d7b5ab-0363-444f-8805-94ce4d7a5d46
dateModified: '2024-01-29T17:12:19.048638-05:00'
digest:
dandi:dandi-etag: 819ce2367a7938c46854f8ceeb1c6417-3
dandi:sha2-256: 11340c82f7ef7ace05678406d7fd011eb7cee0ffde967f1d6df8a8ab907c95f8
encodingFormat: application/gzip
id: dandiasset:9c202217-5e47-4e07-911f-bb5109f11eed
identifier: 9c202217-5e47-4e07-911f-bb5109f11eed
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-4_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:12:16.747972-05:00'
id: urn:uuid:3041c739-83c2-4506-a40f-44cfc909dd65
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:12:16.747972-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:12:19.048565-05:00'
id: urn:uuid:cf2b9f91-c3d9-49b8-9389-4ad0b39ae92c
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:12:19.048565-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2020-11-19T13:23:53.273092-05:00'
contentSize: 163359795
contentUrl:
- https://api.dandiarchive.org/api/assets/d7d07590-64ed-4e56-9031-e188bb2328b1/download/
- https://dandiarchive.s3.amazonaws.com/blobs/13e/6da/13e6da49-1e7a-497e-b717-488d2a911384
dateModified: '2024-01-29T17:12:28.126967-05:00'
digest:
dandi:dandi-etag: 1aec20c20e7afecfae3908a010801930-3
dandi:sha2-256: f22f7e4a890e596eaf08927490e20296c0e5f268ae411fb21a1d39c8f6ac399b
encodingFormat: application/gzip
id: dandiasset:d7d07590-64ed-4e56-9031-e188bb2328b1
identifier: d7d07590-64ed-4e56-9031-e188bb2328b1
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-6_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:12:25.939973-05:00'
id: urn:uuid:4972fb9a-b32a-455b-98b6-323e1c3afb62
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:12:25.939973-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:12:28.126933-05:00'
id: urn:uuid:6b35372b-8248-48dd-94ac-d7479519c6f5
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:12:28.126933-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2020-11-19T13:25:29.727379-05:00'
contentSize: 166470545
contentUrl:
- https://api.dandiarchive.org/api/assets/6f451196-aa03-4f9b-bba6-0855b43e0024/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c00/7ad/c007ad05-de2c-4ef5-8aee-cd25ef6c5b6e
dateModified: '2024-01-29T17:12:54.974079-05:00'
digest:
dandi:dandi-etag: eaade700ce0c218df0efc07ddc471969-3
dandi:sha2-256: 084dbd23b569359e1eb67d77030514257e658efb3dd18f5d983296c03051e059
encodingFormat: application/gzip
id: dandiasset:6f451196-aa03-4f9b-bba6-0855b43e0024
identifier: 6f451196-aa03-4f9b-bba6-0855b43e0024
path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-7_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: MRI
name: MRI
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:12:52.926974-05:00'
id: urn:uuid:bb71bd77-a693-4c77-aa46-405c3fa1c8f8
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:12:52.926974-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-29T17:12:54.973960-05:00'
id: urn:uuid:c60d0c0b-42ef-4e6e-87de-6b92a5116ea1
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-29T17:12:54.973960-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T15:46:46.189425-05:00'
contentSize: 364
contentUrl:
- https://api.dandiarchive.org/api/assets/ede3df18-3049-4e37-9df4-cb3b2b3fee96/download/
- https://dandiarchive.s3.amazonaws.com/blobs/7a6/9a0/7a69a066-3d5d-4cb1-b221-34a199ff1b06
dateModified: '2024-01-30T11:02:32.801934-05:00'
digest:
dandi:dandi-etag: ab54668b46b7fe3cbb6faebdecc4fdcf-1
dandi:sha2-256: a14d5d6705d6c1e85e9cc29f5b137155d864934bf5f7a116861204331452f47a
encodingFormat: application/json
id: dandiasset:ede3df18-3049-4e37-9df4-cb3b2b3fee96
identifier: ede3df18-3049-4e37-9df4-cb3b2b3fee96
path: dataset_description.json
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:02:32.801900-05:00'
id: urn:uuid:9cba4d00-64ca-4504-9d4e-46a0f26bbacc
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:02:32.801900-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T15:58:16.910600-05:00'
contentSize: 111
contentUrl:
- https://api.dandiarchive.org/api/assets/f4b836ec-3df9-414e-91ff-1b410f4898c7/download/
- https://dandiarchive.s3.amazonaws.com/blobs/3a5/1f5/3a51f5c3-48c6-4d3b-8ad7-a6aeed8aa025
dateModified: '2024-01-30T11:02:32.828505-05:00'
digest:
dandi:dandi-etag: 2340d14331e2bd19cd0230a9d161a3e3-1
dandi:sha2-256: 515764bf0c30d730581e580a9b398aeece6b1a8d1f0d1856053df862fbb34d58
encodingFormat: text/markdown
id: dandiasset:f4b836ec-3df9-414e-91ff-1b410f4898c7
identifier: f4b836ec-3df9-414e-91ff-1b410f4898c7
path: README.md
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:02:32.252970-05:00'
id: urn:uuid:7d6859f8-ce1d-43d3-b2eb-d50c29eac000
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:02:32.252970-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:02:32.828478-05:00'
id: urn:uuid:7cdd68cf-994d-45da-80ab-24537967e68d
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:02:32.828478-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:07:11.164963-05:00'
contentSize: 330
contentUrl:
- https://api.dandiarchive.org/api/assets/3e6f2d0f-d031-4d33-81c8-cc2e3c9ddb2c/download/
- https://dandiarchive.s3.amazonaws.com/blobs/449/aed/449aed3b-37ae-49b3-b29a-696592eda810
dateModified: '2024-01-30T11:02:33.831513-05:00'
digest:
dandi:dandi-etag: 7a159e700c8e99c628524587394568a0-1
dandi:sha2-256: 876247b26590f00f37a796ef9536fb6f676ec2f3bdb74971f66f926df0688f04
encodingFormat: application/json
id: dandiasset:3e6f2d0f-d031-4d33-81c8-cc2e3c9ddb2c
identifier: 3e6f2d0f-d031-4d33-81c8-cc2e3c9ddb2c
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-1_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:02:33.502843-05:00'
id: urn:uuid:e1510c0b-ef05-4e9f-a21f-c1fd57cd6d8b
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:02:33.502843-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:02:33.831470-05:00'
id: urn:uuid:ac948a40-6d07-44c3-9628-3b6b0e06da88
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:02:33.831470-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:07:18.742034-05:00'
contentSize: 330
contentUrl:
- https://api.dandiarchive.org/api/assets/163ce6e6-b4ae-40a3-bdf7-5f592b407efe/download/
- https://dandiarchive.s3.amazonaws.com/blobs/88b/b29/88bb291a-871b-411d-8279-0e0e81c2f88a
dateModified: '2024-01-30T11:02:37.734600-05:00'
digest:
dandi:dandi-etag: 92f099931ebf82a4b8163a829e58b3c6-1
dandi:sha2-256: 2d6bca43cc06bcba0a7aa48f54a82b20c3d58e67547fd0cc04d327515b792c8d
encodingFormat: application/json
id: dandiasset:163ce6e6-b4ae-40a3-bdf7-5f592b407efe
identifier: 163ce6e6-b4ae-40a3-bdf7-5f592b407efe
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-2_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:02:37.367761-05:00'
id: urn:uuid:15b15fae-a495-41ca-9ad8-6bbbf22a3a67
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:02:37.367761-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:02:37.734555-05:00'
id: urn:uuid:555e85f7-91b0-4f28-999c-a1234852fd40
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:02:37.734555-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:07:24.909092-05:00'
contentSize: 331
contentUrl:
- https://api.dandiarchive.org/api/assets/addc2269-75d0-47fb-8820-151892551845/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c91/570/c9157046-c0ee-4d02-b6df-9383c2c29e12
dateModified: '2024-01-30T11:03:34.198541-05:00'
digest:
dandi:dandi-etag: 3a3fa077be304cdd31da51253ec64993-1
dandi:sha2-256: 1bdee9e9af35e247b59e91ed2b35f212f134a6f2b748b6f2a022f02f57f44505
encodingFormat: application/json
id: dandiasset:addc2269-75d0-47fb-8820-151892551845
identifier: addc2269-75d0-47fb-8820-151892551845
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-3_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:34.024818-05:00'
id: urn:uuid:87b994f0-d275-4140-afa8-490f31394c8e
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:34.024818-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:34.198518-05:00'
id: urn:uuid:b1668da3-5681-4c5a-a8f7-22abd4b3bfb0
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:34.198518-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:07:31.045149-05:00'
contentSize: 331
contentUrl:
- https://api.dandiarchive.org/api/assets/c22c1d0a-ba4f-4665-aaff-ee294e927336/download/
- https://dandiarchive.s3.amazonaws.com/blobs/b9e/09c/b9e09c85-be0a-4828-8db5-2885ec055e8e
dateModified: '2024-01-30T11:03:35.487050-05:00'
digest:
dandi:dandi-etag: fb54a5a16a34c90f1002a7a6ddc7cf65-1
dandi:sha2-256: 048a388e3794e71fb695ab480dbd3eb6814fb550d8d0dae83d30af55d848874c
encodingFormat: application/json
id: dandiasset:c22c1d0a-ba4f-4665-aaff-ee294e927336
identifier: c22c1d0a-ba4f-4665-aaff-ee294e927336
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-4_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:35.268049-05:00'
id: urn:uuid:86fa7181-7260-47ad-b549-872dcd6aa19d
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:35.268049-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:35.487019-05:00'
id: urn:uuid:2e890b68-748f-4884-a42b-608c9082ec68
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:35.487019-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:07:36.925205-05:00'
contentSize: 331
contentUrl:
- https://api.dandiarchive.org/api/assets/219f9232-497a-4e6c-8995-76a7ce989474/download/
- https://dandiarchive.s3.amazonaws.com/blobs/f20/c00/f20c00ed-fe78-4735-90d8-9f4ba76703cf
dateModified: '2024-01-30T11:03:41.762269-05:00'
digest:
dandi:dandi-etag: 94c55fcecf2d58e5f791b08614f76776-1
dandi:sha2-256: d0caef172ab49d15cbadc04bd0264b6b953f57892722e81acfaa38656357fda0
encodingFormat: application/json
id: dandiasset:219f9232-497a-4e6c-8995-76a7ce989474
identifier: 219f9232-497a-4e6c-8995-76a7ce989474
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-5_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:41.570125-05:00'
id: urn:uuid:71fb7d7e-a1cf-4435-803b-c3ba568e0b79
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:41.570125-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:41.762242-05:00'
id: urn:uuid:090d724a-524b-45cb-b6dd-3c3dc68b251c
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:41.762242-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-23T16:03:29.764267-05:00'
contentSize: 317072415
contentUrl:
- https://api.dandiarchive.org/api/assets/0e0486a2-3ba1-40ab-a2f6-b3350f642dce/download/
- https://dandiarchive.s3.amazonaws.com/blobs/e61/8dc/e618dc67-f144-43da-bcdc-1bdc98aec8ef
dateModified: '2024-01-30T11:02:40.276370-05:00'
digest:
dandi:dandi-etag: 97ca508e66e5dd0cca86263f6dee532d-5
dandi:sha2-256: 87dc34171b00eecb17588cb55933f8a38a605487caa835acc144afcc3fca9183
encodingFormat: application/gzip
id: dandiasset:0e0486a2-3ba1-40ab-a2f6-b3350f642dce
identifier: 0e0486a2-3ba1-40ab-a2f6-b3350f642dce
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-1_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:02:35.513358-05:00'
id: urn:uuid:6ffa46fe-7cf7-4b71-a42a-de07dd79b969
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:02:35.513358-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:02:40.276313-05:00'
id: urn:uuid:c8952486-ae1a-49b7-91f4-553525e8ee57
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:02:40.276313-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:07:43.373265-05:00'
contentSize: 335
contentUrl:
- https://api.dandiarchive.org/api/assets/f87f1f79-3ce1-4cc2-a49d-ae866fabd90c/download/
- https://dandiarchive.s3.amazonaws.com/blobs/1ca/37a/1ca37a7c-c6b7-402f-9e88-33e0cb2d5f0d
dateModified: '2024-01-30T11:03:43.493345-05:00'
digest:
dandi:dandi-etag: 8727a267e4ab57fd843f415722ef8ed9-1
dandi:sha2-256: e22d1a58204afa7c60e129d5b891014f77d956107cb20589a2848a25e658d46a
encodingFormat: application/json
id: dandiasset:f87f1f79-3ce1-4cc2-a49d-ae866fabd90c
identifier: f87f1f79-3ce1-4cc2-a49d-ae866fabd90c
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-6_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:43.245602-05:00'
id: urn:uuid:45ae2d40-92f1-42ff-8b2c-5240b202b6e4
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:43.245602-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:43.493183-05:00'
id: urn:uuid:b51aff80-ebd5-486e-b164-a089f04b8d42
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:43.493183-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-23T16:04:31.015451-05:00'
contentSize: 314653951
contentUrl:
- https://api.dandiarchive.org/api/assets/1f10cb20-b38b-40e6-b353-fe5086835bcb/download/
- https://dandiarchive.s3.amazonaws.com/blobs/8d1/875/8d18757a-651e-4a6f-a585-317e35256ed4
dateModified: '2024-01-30T11:02:42.739271-05:00'
digest:
dandi:dandi-etag: 99a4a1e8cf0c388f3e5a2c0da7ff3bfe-5
dandi:sha2-256: f39bf233c26d0631704f127724be66afea24fbad2e4b148741a0ce673b7373fc
encodingFormat: application/gzip
id: dandiasset:1f10cb20-b38b-40e6-b353-fe5086835bcb
identifier: 1f10cb20-b38b-40e6-b353-fe5086835bcb
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-2_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:02:38.790787-05:00'
id: urn:uuid:ff9dff27-0909-472f-9abd-d870705df81d
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:02:38.790787-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:02:42.739088-05:00'
id: urn:uuid:a1fd797c-c4f1-47fa-ac1a-d45be32a5a56
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:02:42.739088-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T17:07:50.878335-05:00'
contentSize: 331
contentUrl:
- https://api.dandiarchive.org/api/assets/a6cb65a9-5703-42a1-b808-0429f5e639c1/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d0b/72a/d0b72a49-af3e-4cd8-83ad-29813bf2df01
dateModified: '2024-01-30T11:03:56.682643-05:00'
digest:
dandi:dandi-etag: 45795bbf243a8c6ec06bad7d57fe13d3-1
dandi:sha2-256: 880371c9ded05afbb4c9aca806645e2a012813b8e2125a2f177bbb8662585e21
encodingFormat: application/json
id: dandiasset:a6cb65a9-5703-42a1-b808-0429f5e639c1
identifier: a6cb65a9-5703-42a1-b808-0429f5e639c1
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-7_chunk-2_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:56.514368-05:00'
id: urn:uuid:9473cbc1-cd46-4542-af72-b26a07c3ddc4
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:56.514368-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:56.682610-05:00'
id: urn:uuid:8f3ff1bd-4925-4ea5-9252-a10d7561ebf2
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:56.682610-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-23T16:05:04.235550-05:00'
contentSize: 310742328
contentUrl:
- https://api.dandiarchive.org/api/assets/57bd7c46-ed39-476a-acc2-dec76fc65217/download/
- https://dandiarchive.s3.amazonaws.com/blobs/6c6/74c/6c674cc7-1541-4e95-83fb-f82eac9dae5f
dateModified: '2024-01-30T11:03:39.165111-05:00'
digest:
dandi:dandi-etag: 3b8a1110fa7f29f9cbe86d6bd8ee1fea-5
dandi:sha2-256: 7760a12c47d08f84b658da3c699a0db391eaea060a77639d65c0d7a13c1177da
encodingFormat: application/gzip
id: dandiasset:57bd7c46-ed39-476a-acc2-dec76fc65217
identifier: 57bd7c46-ed39-476a-acc2-dec76fc65217
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-3_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:34.753903-05:00'
id: urn:uuid:cd120d3c-6458-4ac0-b891-2a7f34579e5f
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:34.753903-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:39.165067-05:00'
id: urn:uuid:3631ceca-dfab-449f-8105-d23db93c5eaa
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:39.165067-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-23T16:05:35.538644-05:00'
contentSize: 308979104
contentUrl:
- https://api.dandiarchive.org/api/assets/b4c9cfb0-ca70-43da-8e9e-441c1f72ba4e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/6f2/bff/6f2bff34-b4e9-4a93-94c5-87a5b7787134
dateModified: '2024-01-30T11:03:40.848851-05:00'
digest:
dandi:dandi-etag: 2be465fefaf10c4afc970fed6f46e696-5
dandi:sha2-256: ee5fe105cab6ffc1f28dd3e5732427a1a2c9829955d7b0a0af80bf931924841d
encodingFormat: application/gzip
id: dandiasset:b4c9cfb0-ca70-43da-8e9e-441c1f72ba4e
identifier: b4c9cfb0-ca70-43da-8e9e-441c1f72ba4e
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-4_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:36.434134-05:00'
id: urn:uuid:3cd83a9b-29aa-43bc-886d-cfe27f96f80a
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:36.434134-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:40.848812-05:00'
id: urn:uuid:17f7fe30-aef0-4b32-b751-8e553df40096
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:40.848812-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-23T16:06:06.799738-05:00'
contentSize: 309098532
contentUrl:
- https://api.dandiarchive.org/api/assets/35964dac-184a-470b-85ff-48dda85491f2/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d9a/ab4/d9aab4b2-af22-42a3-b6db-a50e4f90c9c1
dateModified: '2024-01-30T11:03:47.905694-05:00'
digest:
dandi:dandi-etag: 44fbee83529b191e031c10465ebb2e06-5
dandi:sha2-256: fa0a360ce7f33813dfd58db7437e0c6288c5b34f13c6168394ed8b875f2dcd08
encodingFormat: application/gzip
id: dandiasset:35964dac-184a-470b-85ff-48dda85491f2
identifier: 35964dac-184a-470b-85ff-48dda85491f2
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-5_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:42.816424-05:00'
id: urn:uuid:030a982b-64fc-443d-b3d3-03b475ed88d1
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:42.816424-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:47.905644-05:00'
id: urn:uuid:07eeb8a5-9cd6-4c18-91cd-d6c1671c8ed5
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:47.905644-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-23T16:06:36.265826-05:00'
contentSize: 311157384
contentUrl:
- https://api.dandiarchive.org/api/assets/38b028f9-4c20-4b7c-aec9-8318fb98c31e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/456/60b/45660b0f-b81b-4a7d-ba36-2e2c0ff612e8
dateModified: '2024-01-30T11:03:49.395224-05:00'
digest:
dandi:dandi-etag: 7bac44a91ce5e81173978b334f31a85b-5
dandi:sha2-256: a92191d8076f8cbb14dbf132c8a70de43069f841c20272509da8f5f53dfdcb0a
encodingFormat: application/gzip
id: dandiasset:38b028f9-4c20-4b7c-aec9-8318fb98c31e
identifier: 38b028f9-4c20-4b7c-aec9-8318fb98c31e
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-6_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:44.576127-05:00'
id: urn:uuid:a7fae464-14a1-449c-97e1-d6ee75c00c9e
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:44.576127-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:49.395184-05:00'
id: urn:uuid:1bc5faae-4eb0-4bf0-bd1a-358d037fab6d
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:49.395184-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-23T16:07:06.388916-05:00'
contentSize: 314447956
contentUrl:
- https://api.dandiarchive.org/api/assets/b6572de2-aacb-49f4-ad3c-9f536a6a4821/download/
- https://dandiarchive.s3.amazonaws.com/blobs/8ec/2ab/8ec2abda-2702-412c-808d-52e2d77f6d35
dateModified: '2024-01-30T11:04:01.673299-05:00'
digest:
dandi:dandi-etag: 48b17f0ec872eb9f8ad19e3e1780f79c-5
dandi:sha2-256: adba9055136f9cc969417f2067a0616973b5d3ac0067129b5318dc03798fb492
encodingFormat: application/gzip
id: dandiasset:b6572de2-aacb-49f4-ad3c-9f536a6a4821
identifier: b6572de2-aacb-49f4-ad3c-9f536a6a4821
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-7_chunk-2_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:03:57.582975-05:00'
id: urn:uuid:75c33ba3-d694-4df5-9136-fc6de3f1bab6
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:03:57.582975-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:04:01.673227-05:00'
id: urn:uuid:c53558b0-b391-4003-8462-5f3405df6e34
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:04:01.673227-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T15:53:49.031243-05:00'
contentSize: 152
contentUrl:
- https://api.dandiarchive.org/api/assets/d1cbd1bb-071e-42f8-984c-62a3c43d27f3/download/
- https://dandiarchive.s3.amazonaws.com/blobs/123/74a/12374ab9-5243-43ae-9631-d9d346c65d45
dateModified: '2024-01-30T11:49:05.100635-05:00'
digest:
dandi:dandi-etag: 34bc2baede1dc3fdd42a65c86a97af2f-1
dandi:sha2-256: 5739c5222cfb6aa99722d6129b1e947026fdb66a33241c29f95840dbd4d92afe
encodingFormat: text/tab-separated-values
id: dandiasset:d1cbd1bb-071e-42f8-984c-62a3c43d27f3
identifier: d1cbd1bb-071e-42f8-984c-62a3c43d27f3
path: samples.tsv
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:49:04.905356-05:00'
id: urn:uuid:e0dc7dad-1929-4cef-ae2b-d658a5745b12
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:49:04.905356-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:49:05.100615-05:00'
id: urn:uuid:5a2849dc-49b0-457b-b941-86639f1b7ad8
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:49:05.100615-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-30T11:56:55.733306-05:00'
contentSize: 321
contentUrl:
- https://api.dandiarchive.org/api/assets/34d3ebd9-2ce9-42b3-8024-fdb2cc2e1882/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d90/6b3/d906b3c3-08c2-4b59-85c6-fdd625dc7ec1
dateModified: '2024-01-30T11:57:52.473425-05:00'
digest:
dandi:dandi-etag: 8af1ad357cff73f6b5b4278ba682dcef-1
dandi:sha2-256: 56a33aa456539808c08874f2485a4b66d51dbec7f6281bde537d929d30b08f6d
encodingFormat: application/json
id: dandiasset:34d3ebd9-2ce9-42b3-8024-fdb2cc2e1882
identifier: 34d3ebd9-2ce9-42b3-8024-fdb2cc2e1882
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-1_chunk-1_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:57:51.577396-05:00'
id: urn:uuid:e41eca2e-a962-43ce-ba7f-d0a18e13cdc8
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:57:51.577396-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:57:52.473380-05:00'
id: urn:uuid:ab6e7d75-f3ec-42b9-b70a-f699b25d6bd6
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:57:52.473380-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-30T11:57:01.532360-05:00'
contentSize: 321
contentUrl:
- https://api.dandiarchive.org/api/assets/faa206d2-2db6-4952-819c-e7718716a093/download/
- https://dandiarchive.s3.amazonaws.com/blobs/2ae/3e0/2ae3e0dd-6616-49aa-8d3b-b494dd111215
dateModified: '2024-01-30T11:57:52.900804-05:00'
digest:
dandi:dandi-etag: 93b061c3c943419b0d49375995b5dad8-1
dandi:sha2-256: 4648255e0dd7c671a2046d8069e57003cc43152293d71c8f1e8cd7b51bbd1f96
encodingFormat: application/json
id: dandiasset:faa206d2-2db6-4952-819c-e7718716a093
identifier: faa206d2-2db6-4952-819c-e7718716a093
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-2_chunk-1_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:57:51.983009-05:00'
id: urn:uuid:04f3748b-7e9c-4203-9c90-48c63abbf0aa
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:57:51.983009-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:57:52.900775-05:00'
id: urn:uuid:3aebc58a-f5f9-4690-b238-fd35818ad2f8
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:57:52.900775-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-30T11:57:08.925428-05:00'
contentSize: 321
contentUrl:
- https://api.dandiarchive.org/api/assets/1421e91f-1957-425b-aec7-3c3c7569ed42/download/
- https://dandiarchive.s3.amazonaws.com/blobs/63a/2dd/63a2dd07-70fb-43e0-9c67-1a25a29c49b7
dateModified: '2024-01-30T11:57:54.342420-05:00'
digest:
dandi:dandi-etag: 0f5ed2232f7c40f3ce0ca27686818b68-1
dandi:sha2-256: df2302aea146d2e183060c99c4ed71d756778dd40b6df8173728ffb610db5052
encodingFormat: application/json
id: dandiasset:1421e91f-1957-425b-aec7-3c3c7569ed42
identifier: 1421e91f-1957-425b-aec7-3c3c7569ed42
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-3_chunk-1_VFA.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:57:53.055502-05:00'
id: urn:uuid:5c1b39f6-ca97-43fd-84fe-74cc91b9b19a
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:57:53.055502-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:57:54.342396-05:00'
id: urn:uuid:30705c31-ae7d-4f01-b18c-a5fd663cb628
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:57:54.342396-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-23T15:01:04.930645-05:00'
contentSize: 162
contentUrl:
- https://api.dandiarchive.org/api/assets/ac76932d-0d6e-46f7-873a-f939e7ba1ae0/download/
- https://dandiarchive.s3.amazonaws.com/blobs/291/759/29175916-b856-4f07-84f6-2ee9461a2711
dateModified: '2024-01-30T11:57:58.287168-05:00'
digest:
dandi:dandi-etag: 90cda07316bea8b8af5257ece5492fc8-1
dandi:sha2-256: 6e8399a7365cd5917122371b8e7c7e364dac581b546c107fd22b8ce3e374b367
encodingFormat: application/json
id: dandiasset:ac76932d-0d6e-46f7-873a-f939e7ba1ae0
identifier: ac76932d-0d6e-46f7-873a-f939e7ba1ae0
path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-03_res-20um_OCT.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:57:57.839238-05:00'
id: urn:uuid:2a3d3c0d-5a6d-49bd-8a0d-f4f27c87cefd
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:57:57.839238-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:57:58.287144-05:00'
id: urn:uuid:d07df04b-2f01-4e09-b43a-76fadbd25ed1
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:57:58.287144-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-23T15:00:47.000479-05:00'
contentSize: 176
contentUrl:
- https://api.dandiarchive.org/api/assets/c1f85af0-f4e0-4b25-a822-3965f3dde791/download/
- https://dandiarchive.s3.amazonaws.com/blobs/faf/4cf/faf4cf3e-cce3-4a51-81d4-b0619dd80429
dateModified: '2024-01-30T11:57:58.247053-05:00'
digest:
dandi:dandi-etag: d024858f45692b81678a97680fc90c58-1
dandi:sha2-256: b7fbdf8b0eb80f2e81f9425c9874877ef3878cd5d720651468e42c9c268290f4
encodingFormat: application/json
id: dandiasset:c1f85af0-f4e0-4b25-a822-3965f3dde791
identifier: c1f85af0-f4e0-4b25-a822-3965f3dde791
path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-02_res-20um_OCT.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:57:57.464477-05:00'
id: urn:uuid:3483e112-aaa4-4599-a5e2-116eed2356f8
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:57:57.464477-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:57:58.246976-05:00'
id: urn:uuid:9a19613a-397b-4c21-be17-09b230e61e9c
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:57:58.246976-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-23T15:01:25.876838-05:00'
contentSize: 159
contentUrl:
- https://api.dandiarchive.org/api/assets/64c0007f-1f7f-454d-8ba4-9cc5737255f2/download/
- https://dandiarchive.s3.amazonaws.com/blobs/2ef/49f/2ef49f49-ea1f-42d3-91c0-9a946c994a49
dateModified: '2024-01-30T11:57:59.471362-05:00'
digest:
dandi:dandi-etag: 993364ea6f2294ce227c2270a59d7001-1
dandi:sha2-256: 64ac10f39e708585554a235f054fc8de8fdfb7cf3e3b0d4a5785b7385c257bbb
encodingFormat: application/json
id: dandiasset:64c0007f-1f7f-454d-8ba4-9cc5737255f2
identifier: 64c0007f-1f7f-454d-8ba4-9cc5737255f2
path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-04_res-20um_OCT.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:57:59.180165-05:00'
id: urn:uuid:80f01359-b709-40f8-a544-d52046ec1e96
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:57:59.180165-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T11:57:59.471337-05:00'
id: urn:uuid:3d480541-8078-40fe-8c90-29cad4599a21
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T11:57:59.471337-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-24T17:50:10.641181-05:00'
contentSize: 141070533
contentUrl:
- https://api.dandiarchive.org/api/assets/0d826523-7017-44f1-96a4-1860eb95ab1e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/b83/b8e/b83b8e2c-ddbf-417e-bf61-a2744dc58f18
dateModified: '2024-01-30T14:31:55.255260-05:00'
digest:
dandi:dandi-etag: db504e872928a0ea6a4ee030cc666bcb-3
dandi:sha2-256: 4c0478e5e5fad8c9ca6043b1ff803cb773bd883f4c73b4b0ba65c9a45e229250
encodingFormat: application/gzip
id: dandiasset:0d826523-7017-44f1-96a4-1860eb95ab1e
identifier: 0d826523-7017-44f1-96a4-1860eb95ab1e
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-1_chunk-1_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T14:31:54.361410-05:00'
id: urn:uuid:b1563829-8b15-422e-992a-e305ecd1fd76
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T14:31:54.361410-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T14:31:55.255226-05:00'
id: urn:uuid:7a8a3be3-841d-4e1e-9bba-b3fd53252e9b
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T14:31:55.255226-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-24T17:50:32.743246-05:00'
contentSize: 139102938
contentUrl:
- https://api.dandiarchive.org/api/assets/8bafbab8-790a-4ccf-892c-6b05b9c869d3/download/
- https://dandiarchive.s3.amazonaws.com/blobs/ff4/1ea/ff41eab2-374f-4a0d-8643-fa90964359e5
dateModified: '2024-01-30T14:31:56.650636-05:00'
digest:
dandi:dandi-etag: e295d3aad4fed9cd4c975fbd88cf1d7b-3
dandi:sha2-256: a41195ce0d06551fdc9a6bd6072d2d99934ddb480bfe5630491e2216cbebc059
encodingFormat: application/gzip
id: dandiasset:8bafbab8-790a-4ccf-892c-6b05b9c869d3
identifier: 8bafbab8-790a-4ccf-892c-6b05b9c869d3
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-2_chunk-1_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T14:31:55.764589-05:00'
id: urn:uuid:2636d6a8-03f0-48f6-a84c-e2df43fa1cc8
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T14:31:55.764589-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T14:31:56.650602-05:00'
id: urn:uuid:de275c0b-795a-47de-a225-4c90695654f5
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T14:31:56.650602-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-24T17:50:53.890309-05:00'
contentSize: 140522748
contentUrl:
- https://api.dandiarchive.org/api/assets/b13f71b1-ac46-41e9-9dd0-680592cac3f5/download/
- https://dandiarchive.s3.amazonaws.com/blobs/02e/035/02e03544-06e5-4a2f-876e-188d646bbe7d
dateModified: '2024-01-30T14:31:58.296665-05:00'
digest:
dandi:dandi-etag: 8d0bb89d81cedd1d6ce452d4c2ef52e6-3
dandi:sha2-256: eef138d647b5a00e4ce6a254b3f4794bcc45ac82f03e16ce95a5e3a19237fb2a
encodingFormat: application/gzip
id: dandiasset:b13f71b1-ac46-41e9-9dd0-680592cac3f5
identifier: b13f71b1-ac46-41e9-9dd0-680592cac3f5
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-3_chunk-1_VFA.nii.gz
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T14:31:57.278376-05:00'
id: urn:uuid:4ffea0a1-1a1f-4ba6-a468-2bd42e1710f2
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T14:31:57.278376-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T14:31:58.296601-05:00'
id: urn:uuid:202f7cff-497b-4a21-b8c9-56fb98b08645
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T14:31:58.296601-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-30T13:46:53.228294-05:00'
contentSize: 165
contentUrl:
- https://api.dandiarchive.org/api/assets/b42e7748-d8c2-4d5b-a13a-48fe04995354/download/
- https://dandiarchive.s3.amazonaws.com/blobs/a7d/61c/a7d61c8e-8679-40aa-a02d-ebe7626f5227
dateModified: '2024-01-30T14:32:13.484331-05:00'
digest:
dandi:dandi-etag: fc2571d33debbd36117f739c80e04d5e-1
dandi:sha2-256: 307c3a6a1694d11af14f54c3dc4fb288f32b663e4b9ba37de3650545824fdbbd
encodingFormat: application/json
id: dandiasset:b42e7748-d8c2-4d5b-a13a-48fe04995354
identifier: b42e7748-d8c2-4d5b-a13a-48fe04995354
path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-01_OCT.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: OCT
name: OCT
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T14:32:12.617013-05:00'
id: urn:uuid:58c306cd-d0c3-4109-a627-c0e1810cf28b
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T14:32:12.617013-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T14:32:13.484283-05:00'
id: urn:uuid:4245c298-e03e-48c4-a814-c34316f46c96
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T14:32:13.484283-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-30T13:47:11.260458-05:00'
contentSize: 180
contentUrl:
- https://api.dandiarchive.org/api/assets/17a7f235-c802-4038-9619-e8a8b2f813b8/download/
- https://dandiarchive.s3.amazonaws.com/blobs/df4/444/df444439-297b-4495-992a-0dede798be93
dateModified: '2024-01-30T14:32:13.956357-05:00'
digest:
dandi:dandi-etag: d60a92b52a5d3a06eb85b34f699a44fa-1
dandi:sha2-256: 8906de453c526dc0367198d9356c3ed2675b38d56a7690864b27dd15b366bffe
encodingFormat: application/json
id: dandiasset:17a7f235-c802-4038-9619-e8a8b2f813b8
identifier: 17a7f235-c802-4038-9619-e8a8b2f813b8
path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-02_OCT.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: OCT
name: OCT
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T14:32:13.359762-05:00'
id: urn:uuid:524863ab-b42c-403d-9533-1750560dc99a
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T14:32:13.359762-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T14:32:13.956315-05:00'
id: urn:uuid:1f8487c5-fcb0-4fd9-b156-0e252ab2a757
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T14:32:13.956315-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-30T13:47:58.949893-05:00'
contentSize: 163
contentUrl:
- https://api.dandiarchive.org/api/assets/bf5c7866-26af-43c6-b0f2-f850bb60a934/download/
- https://dandiarchive.s3.amazonaws.com/blobs/ef4/620/ef462007-475a-4a3d-be53-5fe2cadd2cf2
dateModified: '2024-01-30T14:32:15.210922-05:00'
digest:
dandi:dandi-etag: 2ccb6f6629b3e7901055dcc3327e2658-1
dandi:sha2-256: 95b22ec650d02d2fd8d955055d254afb7e859ea916b2773795f1db1fe3990b41
encodingFormat: application/json
id: dandiasset:bf5c7866-26af-43c6-b0f2-f850bb60a934
identifier: bf5c7866-26af-43c6-b0f2-f850bb60a934
path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-03_OCT.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: OCT
name: OCT
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T14:32:14.479093-05:00'
id: urn:uuid:ee550c00-203f-4f30-acf0-4d9c36bb709a
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T14:32:14.479093-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T14:32:15.210882-05:00'
id: urn:uuid:20e2947b-28fb-4eaa-84d2-53e45ad1c7b6
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T14:32:15.210882-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-30T13:48:13.918030-05:00'
contentSize: 159
contentUrl:
- https://api.dandiarchive.org/api/assets/29ecf1a1-9de4-453e-943e-18ae85849568/download/
- https://dandiarchive.s3.amazonaws.com/blobs/971/703/971703a4-22b8-455d-98c6-176cd70a0feb
dateModified: '2024-01-30T14:32:16.995692-05:00'
digest:
dandi:dandi-etag: b72614c3657f52eabf10484131524769-1
dandi:sha2-256: 97006c98cc1c43a18c9c4e78cb130f47ee8e05d0880918127adc74739031a81a
encodingFormat: application/json
id: dandiasset:29ecf1a1-9de4-453e-943e-18ae85849568
identifier: 29ecf1a1-9de4-453e-943e-18ae85849568
path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-04_OCT.json
schemaKey: Asset
schemaVersion: 0.6.4
wasAttributedTo:
- identifier: SP002
schemaKey: Participant
wasGeneratedBy:
- identifier: OCT
name: OCT
schemaKey: Session
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T14:32:16.288373-05:00'
id: urn:uuid:2921e94e-d9e4-484b-b7ae-82c5792bb41c
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T14:32:16.288373-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- description: Metadata generated by DANDI cli
endDate: '2024-01-30T14:32:16.995659-05:00'
id: urn:uuid:955c7e85-894b-4ffb-9572-7d39dae258ad
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-30T14:32:16.995659-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2023-10-03T14:32:29.697141-04:00'
contentSize: 1678
contentUrl:
- https://api.dandiarchive.org/api/assets/5bd78758-2d9a-4847-90a2-419fe4b60ae7/download/
- https://dandiarchive.s3.amazonaws.com/blobs/4c6/0eb/4c60eb48-d7e2-45ea-98f0-1af58b906752
dateModified: '2024-07-15T11:29:31.507557-04:00'
digest:
dandi:dandi-etag: 8981ea0bce8cbe0130da338b32909b39-1
dandi:sha2-256: 6da578e7444b9e289cd73cfa14fd987405bbef35bf1f65d98d67369462355379
encodingFormat: application/octet-stream
id: dandiasset:5bd78758-2d9a-4847-90a2-419fe4b60ae7
identifier: 5bd78758-2d9a-4847-90a2-419fe4b60ae7
path: derivatives/MRI-pipeline/sub-SP002/anat/flash30_BrainstemOriented.mgz.lta
schemaKey: Asset
schemaVersion: 0.6.7
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:29:31.004462-04:00'
id: urn:uuid:01dfbffe-28a4-4e5c-be56-bbe2a6c8dc13
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:29:31.004462-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:29:31.507493-04:00'
id: urn:uuid:c60f32cc-6696-4afe-9653-d13d53a5cc8f
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:29:31.507493-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-02-06T13:30:46.886873-05:00'
contentSize: 173
contentUrl:
- https://api.dandiarchive.org/api/assets/a2958ce9-a5c8-4137-9fd0-ace1ffd0655b/download/
- https://dandiarchive.s3.amazonaws.com/blobs/8a0/a15/8a0a157a-58d7-463a-885b-796202eefe7d
dateModified: '2024-07-15T11:29:34.548579-04:00'
digest:
dandi:dandi-etag: be589a56cf11aa658c8a8a368c90d299-1
dandi:sha2-256: f3692617d26821b40426a41de2ddcbdfbf4bc29e59a9f413c9bd6d0bd9b43ca9
encodingFormat: application/json
id: dandiasset:a2958ce9-a5c8-4137-9fd0-ace1ffd0655b
identifier: a2958ce9-a5c8-4137-9fd0-ace1ffd0655b
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-3_chunk-1_to-SP002_xfm.json
schemaKey: Asset
schemaVersion: 0.6.7
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:29:34.217129-04:00'
id: urn:uuid:7069a42d-fedc-4eb5-a275-c4d578a18093
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:29:34.217129-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:29:34.548518-04:00'
id: urn:uuid:738f5381-7476-429a-9efc-c00a0f058c6e
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:29:34.548518-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-02-06T14:56:31.519148-05:00'
contentSize: 1735
contentUrl:
- https://api.dandiarchive.org/api/assets/a5c0e5ee-5a9d-4e2a-a19d-9cca5f4685f8/download/
- https://dandiarchive.s3.amazonaws.com/blobs/0e9/e2b/0e9e2bae-2b9c-448d-ac4b-204ca2825de3
dateModified: '2024-07-15T11:29:34.745872-04:00'
digest:
dandi:dandi-etag: 971d269636249c5c65f9610ea3e728e6-1
dandi:sha2-256: 30893859dd84d018f5c8a5d0b45cd92876c21d3bffde459e8c4cbbca1fc7a567
encodingFormat: application/octet-stream
id: dandiasset:a5c0e5ee-5a9d-4e2a-a19d-9cca5f4685f8
identifier: a5c0e5ee-5a9d-4e2a-a19d-9cca5f4685f8
path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-3_chunk-1_to-SP002_xfm.lta
schemaKey: Asset
schemaVersion: 0.6.7
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:29:34.414114-04:00'
id: urn:uuid:89faf9b0-f319-4472-99d7-a7293e7c483f
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:29:34.414114-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:29:34.745831-04:00'
id: urn:uuid:ff97fb64-e00b-49bd-982e-72c34c5c3e80
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:29:34.745831-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-02-06T13:23:09.788738-05:00'
contentSize: 165
contentUrl:
- https://api.dandiarchive.org/api/assets/3e98c412-b4be-4e3d-8709-662e721cba30/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d7a/ab9/d7aab918-d0a0-4abd-b116-edd53b379591
dateModified: '2024-07-15T11:43:55.907615-04:00'
digest:
dandi:dandi-etag: bc5150cdd5c99e1981297ab02c89cbff-1
dandi:sha2-256: e4affd47e0e521bfb16e05146816b85c58ac9e50ef7db0158b86fe0abeb7689c
encodingFormat: application/json
id: dandiasset:3e98c412-b4be-4e3d-8709-662e721cba30
identifier: 3e98c412-b4be-4e3d-8709-662e721cba30
path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-01_res-20um_OCT.json
schemaKey: Asset
schemaVersion: 0.6.7
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:43:54.388406-04:00'
id: urn:uuid:83534e7b-f35c-41f4-ae5c-6f3cde372951
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:43:54.388406-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:43:55.907564-04:00'
id: urn:uuid:fa95ee7b-a5e2-42f1-8fcb-cf0d016d89a9
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:43:55.907564-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-02-06T13:33:57.024594-05:00'
contentSize: 180
contentUrl:
- https://api.dandiarchive.org/api/assets/94023814-169a-47a2-84d0-3cf14d083060/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c8d/d70/c8dd70d6-47ca-4d88-b273-2484caad89fc
dateModified: '2024-07-15T11:43:56.174881-04:00'
digest:
dandi:dandi-etag: e112faabd4a3d4401ef1e29edfdd7bde-1
dandi:sha2-256: 588d0c89e6ab89b2ec7efbdb9cc648c34516ef04e89ae9df26855dbf8fc119e1
encodingFormat: application/json
id: dandiasset:94023814-169a-47a2-84d0-3cf14d083060
identifier: 94023814-169a-47a2-84d0-3cf14d083060
path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-01_to-SP002_xfm.json
schemaKey: Asset
schemaVersion: 0.6.7
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:43:55.440859-04:00'
id: urn:uuid:a963bebb-4746-43e7-9b7d-4de6bdae5131
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:43:55.440859-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:43:56.174835-04:00'
id: urn:uuid:ab78b452-261f-4466-a6e1-aa8b1c7ab59d
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:43:56.174835-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-02-06T13:34:12.314733-05:00'
contentSize: 180
contentUrl:
- https://api.dandiarchive.org/api/assets/f71b0daa-df97-430c-8b05-36a2db8f8a1f/download/
- https://dandiarchive.s3.amazonaws.com/blobs/27d/4e4/27d4e4bb-3683-42d2-98ff-84e11fb4165b
dateModified: '2024-07-15T11:43:59.335201-04:00'
digest:
dandi:dandi-etag: 969fb0a5f416bd9a36a4658586b7844d-1
dandi:sha2-256: 781f708c89a87f9ae225934c0e2366f7e180a02f3ac1cab3e2081863c7e58803
encodingFormat: application/json
id: dandiasset:f71b0daa-df97-430c-8b05-36a2db8f8a1f
identifier: f71b0daa-df97-430c-8b05-36a2db8f8a1f
path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-02_to-SP002_xfm.json
schemaKey: Asset
schemaVersion: 0.6.7
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:43:58.681834-04:00'
id: urn:uuid:eafe66fb-e51e-45b4-b8f1-2fe3ddf70624
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:43:58.681834-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:43:59.335170-04:00'
id: urn:uuid:cd837d68-a81e-4f43-9e20-6a2602afdc53
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:43:59.335170-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-02-06T13:34:24.632845-05:00'
contentSize: 180
contentUrl:
- https://api.dandiarchive.org/api/assets/20534fe5-dd89-4a2f-b27f-c03d64620c6b/download/
- https://dandiarchive.s3.amazonaws.com/blobs/71c/9d9/71c9d90b-1764-4b74-bd52-ed58164812f1
dateModified: '2024-07-15T11:44:02.804915-04:00'
digest:
dandi:dandi-etag: 90bd5dc8341db8c2dba63604cb86557d-1
dandi:sha2-256: 2e4223815a9cea0ce59466c5a0a5a6feca678ffd5745143d7f75294b641b8ae6
encodingFormat: application/json
id: dandiasset:20534fe5-dd89-4a2f-b27f-c03d64620c6b
identifier: 20534fe5-dd89-4a2f-b27f-c03d64620c6b
path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-03_to-SP002_xfm.json
schemaKey: Asset
schemaVersion: 0.6.7
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:44:02.499736-04:00'
id: urn:uuid:07483fd1-d1aa-47f2-a7e9-a8aa88733262
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:44:02.499736-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:44:02.804860-04:00'
id: urn:uuid:2131863e-7efe-4156-abc7-a23c0f31bb0c
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:44:02.804860-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-02-06T13:34:37.542962-05:00'
contentSize: 180
contentUrl:
- https://api.dandiarchive.org/api/assets/b3ac10a1-742a-4f40-9e99-a9c79af90c2e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/adc/4d9/adc4d942-3cb7-493d-ad1a-34df323f614a
dateModified: '2024-07-15T11:44:26.155287-04:00'
digest:
dandi:dandi-etag: 899813e64021481f8e785993df05a29d-1
dandi:sha2-256: 86cb41b79d0bfae74b976decf14697a68ad487283822e4980f6794ae89564998
encodingFormat: application/json
id: dandiasset:b3ac10a1-742a-4f40-9e99-a9c79af90c2e
identifier: b3ac10a1-742a-4f40-9e99-a9c79af90c2e
path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-04_to-SP002_xfm.json
schemaKey: Asset
schemaVersion: 0.6.7
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:44:25.828645-04:00'
id: urn:uuid:6b97c210-db1a-459e-a312-ce7ac55079d8
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:44:25.828645-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:44:26.155236-04:00'
id: urn:uuid:58fa81d7-0bdf-4c29-8c21-660dfb8ca8f1
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:44:26.155236-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-30T14:48:41.696333-05:00'
contentSize: 371
contentUrl:
- https://api.dandiarchive.org/api/assets/79ef9ba7-f120-47d1-a5f3-3fadf27262f8/download/
- https://dandiarchive.s3.amazonaws.com/blobs/f01/346/f0134662-a319-4d24-8b54-84d807723ecb
dateModified: '2024-07-15T11:44:28.950447-04:00'
digest:
dandi:dandi-etag: 55b32c03b3f847eb3df3590193de59b0-1
dandi:sha2-256: 0d01681c97f3de7be90d7d1e226ba72a11686a018d08b80141f476d65c7ebe19
encodingFormat: application/json
id: dandiasset:79ef9ba7-f120-47d1-a5f3-3fadf27262f8
identifier: 79ef9ba7-f120-47d1-a5f3-3fadf27262f8
path: derivatives/dataset_description.json
schemaKey: Asset
schemaVersion: 0.6.7
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:44:28.730488-04:00'
id: urn:uuid:38787f7e-0664-4a03-827c-b12b72334b48
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:44:28.730488-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:44:28.950398-04:00'
id: urn:uuid:f43fd0f8-cb2d-4a5e-8122-78b74606edcd
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:44:28.950398-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-02-14T11:45:46.781933-05:00'
contentSize: 651
contentUrl:
- https://api.dandiarchive.org/api/assets/b7617080-f47c-40cf-94ed-460c52e2254b/download/
- https://dandiarchive.s3.amazonaws.com/blobs/a33/b12/a33b1227-f1fd-4273-be68-de963aabd614
dateModified: '2024-07-15T11:44:30.441049-04:00'
digest:
dandi:dandi-etag: cba47a4385046832c76c687446b79ae0-1
dandi:sha2-256: 003ce1feb56223b1fb0a8d4621d679818dbb82bf096c52c9daf35384d677426c
encodingFormat: application/json
id: dandiasset:b7617080-f47c-40cf-94ed-460c52e2254b
identifier: b7617080-f47c-40cf-94ed-460c52e2254b
path: participants.json
schemaKey: Asset
schemaVersion: 0.6.7
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:44:30.187309-04:00'
id: urn:uuid:ea65c25c-7af8-4234-8b05-3302419b814e
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:44:30.187309-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:44:30.440996-04:00'
id: urn:uuid:9b584ac2-9767-4ce0-8a8a-67e6942d7b90
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:44:30.440996-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-02-06T13:04:48.704805-05:00'
contentSize: 48
contentUrl:
- https://api.dandiarchive.org/api/assets/b4082afd-5343-4b27-914c-4e60aaf92815/download/
- https://dandiarchive.s3.amazonaws.com/blobs/e48/d26/e48d261f-2ccd-4597-9ef5-acf52a8945df
dateModified: '2024-07-15T11:44:31.980089-04:00'
digest:
dandi:dandi-etag: 11388fc2440da060752f392b73ec8a9d-1
dandi:sha2-256: 3314819d2baf964448ce305964bb3f975563b9a54288f25429c9af9a23ef067e
encodingFormat: text/tab-separated-values
id: dandiasset:b4082afd-5343-4b27-914c-4e60aaf92815
identifier: b4082afd-5343-4b27-914c-4e60aaf92815
path: participants.tsv
schemaKey: Asset
schemaVersion: 0.6.7
wasAttributedTo: []
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:44:31.467804-04:00'
id: urn:uuid:5ad6c844-ee5c-4276-b736-a76b743528fe
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:44:31.467804-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:44:31.980028-04:00'
id: urn:uuid:fddae54a-b1e6-4b83-92de-3ea8d96b8c80
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:44:31.980028-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-29T15:46:46.189424-05:00'
contentSize: 364
contentUrl:
- https://api.dandiarchive.org/api/assets/e756e74b-4a7e-4820-987f-504844a250b5/download/
- https://dandiarchive.s3.amazonaws.com/blobs/7a6/9a0/7a69a066-3d5d-4cb1-b221-34a199ff1b06
dateModified: '2024-07-15T11:44:33.410341-04:00'
digest:
dandi:dandi-etag: ab54668b46b7fe3cbb6faebdecc4fdcf-1
dandi:sha2-256: a14d5d6705d6c1e85e9cc29f5b137155d864934bf5f7a116861204331452f47a
encodingFormat: application/json
id: dandiasset:e756e74b-4a7e-4820-987f-504844a250b5
identifier: e756e74b-4a7e-4820-987f-504844a250b5
path: rawdata/dataset_description.json
schemaKey: Asset
schemaVersion: 0.6.7
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:44:33.135320-04:00'
id: urn:uuid:5477e46e-574a-4b2e-8874-96b010440d20
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:44:33.135320-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:44:33.410278-04:00'
id: urn:uuid:ffcdc7de-8271-4f61-8792-dafc88f95f1b
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:44:33.410278-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-11T11:40:45.867661-05:00'
contentSize: 4372647752
contentUrl:
- https://api.dandiarchive.org/api/assets/e87473b4-9fbc-4934-9ce3-35bd57b7076a/download/
- https://dandiarchive.s3.amazonaws.com/blobs/502/5b5/5025b55f-11f9-4cc3-a9fe-32428d2eff01
dateModified: '2024-07-15T11:51:48.596031-04:00'
digest:
dandi:dandi-etag: b04fa16bd2a5bb18d1b37c725f6bf6b5-66
dandi:sha2-256: a1fb49df200a5e18fd6f62bb944f323fd5ea521aec029d4b88a487f5faaba3ce
encodingFormat: application/octet-stream
id: dandiasset:e87473b4-9fbc-4934-9ce3-35bd57b7076a
identifier: e87473b4-9fbc-4934-9ce3-35bd57b7076a
path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-04_OCT.nii
schemaKey: Asset
schemaVersion: 0.6.7
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:51:48.350142-04:00'
id: urn:uuid:f145a7bb-fb05-4cc7-8dee-60c9119dc809
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:51:48.350142-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:51:48.595982-04:00'
id: urn:uuid:d8810833-ecbd-46d3-8762-4ea793d28929
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:51:48.595982-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-30T13:31:09.165119-05:00'
contentSize: 9159732136
contentUrl:
- https://api.dandiarchive.org/api/assets/80d6f9c7-bbb7-4c56-8fe4-f9608ea1ebe0/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c6d/399/c6d399a2-9548-4fd2-bd8f-9cc509434d47
dateModified: '2024-07-15T11:56:16.423361-04:00'
digest:
dandi:dandi-etag: e0ca0d327a91a74076e521d5eeb666a2-137
dandi:sha2-256: 8ae9ebca9a1280a372782fea55a80ad51cefaf36d3d999bc1899e4cd9812c92e
encodingFormat: application/octet-stream
id: dandiasset:80d6f9c7-bbb7-4c56-8fe4-f9608ea1ebe0
identifier: 80d6f9c7-bbb7-4c56-8fe4-f9608ea1ebe0
path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-01_OCT.nii
schemaKey: Asset
schemaVersion: 0.6.7
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:50:22.327770-04:00'
id: urn:uuid:60577343-8c20-4bc1-9f0b-834366688ff6
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:50:22.327770-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:56:16.423223-04:00'
id: urn:uuid:d65ff9ca-1567-4f43-9fdc-cdfc1cc22b05
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:56:16.423223-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-30T14:10:32.807242-05:00'
contentSize: 22080411320
contentUrl:
- https://api.dandiarchive.org/api/assets/e749d26b-1595-4229-956c-d4eaf12492c2/download/
- https://dandiarchive.s3.amazonaws.com/blobs/3dc/e76/3dce766d-8c1d-4dd3-9402-3f96f74846fd
dateModified: '2024-07-15T11:56:37.722204-04:00'
digest:
dandi:dandi-etag: dc31cc98c2df26f0f20eb96f0ca20a5d-330
dandi:sha2-256: 878eecf60ab05d08f2c7eaf9c229dc18f2f3c4c1808919330c272a12e17c094e
encodingFormat: application/octet-stream
id: dandiasset:e749d26b-1595-4229-956c-d4eaf12492c2
identifier: e749d26b-1595-4229-956c-d4eaf12492c2
path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-03_OCT.nii
schemaKey: Asset
schemaVersion: 0.6.7
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:50:24.525875-04:00'
id: urn:uuid:3bcb4189-205d-432a-8acb-3b07cedeeeab
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:50:24.525875-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:56:37.722008-04:00'
id: urn:uuid:67c1465a-1f84-470a-9218-60a1e17f8159
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:56:37.722008-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2024-01-23T15:03:59.643418-05:00'
contentSize: 26292566872
contentUrl:
- https://api.dandiarchive.org/api/assets/cef096e9-4f8e-4df5-a0db-d66fe4df6ab2/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d6c/733/d6c733c3-02b5-4124-9675-203e0b160401
dateModified: '2024-07-15T12:00:24.847479-04:00'
digest:
dandi:dandi-etag: 0fedfe9086796b35051f31b19d1696a6-392
dandi:sha2-256: a5626691980449438082021e7047aa11cb80fbef6c94d021c32da36d94d6859e
encodingFormat: application/octet-stream
id: dandiasset:cef096e9-4f8e-4df5-a0db-d66fe4df6ab2
identifier: cef096e9-4f8e-4df5-a0db-d66fe4df6ab2
path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-02_OCT.nii
schemaKey: Asset
schemaVersion: 0.6.7
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T11:50:23.703888-04:00'
id: urn:uuid:8a39106a-90f3-4c54-9985-46566f6f3501
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T11:50:23.703888-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- description: Metadata generated by DANDI cli
endDate: '2024-07-15T12:00:24.847328-04:00'
id: urn:uuid:d99d913c-51c6-4336-b089-11153b0486b6
name: Metadata generation
schemaKey: Activity
startDate: '2024-07-15T12:00:24.847328-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2025-03-06T12:31:11.415246-05:00'
contentSize: 1727
contentUrl:
- https://api.dandiarchive.org/api/assets/6a27a06d-1135-4b09-a8b9-e7a9fef20e6b/download/
- https://dandiarchive.s3.amazonaws.com/blobs/840/e7b/840e7b44-5818-4d6a-9265-3ac08d86e221
dateModified: '2025-03-10T12:03:28.551148-04:00'
digest:
dandi:dandi-etag: 59eb176d26e68b479872f43543cb9690-1
dandi:sha2-256: 35da87688724b7c2e94c72ae165b8ef0209637469f43097b1df37552b6212d92
encodingFormat: application/octet-stream
id: dandiasset:6a27a06d-1135-4b09-a8b9-e7a9fef20e6b
identifier: 6a27a06d-1135-4b09-a8b9-e7a9fef20e6b
path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-01_to-SP002_xfm.lta
schemaKey: Asset
schemaVersion: 0.6.9
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2025-03-10T12:03:27.991106-04:00'
id: urn:uuid:647b3513-b551-4f82-aefc-0a306ff28ba1
name: Metadata generation
schemaKey: Activity
startDate: '2025-03-10T12:03:27.991106-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.67.0
- description: Metadata generated by DANDI cli
endDate: '2025-03-10T12:03:28.551094-04:00'
id: urn:uuid:19b11940-452d-4c3f-b64b-a0b715b9d6e7
name: Metadata generation
schemaKey: Activity
startDate: '2025-03-10T12:03:28.551094-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.67.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2025-03-06T12:10:23.577680-05:00'
contentSize: 704760175
contentUrl:
- https://api.dandiarchive.org/api/assets/fa5739e4-bb76-4d55-a7d3-e74139159778/download/
- https://dandiarchive.s3.amazonaws.com/zarr/5b7ab818-3223-4925-9166-fbf5014e6c26/
dateModified: '2025-03-10T12:03:29.822080-04:00'
digest:
dandi:dandi-zarr-checksum: d1f695e11c38290bd47d7e239e3a5301-1574--704760175
encodingFormat: application/x-zarr
id: dandiasset:fa5739e4-bb76-4d55-a7d3-e74139159778
identifier: fa5739e4-bb76-4d55-a7d3-e74139159778
path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-01_res-20um_OCT.ome.zarr
schemaKey: Asset
schemaVersion: 0.6.9
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2025-03-10T12:03:29.822041-04:00'
id: urn:uuid:6a28defa-2c00-4e00-b64b-56a94d59cc55
name: Metadata generation
schemaKey: Activity
startDate: '2025-03-10T12:03:29.822041-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.67.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2025-03-06T12:31:11.420247-05:00'
contentSize: 1718
contentUrl:
- https://api.dandiarchive.org/api/assets/3dc1b79e-5b70-4839-8252-01e7cab22021/download/
- https://dandiarchive.s3.amazonaws.com/blobs/299/f5c/299f5c2e-d99c-4bcf-90ee-8772613275eb
dateModified: '2025-03-10T12:04:11.938067-04:00'
digest:
dandi:dandi-etag: 4c074dda16682b8d40a6bc190ec13889-1
dandi:sha2-256: 5f97eb5bb851e214f93503efeb24dfe3094806ffd1fd24c78f4791d848aed553
encodingFormat: application/octet-stream
id: dandiasset:3dc1b79e-5b70-4839-8252-01e7cab22021
identifier: 3dc1b79e-5b70-4839-8252-01e7cab22021
path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-02_to-SP002_xfm.lta
schemaKey: Asset
schemaVersion: 0.6.9
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2025-03-10T12:04:11.141233-04:00'
id: urn:uuid:2024f4d1-cecd-48dc-9d6c-e26c3fa907b8
name: Metadata generation
schemaKey: Activity
startDate: '2025-03-10T12:04:11.141233-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.67.0
- description: Metadata generated by DANDI cli
endDate: '2025-03-10T12:04:11.938021-04:00'
id: urn:uuid:a21201f2-e981-43b9-96f2-fdf072e939d0
name: Metadata generation
schemaKey: Activity
startDate: '2025-03-10T12:04:11.938021-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.67.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2025-03-06T12:31:11.426247-05:00'
contentSize: 1752
contentUrl:
- https://api.dandiarchive.org/api/assets/74492864-28fe-4221-8f8b-cdff04c6c18e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/ba0/065/ba0065cc-5842-4b9b-9e18-a2793d22d88c
dateModified: '2025-03-10T12:04:13.173888-04:00'
digest:
dandi:dandi-etag: 153a6a0a4079a1a9827e5448cd9f10bc-1
dandi:sha2-256: f422444188c5bc9c8bcaa778c25062aed7a77e7b0fae0162b8734198bc2eaafb
encodingFormat: application/octet-stream
id: dandiasset:74492864-28fe-4221-8f8b-cdff04c6c18e
identifier: 74492864-28fe-4221-8f8b-cdff04c6c18e
path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-03_to-SP002_xfm.lta
schemaKey: Asset
schemaVersion: 0.6.9
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2025-03-10T12:04:12.486239-04:00'
id: urn:uuid:6e7d3f4c-ea06-4262-a47a-b252961dbf57
name: Metadata generation
schemaKey: Activity
startDate: '2025-03-10T12:04:12.486239-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.67.0
- description: Metadata generated by DANDI cli
endDate: '2025-03-10T12:04:13.173656-04:00'
id: urn:uuid:f4d5817f-da63-4aec-88ac-8b2dde6a978f
name: Metadata generation
schemaKey: Activity
startDate: '2025-03-10T12:04:13.173656-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.67.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
blobDateModified: '2025-03-06T12:31:11.431247-05:00'
contentSize: 1766
contentUrl:
- https://api.dandiarchive.org/api/assets/0b7735f3-011f-4934-adfc-f6503bae1472/download/
- https://dandiarchive.s3.amazonaws.com/blobs/e3a/ca8/e3aca8e7-84b2-47c2-9ec8-7fd84497570c
dateModified: '2025-03-10T12:04:14.441485-04:00'
digest:
dandi:dandi-etag: 2e917765a8ce393f3042900450f59732-1
dandi:sha2-256: a0195d97903335565859764987cc5ef910853940bfc172a7223aa7e844e73c1b
encodingFormat: application/octet-stream
id: dandiasset:0b7735f3-011f-4934-adfc-f6503bae1472
identifier: 0b7735f3-011f-4934-adfc-f6503bae1472
path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-04_to-SP002_xfm.lta
schemaKey: Asset
schemaVersion: 0.6.9
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2025-03-10T12:04:13.947684-04:00'
id: urn:uuid:62f4ccb8-4637-44dc-9c81-1f99d175252d
name: Metadata generation
schemaKey: Activity
startDate: '2025-03-10T12:04:13.947684-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.67.0
- description: Metadata generated by DANDI cli
endDate: '2025-03-10T12:04:14.441442-04:00'
id: urn:uuid:565de2d8-e351-4274-9a98-5b8269d0a0c1
name: Metadata generation
schemaKey: Activity
startDate: '2025-03-10T12:04:14.441442-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.67.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2025-03-06T12:26:38.629485-05:00'
contentSize: 2284884366
contentUrl:
- https://api.dandiarchive.org/api/assets/ae2a1fd2-7e39-4c79-b468-058ff1149d08/download/
- https://dandiarchive.s3.amazonaws.com/zarr/3b341e59-fe85-40ab-8312-5e6552999f01/
dateModified: '2025-03-10T12:04:20.608267-04:00'
digest:
dandi:dandi-zarr-checksum: 72eb3f845f5a00eae8da652dcdc4bb17-3648--2284884366
encodingFormat: application/x-zarr
id: dandiasset:ae2a1fd2-7e39-4c79-b468-058ff1149d08
identifier: ae2a1fd2-7e39-4c79-b468-058ff1149d08
path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-03_res-20um_OCT.ome.zarr
schemaKey: Asset
schemaVersion: 0.6.9
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2025-03-10T12:04:20.608188-04:00'
id: urn:uuid:c26b1ea8-63e4-4889-8bc9-2d2ef4aef668
name: Metadata generation
schemaKey: Activity
startDate: '2025-03-10T12:04:20.608188-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.67.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2025-03-06T12:24:59.867492-05:00'
contentSize: 2545482641
contentUrl:
- https://api.dandiarchive.org/api/assets/1e85915d-26bd-4b14-b9f6-6e8657e23eb4/download/
- https://dandiarchive.s3.amazonaws.com/zarr/8c81a4f7-b6cd-46c5-825a-16431702c4d0/
dateModified: '2025-03-10T12:04:21.002469-04:00'
digest:
dandi:dandi-zarr-checksum: 15b82df898e4cc9d5d5b88beb0228835-4003--2545482641
encodingFormat: application/x-zarr
id: dandiasset:1e85915d-26bd-4b14-b9f6-6e8657e23eb4
identifier: 1e85915d-26bd-4b14-b9f6-6e8657e23eb4
path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-02_res-20um_OCT.ome.zarr
schemaKey: Asset
schemaVersion: 0.6.9
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2025-03-10T12:04:21.002437-04:00'
id: urn:uuid:7707f81c-41b0-4b0e-828b-c25518a43794
name: Metadata generation
schemaKey: Activity
startDate: '2025-03-10T12:04:21.002437-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.67.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2025-03-06T12:31:11.027243-05:00'
contentSize: 3278740872
contentUrl:
- https://api.dandiarchive.org/api/assets/92779b22-a6cf-4928-9138-14c69162067e/download/
- https://dandiarchive.s3.amazonaws.com/zarr/52e874ce-e623-47a0-a43a-7e32126b7632/
dateModified: '2025-03-10T12:04:22.080902-04:00'
digest:
dandi:dandi-zarr-checksum: ba3094b7c38bae7e2e8c4d1bf4490aeb-5486--3278740872
encodingFormat: application/x-zarr
id: dandiasset:92779b22-a6cf-4928-9138-14c69162067e
identifier: 92779b22-a6cf-4928-9138-14c69162067e
path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-04_res-20um_OCT.ome.zarr
schemaKey: Asset
schemaVersion: 0.6.9
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2025-03-10T12:04:22.080845-04:00'
id: urn:uuid:d0275d2e-f8dc-4334-a7b9-2f7359386275
name: Metadata generation
schemaKey: Activity
startDate: '2025-03-10T12:04:22.080845-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.67.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2025-03-06T15:14:09.666195-05:00'
contentSize: 8498618797
contentUrl:
- https://api.dandiarchive.org/api/assets/69967e80-6cfb-4d25-b9d3-f3f031190580/download/
- https://dandiarchive.s3.amazonaws.com/zarr/3fb354b5-1b4e-4bc9-8671-7a46d832ce05/
dateModified: '2025-03-10T12:04:44.899715-04:00'
digest:
dandi:dandi-zarr-checksum: 493ff29bcf09c8cebd30bc37fe795ffc-11236--8498618797
encodingFormat: application/x-zarr
id: dandiasset:69967e80-6cfb-4d25-b9d3-f3f031190580
identifier: 69967e80-6cfb-4d25-b9d3-f3f031190580
path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-01_OCT.ome.zarr
schemaKey: Asset
schemaVersion: 0.6.9
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2025-03-10T12:04:44.899634-04:00'
id: urn:uuid:139e2e90-c5f4-4800-9a3f-c1269dcd7c49
name: Metadata generation
schemaKey: Activity
startDate: '2025-03-10T12:04:44.899634-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.67.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2025-03-06T13:34:42.793776-05:00'
contentSize: 18248536509
contentUrl:
- https://api.dandiarchive.org/api/assets/b8c658cd-d820-4d13-b1b9-b4e11772b7c6/download/
- https://dandiarchive.s3.amazonaws.com/zarr/e9c96afb-fa0a-4a9f-b55e-595cff9c2b97/
dateModified: '2025-03-10T12:04:50.859663-04:00'
digest:
dandi:dandi-zarr-checksum: 9c5458f58e7e06881ae95901a9c92de1-26960--18248536509
encodingFormat: application/x-zarr
id: dandiasset:b8c658cd-d820-4d13-b1b9-b4e11772b7c6
identifier: b8c658cd-d820-4d13-b1b9-b4e11772b7c6
path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-03_OCT.ome.zarr
schemaKey: Asset
schemaVersion: 0.6.9
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2025-03-10T12:04:50.859630-04:00'
id: urn:uuid:c0e00126-a449-47d6-ba3d-d9df14ac05a0
name: Metadata generation
schemaKey: Activity
startDate: '2025-03-10T12:04:50.859630-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.67.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2025-03-06T13:23:06.211716-05:00'
contentSize: 20254828055
contentUrl:
- https://api.dandiarchive.org/api/assets/7f5e5948-eb32-4ccd-a971-44bef87e565d/download/
- https://dandiarchive.s3.amazonaws.com/zarr/4b5166c6-1980-482d-85ad-376eddf70e5a/
dateModified: '2025-03-10T12:04:52.996703-04:00'
digest:
dandi:dandi-zarr-checksum: 4433c5673508aa964e02cb3d7a7a56d3-30645--20254828055
encodingFormat: application/x-zarr
id: dandiasset:7f5e5948-eb32-4ccd-a971-44bef87e565d
identifier: 7f5e5948-eb32-4ccd-a971-44bef87e565d
path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-02_OCT.ome.zarr
schemaKey: Asset
schemaVersion: 0.6.9
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2025-03-10T12:04:52.996667-04:00'
id: urn:uuid:71fd3436-b3e0-43bf-9fd7-70a6a205d52b
name: Metadata generation
schemaKey: Activity
startDate: '2025-03-10T12:04:52.996667-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.67.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2025-03-06T14:11:31.692061-05:00'
contentSize: 26576179277
contentUrl:
- https://api.dandiarchive.org/api/assets/c6568030-2b4d-4214-8789-a32f688174c4/download/
- https://dandiarchive.s3.amazonaws.com/zarr/6241e713-3f1f-4b00-944c-381fe88980a5/
dateModified: '2025-03-10T12:04:59.397076-04:00'
digest:
dandi:dandi-zarr-checksum: d7f894bb9e134194b1e6c3f40911fa7c-41452--26576179277
encodingFormat: application/x-zarr
id: dandiasset:c6568030-2b4d-4214-8789-a32f688174c4
identifier: c6568030-2b4d-4214-8789-a32f688174c4
path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-04_OCT.ome.zarr
schemaKey: Asset
schemaVersion: 0.6.9
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2025-03-10T12:04:59.397037-04:00'
id: urn:uuid:523eeb48-c776-4a38-bd55-c1f67d86476f
name: Metadata generation
schemaKey: Activity
startDate: '2025-03-10T12:04:59.397037-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.67.0
Tip!
Press p or to see the previous file or,
n or to see the next file