classdef CasesFinderPathological < CasesFinder methods function setCasesSpecificExpression(obj) % Pathological cases are found in 'root/P/*/*/P*' directories sep = getSystemSeparator; obj.casesSpecificExpression = [sep 'P' sep '*' sep '*' sep 'P*']; end end end