Skip to content

Commit

Permalink
Fix/gsutil dep temp (#550)
Browse files Browse the repository at this point in the history
* fixes #541

* fixes #549
  • Loading branch information
hassanfa authored Feb 8, 2021
1 parent 0416599 commit e38cd3f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BALSAMIC/workflows/reference.smk
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ rule download_reference:
log_file = output_file + ".log"

if ref.url.scheme == "gs":
cmd = "gsutil cp -L {} {} -".format(log_file, ref.url)
cmd = "export TMPDIR=/tmp; gsutil cp -L {} {} -".format(log_file, ref.url)
else:
cmd = "wget -a {} -O - {}".format(log_file, ref.url)

Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ colorclass>=2.2.0
coloredlogs>=14.0
cyvcf2<0.10.0
graphviz>=0.14
gsutil>=4.50
gsutil==4.50
jinja2>=2.11.2
matplotlib>=3.3.0
networkx>=2.4
Expand All @@ -20,3 +20,4 @@ yapf>=0.30.0
h5py>=3.1.0
PyPDF2>=1.26.0
markdown==3.3.3
cryptography<3.4

0 comments on commit e38cd3f

Please sign in to comment.