diff --git a/hippunfold/config/snakebids.yml b/hippunfold/config/snakebids.yml index 4ed5fbfb..cb91802d 100644 --- a/hippunfold/config/snakebids.yml +++ b/hippunfold/config/snakebids.yml @@ -539,7 +539,7 @@ resource_urls: synthseg_v0.1: 'zenodo.org/record/8184230/files/trained_model.3d_fullres.Task102_synsegGenDetailed.nnUNetTrainerV2.model_best.tar' synthseg_v0.2: 'zenodo.org/record/8184230/files/trained_model.3d_fullres.Task203_synthseg.nnUNetTrainerV2.model_best.tar' atlas: - bbhist: 'fake.url' + bbhist: 'www.dropbox.com/scl/fi/aq59eggbrt719fs33q9t4/atlas-bbhist_20250108.zip?rlkey=vkf5jybhmummhboi8juc2zg2e&st=8y09t5zz&dl=0' multihist7: 'files.ca-1.osf.io/v1/resources/v8acf/providers/osfstorage/65395b782827451220b86dd8/?zip=' bigbrain: 'files.ca-1.osf.io/v1/resources/v8acf/providers/osfstorage/65395b8b13d27b123094c96f/?zip=' magdeburg: 'files.ca-1.osf.io/v1/resources/v8acf/providers/osfstorage/65395b8013d27b122f94c938/?zip=' diff --git a/hippunfold/workflow/rules/download.smk b/hippunfold/workflow/rules/download.smk index 87b7df40..7959f245 100644 --- a/hippunfold/workflow/rules/download.smk +++ b/hippunfold/workflow/rules/download.smk @@ -13,7 +13,7 @@ rule download_extract_atlas: shadow: "minimal" shell: - "wget https://{params.url} -O temp.zip && " + "wget 'https://{params.url}' -O temp.zip && " " unzip -d {output.unzip_dir} temp.zip" @@ -27,7 +27,7 @@ rule download_extract_template: shadow: "minimal" shell: - "wget https://{params.url} -O temp.zip && " + "wget 'https://{params.url}' -O temp.zip && " " unzip -d {output.unzip_dir} temp.zip"