Fig 1. Anti-saccade task, taken from Luna et al, NeuroImage, 2001.
Scoring by Automatic Eye Scoring, see github readme citation section lab papers methods quotes. See Eye Tracking for camera hardware.
The breakdown of antisaccade tasks is below. For all Eye Tracking tasks, see EyeTracking Task Table (includes Memory Guided Saccade (MGS) Task).
Version | sides | cue | timing |
---|---|---|---|
Dollar Reward | 6 | rew/nue | .5s cue |
Anti Antisaccade Task | 4 | red cross | var cue, var iti |
Antistate | |||
bars | rew/pun w/levels |
Dates | Project | Location | version | Tracker | File |
---|---|---|---|---|---|
Cog | Loef | DollarReward | ASL | ||
Cog | NIC | DollarReward (MR) | ASL LRO | ||
Reward | Loef | Bars | ASL | ||
Reward | MRRC | Bars (MR) | ASL LRO | ||
PET | MRRC (mMR) | Frogger | ASL LRO | ||
2018-01-24 - 2022-10-27 | 7T | Loef | Anti | ASL | |
7T | BST3 | mgs_encode | ASL LRO | ||
7T | EEG | Anti | EOG | ||
Habit | Loef | DollarReward | ASL,EyeLink | ||
Habit | EEG | DollarReward | EOG | ||
SPA | Loef | DollarReward | ASL,EyeLink? | ||
SPA | EEG | Anti | EOG |
-in progress
RAW FILES FROM EYE TRACKER ARE EDF OR EYD—– NEED TO BE CONVERTED TO ASC FOR SCRIPT TO WORK
To score, you need to
alldollarreward_data ← score_all_anti(“/Volumes/L/bea_res/Data/Temporary Raw Data/lab_eyetracker/subj_info/sub-1*/ses*/*_DollarReward/sub_*.asc*”)
]Data should have a row for every trial (repeating lunaid) and saccade information per column (ex: dot position, trial type, latency, number of saccades, and computed event outcome)
Coding outcome from Automatic Eye Scoring:
-1
, dropped event or bad eye tracking0
, incorrect- the participant looked directly at the stimulus1
, correct- the participant looked in the opposite direction of the stimulus2
, error corrected- the participant first looked at the stimulus then looked in the opposite directionpercent of error corrected trials is computed as trials scored 2/0+1+2, can be computed as 2/1+2.
Raw files from EEG are .bdf and can be read immediately into MATLAB script
/Volumes/Hera/Projects/7TBrainMech/scripts/eeg/eog_cal
]/Volumes/Hera/Raw/EEG/Habit
]subject*_anti.bdf
and subject*_eyecal.bdf
Processed csv read into R
STEPS REPEATED AS ABOVE FOR BEHAVIORAL DATA
/Volumes/Hera/Victoria/Antisaccade-impulsive-control/EOG_Antisaccade_cleaning.Rmd
] **percent of error corrected trials is computed as trials scored 2/1+2.
/Volumes/Hera/Victoria/Antisaccade-impulsive-control/Analysis_EOG_as_data.Rmd
] For 7T EEG
[micromed_time, mark]=make_photodiodevector(EEG); iti = mode(mark); mark = mark - iti + 254; % 101-105: anti cue % 151-155: target (dot on, look away) % 254 = back to fixation simple = nan(size(mark)); simple(mark == 254)= 1; % (New ITI) simple(mark>=100 & mark<110)= 2; % (new Anti cue - red fixation cross, prepatory) simple(mark>=150 & mark<= 155)= 3; % (new dot on, look away)