We are currently implementing a workflow to convert RAW files to mzml with verifications .
(The implementation involves the use of folder directory as an input- as an intermediate state)
Currently we are facing the following issue
On second picture, we could see the ".config" folder being copied from container to local system.
SOLUTION:
To address the issue, we tried adding the "-H" command on existing wine64_anyuser command that sets Home environment variable.
And due to which the folder ".config" or ".local " is not seen on the local system.
PROBLEM:
We are currently implementing a workflow to convert RAW files to mzml with verifications . (The implementation involves the use of folder directory as an input- as an intermediate state)
Currently we are facing the following issue
On second picture, we could see the ".config" folder being copied from container to local system.
SOLUTION:
To address the issue, we tried adding the "-H" command on existing wine64_anyuser command that sets Home environment variable. And due to which the folder ".config" or ".local " is not seen on the local system.
Our suggestions:
1) adding "-H" on existing commands: wine64_anyuser --> sudo -E -u root wine64 "$@"
or
2) creating a separate command line win64_anyuser_cwl where win64_anyuser_cwl --> sudo -E -H -u root wine64 "$@"