You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The VRE_RUNNER bash script does two things that seem contradictory:
Checks if cwltool is available: type -a "$prog" >/dev/null in line 17
Activates virtual environment: source "$BASEDIR"/venv/bin/activate in line 26
These two steps are contradictory because for cwltool to be available it has to be installed globally or the virtual environment has to be activated first. I don't think we want cwltool to be installed globally so I would suggest that we revamp the script so that it first activates de environment and it then checks whether cwltool is installed.
The text was updated successfully, but these errors were encountered:
The VRE_RUNNER bash script does two things that seem contradictory:
cwltool
is available:type -a "$prog" >/dev/null
in line 17source "$BASEDIR"/venv/bin/activate
in line 26These two steps are contradictory because for
cwltool
to be available it has to be installed globally or the virtual environment has to be activated first. I don't think we wantcwltool
to be installed globally so I would suggest that we revamp the script so that it first activates de environment and it then checks whethercwltool
is installed.The text was updated successfully, but these errors were encountered: