moved persistence
All checks were successful
Build (and tag) Images / build (push) Successful in 37s

This commit is contained in:
aso 2025-10-19 18:44:52 +02:00
commit 4c28ff9b0a
3 changed files with 7 additions and 7 deletions

View file

@ -28,5 +28,5 @@ cat seq_list.txt | xargs -n1 -P10 -I{} bash -c '
path=$(echo "$f" | sed -E "s#(...)(...)(...)#\1/\2/\3#")
url="${REPLICATE_URL}/${path}.osc.gz"
echo "Downloading $url"
curl -sL "$url" -o "${seqnum}.osc.gz" && gunzip "${seqnum}.osc.gz" && python filter_osc.py ${seqnum} && rm ${seqnum}.osc
curl -sL "$url" -o /migrations/"${seqnum}.osc.gz" && gunzip /migrations/"${seqnum}.osc.gz" && python filter_osc.py ${seqnum} && rm /migrations/${seqnum}.osc
' _ {}