-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbundle-config.json
More file actions
1243 lines (1243 loc) · 34.9 KB
/
bundle-config.json
File metadata and controls
1243 lines (1243 loc) · 34.9 KB
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
{
"version": "1.0",
"description": "PEBL Bundle Build Configuration - defines all data bundles to be created",
"_comment": [
"BUNDLE TYPES:",
"",
"1. CORE RUNTIME (pebl2.data) - NOT DEFINED HERE",
" - Created by Makefile during 'make em-opt' via --preload-file flags",
" - Contains: emscripten/pebl-lib/*.pbl and emscripten/media/*",
" - Size: ~3MB (fonts, images, sounds, standard library)",
" - Always loaded automatically with pebl2.js",
" - DO NOT recreate this as a bundle - it's already embedded in the main build",
"",
"2. BATTERY BUNDLES (core-battery.data)",
" - Curated collections of tests for specific purposes",
" - Uses 'manifest' field to specify which tests to include from upload-battery/",
" - May be auto-loaded by default for all users",
" - Example: core-battery includes ~44 standard tests",
"",
"3. INDIVIDUAL TEST BUNDLES (test-bundles/*.data)",
" - Single tests or small test collections that are large or specialized",
" - Loaded on-demand when user runs that specific test",
" - Stored in bin/test-bundles/ directory",
" - Examples: pcst (5.5MB with audio), bcst-64, simon, TNT, luckvogel",
"",
"4. PRIVATE/RESTRICTED BUNDLES (private_uploads.data)",
" - Tests requiring individual access grants",
" - Stored in bin/ (not test-bundles/)",
" - Loaded only for authorized users",
" - Example: private_uploads contains MRT and spatialgrid"
],
"bundles": {
"core_battery": {
"name": "core-battery",
"type": "battery_bundle",
"description": "Standard PEBL test battery (curated tests from upload-battery)",
"output_dir": "bin",
"manifest": "core-battery-manifest.json",
"includes": [
{
"path": "upload-battery",
"mount": "/usr/local/share/pebl2/battery",
"description": "Standard test battery"
}
],
"excludes": [
"*/data/*",
"*/.git/*",
"*~",
"*.config",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
}
},
"test_bundles": [
{
"name": "affectgrid",
"type": "test_bundle",
"description": "PEBL Affect Grid - Self-report emotional state assessment",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/affectgrid",
"mount": "/usr/local/share/pebl2/battery/affectgrid",
"description": "Affect Grid test with 7 translations"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"affectgrid"
]
}
},
{
"name": "pcst",
"type": "test_bundle",
"description": "PEBL Cognitive Screening Test with audio instruction files",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "battery/PCST",
"mount": "/usr/local/share/pebl2/battery/PCST",
"description": "PCST test files including audio"
}
],
"excludes": [
"*/data/*",
"*~"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 5.5,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"pcst"
]
}
},
{
"name": "bcst-64",
"type": "test_bundle",
"description": "Berg Card Sort Test - 64 card version with stimulus images",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/bcst-64",
"mount": "/usr/local/share/pebl2/battery/bcst-64",
"description": "BCST-64 test files including card images"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.6,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"bcst-64"
]
}
},
{
"name": "simon",
"type": "test_bundle",
"description": "Simon Task - Spatial stimulus-response compatibility test",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/simon",
"mount": "/usr/local/share/pebl2/battery/simon",
"description": "Simon task test files"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"simon"
]
}
},
{
"name": "TNT",
"type": "test_bundle",
"description": "Toulouse N-back Task - Working memory test with 0/1/2-back conditions",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/TNT",
"mount": "/usr/local/share/pebl2/battery/TNT",
"description": "TNT test files"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"TNT"
]
}
},
{
"name": "luckvogel",
"type": "test_bundle",
"description": "Luck & Vogel Visual Change Detection - Visual working memory capacity test",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/luckvogel",
"mount": "/usr/local/share/pebl2/battery/luckvogel",
"description": "Luck & Vogel test files"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"luckvogel"
]
}
},
{
"name": "maze",
"type": "test_bundle",
"description": "PEBL maze-solving task. Tests visual-spatial planning and problem solving",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/maze",
"mount": "/usr/local/share/pebl2/battery/maze",
"description": "Maze Solving Task test files"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"maze"
]
}
},
{
"name": "matrixrotation",
"type": "test_bundle",
"description": "Matrix Rotation - Mental imagery task for spatial rotation ability",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/matrixrotation",
"mount": "/usr/local/share/pebl2/battery/matrixrotation",
"description": "Matrix Rotation test files"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"matrixrotation"
]
}
},
{
"name": "globallocal",
"type": "test_bundle",
"description": "Global-Local Processing Task - Navon hierarchical letter task testing attention and processing",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/globallocal",
"mount": "/usr/local/share/pebl2/battery/globallocal",
"description": "Global-Local task files including multiple stimuli sets and translations"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.2,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"globallocal"
]
}
},
{
"name": "ptrails",
"type": "test_bundle",
"description": "PEBL Trails Test - Trail-making task with multiple display types and path optimization",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/ptrails",
"mount": "/usr/local/share/pebl2/battery/ptrails",
"description": "PEBL Trails test files with example data and HTML reports"
}
],
"excludes": [
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"ptrails"
]
}
},
{
"name": "spanvariants",
"type": "test_bundle",
"description": "Span Variants Test - 9 working memory span tasks (forward/backward digit/letter/mixed spans plus ordering tasks)",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/spanvariants",
"mount": "/usr/local/share/pebl2/battery/spanvariants",
"description": "Span Variants test files with 20 language translations and audio support"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.2,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"spanvariants"
]
}
},
{
"name": "chimptest",
"type": "test_bundle",
"description": "Chimp Test - Number working memory task based on Ayumu chimp memory test (Inoue & Matsuzawa 2007)",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/chimptest",
"mount": "/usr/local/share/pebl2/battery/chimptest",
"description": "Chimp Test files with masking and limited-hold variants"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"chimptest"
]
}
},
{
"name": "digitsymbol",
"type": "test_bundle",
"description": "Digit-Symbol Substitution Test - Processing speed and associative learning test with 4 task modes (Wechsler, 1981)",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/digitsymbol",
"mount": "/usr/local/share/pebl2/battery/digitsymbol",
"description": "Digit-Symbol test with 7 translations, 4 modes (symbol→digit, digit→symbol, letter→digit, digit→letter)"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"digitsymbol"
]
}
},
{
"name": "dccs",
"type": "test_bundle",
"description": "Dimensional Change Card Sort Test - Executive function and cognitive flexibility assessment with audio narration",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/dccs",
"mount": "/usr/local/share/pebl2/battery/dccs",
"description": "DCCS test files including card images and audio narration"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png",
"*.pdf"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 1.5,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"dccs"
]
}
},
{
"name": "linejudgment",
"type": "test_bundle",
"description": "Line Judgment Task - Speed-accuracy tradeoff task comparing line lengths (Henmon, 1910)",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/linejudgment",
"mount": "/usr/local/share/pebl2/battery/linejudgment",
"description": "Line judgment test files with 7 translations and 8 response modes"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"linejudgment"
]
}
},
{
"name": "timetap",
"type": "test_bundle",
"description": "Time-Tapping Task - Motor timing task measuring self-paced tapping consistency (UTC-PAB test 19)",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/timetap",
"mount": "/usr/local/share/pebl2/battery/timetap",
"description": "Time-tapping test files with 7 translations and visual timer feedback"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"timetap"
]
}
},
{
"name": "vsearch",
"type": "test_bundle",
"description": "Visual Search Task - Two-phase visual search paradigm with color and character targets",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/vsearch",
"mount": "/usr/local/share/pebl2/battery/vsearch",
"description": "Visual search test files with 8 translations and layout integration"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"vsearch"
]
}
},
{
"name": "nback",
"type": "test_bundle",
"description": "Dual N-Back Task - Working memory test with auditory/visual letters/numbers and spatial positions",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/nback",
"mount": "/usr/local/share/pebl2/battery/nback",
"description": "Dual N-back test files with audio sounds and 4 translations"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.15,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"nback"
]
}
},
{
"name": "dualtask",
"type": "test_bundle",
"description": "Dual-Task Interference Test - Multi-task performance test measuring dual-task interference effects",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/dualtask",
"mount": "/usr/local/share/pebl2/battery/dualtask",
"description": "Dual-task test files with translations and layout integration"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"dualtask"
]
}
},
{
"name": "hicks",
"type": "test_bundle",
"description": "Hick's Law Task - Choice reaction time task demonstrating logarithmic RT increase with response alternatives",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/hicks",
"mount": "/usr/local/share/pebl2/battery/hicks",
"description": "Hick's Law task with layout integration and LSL support"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"hicks"
]
}
},
{
"name": "twocoladd",
"type": "test_bundle",
"description": "Two-Column Addition Test - Mental arithmetic task requiring addition of three two-digit numbers (UTC-PAB Test 4)",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/twocoladd",
"mount": "/usr/local/share/pebl2/battery/twocoladd",
"description": "Two-column addition test with HTML-lite formatted instructions"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"twocoladd"
]
}
},
{
"name": "tracking",
"type": "test_bundle",
"description": "Tracking Task - Continuous mouse tracking with optional x/y axis reversal for sensorimotor adaptation testing",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/tracking",
"mount": "/usr/local/share/pebl2/battery/tracking",
"description": "Tracking task with LSL integration and layout support"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"tracking"
]
}
},
{
"name": "movetotarget",
"type": "test_bundle",
"description": "Move-to-Target Task - Rapid pointing task with optional x/y axis reversal for sensorimotor adaptation testing",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/movetotarget",
"mount": "/usr/local/share/pebl2/battery/movetotarget",
"description": "Move-to-target task with LSL integration and layout support"
}
],
"excludes": [
"**/data/**",
"**/.Rhistory",
"*~",
"*.pbl.png",
"**/analysis.*"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"movetotarget"
]
}
},
{
"name": "tsp",
"type": "test_bundle",
"description": "Traveling Salesman Problem Task - Path optimization task testing visual-spatial planning and route finding",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/tsp",
"mount": "/usr/local/share/pebl2/battery/tsp",
"description": "TSP test files including tour problems and 10 translations"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"tsp"
]
}
},
{
"name": "ospan",
"type": "test_bundle",
"description": "Operation Span Task - Complex working memory span task combining math processing with letter recall (Unsworth et al., 2005)",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/ospan",
"mount": "/usr/local/share/pebl2/battery/ospan",
"description": "OSPAN test files with distraction tasks and translations"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png",
"*.pbl~",
"*.json~"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"ospan"
]
}
},
{
"name": "symmetryspan",
"type": "test_bundle",
"description": "Symmetry Span Task - Visuospatial working memory span task combining symmetry judgments with spatial location recall (Kane et al., 2004)",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/symmetryspan",
"mount": "/usr/local/share/pebl2/battery/symmetryspan",
"description": "Symmetry Span test files with symmetry images and 7 translations"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png",
"*.pbl~",
"*.json~"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.3,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"symmetryspan"
]
}
},
{
"name": "readingspan",
"type": "test_bundle",
"description": "Reading Span Task - Complex working memory span task combining sentence processing with letter recall (Daneman & Carpenter, 1980; Unsworth et al., 2009)",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/readingspan",
"mount": "/usr/local/share/pebl2/battery/readingspan",
"description": "Reading Span test files with sentence distraction tasks and 7 translations"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png",
"*.pbl~",
"*.json~"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1,
"catalog_entry": {
"base_url": "/runtime/test-bundles",
"tests": [
"readingspan"
]
}
},
{
"name": "private_uploads",
"type": "test_bundle",
"description": "Private tests requiring individual access grants (MRT, spatialgrid)",
"output_dir": "bin",
"includes": [
{
"path": "private_tasks/MRT",
"mount": "/usr/local/share/pebl2/private_battery/MRT",
"description": "Mental Rotation Test"
},
{
"path": "private_tasks/spatialgrid",
"mount": "/usr/local/share/pebl2/private_battery/spatialgrid",
"description": "Spatial Grid Memory Test"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png",
"*.csv"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 3.6,
"catalog_entry": {
"base_url": "/runtime",
"tests": [
"MRT",
"spatialgrid"
]
}
},
{
"name": "evenodd",
"type": "test_bundle",
"description": "Even/Odd Classification Task",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/evenodd",
"mount": "/usr/local/share/pebl2/battery/evenodd",
"description": "Even/Odd task with translations"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1
},
{
"name": "dotjudgment",
"type": "test_bundle",
"description": "Dot Numerosity Judgment Task",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/dotjudgment",
"mount": "/usr/local/share/pebl2/battery/dotjudgment",
"description": "Dot Judgment task with translations"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1
},
{
"name": "sternberg",
"type": "test_bundle",
"description": "Sternberg Memory Scanning Task",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/sternberg",
"mount": "/usr/local/share/pebl2/battery/sternberg",
"description": "Sternberg task with 7 translations"
}
],
"excludes": [
"*/data/*",
"*~",
"*.pbl.png"
],
"options": {
"use_preload_cache": true,
"separate_metadata": true,
"lz4": false
},
"size_mb": 0.1
},
{
"name": "mathproc",
"type": "test_bundle",
"description": "Math Processing Task",
"output_dir": "bin/test-bundles",
"includes": [
{
"path": "upload-battery/mathproc",
"mount": "/usr/local/share/pebl2/battery/mathproc",
"description": "Math Processing task with 7 translations"
}
],
"excludes": [
"*/data/*",
"*~",