Sourcedata

sourcedata/
├── archive/          # Archived materials (notes, pilot data, recruitment, legacy staging)
│   ├── notes/
│   ├── pilot/
│   ├── rawto_be_bids/    # Legacy staging area (migrated; kept for reference)
│   └── recruitment/
├── dicoms/           # Raw DICOMs (sub-01 through sub-05)
├── shared/           # Shared resources
│   ├── conversion/       # BIDS conversion configs, event file generators, file inventory
│   ├── experiment_code/  # Task implementations (localizer, cued/free recall, final session)
│   ├── scan_logs/        # Scanning session logs
│   └── stimuli/          # Stimulus preparation metadata
├── sub-03/           # Per-subject organized sourcedata
│   ├── ses-01/ through ses-30/
│   │   ├── audio/        # Microphone recordings (.wav), voice memos (.m4a), transcriptions
│   │   ├── behavioral/   # PsychoPy output (.csv, .log, .psydat)
│   │   ├── dicom/        # Raw DICOM series directories
│   │   ├── eyetracking/  # EyeLink EDF files
│   │   └── other/        # Miscellaneous session files
├── sub-04/
└── sub-05/
  • Pilot subjects (sub-01, sub-02) have DICOMs in dicoms/ but are not BIDSified.
  • Per-subject sourcedata is organized by session with modality subdirectories (audio/, behavioral/, dicom/, eyetracking/, other/).
  • The legacy rawto_be_bids/ staging area has been moved to archive/. All active source files now live in the per-subject structure.
  • shared/conversion/ contains the file inventory (file_inventory.csv) and event file generation scripts used by the automated BIDS conversion pipeline.