https://github.com/galaxyproject/galaxy
Revision 06d2830a4be22e81911cf95321d97eeef2a69c21 authored by Nuwan Goonasekera on 13 October 2020, 19:14:20 UTC, committed by Nuwan Goonasekera on 14 October 2020, 08:22:03 UTC
1 parent 56a71c7
Raw File
Tip revision: 06d2830a4be22e81911cf95321d97eeef2a69c21 authored by Nuwan Goonasekera on 13 October 2020, 19:14:20 UTC
Fix incorrect variable references in k8s runner
Tip revision: 06d2830
extract_dataset_parts.sh
#!/bin/sh

cd "$(dirname "$0")"

. ./scripts/common_startup_functions.sh

setup_python

for file in $1/split_info*.json
do
    # echo processing $file
    python ./scripts/extract_dataset_part.py "$file"
done
back to top