mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 05:45:37 +08:00
14 lines
202 B
Bash
Executable File
14 lines
202 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
|