Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions preProcessing/acqID.m
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@
for i = 1:size(useIDX, 1)
checkPath = cat(2, '"', allFolders(useIDX(i), :).folder{1}, filesep, allFolders(useIDX(i), :).name{1}, ' "');
usePath = true;
if contains(checkPath, ".memory_usage")
usePath = false; %check for new memory usage dat file and ignore automatically
end
for f = 1:length(ignoreFolders)
if contains(checkPath, ignoreFolders(f))
usePath = false;
end
if contains(checkPath, ".memory_usage")
usePath = false; %check for new memory usage dat file and ignore automatically
end
end
if usePath
datpaths{i} = checkPath;
Expand Down
3 changes: 3 additions & 0 deletions preProcessing/preprocessSession.m
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,9 @@ function preprocessSession(varargin)
warning('removeNoise not implemented')
end

%add standard "ignore" prefixes to be extra safe
ignoreFolders = [ignoreFolders, "ignore", "backup", "memory_usage"];

% Check for active breakpoints
dbstatus_ = dbstatus('-completenames');
if ~isempty(dbstatus_)
Expand Down
Loading