You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
% subj_labels_loc{iElecS+iElec}=TXT(iElec+1,1); % first column
end
This code runs these rules, but in sequential order. This means that if a label breaks rule 2, and then the next label breaks rule 1 it will not be caught. An example of this test case might be:
Intended Behavior
The popTaskSubjectData script determines the volume label for each electrode according to the following rules:
In volume percentage order, what brain parcellations are contained within a 3 mm radius of an electrode?
White-Matter
and is a volume percentage of <80%, consider the next largest volume labelUnknown
orhypointensities
and is <100%, consider the next largest volume label.Actual Behavior
relevent snippet:
MATLAB-env/Scripts/Populate/popTaskSubjectData.m
Lines 210 to 232 in 08132fb
This code runs these rules, but in sequential order. This means that if a label breaks rule 2, and then the next label breaks rule 1 it will not be caught. An example of this test case might be:
Will incorrectly choose the label
Left-Cerebral-White-Matter
when it should choosectx_lh_G_temporal_middle
The text was updated successfully, but these errors were encountered: