We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23f30f5 commit 01d1b93Copy full SHA for 01d1b93
1 file changed
rules/sb.smk
@@ -134,17 +134,18 @@ if config["enable"]["retrieve"]:
134
"logs/retrieve_tyndp_vp_data.log",
135
136
rule retrieve_countries_centroids:
137
- input:
138
- storage(
139
- "https://cdn.jsdelivr.net/gh/gavinr/world-countries-centroids@v1.0.0/dist/countries.geojson"
140
- ),
141
output:
142
"data/countries_centroids.geojson",
143
log:
144
"logs/retrieve_countries_centroids.log",
145
- retries: 2
146
run:
147
- move(input[0], output[0])
+ from scripts._helpers import progress_retrieve
+
+ progress_retrieve(
+ "https://cdn.jsdelivr.net/gh/gavinr/world-countries-centroids@v1.0.0/dist/countries.geojson",
+ output[0],
+ disable=True,
148
+ )
149
150
151
# Development
0 commit comments