-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsminaRun.sh
36 lines (31 loc) · 1.14 KB
/
sminaRun.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
WORK_DIR="/home/scip/dmitriy.pustoshilov/runSmina/forSmina"
TEST_DIR="/home/scip/dmitriy.pustoshilov/runSmina/forSmina/10/22tar"
TEST_DIR2="/home/scip/dmitriy.pustoshilov/runSmina/forSmina/13/3tar"
JOBBER="/home/scip/dmitriy.pustoshilov/runSmina/dockingfactory_job.sh"
source /shared/bundle/dask/bin/activate
for group in $WORK_DIR/* ; do
for target in $group/* ; do
echo $group $target
dockingfactory.py \
--config $target/config.yml \
--address http://10.11.14.188:8000 \
--restart True \
--local True \
--name docking2 \
--partition compute-cpu \
--worker_instance_type c5.9xlarge \
--scheduler_instance_type c5.large
done
done
# cd $TEST_DIR
# dockingfactory.py \
# --config $TEST_DIR/config.yml \
# --address http://10.11.14.188:8000 \
# --restart True \
# --local True \
# --name docking2 \
# --partition compute-cpu \
# --worker_instance_type c5.9xlarge \
# --scheduler_instance_type c5.large
# # sbatch --output ./logs/$group"_"$target"factory.log" $JOBBER --config $target/config.yml
# sbatch -n 1 -N 1 --output ./logs/1factory.log $JOBBER --config $TEST_DIR/config.yml