From e445f23473146e716bfa1d53d9baa628ae79458c Mon Sep 17 00:00:00 2001 From: Alexander Tischenko Date: Fri, 10 Dec 2021 09:20:59 +0300 Subject: [PATCH] Remove comment symbol that prevents downloading --- workflows/bundle/Snakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflows/bundle/Snakefile b/workflows/bundle/Snakefile index 7819c8b3..d3d4b3ea 100644 --- a/workflows/bundle/Snakefile +++ b/workflows/bundle/Snakefile @@ -43,7 +43,7 @@ rule all: "logs/ref/download_bundle.log" shell: """ - # wget "{BUNDLE_url}{AZURE_KEY}" -O {REF_DIR}/{BUNDLE_basename} --tries 50 |& tee -a {log} + wget "{BUNDLE_url}{AZURE_KEY}" -O {REF_DIR}/{BUNDLE_basename} --tries 50 |& tee -a {log} sum=$(md5sum {REF_DIR}/{BUNDLE_basename} | cut -d " " -f1) if [ $sum != {BUNDLE_md5} ]; then echo "md5 sum of BUDNLE is invalid" |& tee -a {log}