mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-17 16:41:31 +08:00
14 lines
209 B
Bash
Executable File
14 lines
209 B
Bash
Executable File
#!/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
|