Skip to content

Commit

Permalink
BICAS: Cleanup(2)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikPGJ committed May 20, 2024
1 parent e4e2d4b commit 5b7604c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,13 @@

for iDir = 1:numel(inputDirPathCa)
path = inputDirPathCa{iDir};

% NOTE: Empirically, Fsoi=dir() returns the ~canonical path in Fsoi.folder,
% not the original path, which means that the new path might not trigger
% automounting! For example, it converts
% brain:/data/solo --> /amd/nas8/USBDiskRaid5/solo .
FsoiArray2 = dir(fullfile(path, '**')); % Recursive call to dir().

FsoiArray2 = FsoiArray2(~[FsoiArray2.isdir]);
FsoiArray2 = FsoiArray2(:);
% CASE: FsoiArray2 is a column array.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%
% Try run BICAS for array of specified BPCI. If the input datasets can not be
% found immediately before a BICAS run, then that BPCI is skipped. This is to
% prevent the code from confusing a "genuine" BICAS error (which the code can
% Try run BICAS for array of specified BPCIs. If the input datasets can not be
% found immediately before a call to BICAS, then that BPCI is skipped. This is
% to prevent the code from confusing a "genuine" BICAS error (which the code can
% not interpret) with BICAS merely not being able to read missing input
% datasets.
%
Expand Down

0 comments on commit 5b7604c

Please sign in to comment.