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
Currently beeflow submit requires that workflow directory for a submission is not the current working directory.
e.g. beefolow submit workflow . ./wf.cwl ./job.yml . breaks.
We'll need to figure out how to get this working. One particular issue is that the code which packages a directory into a workflow package for the workflow manager stores the intermediate tarball in the current working directory which means that the directory we're trying to tar is changing since tar is writing the file to that directory. This makes tar super unhappy. So, we'll want to move that step to a temporary directory.
The text was updated successfully, but these errors were encountered:
Currently beeflow submit requires that workflow directory for a submission is not the current working directory.
e.g.
beefolow submit workflow . ./wf.cwl ./job.yml .
breaks.We'll need to figure out how to get this working. One particular issue is that the code which packages a directory into a workflow package for the workflow manager stores the intermediate tarball in the current working directory which means that the directory we're trying to tar is changing since tar is writing the file to that directory. This makes tar super unhappy. So, we'll want to move that step to a temporary directory.
The text was updated successfully, but these errors were encountered: