AljenU

Results 19 issues of AljenU

Currently aas_expandpathbyvars does nothing on Windows. Thus paths in the xml cannot use environment variables like %APPDATA%. Should path expansion also be supported on Windows? Does need to take into...

enhancement

In aa_init, the full aap structure is parsed and updated through aas_expandpathbyvars, without any checks whether the fields are meant as paths, or are another type of information. This can...

bug

Part of #242 On Windows, the path separator is a semicolon, whereas on unix it is a colon. In many places in aa, a colon is hardcoded to be used...

bug

In the file aa_doprocessing.m, there is at the end a subfunction getparallelparts. However, this function is never called. Remove the subfunction.

enhancement

The following code in aa_doprocessing appears to contain a bug. TODO: Check whether indeed bad. `msg(1:length(msg-2))` is probably meant to be `msg(1:length(msg)-2)` ``` if (strcmp(task,'doit')) if (alldone) aas_log(aap,false,sprintf('- done: %s...

bug

On windows, paths can have a \\ in them. However, aas_log uses printf functions during logging, with the input message as format specifier. In printf functions, a \\ is the...

bug

Most interactions with a shell are not 1-to-1 interchangeable between unix and windows. Shell interactions happen through functions system, unix and dos, and within AA also aas_shell. They can also...

bug

For MNE, the addpath code is addpath(aap.directory_conventions.mnedir,'matlab','toolbox'); addpath(aap.directory_conventions.mnedir,'matlab','examples'); This adds separate folders, instead of subfolders of mnedir. @tiborauer Can you confirm that there should be a fullfile added here to...

bug

The batch option uses aas_getTaskDuration, which uses an matlab class and function of the parallel.internal namespace. It looks like the function has changed (in R2021b or earlier), and it now...

bug