Skip to content

Commit

Permalink
Merge pull request #160 from openvax/make-tmp-dir
Browse files Browse the repository at this point in the history
Creating a tmp subfolder if it does not exist, in the workdir; bumping pipeline version
  • Loading branch information
julia326 authored Jul 24, 2024
2 parents 03ba570 + 022fcff commit 4cc4b56
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.2
1.0.0
4 changes: 4 additions & 0 deletions pipeline/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ include:
include:
"qc.rules"

# make a workdir "tmp" subdirectory if it doesn't exist - needed for some processes
if not os.path.exists("/outputs/tmp"):
os.makedirs("/outputs/tmp")

# copy all fragments over to the sample-specific workdir, create if it doesn't exist
if not os.path.exists(WORKDIR):
os.makedirs(WORKDIR)
Expand Down

0 comments on commit 4cc4b56

Please sign in to comment.