ProteoWizard / container

Options for running ProteoWizard applications via containers (e.g. Docker)
Apache License 2.0
9 stars 8 forks source link

Update README.md #22

Closed linsherpa closed 1 year ago

linsherpa commented 1 year ago

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

image

image

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 "$@"