-
Notifications
You must be signed in to change notification settings - Fork 0
/
updateCustomDataFields.m
407 lines (383 loc) · 23.9 KB
/
updateCustomDataFields.m
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
function updateCustomDataFields(iTrial)
global BpodSystem
global TaskParameters
%% Standard values
BpodSystem.Data.Custom.ChoiceLeft(iTrial) = NaN;
BpodSystem.Data.Custom.ChoiceCorrect(iTrial) = NaN;
BpodSystem.Data.Custom.Feedback(iTrial) = true;
BpodSystem.Data.Custom.FeedbackTime(iTrial) = NaN;
BpodSystem.Data.Custom.FixBroke(iTrial) = false;
BpodSystem.Data.Custom.EarlyWithdrawal(iTrial) = false;
BpodSystem.Data.Custom.FixDur(iTrial) = NaN;
BpodSystem.Data.Custom.MT(iTrial) = NaN;
BpodSystem.Data.Custom.ST(iTrial) = NaN;
BpodSystem.Data.Custom.Rewarded(iTrial) = false;
BpodSystem.Data.Custom.TrialNumber(iTrial) = iTrial;
%% Checking states and rewriting standard
statesThisTrial = BpodSystem.Data.RawData.OriginalStateNamesByNumber{iTrial}(BpodSystem.Data.RawData.OriginalStateData{iTrial});
if any(strcmp('stay_Cin',statesThisTrial))
BpodSystem.Data.Custom.FixDur(iTrial) = diff(BpodSystem.Data.RawEvents.Trial{end}.States.stay_Cin);
end
if any(strcmp('stimulus_delivery_min',statesThisTrial))
if any(strcmp('stimulus_delivery',statesThisTrial))
BpodSystem.Data.Custom.ST(iTrial) = BpodSystem.Data.RawEvents.Trial{end}.States.stimulus_delivery(1,2) - BpodSystem.Data.RawEvents.Trial{end}.States.stimulus_delivery_min(1,1);
else
BpodSystem.Data.Custom.ST(iTrial) = diff(BpodSystem.Data.RawEvents.Trial{end}.States.stimulus_delivery_min);
end
end
if any(strcmp('wait_Sin',statesThisTrial))
BpodSystem.Data.Custom.MT(end) = diff(BpodSystem.Data.RawEvents.Trial{end}.States.wait_Sin);
end
if any(strcmp('rewarded_Lin',statesThisTrial))
BpodSystem.Data.Custom.ChoiceLeft(iTrial) = 1;
BpodSystem.Data.Custom.ChoiceCorrect(iTrial) = 1;
FeedbackPortTimes = BpodSystem.Data.RawEvents.Trial{end}.States.rewarded_Lin;
BpodSystem.Data.Custom.FeedbackTime(iTrial) = FeedbackPortTimes(end,end)-FeedbackPortTimes(1,1);
elseif any(strcmp('rewarded_Rin',statesThisTrial))
BpodSystem.Data.Custom.ChoiceLeft(iTrial) = 0;
BpodSystem.Data.Custom.ChoiceCorrect(iTrial) = 1;
FeedbackPortTimes = BpodSystem.Data.RawEvents.Trial{end}.States.rewarded_Rin;
BpodSystem.Data.Custom.FeedbackTime(iTrial) = FeedbackPortTimes(end,end)-FeedbackPortTimes(1,1);
elseif any(strcmp('unrewarded_Lin',statesThisTrial))
BpodSystem.Data.Custom.ChoiceLeft(iTrial) = 1;
BpodSystem.Data.Custom.ChoiceCorrect(iTrial) = 0;
FeedbackPortTimes = BpodSystem.Data.RawEvents.Trial{end}.States.unrewarded_Lin;
BpodSystem.Data.Custom.FeedbackTime(iTrial) = FeedbackPortTimes(end,end)-FeedbackPortTimes(1,1);
elseif any(strcmp('unrewarded_Rin',statesThisTrial))
BpodSystem.Data.Custom.ChoiceLeft(iTrial) = 0;
BpodSystem.Data.Custom.ChoiceCorrect(iTrial) = 0;
FeedbackPortTimes = BpodSystem.Data.RawEvents.Trial{end}.States.unrewarded_Rin;
BpodSystem.Data.Custom.FeedbackTime(iTrial) = FeedbackPortTimes(end,end)-FeedbackPortTimes(1,1);
elseif any(strcmp('broke_fixation',statesThisTrial))
BpodSystem.Data.Custom.FixBroke(iTrial) = true;
elseif any(strcmp('early_withdrawal',statesThisTrial))
BpodSystem.Data.Custom.EarlyWithdrawal(iTrial) = true;
end
if any(strcmp('missed_choice',statesThisTrial))
BpodSystem.Data.Custom.Feedback(iTrial) = false;
end
if any(strcmp('skipped_feedback',statesThisTrial))
BpodSystem.Data.Custom.Feedback(iTrial) = false;
end
if any(strncmp('water_',statesThisTrial,6))
BpodSystem.Data.Custom.Rewarded(iTrial) = true;
end
%% State-independent fields
BpodSystem.Data.Custom.StimDelay(iTrial) = TaskParameters.GUI.StimDelay;
BpodSystem.Data.Custom.FeedbackDelay(iTrial) = TaskParameters.GUI.FeedbackDelay;
BpodSystem.Data.Custom.MinSampleAud(iTrial) = TaskParameters.GUI.MinSampleAud;
% if BpodSystem.Data.Custom.BlockNumber(iTrial) < max(TaskParameters.GUI.BlockTable.BlockNumber) % Not final block
% if BpodSystem.Data.Custom.BlockTrial(iTrial) >= TaskParameters.GUI.BlockTable.BlockLen(TaskParameters.GUI.BlockTable.BlockNumber...
% ==BpodSystem.Data.Custom.BlockNumber(iTrial)) % Block transition
% BpodSystem.Data.Custom.BlockNumber(iTrial+1) = BpodSystem.Data.Custom.BlockNumber(iTrial) + 1;
% BpodSystem.Data.Custom.BlockTrial(iTrial+1) = 1;
% else
% BpodSystem.Data.Custom.BlockNumber(iTrial+1) = BpodSystem.Data.Custom.BlockNumber(iTrial);
% BpodSystem.Data.Custom.BlockTrial(iTrial+1) = BpodSystem.Data.Custom.BlockTrial(iTrial) + 1;
% end
% else % Final block
% BpodSystem.Data.Custom.BlockTrial(iTrial+1) = BpodSystem.Data.Custom.BlockTrial(iTrial) + 1;
% BpodSystem.Data.Custom.BlockNumber(iTrial+1) = BpodSystem.Data.Custom.BlockNumber(iTrial);
% end
BpodSystem.Data.Custom.RewardMagnitude(iTrial+1,:) = TaskParameters.GUI.RewardAmount*[1,1];%...
% [TaskParameters.GUI.BlockTable.RewL(TaskParameters.GUI.BlockTable.BlockNumber==BpodSystem.Data.Custom.BlockNumber(iTrial+1)),...
% TaskParameters.GUI.BlockTable.RewR(TaskParameters.GUI.BlockTable.BlockNumber==BpodSystem.Data.Custom.BlockNumber(iTrial+1))];
%% Updating Delays
%stimulus delay
if TaskParameters.GUI.StimDelayAutoincrement
if BpodSystem.Data.Custom.FixBroke(iTrial)
TaskParameters.GUI.StimDelay = max(TaskParameters.GUI.StimDelayMin,...
min(TaskParameters.GUI.StimDelayMax,BpodSystem.Data.Custom.StimDelay(iTrial)-TaskParameters.GUI.StimDelayDecr));
else
TaskParameters.GUI.StimDelay = min(TaskParameters.GUI.StimDelayMax,...
max(TaskParameters.GUI.StimDelayMin,BpodSystem.Data.Custom.StimDelay(iTrial)+TaskParameters.GUI.StimDelayIncr));
end
else
if ~BpodSystem.Data.Custom.FixBroke(iTrial)
TaskParameters.GUI.StimDelay = random('unif',TaskParameters.GUI.StimDelayMin,TaskParameters.GUI.StimDelayMax);
else
TaskParameters.GUI.StimDelay = BpodSystem.Data.Custom.StimDelay(iTrial);
end
end
%min sampling time auditory
if TaskParameters.GUI.MinSampleAudAutoincrement
History = 50;
Crit = 0.8;
if sum(BpodSystem.Data.Custom.AuditoryTrial)<10
ConsiderTrials = iTrial;
else
idxStart = find(cumsum(BpodSystem.Data.Custom.AuditoryTrial(iTrial:-1:1))>=History,1,'first');
if isempty(idxStart)
ConsiderTrials = 1:iTrial;
else
ConsiderTrials = iTrial-idxStart+1:iTrial;
end
end
ConsiderTrials = ConsiderTrials((~isnan(BpodSystem.Data.Custom.ChoiceLeft(ConsiderTrials))...
|BpodSystem.Data.Custom.EarlyWithdrawal(ConsiderTrials))&BpodSystem.Data.Custom.AuditoryTrial(ConsiderTrials)); %choice + early withdrawal + auditory trials
if ~isempty(ConsiderTrials) && BpodSystem.Data.Custom.AuditoryTrial(iTrial)
if mean(BpodSystem.Data.Custom.ST(ConsiderTrials)>TaskParameters.GUI.MinSampleAud) > Crit
if ~BpodSystem.Data.Custom.EarlyWithdrawal(iTrial)
TaskParameters.GUI.MinSampleAud = min(TaskParameters.GUI.MinSampleAudMax,...
max(TaskParameters.GUI.MinSampleAudMin,BpodSystem.Data.Custom.MinSampleAud(iTrial) + TaskParameters.GUI.MinSampleAudIncr));
end
elseif mean(BpodSystem.Data.Custom.ST(ConsiderTrials)>TaskParameters.GUI.MinSampleAud) < Crit/2
if BpodSystem.Data.Custom.EarlyWithdrawal(iTrial)
TaskParameters.GUI.MinSampleAud = max(TaskParameters.GUI.MinSampleAudMin,...
min(TaskParameters.GUI.MinSampleAudMax,BpodSystem.Data.Custom.MinSampleAud(iTrial) - TaskParameters.GUI.MinSampleAudDecr));
end
else
TaskParameters.GUI.MinSampleAud = max(TaskParameters.GUI.MinSampleAudMin,...
min(TaskParameters.GUI.MinSampleAudMax,BpodSystem.Data.Custom.MinSampleAud(iTrial)));
end
else
TaskParameters.GUI.MinSampleAud = max(TaskParameters.GUI.MinSampleAudMin,...
min(TaskParameters.GUI.MinSampleAudMax,BpodSystem.Data.Custom.MinSampleAud(iTrial)));
end
else
TaskParameters.GUI.MinSampleAud = TaskParameters.GUI.MinSampleAudMin;
end
%feedback delay
switch TaskParameters.GUIMeta.FeedbackDelaySelection.String{TaskParameters.GUI.FeedbackDelaySelection}
case 'AutoIncr'
if ~BpodSystem.Data.Custom.Feedback(iTrial)
TaskParameters.GUI.FeedbackDelay = max(TaskParameters.GUI.FeedbackDelayMin,...
min(TaskParameters.GUI.FeedbackDelayMax,BpodSystem.Data.Custom.FeedbackDelay(iTrial)-TaskParameters.GUI.FeedbackDelayDecr));
else
TaskParameters.GUI.FeedbackDelay = min(TaskParameters.GUI.FeedbackDelayMax,...
max(TaskParameters.GUI.FeedbackDelayMin,BpodSystem.Data.Custom.FeedbackDelay(iTrial)+TaskParameters.GUI.FeedbackDelayIncr));
end
case 'TruncExp'
TaskParameters.GUI.FeedbackDelay = TruncatedExponential(TaskParameters.GUI.FeedbackDelayMin,...
TaskParameters.GUI.FeedbackDelayMax,TaskParameters.GUI.FeedbackDelayTau);
case 'Fix'
% ATTEMPT TO GRAY OUT FIELDS
% if ~strcmp('edit',TaskParameters.GUIMeta.FeedbackDelay.Style)
% TaskParameters.GUIMeta.FeedbackDelay.Style = 'edit';
% end
TaskParameters.GUI.FeedbackDelay = TaskParameters.GUI.FeedbackDelayMax;
end
%% Drawing future trials
%determine if catch trial
if iTrial > TaskParameters.GUI.StartEasyTrials
BpodSystem.Data.Custom.CatchTrial(iTrial+1) = rand(1,1) < TaskParameters.GUI.PercentCatch;
else
BpodSystem.Data.Custom.CatchTrial(iTrial+1) = false;
end
%create future trials
if iTrial > numel(BpodSystem.Data.Custom.DV) - 5
lastidx = numel(BpodSystem.Data.Custom.DV);
newAuditoryTrial = rand(1,5) < TaskParameters.GUI.PercentAuditory;
BpodSystem.Data.Custom.AuditoryTrial = [BpodSystem.Data.Custom.AuditoryTrial,newAuditoryTrial];
% if TaskParameters.GUI.AuditoryStimulusType == 1 %click stimuli
% BpodSystem.Data.Custom.ClickTask = [BpodSystem.Data.Custom.ClickTask ,true(1,5)];
% elseif TaskParameters.GUI.AuditoryStimulusType == 2 %freq stimuli
% BpodSystem.Data.Custom.ClickTask = [BpodSystem.Data.Custom.ClickTask ,false(1,5)];
% end
switch TaskParameters.GUIMeta.TrialSelection.String{TaskParameters.GUI.TrialSelection}
case 'Flat'
% TaskParameters.GUI.OdorTable.OdorProb = ones(size(TaskParameters.GUI.OdorTable.OdorProb));
TaskParameters.GUI.LeftBiasAud = 0.5;
case 'Manual'
% case 'Competitive'
% ndxValid = ~isnan(BpodSystem.Data.Custom.ChoiceLeft); ndxValid = ndxValid(:);
% for iStim = reshape(TaskParameters.GUI.OdorTable.OdorFracA,1,[])
% ndxOdor = BpodSystem.Data.Custom.OdorFracA(1:iTrial) == iStim; ndxOdor = ndxOdor(:);
% if sum(ndxOdor&ndxValid) >= 8 % P(odor) = fraction of completed but unrewarded trials.
% TaskParameters.GUI.OdorTable.OdorProb(iStim == TaskParameters.GUI.OdorTable.OdorFracA) = ...
% sum(BpodSystem.Data.Custom.Rewarded(ndxOdor&ndxValid)==0)/sum(ndxOdor&ndxValid);
% else % If too few trials of this type, P(odor) is arbitrary non-zero.
% TaskParameters.GUI.OdorTable.OdorProb(iStim == TaskParameters.GUI.OdorTable.OdorFracA) = 0.5;
% end
% end
% if any(TaskParameters.GUI.OdorTable.OdorProb==0)
% TaskParameters.GUI.OdorTable.OdorProb(TaskParameters.GUI.OdorTable.OdorProb==0) = ...
% min(TaskParameters.GUI.OdorTable.OdorProb(TaskParameters.GUI.OdorTable.OdorProb>0))/2;
% end
% TaskParameters.GUI.LeftBiasAud = 0.5;%auditory not implemented
case 'BiasCorrecting' % Favors side with fewer rewards. Contrast drawn flat & independently.
% %olfactory
% ndxRewd = BpodSystem.Data.Custom.Rewarded(1:iTrial) == 1 & ~BpodSystem.Data.Custom.AuditoryTrial(1:iTrial); ndxRewd = ndxRewd(:);
% oldOdorID = BpodSystem.Data.Custom.OdorID(1:numel(ndxRewd)); oldOdorID = oldOdorID(:);
% if any(ndxRewd) % To prevent division by zero
% TaskParameters.GUI.OdorTable.OdorProb(TaskParameters.GUI.OdorTable.OdorFracA<50) = 1-sum(oldOdorID==2 & ndxRewd)/sum(ndxRewd);
% TaskParameters.GUI.OdorTable.OdorProb(TaskParameters.GUI.OdorTable.OdorFracA>50) = 1-sum(oldOdorID==1 & ndxRewd)/sum(ndxRewd);
% else
% TaskParameters.GUI.OdorTable.OdorProb(TaskParameters.GUI.OdorTable.OdorFracA<50) = .5;
% TaskParameters.GUI.OdorTable.OdorProb(TaskParameters.GUI.OdorTable.OdorFracA>50) = .5;
% end
%auditory
ndxRewd = BpodSystem.Data.Custom.Rewarded(1:iTrial) == 1 & BpodSystem.Data.Custom.AuditoryTrial(1:iTrial);
if sum(ndxRewd)>10
TaskParameters.GUI.LeftBiasAud = sum(BpodSystem.Data.Custom.LeftRewarded(1:iTrial)==1&ndxRewd)/sum(ndxRewd);
else
TaskParameters.GUI.LeftBiasAud = 0.5;
end
% if sum(ndxRewd)>10
% TaskParameters.GUI.Aud_Levels.AudPFrac(TaskParameters.GUI.Aud_Levels.AudFracHigh<50) = TaskParameters.GUI.LeftBiasAud;
% TaskParameters.GUI.Aud_Levels.AudPFrac(TaskParameters.GUI.Aud_Levels.AudFracHigh>50) = 1 - TaskParameters.GUI.LeftBiasAud;
% end
end
% if sum(TaskParameters.GUI.OdorTable.OdorProb) == 0
% TaskParameters.GUI.OdorTable.OdorProb = ones(size(TaskParameters.GUI.OdorTable.OdorProb));
% end
% TaskParameters.GUI.OdorTable.OdorProb = TaskParameters.GUI.OdorTable.OdorProb/sum(TaskParameters.GUI.OdorTable.OdorProb);
%
% % make future olfactory trials
% if iTrial > TaskParameters.GUI.StartEasyTrials
% newFracA = randsample(TaskParameters.GUI.OdorTable.OdorFracA,5,1,TaskParameters.GUI.OdorTable.OdorProb);
% %include Fifty50 Trials
% NewFifty50 = rand(5,1) < TaskParameters.GUI.Percent50Fifty;
% newFracA(NewFifty50) = 50;
% else
% EasyProb = zeros(numel(TaskParameters.GUI.OdorTable.OdorProb),1);
% EasyProb(1) = 0.5; EasyProb(end)=0.5;
% newFracA = randsample(TaskParameters.GUI.OdorTable.OdorFracA,5,1,EasyProb);
% end
%
% newOdorID = 2 - double(newFracA > 50);
% if any(abs(newFracA-50)<(10*eps))
% ndxZeroInf = abs(newFracA-50)<(10*eps);
% newOdorID(ndxZeroInf) = randsample(2,sum(ndxZeroInf),1);
% end
% newOdorPair = ones(1,5)*2;
% newFracA(newAuditoryTrial) = nan(sum(newAuditoryTrial),1);
% newOdorID(newAuditoryTrial) = nan(sum(newAuditoryTrial),1);
% newOdorPair(newAuditoryTrial) = nan(1,sum(newAuditoryTrial));
% BpodSystem.Data.Custom.OdorFracA = [BpodSystem.Data.Custom.OdorFracA; newFracA];
% BpodSystem.Data.Custom.OdorID = [BpodSystem.Data.Custom.OdorID; newOdorID];
% BpodSystem.Data.Custom.OdorPair = [BpodSystem.Data.Custom.OdorPair, newOdorPair];
%
% make future auditory trials
%bias correcting
% switch TaskParameters.GUI.AuditoryStimulusType
% case 1 %click stimuli
if iTrial > TaskParameters.GUI.StartEasyTrials
AuditoryAlpha = TaskParameters.GUI.AuditoryAlpha;
else
AuditoryAlpha = TaskParameters.GUI.AuditoryAlpha/4;
end
BetaRatio = (1 - min(0.9,max(0.1,TaskParameters.GUI.LeftBiasAud))) / min(0.9,max(0.1,TaskParameters.GUI.LeftBiasAud)); %use a = ratio*b to yield E[X] = LeftBiasAud using Beta(a,b) pdf
%cut off between 0.1-0.9 to prevent extreme values (only one side) and div by zero
BetaA = (2*AuditoryAlpha*BetaRatio) / (1+BetaRatio); %make a,b symmetric around AuditoryAlpha to make B symmetric
BetaB = (AuditoryAlpha-BetaA) + AuditoryAlpha;
for a = 1:5
if BpodSystem.Data.Custom.AuditoryTrial(lastidx+a)
if rand(1,1) < TaskParameters.GUI.Percent50Fifty && iTrial > TaskParameters.GUI.StartEasyTrials
BpodSystem.Data.Custom.AuditoryOmega(lastidx+a) = 0.5;
else
BpodSystem.Data.Custom.AuditoryOmega(lastidx+a) = betarnd(max(0,BetaA),max(0,BetaB),1,1); %prevent negative parameters
end
BpodSystem.Data.Custom.LeftClickRate(lastidx+a) = round(BpodSystem.Data.Custom.AuditoryOmega(lastidx+a).*TaskParameters.GUI.SumRates);
BpodSystem.Data.Custom.RightClickRate(lastidx+a) = round((1-BpodSystem.Data.Custom.AuditoryOmega(lastidx+a)).*TaskParameters.GUI.SumRates);
BpodSystem.Data.Custom.LeftClickTrain{lastidx+a} = GeneratePoissonClickTrain(BpodSystem.Data.Custom.LeftClickRate(lastidx+a), TaskParameters.GUI.AuditoryStimulusTime);
BpodSystem.Data.Custom.RightClickTrain{lastidx+a} = GeneratePoissonClickTrain(BpodSystem.Data.Custom.RightClickRate(lastidx+a), TaskParameters.GUI.AuditoryStimulusTime);
%correct left/right click train
if ~isempty(BpodSystem.Data.Custom.LeftClickTrain{lastidx+a}) && ~isempty(BpodSystem.Data.Custom.RightClickTrain{lastidx+a})
BpodSystem.Data.Custom.LeftClickTrain{lastidx+a}(1) = min(BpodSystem.Data.Custom.LeftClickTrain{lastidx+a}(1),BpodSystem.Data.Custom.RightClickTrain{lastidx+a}(1));
BpodSystem.Data.Custom.RightClickTrain{lastidx+a}(1) = min(BpodSystem.Data.Custom.LeftClickTrain{lastidx+a}(1),BpodSystem.Data.Custom.RightClickTrain{lastidx+a}(1));
elseif isempty(BpodSystem.Data.Custom.LeftClickTrain{lastidx+a}) && ~isempty(BpodSystem.Data.Custom.RightClickTrain{lastidx+a})
BpodSystem.Data.Custom.LeftClickTrain{lastidx+a}(1) = BpodSystem.Data.Custom.RightClickTrain{lastidx+a}(1);
elseif ~isempty(BpodSystem.Data.Custom.LeftClickTrain{lastidx+a}) && isempty(BpodSystem.Data.Custom.RightClickTrain{lastidx+a})
BpodSystem.Data.Custom.RightClickTrain{lastidx+a}(1) = BpodSystem.Data.Custom.LeftClickTrain{lastidx+a}(1);
else
BpodSystem.Data.Custom.LeftClickTrain{lastidx+a} = round(1/BpodSystem.Data.Custom.LeftClickRate*10000)/10000;
BpodSystem.Data.Custom.RightClickTrain{lastidx+a} = round(1/BpodSystem.Data.Custom.RightClickRate*10000)/10000;
end
if length(BpodSystem.Data.Custom.LeftClickTrain{lastidx+a}) > length(BpodSystem.Data.Custom.RightClickTrain{lastidx+a})
BpodSystem.Data.Custom.LeftRewarded(lastidx+a) = 1;
elseif length(BpodSystem.Data.Custom.LeftClickTrain{lastidx+a}) < length(BpodSystem.Data.Custom.RightClickTrain{lastidx+a})
BpodSystem.Data.Custom.LeftRewarded(lastidx+a) = 0;
else
BpodSystem.Data.Custom.LeftRewarded(lastidx+a) = rand<0.5;
end
else
BpodSystem.Data.Custom.AuditoryOmega(lastidx+a) = NaN;
BpodSystem.Data.Custom.LeftClickRate(lastidx+a) = NaN;
BpodSystem.Data.Custom.RightClickRate(lastidx+a) = NaN;
BpodSystem.Data.Custom.LeftRewarded(lastidx+a) = NaN;
BpodSystem.Data.Custom.LeftClickTrain{lastidx+a} = [];
BpodSystem.Data.Custom.RightClickTrain{lastidx+a} = [];
end%if auditory
end%for a=1:5
% case 2 %freq stimuli
%
% StimulusSettings.SamplingRate = TaskParameters.GUI.Aud_SamplingRate; % Sound card sampling rate;
% StimulusSettings.ramp = TaskParameters.GUI.Aud_Ramp;
% StimulusSettings.nFreq = TaskParameters.GUI.Aud_nFreq; % Number of different frequencies to sample from
% StimulusSettings.ToneOverlap = TaskParameters.GUI.Aud_ToneOverlap;
% StimulusSettings.ToneDuration = TaskParameters.GUI.Aud_ToneDuration;
% StimulusSettings.Noevidence=TaskParameters.GUI.Aud_NoEvidence;
% StimulusSettings.minFreq = TaskParameters.GUI.Aud_minFreq ;
% StimulusSettings.maxFreq = TaskParameters.GUI.Aud_maxFreq ;
% StimulusSettings.UseMiddleOctave=TaskParameters.GUI.Aud_UseMiddleOctave;
% StimulusSettings.Volume=TaskParameters.GUI.Aud_Volume;
% StimulusSettings.nTones = floor((TaskParameters.GUI.AuditoryStimulusTime-StimulusSettings.ToneDuration*StimulusSettings.ToneOverlap)/(StimulusSettings.ToneDuration*(1-StimulusSettings.ToneOverlap))); %number of tones
% if iTrial > TaskParameters.GUI.StartEasyTrials
% newFracHigh = randsample(TaskParameters.GUI.Aud_Levels.AudFracHigh,5,1,TaskParameters.GUI.Aud_Levels.AudPFrac)';
% %include Fifty50 Trials
% NewFifty50 = rand(5,1) < TaskParameters.GUI.Percent50Fifty;
% newFracHigh(NewFifty50) = 50;
% else
% EasyProb = zeros(numel(TaskParameters.GUI.Aud_Levels.AudPFrac),1);
% EasyProb(1) = 0.5; EasyProb(end)=0.5;
% newFracHigh = randsample(TaskParameters.GUI.Aud_Levels.AudFracHigh,5,1,EasyProb)';
% end
%
% newCloud = cell(1,5);
% newSound = cell(1,5);
% for a = 1:5
% if BpodSystem.Data.Custom.AuditoryTrial(lastidx+a)
% [Sound, Cloud, ~] = GenerateToneCloudDual(newFracHigh(a)/100, StimulusSettings);
% newCloud{a} = Cloud;
% newSound{a} = Sound;
% end
% end
%
% LeftRewarded = newFracHigh>50;
% LeftRewarded (newFracHigh==050) = rand<0.5;
% newFracHigh(~newAuditoryTrial) = nan(sum(~newAuditoryTrial),1);
% BpodSystem.Data.Custom.AudFracHigh = [BpodSystem.Data.Custom.AudFracHigh, newFracHigh];
% BpodSystem.Data.Custom.AudCloud = [BpodSystem.Data.Custom.AudCloud, newCloud];
% BpodSystem.Data.Custom.AudSound = [BpodSystem.Data.Custom.AudSound, newSound];
% BpodSystem.Data.Custom.LeftRewarded = [BpodSystem.Data.Custom.LeftRewarded, LeftRewarded];
%
% end %switch/case auditory stimulus type
%
% cross-modality difficulty for plotting
for a = 1 : 5
if BpodSystem.Data.Custom.AuditoryTrial(lastidx+a)
% if BpodSystem.Data.Custom.ClickTask(lastidx+a)
BpodSystem.Data.Custom.DV(lastidx+a) = (length(BpodSystem.Data.Custom.LeftClickTrain{lastidx+a}) - length(BpodSystem.Data.Custom.RightClickTrain{lastidx+a}))./(length(BpodSystem.Data.Custom.LeftClickTrain{lastidx+a}) + length(BpodSystem.Data.Custom.RightClickTrain{lastidx+a}));
% else
% BpodSystem.Data.Custom.DV(lastidx+a) = (2*BpodSystem.Data.Custom.AudFracHigh(lastidx+a)-100)/100;
% end
else
% BpodSystem.Data.Custom.DV(lastidx+a) = (2*BpodSystem.Data.Custom.OdorFracA(lastidx+a)-100)/100;
end
end
end%if trial > - 5
% send auditory stimuli to PulsePal for next trial
if BpodSystem.Data.Custom.AuditoryTrial(iTrial+1)
if ~BpodSystem.EmulatorMode
SendCustomPulseTrain(1, BpodSystem.Data.Custom.RightClickTrain{iTrial+1}, ones(1,length(BpodSystem.Data.Custom.RightClickTrain{iTrial+1}))*5);
SendCustomPulseTrain(2, BpodSystem.Data.Custom.LeftClickTrain{iTrial+1}, ones(1,length(BpodSystem.Data.Custom.LeftClickTrain{iTrial+1}))*5);
% else
% PsychToolboxSoundServer('Load', 1, BpodSystem.Data.Custom.AudSound{iTrial+1});
% BpodSystem.Data.Custom.AudSound{iTrial+1} = {};
end
end
%%update hidden TaskParameter fields
TaskParameters.Figures.OutcomePlot.Position = BpodSystem.ProtocolFigures.SideOutcomePlotFig.Position;
TaskParameters.Figures.ParameterGUI.Position = BpodSystem.ProtocolFigures.ParameterGUI.Position;
%send bpod status to server
try
script = 'receivebpodstatus.php';
%create a common "outcome" vector
outcome = BpodSystem.Data.Custom.ChoiceCorrect(1:iTrial); %1=correct, 0=wrong
outcome(BpodSystem.Data.Custom.EarlyWithdrawal(1:iTrial))=2; %early withdrawal=2
outcome(BpodSystem.Data.Custom.FixBroke(1:iTrial))=3;%jackpot=3
SendTrialStatusToServer(script,BpodSystem.Data.Custom.Rig,outcome,BpodSystem.Data.Custom.Subject,BpodSystem.CurrentProtocolName);
catch
end
end